/* ============================================================
   Miles and Melodies — Design System
   Matched to the base44 mockup
   Forest green + cream + terracotta · dark default + light mode
   ============================================================ */

/* ---------- Theme tokens (DARK = default) ---------- */
:root {
  --bg:        #1B2C24;   /* deep forest */
  --bg-2:      #213429;   /* raised surface / card */
  --bg-3:      #182520;   /* recessed */
  --ink:       #FBF8F4;   /* cream text */
  --ink-2:     #E4E0D6;
  --muted:     #9BA89E;   /* muted green-grey */
  --sand:      #C2B68F;   /* warm sand — palette Chart 3 family, for subtext */
  --accent:    #BB6644;   /* terracotta */
  --accent-2:  #CB7755;
  --secondary: #4B5852;
  --line:      rgba(251, 248, 244, 0.12);
  --line-2:    rgba(251, 248, 244, 0.24);
  --ghost:     rgba(251, 248, 244, 0.045);  /* marquee + giant footer */
  --shadow:    0 30px 70px -30px rgba(0, 0, 0, 0.7);
  --maxw:      1360px;
  --pad:       clamp(1.15rem, 4vw, 3.25rem);
  --nav-h:     76px;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-slab:    "Roboto Slab", Georgia, serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="light"] {
  --bg:        #FBF8F4;
  --bg-2:      #F4EFE6;
  --bg-3:      #F8F4EC;
  --ink:       #1B2C24;
  --ink-2:     #2A3A31;
  --muted:     #4B5852;
  --sand:      #6E6442;
  --accent:    #BB6644;
  --accent-2:  #A8542F;
  --secondary: #4B5852;
  --line:      #DEDAD3;
  --line-2:    #CFC9BF;
  --ghost:     rgba(27, 44, 36, 0.06);
  --shadow:    0 30px 70px -34px rgba(27, 44, 36, 0.4);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3.5rem, 9vw, 8rem); }
.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; }
.display { font-family: var(--font-display); font-weight: 800; line-height: 0.92; letter-spacing: -0.04em; }
.slab { font-family: var(--font-slab); font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; }
.label {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600; color: var(--muted);
}
.lead { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 46ch; line-height: 1.65; }
.hl { color: var(--accent); }

/* ---------- Scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--accent); z-index: 200; transition: width 0.1s linear; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.45s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav.hidden { transform: translateY(-100%); }
.nav__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; }
.nav__links { display: flex; gap: clamp(1.1rem, 2.4vw, 2.4rem); align-items: center; }
.nav__links--right { justify-self: end; }
.nav__link {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--muted); position: relative; padding-block: 0.4rem; transition: color 0.25s var(--ease);
}
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--accent); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.brand { justify-self: center; display: inline-flex; align-items: center; }
.brand__mark {
  font-family: var(--font-display); font-weight: 900; letter-spacing: -0.04em; font-size: 1.05rem;
  color: var(--ink); padding: 0.32rem 0.55rem; border-radius: 7px; background: transparent;
}
.brand__mark .amp { color: var(--accent); }

.icon-btn { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--ink); transition: background 0.25s var(--ease); }
.icon-btn:hover { background: var(--bg-2); }
.icon-btn svg { width: 19px; height: 19px; }
.theme-toggle .moon { display: none; }
[data-theme="dark"] .theme-toggle .sun, :root .theme-toggle .sun { display: block; }
[data-theme="light"] .theme-toggle .sun { display: none; }
[data-theme="light"] .theme-toggle .moon { display: block; }
.burger { display: none; }

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 150; background: var(--bg); display: flex; flex-direction: column; justify-content: center; padding: var(--pad); transform: translateY(-100%); transition: transform 0.55s var(--ease); visibility: hidden; }
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 11vw, 3.6rem); letter-spacing: -0.03em; padding-block: 0.3rem; color: var(--ink); opacity: 0; transform: translateY(20px); }
.mobile-menu a[aria-current="page"] { color: var(--accent); }
.mobile-menu.open a { animation: menuIn 0.6s var(--ease) forwards; }
.mobile-menu.open a:nth-child(2) { animation-delay: 0.06s; }
.mobile-menu.open a:nth-child(3) { animation-delay: 0.12s; }
.mobile-menu.open a:nth-child(4) { animation-delay: 0.18s; }
.mobile-menu.open a:nth-child(5) { animation-delay: 0.24s; }
.mobile-menu.open a:nth-child(6) { animation-delay: 0.30s; }
.mobile-menu.open a:nth-child(7) { animation-delay: 0.36s; }
.mobile-menu .mm-close { position: absolute; top: 16px; right: var(--pad); }
@keyframes menuIn { to { opacity: 1; transform: translateY(0); } }

/* ---------- Hero (home) ---------- */
.hero { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding-top: calc(var(--nav-h) + clamp(1.5rem, 5vw, 3rem)); padding-bottom: clamp(2.5rem, 8vw, 6rem); }
.hero > .wrap { width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1.5fr 0.85fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.hero__word { font-size: clamp(3rem, 11.5vw, 10rem); }
.hero__word .ln { display: block; overflow: hidden; }
.hero__word .ln > span { display: block; transform: translateY(110%); }
.reveal-line > span { transition: transform 0.95s var(--ease); }
.is-loaded .reveal-line > span { transform: translateY(0); }
.is-loaded .reveal-line:nth-child(2) > span { transition-delay: 0.07s; }
.is-loaded .reveal-line:nth-child(3) > span { transition-delay: 0.14s; }
.fade-up-load { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease) 0.35s, transform 0.9s var(--ease) 0.35s; }
.is-loaded .fade-up-load { opacity: 1; transform: none; }

.hero__aside { display: flex; flex-direction: column; align-items: flex-end; gap: 1.4rem; }
.hero__photo {
  width: 100%; max-width: 430px; aspect-ratio: 1 / 1.18; overflow: hidden; background: var(--bg-2);
  border-radius: 49% 51% 41% 59% / 60% 57% 43% 40%;
  animation: blob 16s ease-in-out infinite; box-shadow: var(--shadow);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
@keyframes blob {
  0%,100% { border-radius: 49% 51% 41% 59% / 60% 57% 43% 40%; }
  50%     { border-radius: 57% 43% 56% 44% / 53% 62% 38% 47%; }
}
.hero__note { max-width: 32ch; text-align: right; color: var(--sand); font-style: italic; font-size: 0.96rem; line-height: 1.6; }

/* ---------- Marquee (ghost) ---------- */
.marquee { overflow: hidden; padding-block: clamp(1rem, 3vw, 2.2rem); user-select: none; border-block: 1px solid var(--line); }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 34s linear infinite; }
.marquee__item { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 10vw, 8.5rem); letter-spacing: -0.04em; color: var(--ghost); white-space: nowrap; padding-right: 0.4em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section header ---------- */
.sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.sec-head h2 { font-size: clamp(2.1rem, 6vw, 4.6rem); }
.sec-head .label { margin-bottom: 1rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-top: calc(var(--nav-h) + clamp(2.5rem, 8vw, 6rem)); padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.page-hero h1 { font-size: clamp(2.6rem, 11vw, 8.4rem); max-width: 14ch; }
.page-hero .label { margin-bottom: 1.4rem; }
.page-hero .lead { margin-top: 1.6rem; }
.page-hero--center { text-align: center; }
.page-hero--center .lead { margin-inline: auto; }

/* ---------- Grid & destination cards ---------- */
.grid { display: grid; gap: clamp(1.4rem, 3vw, 2.4rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { display: block; }
.card__media { position: relative; overflow: hidden; border-radius: 0; background: var(--bg-2); aspect-ratio: 16 / 9; }
.card--wide .card__media { aspect-ratio: 16 / 11; }
.card--square .card__media { aspect-ratio: 1 / 1; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); will-change: transform; }
.card:hover .card__media img { transform: scale(1.06); }
.card__media .pill { position: absolute; left: 14px; top: 14px; }
.card__media .play { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: rgba(251,248,244,0.92); color: var(--bg); transition: transform 0.4s var(--ease), background 0.3s var(--ease); }
.card:hover .play { transform: scale(1.09); background: #fff; }
.play svg { width: 22px; height: 22px; margin-left: 3px; }

.card__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: 1rem; }
.card__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.05rem, 1.7vw, 1.4rem); letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 0.4rem; }
.card__title .arr { transition: transform 0.35s var(--ease); display: inline-flex; }
.card:hover .card__title .arr { transform: translate(4px, -4px); }
.card__meta { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.card__desc { margin-top: 0.5rem; color: var(--sand); font-style: italic; font-size: 0.95rem; max-width: 44ch; }

/* ---------- Featured destination (travel) ---------- */
.feature { display: grid; grid-template-columns: 1.2fr 0.85fr; gap: clamp(1.5rem, 5vw, 4.5rem); align-items: center; }
.feature:nth-child(even) { grid-template-columns: 0.85fr 1.2fr; }
.feature:nth-child(even) .feature__media { order: 2; }
.feature__media { position: relative; display: block; overflow: hidden; border-radius: 0; aspect-ratio: 16 / 9; background: var(--bg-2); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.feature:hover .feature__media img { transform: scale(1.05); }
.feature__overlay { position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s var(--ease); }
.feature__overlay::before { content: ""; position: absolute; inset: 0; background: rgba(17, 22, 15, 0.4); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.feature:hover .feature__overlay { opacity: 1; }
.feature__play { position: absolute; inset: 0; margin: auto; width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #fff; transform: scale(0.8); transition: transform 0.45s var(--ease); }
.feature:hover .feature__play { transform: scale(1); }
.feature__play svg { width: 27px; height: 27px; margin-left: 4px; }
.feature__yt { position: absolute; right: 16px; bottom: 16px; display: inline-flex; align-items: center; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; padding: 0.5rem 0.85rem; border-radius: 100px; background: rgba(17, 22, 15, 0.5); color: #F4EFE4; border: 1px solid rgba(244, 239, 228, 0.4); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transform: translateY(8px); transition: transform 0.45s var(--ease); }
.feature:hover .feature__yt { transform: translateY(0); }
.feature__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.5rem, 6.5vw, 5rem); letter-spacing: -0.04em; line-height: 0.95; margin: 0.8rem 0 1.4rem; }
.feature__body { color: var(--sand); font-style: italic; max-width: 44ch; line-height: 1.7; margin-bottom: 1.6rem; }

/* ---------- Pills & links ---------- */
.pill { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; padding: 0.42rem 0.7rem; border-radius: 100px; background: rgba(24, 37, 32, 0.55); color: #FBF8F4; border: 1px solid rgba(251, 248, 244, 0.4); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.btn { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 0.9rem; padding: 0.95rem 1.6rem; border-radius: 100px; background: var(--ink); color: var(--bg); transition: transform 0.3s var(--ease), background 0.3s var(--ease), gap 0.3s var(--ease); }
.btn:hover { gap: 0.95rem; background: var(--accent); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn--ghost:hover { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn svg { width: 17px; height: 17px; }

.arrow-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.95rem; color: var(--ink); transition: color 0.3s var(--ease); }
.arrow-link .arr { transition: transform 0.35s var(--ease); display: inline-flex; }
.arrow-link:hover { color: var(--accent); }
.arrow-link:hover .arr { transform: translate(4px, -4px); }
.arrow-link--accent { color: var(--accent); }
.arrow-link--accent:hover { color: var(--ink); }

/* ---------- Music album grid ---------- */
.album { cursor: pointer; display: block; text-align: left; width: 100%; }
.album__cover { position: relative; overflow: hidden; border-radius: 0; aspect-ratio: 1 / 1; background: var(--bg-3); }
.album__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.album:hover .album__cover img { transform: scale(1.05); }
.album__cover .play { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; opacity: 0; transform: scale(0.85); display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #fff; transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.album:hover .play { opacity: 1; transform: scale(1); }
.album__title { font-family: var(--font-slab); font-weight: 700; font-size: 1.12rem; margin-top: 1rem; }
.album__meta { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }

/* ---------- Reels grid (Instagram 9:16) ---------- */
.reel-scroll {
  max-height: 70vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: 12px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%);
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.reel-scroll::-webkit-scrollbar { width: 8px; }
.reel-scroll::-webkit-scrollbar-track { background: transparent; }
.reel-scroll::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 100px; }
.reel-scroll::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.reel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: clamp(0.8rem, 1.6vw, 1.4rem); padding-block: 6px; }
.reel { display: block; }
.reel__media { position: relative; overflow: hidden; border-radius: 0; aspect-ratio: 9 / 16; background: var(--bg-2); }
.reel__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.reel:hover .reel__media img { transform: scale(1.05); }
.reel__media .play { position: absolute; inset: 0; margin: auto; width: 54px; height: 54px; opacity: 0; transform: scale(0.85); display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #fff; transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.reel:hover .play { opacity: 1; transform: scale(1); }
.reel .play svg { width: 20px; height: 20px; margin-left: 2px; }
.reel__name { margin-top: 0.65rem; font-size: 0.85rem; font-weight: 500; color: var(--ink); transition: color 0.25s var(--ease); }
.reel:hover .reel__name { color: var(--accent); }
@media (max-width: 760px) { .reel-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 1.2rem; opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease); }
.modal.open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(10, 16, 13, 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.modal__box { position: relative; width: min(680px, 100%); max-height: 88vh; overflow-y: auto; background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow); transform: translateY(18px) scale(0.98); transition: transform 0.4s var(--ease); }
.modal.open .modal__box { transform: none; }
.modal__close { position: absolute; top: 14px; right: 14px; }
.modal__head { display: flex; gap: 1.5rem; align-items: flex-start; }
.modal__cover { width: 120px; height: 120px; flex: none; border-radius: 10px; object-fit: cover; background: var(--bg-3); }
.modal__title { font-family: var(--font-slab); font-weight: 700; font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.modal__year { color: var(--muted); font-size: 0.9rem; margin: 0.2rem 0 0.8rem; }
.modal__desc { color: var(--sand); font-style: italic; font-size: 0.95rem; line-height: 1.6; max-width: 42ch; }
.tracklist { margin-top: 1.8rem; }
.tracklist .label { margin-bottom: 0.8rem; display: block; }
.track { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 0; border-top: 1px solid var(--line); }
.track:last-child { border-bottom: 1px solid var(--line); }
.track__no { font-family: var(--font-slab); color: var(--muted); font-size: 0.85rem; width: 1.6rem; }
.track__name { font-weight: 500; }
.modal__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }

/* ---------- Journal article list ---------- */
.article { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; padding-block: clamp(2rem, 5vw, 3.5rem); border-top: 1px solid var(--line); }
.article:last-child { border-bottom: 1px solid var(--line); }
.article__media { overflow: hidden; border-radius: 0; aspect-ratio: 16 / 10; background: var(--bg-2); }
.article__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.article:hover .article__media img { transform: scale(1.05); }
.article__meta { display: flex; gap: 1rem; align-items: center; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.article__meta .cat { color: var(--accent); font-weight: 600; }
.article__meta .date { color: var(--muted); }
.article__title { font-family: var(--font-slab); font-weight: 700; font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.08; margin-bottom: 1rem; }
.article__excerpt { color: var(--sand); font-style: italic; line-height: 1.7; max-width: 52ch; margin-bottom: 1.4rem; }

/* ---------- Coming soon (work) ---------- */
.soon { text-align: center; max-width: 40ch; margin-inline: auto; padding-block: clamp(2rem, 6vw, 4rem); }
.soon__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); margin: 0 auto clamp(2rem, 6vw, 3.5rem); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } }
.soon h2 { font-family: var(--font-slab); font-weight: 700; font-size: clamp(1.8rem, 4.5vw, 2.6rem); margin-bottom: 1.2rem; letter-spacing: -0.01em; }
.soon p { color: var(--muted); line-height: 1.7; margin-bottom: 1.8rem; }

/* ---------- CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.9rem, 5.5vw, 4.2rem); margin-bottom: 1.5rem; }
.cta-band .lead { margin-inline: auto; margin-bottom: 2.2rem; }

/* ---------- Footer ---------- */
.footer { padding-top: clamp(3rem, 7vw, 5rem); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: clamp(2.5rem, 7vw, 4.5rem); }
.footer__col h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 1.2rem; }
.footer__col a, .footer__col p { display: block; padding-block: 0.32rem; color: var(--ink-2); transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__word { font-family: var(--font-display); font-weight: 900; font-size: clamp(4.5rem, 30vw, 26rem); line-height: 0.78; color: var(--ghost); user-select: none; letter-spacing: -0.05em; }
.footer__word .amp { color: var(--accent); opacity: 0.5; }
.footer__bar { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-block: 1.8rem; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--muted); margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.footer__bar .links { display: flex; gap: 1.6rem; }
.footer__bar a:hover { color: var(--accent); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__aside { align-items: flex-start; }
  .hero__photo { max-width: 320px; }
  .hero__note { text-align: left; }
  .feature, .feature:nth-child(even) { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature__media { order: 0; }
  .article { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  :root { --nav-h: 64px; }
  .nav__links--left { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .brand { justify-self: start; }
  .burger { display: inline-grid; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .hero__aside { align-items: center; }
  .hero__note { text-align: center; }
  .modal__head { flex-direction: column; }
  .footer__cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .sec-head { flex-direction: column; align-items: flex-start; }
}
@media (min-width: 761px) { .burger, .mobile-menu { display: none; } }
