/* ═══════════════════════════════════════════════════════════
   EmiliaLetizia.de — style.css
   Editorial light-mode — ice & duality motif
   ═══════════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --c-bg:          #f5f7fa;
  --c-surface:     #ffffff;
  --c-surface-alt: #eef1f7;
  --c-border:      #dde2ed;
  --c-text:        #1a1e2e;
  --c-text-mid:    #4a5068;
  --c-text-muted:  #8690a8;
  --c-emilia:      #3d7fc1;
  --c-letizia:     #b0507a;
  --c-emilia-tint: #e8f1fb;
  --c-letizia-tint:#faedf4;
  --c-accent:      #3d7fc1;
  --f-display: Georgia, 'Times New Roman', serif;
  --f-body:    'Helvetica Neue', Arial, Helvetica, sans-serif;
  --radius:     10px;
  --radius-lg:  20px;
  --gap:        1.5rem;
  --section-pad:6rem;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.14);
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--c-bg); color: var(--c-text);
  line-height: 1.65; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Back to Top ────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; background: var(--c-text); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px); cursor: pointer;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s;
  z-index: 90; box-shadow: var(--shadow-md); border: none;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--c-accent); }
.back-to-top svg { width: 18px; height: 18px; }

/* ── Page Loader ────────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; background: var(--c-surface);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .5s var(--ease), visibility .5s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-names {
  font-family: var(--f-display); font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: -.02em; display: flex; gap: .25em; align-items: center; justify-content: center;
}
.loader-e   { color: var(--c-emilia); }
.loader-l   { color: var(--c-letizia); }
.loader-amp { color: var(--c-text-muted); font-size: .6em; }
.loader-bar {
  margin: 1.5rem auto 0; width: 120px; height: 2px;
  background: var(--c-border); border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--c-emilia), var(--c-letizia));
  animation: loaderFill 1.2s var(--ease) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ── Layout helpers ─────────────────────────────────────────── */
.container { width: min(1200px, 100% - 2rem); margin-inline: auto; }
.section-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--c-accent); margin-bottom: .75rem;
}
.section-title {
  font-family: var(--f-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: normal; line-height: 1.2; color: var(--c-text); margin-bottom: 1rem;
}
.section-body { font-size: 1.05rem; line-height: 1.75; color: var(--c-text-mid); max-width: 60ch; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-body { margin-inline: auto; }
.section-cta { text-align: center; margin-top: 3rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 2rem; border-radius: var(--radius);
  font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  transition: all .2s var(--ease); text-decoration: none; cursor: pointer; line-height: 1;
}
.btn--primary {
  background: var(--c-accent); color: #fff;
  box-shadow: 0 4px 16px rgba(61,127,193,.32);
}
.btn--primary:hover {
  background: #2f6aaa; box-shadow: 0 6px 20px rgba(61,127,193,.42);
  transform: translateY(-1px); text-decoration: none; color: #fff;
}
.btn--ghost { background: transparent; color: var(--c-accent); border: 1.5px solid var(--c-accent); }
.btn--ghost:hover { background: var(--c-emilia-tint); text-decoration: none; }
.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn--ghost-light:hover {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8);
  text-decoration: none; color: #fff;
}
.btn--large { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(245,247,250,.93);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
  overflow: hidden;
}
.site-header.scrolled {
  border-bottom-color: var(--c-border);
  background: rgba(245,247,250,.99);
}
/* Subtle bg image texture */
.header-bg-img { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.header-bg-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; opacity: .06; display: block;
}
.header-bar {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 2rem;
  height: 62px; width: min(1200px, 100% - 2rem); margin-inline: auto;
}
/* Logo */
.site-logo {
  display: flex; align-items: center; gap: .3rem;
  font-family: var(--f-display); font-size: 1.5rem;
  letter-spacing: -.02em; text-decoration: none; flex-shrink: 0;
}
.logo-e   { color: var(--c-emilia); }
.logo-l   { color: var(--c-letizia); }
.logo-amp { color: var(--c-text-muted); font-size: .85em; }
.logo-wordmark {
  font-family: var(--f-body); font-size: .6rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--c-text-muted); margin-left: .3rem;
}
@media (max-width: 400px) { .logo-wordmark { display: none; } }
/* Desktop nav */
.main-nav { margin-left: auto; }
.nav-list { display: flex; gap: .25rem; align-items: center; }
.nav-link {
  padding: .45rem .85rem; border-radius: var(--radius);
  font-size: .88rem; font-weight: 500; color: var(--c-text-mid);
  transition: color .2s, background .2s; text-decoration: none; white-space: nowrap;
}
.nav-link:hover { color: var(--c-text); background: var(--c-surface-alt); text-decoration: none; }
.nav-link.is-active { color: var(--c-accent); background: var(--c-emilia-tint); }
/* Actions */
.header-actions { display: flex; align-items: center; gap: .6rem; }
.lang-toggle {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: var(--c-text-muted);
  border: 1.5px solid var(--c-border); padding: .28rem .55rem;
  border-radius: 6px; text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}
.lang-toggle:hover {
  color: var(--c-text); border-color: var(--c-accent);
  background: var(--c-emilia-tint); text-decoration: none;
}
/* Burger */
.burger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 40px; height: 40px;
  border-radius: 8px; background: transparent; border: none;
  cursor: pointer; transition: background .2s; flex-shrink: 0;
}
.burger:hover { background: var(--c-surface-alt); }
.burger span {
  display: block; width: 22px; height: 2px; background: var(--c-text);
  border-radius: 2px; transform-origin: center;
  transition: transform .3s var(--ease), opacity .25s, width .25s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu drawer ──────────────────────────────────────── */
.mobile-menu {
  display: none; overflow: hidden; max-height: 0;
  transition: max-height .38s var(--ease), border-top-color .3s;
  border-top: 1px solid transparent;
  background: var(--c-surface); position: relative; z-index: 1;
}
.mobile-menu.is-open { max-height: 420px; border-top-color: var(--c-border); }
.mobile-nav-list {
  width: min(1200px, 100% - 2rem); margin-inline: auto;
  padding: .75rem 0; display: flex; flex-direction: column; gap: .2rem;
}
.mobile-nav-link {
  display: block; padding: .85rem 1rem; border-radius: var(--radius);
  font-size: 1rem; font-weight: 500; color: var(--c-text-mid);
  text-decoration: none; transition: color .2s, background .2s;
}
.mobile-nav-link:hover { color: var(--c-text); background: var(--c-surface-alt); text-decoration: none; }
.mobile-nav-link.is-active { color: var(--c-accent); background: var(--c-emilia-tint); font-weight: 600; }
.mobile-menu-footer {
  width: min(1200px, 100% - 2rem); margin-inline: auto;
  padding: .75rem 1rem 1.25rem; border-top: 1px solid var(--c-border);
}
.mobile-lang-switch {
  font-size: .82rem; font-weight: 600; color: var(--c-text-muted); text-decoration: none;
}
.mobile-lang-switch:hover { color: var(--c-accent); text-decoration: none; }
@media (max-width: 768px) {
  .main-nav  { display: none; }
  .burger    { display: flex; }
  .mobile-menu { display: block; }
  .header-actions .lang-toggle { display: none; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: min(82vh, 680px);
  display: flex; align-items: center;
  overflow: hidden; background: #0e1120;
}
@media (max-width: 600px) { .hero { min-height: 520px; } }
/* Responsive bg image */
.hero-img-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-img-wrap picture { display: contents; }
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; display: block;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,14,30,.76) 0%, rgba(10,14,30,.54) 55%, rgba(10,14,30,.42) 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-ice-lines {
  position: absolute; inset: 0; display: flex;
  gap: clamp(40px, 8vw, 100px); align-items: stretch; opacity: .055;
}
.ice-line { flex: 1; border-left: 1px solid #fff; }
.hero-inner { position: relative; z-index: 2; padding-block: 5rem 4rem; text-align: center; }
.hero-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--f-display); font-size: clamp(3rem, 11vw, 8rem);
  font-weight: normal; line-height: 1; letter-spacing: -.02em;
  color: #fff; margin-bottom: 1.5rem; text-shadow: 0 2px 28px rgba(0,0,0,.35);
}
.hero-headline .amp-char {
  background: linear-gradient(135deg, #7eb8f7, #f0a0c0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; font-size: .55em; line-height: 1.3;
}
.hero-headline span { display: block; }
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem); color: rgba(255,255,255,.75);
  max-width: 42ch; margin-inline: auto; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); z-index: 2;
}
.scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg); animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50%       { transform: translateY(6px) rotate(45deg); }
}

/* ── Stats strip ────────────────────────────────────────────── */
.stats-strip { background: var(--c-text); color: #fff; padding: 3rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem; text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: .35rem; }
.stat-value {
  font-family: var(--f-display); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: normal; line-height: 1;
  background: linear-gradient(135deg, #7eb8f7, #e88ab0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label {
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}

/* ── Section: Who ───────────────────────────────────────────── */
.section-who { padding: var(--section-pad) 0; background: var(--c-bg); }
.who-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 900px) {
  .who-layout { grid-template-columns: 1fr; }
  .who-visual { order: -1; }
}
.who-text .section-body { margin-bottom: 2rem; }

/* Twin Cards */
.twin-cards { display: flex; gap: 1.5rem; justify-content: center; }
.twin-card {
  flex: 1; max-width: 200px; border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.twin-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.twin-card:last-child:hover { transform: translateY(-8px) rotate(1deg); }
.twin-card--emilia { background: linear-gradient(145deg, var(--c-emilia-tint), #fff); border: 1.5px solid rgba(61,127,193,.2); }
.twin-card--letizia { background: linear-gradient(145deg, var(--c-letizia-tint), #fff); border: 1.5px solid rgba(176,80,122,.2); }
.twin-card-inner { display: flex; flex-direction: column; gap: .5rem; align-items: center; }

/* PFP image in card */
.twin-card-pfp {
  position: relative; width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden; margin-bottom: .5rem;
  border: 3px solid #fff; box-shadow: var(--shadow-sm);
}
.twin-card-pfp img { width: 100%; height: 100%; object-fit: cover; }
.pfp-initial {
  position: absolute; inset: 0; display: none;
  align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 2rem; color: #fff;
}
.pfp-initial--e { background: var(--c-emilia); }
.pfp-initial--l { background: var(--c-letizia); }
.twin-card-pfp.pfp-fallback .pfp-initial { display: flex; }

.twin-card-name { font-weight: 700; font-size: 1.1rem; }
.twin-card-tag  { font-size: .72rem; color: var(--c-text-muted); }

/* ── Section: Media Teaser ──────────────────────────────────── */
.section-media-teaser { padding: var(--section-pad) 0; background: var(--c-surface); }
.media-teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); }
.media-teaser-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow .3s;
}
.media-teaser-card:hover { box-shadow: var(--shadow-md); }
.ig-fallback-link {
  display: block; padding: 2rem; background: var(--c-surface-alt);
  color: var(--c-accent); text-decoration: none; font-size: .9rem; border-radius: var(--radius);
}

/* ── Section: Socials ───────────────────────────────────────── */
.section-socials { padding: var(--section-pad) 0; background: var(--c-bg); }
.socials-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 640px) { .socials-strip { grid-template-columns: 1fr; } }
.social-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; padding: 2.5rem 2rem; border-radius: var(--radius-lg);
  text-decoration: none; border: 1.5px solid var(--c-border); background: var(--c-surface);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; color: var(--c-text);
}
.social-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; color: var(--c-text); }
.social-tile--instagram:hover { border-color: #c13584; }
.social-tile--tiktok:hover    { border-color: #010101; }
.social-tile--youtube:hover   { border-color: #ff0000; }
.social-tile-icon svg { width: 2rem; height: 2rem; }
.social-tile-label { font-weight: 700; font-size: 1rem; }
.social-tile-count { font-family: var(--f-display); font-size: 1.5rem; }
.social-tile--instagram .social-tile-count { color: #c13584; }
.social-tile--tiktok .social-tile-count    { color: #010101; }
.social-tile--youtube .social-tile-count   { color: #ff0000; }

/* ── Section: Collab CTA ────────────────────────────────────── */
.section-collab { padding: var(--section-pad) 0; background: var(--c-surface); }
.collab-card {
  position: relative;
  background: linear-gradient(135deg, var(--c-emilia-tint) 0%, #fff 50%, var(--c-letizia-tint) 100%);
  border: 1.5px solid var(--c-border); border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem); overflow: hidden;
}
.collab-deco { position: absolute; top: -60px; right: -60px; pointer-events: none; }
.collab-deco-ring { position: absolute; border-radius: 50%; border: 2px solid var(--c-border); opacity: .4; }
.collab-deco-ring--1 { width: 200px; height: 200px; top: 0; right: 0; }
.collab-deco-ring--2 { width: 320px; height: 320px; top: -60px; right: -60px; }
.collab-content { position: relative; max-width: 600px; }
.collab-content .section-title { margin-bottom: 1rem; }
.collab-content .section-body  { margin-bottom: 2rem; }
.collab-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  position: relative; padding: 8rem 0 4rem;
  background: var(--c-surface); border-bottom: 1px solid var(--c-border); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c-emilia-tint) 0%, transparent 50%),
              linear-gradient(225deg, var(--c-letizia-tint) 0%, transparent 60%);
  opacity: .5; pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero-title {
  font-family: var(--f-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: normal; line-height: 1.15; color: var(--c-text); margin-bottom: 1.5rem;
}
.page-hero-intro { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--c-text-mid); max-width: 60ch; line-height: 1.7; }

/* ── About: Chapters ────────────────────────────────────────── */
.section-chapters { padding: var(--section-pad) 0; background: var(--c-bg); }
.chapter {
  display: grid; grid-template-columns: auto 1fr; gap: 2.5rem;
  align-items: start; padding: 3rem 0; border-bottom: 1px solid var(--c-border);
}
.chapter:first-child { padding-top: 0; }
.chapter:last-child  { border-bottom: none; }
.chapter--right { grid-template-columns: 1fr auto; }
.chapter--right .chapter-number { order: 2; }
.chapter--right .chapter-body   { order: 1; }
@media (max-width: 600px) {
  .chapter, .chapter--right { grid-template-columns: 1fr; gap: 1rem; }
  .chapter--right .chapter-number { order: -1; }
}
.chapter-number {
  font-family: var(--f-display); font-size: 5rem; font-weight: normal;
  line-height: 1; color: var(--c-border); user-select: none; min-width: 80px;
}
.chapter-title {
  font-family: var(--f-display); font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: normal; margin-bottom: .75rem; color: var(--c-text);
}
.chapter-text { color: var(--c-text-mid); line-height: 1.8; max-width: 65ch; }

/* ── About: Facts ───────────────────────────────────────────── */
.section-facts { padding: var(--section-pad) 0; background: var(--c-surface); }
.section-facts .section-title { margin-bottom: 2.5rem; }
.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.fact-card {
  display: flex; flex-direction: column; gap: .4rem; padding: 1.5rem;
  background: var(--c-bg); border-radius: var(--radius); border: 1px solid var(--c-border);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.fact-card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.fact-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-text-muted); }
.fact-value { font-size: 1rem; font-weight: 600; color: var(--c-text); }

/* ── Age SEO Card ───────────────────────────────────────────── */
.section-age { padding: 0 0 var(--section-pad); background: var(--c-surface); }
.age-card {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--c-emilia-tint), var(--c-letizia-tint));
  border: 1.5px solid var(--c-border); border-radius: var(--radius-lg);
}
.age-card-icon { color: var(--c-accent); flex-shrink: 0; opacity: .8; }
.age-card-body { flex: 1; min-width: 200px; }
.age-card-title { font-family: var(--f-display); font-size: 1.25rem; font-weight: normal; color: var(--c-text); margin-bottom: .35rem; }
.age-card-text  { font-size: .9rem; color: var(--c-text-mid); line-height: 1.65; }
.age-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--c-text); color: #fff;
  font-family: var(--f-display); font-size: 1.8rem; line-height: 1; flex-shrink: 0; gap: .1rem;
}
.age-badge span { font-family: var(--f-body); font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .6; }

/* ── About: Profiles ────────────────────────────────────────── */
.section-profiles { padding: var(--section-pad) 0; background: var(--c-bg); }
.profiles-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; }
@media (max-width: 700px) {
  .profiles-grid { grid-template-columns: 1fr 1fr; }
  .profile-connector { display: none; }
}
.profile-card {
  background: var(--c-surface); border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  text-align: center; border: 1.5px solid var(--c-border);
  transition: box-shadow .3s, transform .3s;
}
.profile-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
/* Profile pfp */
.profile-pfp {
  width: 110px; height: 110px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 1.25rem; position: relative;
  border: 3px solid #fff; box-shadow: var(--shadow-md);
}
.profile-pfp img { width: 100%; height: 100%; object-fit: cover; }
.profile-pfp-fallback {
  position: absolute; inset: 0; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 2.8rem; color: #fff;
}
.profile-pfp--emilia .profile-pfp-fallback  { background: var(--c-emilia); }
.profile-pfp--letizia .profile-pfp-fallback { background: var(--c-letizia); }
.profile-name { font-family: var(--f-display); font-size: 1.8rem; font-weight: normal; }
.profile-surname { color: var(--c-text-muted); font-size: .9rem; letter-spacing: .05em; margin-bottom: 1.25rem; }
.profile-divider { width: 40px; height: 2px; margin: 1rem auto; }
.profile-card--emilia .profile-divider  { background: var(--c-emilia); }
.profile-card--letizia .profile-divider { background: var(--c-letizia); }
.profile-traits { font-size: .875rem; color: var(--c-text-mid); display: flex; flex-direction: column; gap: .4rem; }
.profile-connector { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.profile-connector-amp { font-family: var(--f-display); font-size: 2.5rem; color: var(--c-text-muted); line-height: 1; }
.profile-connector-line { width: 1px; height: 80px; background: linear-gradient(to bottom, var(--c-emilia), var(--c-letizia)); opacity: .4; }
/* About deco */
.page-hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.about-deco-line { position: absolute; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--c-border), transparent); }
.about-deco-line--1 { left: 30%; }
.about-deco-line--2 { right: 20%; }

/* ── Media: Follow row ──────────────────────────────────────── */
.section-follow { padding: 2rem 0; background: var(--c-surface); border-bottom: 1px solid var(--c-border); }
.follow-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.follow-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .7rem 1.5rem; border-radius: var(--radius); font-size: .9rem; font-weight: 600;
  text-decoration: none; transition: all .2s; border: 1.5px solid var(--c-border);
  color: var(--c-text); background: var(--c-surface);
}
.follow-btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.follow-btn svg { width: 18px; height: 18px; }
.follow-btn--ig:hover { border-color: #c13584; color: #c13584; }
.follow-btn--tt:hover { border-color: #010101; color: #010101; }
.follow-btn--yt:hover { border-color: #ff0000; color: #ff0000; }

/* ── Media: Gallery ─────────────────────────────────────────── */
.section-gallery { padding: var(--section-pad) 0; background: var(--c-bg); }
.section-gallery .section-title { margin-bottom: 2.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--gap); margin-bottom: 3rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--c-surface); transition: box-shadow .3s; }
.gallery-item:hover { box-shadow: var(--shadow-md); }
.pagination { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.pagination-btn {
  display: inline-flex; align-items: center; padding: .6rem 1.25rem;
  border-radius: var(--radius); font-size: .9rem; font-weight: 600;
  background: var(--c-surface); border: 1.5px solid var(--c-border);
  color: var(--c-accent); text-decoration: none; transition: all .2s;
}
.pagination-btn:hover:not(.is-disabled) { background: var(--c-accent); color: #fff; border-color: var(--c-accent); text-decoration: none; }
.pagination-btn.is-disabled { color: var(--c-text-muted); pointer-events: none; opacity: .5; }
.pagination-info { font-size: .875rem; color: var(--c-text-muted); font-weight: 500; text-align: center; }

/* ── Partners ───────────────────────────────────────────────── */
.section-partners { padding: var(--section-pad) 0; background: var(--c-bg); }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.partner-card {
  display: flex; flex-direction: column; background: var(--c-surface);
  border: 1.5px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; color: var(--c-text);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  animation-delay: var(--delay, 0ms);
}
.partner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--c-accent); text-decoration: none; color: var(--c-text); }
.partner-logo-wrap { padding: 2rem; background: var(--c-bg); display: flex; align-items: center; justify-content: center; min-height: 120px; }
.partner-logo { max-height: 60px; max-width: 200px; object-fit: contain; }
.partner-logo-text { font-family: var(--f-display); font-size: 1.8rem; color: var(--c-text-muted); }
.partner-info { padding: 1.5rem; }
.partner-name { font-weight: 700; font-size: 1.1rem; margin-bottom: .4rem; }
.partner-desc { font-size: .875rem; color: var(--c-text-mid); margin-bottom: 1rem; }
.partner-cta  { font-size: .875rem; font-weight: 600; color: var(--c-accent); }
.sponsoo-cta  { text-align: center; }

/* ── Legal pages ────────────────────────────────────────────── */
.page-hero--legal { padding-block: 6rem 3rem; }
.section-legal { padding: var(--section-pad) 0; background: var(--c-bg); }
.legal-content {
  max-width: 720px; background: var(--c-surface); border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem); border: 1px solid var(--c-border);
}
.legal-content h2 {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: normal;
  margin: 2rem 0 .75rem; padding-top: 1rem; border-top: 1px solid var(--c-border); color: var(--c-text);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { font-size: 1rem; font-weight: 700; margin: 1.25rem 0 .5rem; color: var(--c-text); }
.legal-content p  { color: var(--c-text-mid); line-height: 1.75; margin-bottom: .75rem; }
.legal-content a  { color: var(--c-accent); }
.legal-content ul { margin: .75rem 0 1rem 1.5rem; list-style: disc; }
.legal-content ul li { color: var(--c-text-mid); margin-bottom: .4rem; }

/* ── 404 ────────────────────────────────────────────────────── */
.section-error { padding: 10rem 0; background: var(--c-surface); text-align: center; }
.error-code { font-family: var(--f-display); font-size: clamp(8rem, 20vw, 14rem); font-weight: normal; line-height: 1; color: var(--c-border); margin-bottom: 1rem; }
.error-title { font-family: var(--f-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: normal; margin-bottom: 1rem; }
.error-text { color: var(--c-text-mid); margin-bottom: 2.5rem; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--c-text); color: rgba(255,255,255,.75); padding: 4rem 0 0; }
.footer-inner {
  width: min(1200px, 100% - 2rem); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 2.5fr; gap: 4rem; padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.footer-brand .footer-logo {
  font-family: var(--f-display); font-size: 2.5rem;
  display: inline-flex; align-items: center; gap: .25rem;
  text-decoration: none; margin-bottom: 1rem;
}
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.4); line-height: 1.6; max-width: 28ch; }

.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 2rem; }
.footer-col-title { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-social-link { display: flex; align-items: center; gap: .5rem; }
.footer-social-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Standalone Domain CTA ─────────────────────────────────── */
.footer-domain-cta {
  grid-column: 1 / -1; /* Spans full width */
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2.5rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .footer-domain-cta {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 0.5rem;
    padding-top: 2rem;
  }
}

/* Domain CTA Inner Elements */
.footer-domain-pitch { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.55; margin-bottom: .85rem; }
.footer-domain-pitch strong { color: rgba(255,255,255,.85); font-weight: 600; }
.footer-domain-btn {
  display: inline-block; padding: .5rem 1rem; margin-bottom: .65rem;
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.2); border-radius: 6px;
  font-size: .8rem; font-weight: 600; text-decoration: none;
  transition: background .2s, border-color .2s;
}
.footer-domain-btn:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.45); text-decoration: none; color: #fff; }
.footer-domain-alt { font-size: .72rem; }
.footer-domain-alt a { color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; word-break: break-all; }
.footer-domain-alt a:hover { color: rgba(255,255,255,.7); }

/* ── Footer Bottom ─────────────────────────────────────────── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0;
  width: min(1200px, 100% - 2rem); margin-inline: auto;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.3); line-height: 1.6; }

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }

/* ── Utilities ──────────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
  :root { --section-pad: 3.5rem; }
  .hero-inner { padding-block: 3.5rem 3rem; }
  .hero-eyebrow { margin-bottom: 1rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero-scroll-hint { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .who-layout { gap: 2.5rem; }
  .twin-cards { gap: 1rem; }
  .twin-card  { max-width: none; }
  .socials-strip { gap: .75rem; }
  .social-tile { padding: 1.5rem 1rem; }
  .collab-card { padding: 2rem 1.5rem; }
  .collab-ctas { flex-direction: column; }
  .collab-ctas .btn { justify-content: center; }
  .profiles-grid { grid-template-columns: 1fr 1fr; }
  .profile-connector { display: none; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .age-card { gap: 1rem; padding: 1.25rem; }
  .age-badge { width: 64px; height: 64px; font-size: 1.4rem; }
  .follow-row { gap: .5rem; }
  .follow-btn { padding: .6rem 1rem; font-size: .82rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .footer-inner { gap: 2rem; }
  .footer-cols  { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .back-to-top  { bottom: 1rem; right: 1rem; width: 40px; height: 40px; }
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, #page-loader, .hero-ice-lines, .back-to-top { display: none; }
  body { background: #fff; color: #000; }
}
