/* ============================================================
   MACULA TWINS — app.css
   Dark-first, editorial, bold sans-serif.
   Mobile-first throughout.
   ============================================================ */

/* ── Self-hosted Inter (latin + latin-ext, variable weight 100-900) ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
    U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

/* ── Design tokens ── */
:root {
  --bg:        #0a0a0a;
  --surface:   #111111;
  --surface-2: #1a1a1a;
  --ink:        #f0f0f0;
  --ink-2:      #999999;
  --ink-3:      #555555;
  --accent:     #e8ff00;
  --accent-2:   #ff3c6e;
  --line:       rgba(255,255,255,.08);
  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --nav-h:      56px;
  --r:          6px;
  --ease:       cubic-bezier(.4,0,.2,1);
  --pad:        clamp(16px, 4vw, 40px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body { font-family: var(--font); color: var(--ink); min-height: 100dvh; overflow-x: hidden; line-height: 1.6; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--r);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .15s var(--ease), opacity .15s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--accent { background: var(--accent); color: #0a0a0a; }
.btn--alt    { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--alt:hover { border-color: rgba(255,255,255,.3); }

/* ── Hero ── */
.hero {
  min-height: calc(100dvh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px var(--pad) 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(232,255,0,.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255,60,110,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(3.5rem, 16vw, 10rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: clamp(.875rem, 2.5vw, 1.1rem);
  color: var(--ink-2);
  margin-bottom: 36px;
  max-width: 360px;
}
.hero__ctas {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 100%;
  max-width: 260px;
}
@media (min-width: 480px) {
  .hero__ctas { flex-direction: row; max-width: none; width: auto; }
}

/* ── Stats bar ── */
.stats-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 20px 0;
}
.stats-bar__inner::-webkit-scrollbar { display: none; }
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; flex-shrink: 0;
  padding: 0 clamp(16px, 4vw, 40px);
}
.stat-num {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 900; letter-spacing: -.03em; color: var(--ink);
}
.stat-label {
  font-size: .6rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3);
}
.stat-divider { width: 1px; height: 28px; background: var(--line); flex-shrink: 0; }

/* ── Twins Grid ── */
.twins-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  border-top: 1px solid var(--line);
}
@media (min-width: 600px) { .twins-grid { grid-template-columns: 1fr 1fr; } }

.twin-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--surface);
  text-decoration: none;
}
@media (min-width: 600px) { .twin-card { aspect-ratio: 3/4; } }

.twin-card__img-wrap { position: absolute; inset: 0; }
/* Skeleton shimmer on twin cards */
.twin-card::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
  transition: opacity .3s ease;
  pointer-events: none;
}
.twin-card.loaded::before { opacity: 0; }
.twin-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform .5s var(--ease);
}
.twin-card:hover .twin-card__img-wrap img { transform: scale(1.04); }
.twin-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
}
.twin-card__body { position: relative; z-index: 1; padding: 20px 18px; }
@media (min-width: 600px) { .twin-card__body { padding: 28px 24px; } }
.twin-card__tag {
  display: inline-block;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 8px;
}
.twin-card--emilia  .twin-card__tag { background: var(--accent); color: #0a0a0a; }
.twin-card--letizia .twin-card__tag { background: var(--accent-2); color: #fff; }
.twin-card__name { font-size: 1.25rem; font-weight: 900; letter-spacing: -.02em; color: #fff; margin-bottom: 4px; }
.twin-card__body p { font-size: .8rem; color: rgba(255,255,255,.55); }

/* ── About strip ── */
.about-strip { padding: 56px 0; border-top: 1px solid var(--line); }
.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .about-strip__inner { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .about-strip { padding: 80px 0; }
}
.about-strip__text h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900; letter-spacing: -.03em; margin-bottom: 14px;
}
.about-strip__text p {
  color: var(--ink-2); font-size: .9rem; line-height: 1.75; margin-bottom: 12px;
}
.about-strip__text p em { color: var(--ink); font-style: italic; }
.about-strip__text .btn { margin-right: 8px; margin-top: 8px; }

.fact-list { display: flex; flex-direction: column; }
.fact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: .85rem;
}
.fact-row:first-child { border-top: 1px solid var(--line); }
.fact-row dt { color: var(--ink-3); font-weight: 600; }
.fact-row dd { color: var(--ink-2); }
.fact-row dd a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ── Social grid ── */
.social-section { padding: 56px 0; border-top: 1px solid var(--line); }
@media (min-width: 768px) { .social-section { padding: 80px 0; } }
.social-section__title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900; letter-spacing: -.03em; margin-bottom: 20px;
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (min-width: 640px) { .social-grid { grid-template-columns: repeat(4, 1fr); } }
.social-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .15s, background .15s;
}
.social-card:hover { border-color: rgba(255,255,255,.2); background: var(--surface-2); }
.social-card__platform {
  font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3);
}
.social-card__handle { font-size: .8rem; font-weight: 600; color: var(--ink); }
.social-card__count  { font-size: 1rem; font-weight: 900; color: var(--accent); margin-top: 4px; }

/* ── Profile page ── */
.profile-page { padding: 0 0 64px; }

/* On mobile the image bleeds full-width, so we pull it out of .container */
.profile-page__header {
  display: flex;
  flex-direction: column;
}

/* The image wrapper breaks out of container padding on mobile */
.profile-page__img-wrap {
  width: 100vw;
  margin-left: calc(-1 * var(--pad));   /* undo container padding */
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.profile-page__img-wrap::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
  transition: opacity .3s ease;
}
.profile-page__img-wrap.loaded::before { opacity: 0; pointer-events: none; }
.profile-page__img-wrap img {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}

/* Info block sits below the image on mobile */
.profile-page__info {
  padding-top: 28px;
}

/* Tablet+: side-by-side grid, image back inside normal flow */
@media (min-width: 700px) {
  .profile-page { padding-top: 48px; }
  .profile-page__header {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
  }
  .profile-page__img-wrap {
    width: auto;
    margin-left: 0;
    aspect-ratio: 4/5;
    border-radius: var(--r);
  }
  .profile-page__info { padding-top: 4px; }
}
@media (min-width: 900px) {
  .profile-page__header { grid-template-columns: 320px 1fr; gap: 64px; }
}

.profile-tag {
  display: inline-block;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.profile-tag--emilia  { background: var(--accent); color: #0a0a0a; }
.profile-tag--letizia { background: var(--accent-2); color: #fff; }

.profile-page__info h1 {
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1; margin-bottom: 6px;
}
.profile-page__sub { font-size: .85rem; color: var(--ink-2); margin-bottom: 20px; }

/* Facts table */
.profile-facts {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 24px;
}
.profile-fact {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
  padding: 9px 12px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  font-size: .8rem;
}
@media (min-width: 400px) {
  .profile-fact { grid-template-columns: 110px 1fr; font-size: .825rem; padding: 10px 14px; }
}
.profile-fact:last-child { border-bottom: none; }
.profile-fact dt { color: var(--ink-3); font-weight: 600; font-size: .72rem; }
@media (min-width: 400px) { .profile-fact dt { font-size: .75rem; } }
.profile-fact dd { color: var(--ink-2); }
.profile-fact dd a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.fact-note { color: var(--ink-3); font-size: .7rem; }

/* Social links */
.social-links { display: flex; gap: 8px; flex-wrap: wrap; }
.social-link {
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-2);
  transition: border-color .15s, color .15s;
  min-height: 40px; display: inline-flex; align-items: center;
}
@media (min-width: 400px) {
  .social-link { padding: 10px 14px; font-size: .72rem; min-height: 44px; }
}
.social-link:hover { border-color: rgba(255,255,255,.3); color: var(--ink); }
.social-link--accent { border-color: rgba(232,255,0,.25); color: var(--accent); }
.social-link--accent:hover { border-color: var(--accent); }
.social-link--alt { border-color: rgba(255,60,110,.25); color: var(--accent-2); }
.social-link--alt:hover { border-color: var(--accent-2); }

/* Profile bio */
.profile-bio {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.profile-bio h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 900; letter-spacing: -.03em; margin-bottom: 14px;
}
.profile-bio p {
  color: var(--ink-2); font-size: .9rem; line-height: 1.8; margin-bottom: 12px;
}
.profile-bio p em { color: var(--ink); font-style: italic; }

/* Twin compare */
.twin-compare { padding: 40px 0; border-top: 1px solid var(--line); }
.twin-compare h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 900; letter-spacing: -.03em; margin-bottom: 20px;
}
.twin-compare__grid {
  display: flex; align-items: stretch; gap: 12px;
  margin-bottom: 16px;
}
.twin-compare__card {
  flex: 1;
  padding: 16px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
}
.twin-compare__card--emilia  { border-color: rgba(232,255,0,.2); }
.twin-compare__card--letizia { border-color: rgba(255,60,110,.2); }
.twin-compare__label {
  display: block;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 10px;
}
.twin-compare__card--emilia  .twin-compare__label { color: var(--accent); }
.twin-compare__card--letizia .twin-compare__label { color: var(--accent-2); }
.twin-compare__list { display: flex; flex-direction: column; gap: 6px; }
.twin-compare__list li { font-size: .85rem; color: var(--ink-2); }
.twin-compare__vs { font-size: 1.2rem; color: var(--ink-3); flex-shrink: 0; align-self: center; }
.twin-compare__note { font-size: .78rem; color: var(--ink-3); line-height: 1.6; max-width: 560px; }

/* ── Error page ── */
.error-page {
  padding: 80px 0;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
}
.error-page__code {
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 900; letter-spacing: -.06em; line-height: 1;
  color: var(--surface-2);
}
.error-page h1 { font-size: 1.4rem; font-weight: 700; }
.error-page p  { color: var(--ink-2); }

/* ── Legal page ── */
.legal-page { padding: 48px 0 64px; max-width: 640px; }
.legal-page h1 { font-size: clamp(1.6rem, 5vw, 2rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 20px; }
.legal-page p  { color: var(--ink-2); margin-bottom: 12px; font-size: .9rem; line-height: 1.75; }

/* ── Skeleton loading ── */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.skeleton {
  background: linear-gradient(90deg,
    var(--surface) 25%,
    var(--surface-2) 50%,
    var(--surface) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
}
/* Image wrapper shows skeleton until img loads */
.img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    var(--surface) 25%,
    var(--surface-2) 50%,
    var(--surface) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
  transition: opacity .3s ease;
  z-index: 1;
}
.img-wrap.loaded::before {
  opacity: 0;
  pointer-events: none;
}
.img-wrap img {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── Page header (shared: gallery, faq, about) ── */
.page-header { padding: 40px 0 32px; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.page-header h1 {
  font-size: clamp(1.8rem, 6vw, 4rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1; margin-bottom: 6px;
}
.page-header__sub { font-size: .85rem; color: var(--ink-3); }

/* ── Gallery ── */
.gallery-page { padding-bottom: 64px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 0 var(--pad);
}
@media (min-width: 480px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(5, 1fr); } }

.gallery-item {
  position: relative; aspect-ratio: 1;
  overflow: hidden; background: var(--surface);
  cursor: pointer; border: none; padding: 0; display: block;
}
/* Skeleton shimmer until image loads */
.gallery-item::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
  transition: opacity .3s ease;
}
.gallery-item.loaded::before { opacity: 0; pointer-events: none; }
.gallery-item img {
  position: relative; z-index: 2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
  display: block;
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background .2s;
}
.gallery-item:hover::after { background: rgba(0,0,0,.25); }
.gallery-item:hover img    { transform: scale(1.06); }
.gallery-item:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.gallery-item--hidden { display: none; }
.gallery-item:not(.gallery-item--hidden) { animation: galleryIn .4s var(--ease) both; }
@keyframes galleryIn {
  from { opacity: 0; transform: scale(.97); }
  to   { opacity: 1; transform: none; }
}
.gallery-sentinel { height: 1px; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.92); backdrop-filter: blur(8px);
}
.lightbox__content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  max-width: min(92vw, 900px); max-height: 90dvh; width: 100%;
}
.lightbox__img {
  max-width: 100%; max-height: calc(90dvh - 56px);
  object-fit: contain; border-radius: var(--r); display: block;
}
.lightbox__caption { margin-top: 10px; font-size: .78rem; color: var(--ink-3); text-align: center; }
.lightbox__close {
  position: fixed; top: 14px; right: 14px;
  width: 44px; height: 44px; background: rgba(255,255,255,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--ink); z-index: 2; transition: background .15s;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }
.lightbox__prev, .lightbox__next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; background: rgba(255,255,255,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--ink); z-index: 2; transition: background .15s;
}
.lightbox__prev { left: 10px; }
.lightbox__next { right: 10px; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.2); }

/* ── FAQ ── */
.faq-page { padding-bottom: 64px; }
.faq-list  { display: flex; flex-direction: column; max-width: 760px; }
.faq-item  { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 18px 0;
  font-size: .95rem; font-weight: 700; color: var(--ink);
  cursor: pointer; background: none; border: none; text-align: left;
  transition: color .15s;
}
.faq-item__q:hover,
.faq-item__q[aria-expanded="true"] { color: var(--accent); }
.faq-item__icon {
  flex-shrink: 0; color: var(--ink-3);
  transition: transform .3s var(--ease), color .15s;
}
.faq-item__q[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); color: var(--accent); }
.faq-item__body {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height .38s cubic-bezier(.4,0,.2,1), opacity .28s ease;
}
.faq-no-transition .faq-item__body { transition: none !important; }
.faq-item__a {
  padding: 0 0 20px;
  font-size: .875rem; color: var(--ink-2); line-height: 1.8; max-width: 640px;
}

/* ── About page ── */
.about-page { padding-bottom: 64px; }
.about-content { display: flex; flex-direction: column; gap: 40px; max-width: 720px; }
.about-block h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.about-block p  { font-size: .875rem; color: var(--ink-2); line-height: 1.75; margin-bottom: 8px; }
.about-block a  { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.about-block strong { color: var(--ink); }
.about-twin-links { display: flex; gap: 10px; flex-wrap: wrap; }
.about-twin-link {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 18px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); transition: border-color .15s; min-width: 150px;
}
.about-twin-link:hover { border-color: rgba(255,255,255,.2); }
.about-twin-link__tag { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.about-twin-link--emilia  .about-twin-link__tag { color: var(--accent); }
.about-twin-link--letizia .about-twin-link__tag { color: var(--accent-2); }
.about-twin-link__url { font-size: .85rem; font-weight: 600; color: var(--ink-2); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
