/* ═══════════════════════════════════════════════════════════════
   GOOD MORNING CAMPAIGN — Design System v5
   Structure  : Loro Piana
   Motion     : Rolls-Royce
   Typography : Brunello Cucinelli
   Colour     : Drawn from the GMC logo
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand — from logo: sky-blue wings + sun-gold fist */
  --sky:        #6FC4E8;
  --sky-mid:    #2FA8D8;
  --sky-dark:   #1A7FB5;
  --sun:        #F5C842;
  --sun-mid:    #D4A017;
  --sun-dark:   #A67B00;

  /* Ink scale */
  --ink:        #0A0A0A;
  --ink-90:     #141414;
  --ink-80:     #1C1C1E;
  --ink-60:     #3D3D40;
  --ink-40:     #6B6B70;
  --ink-20:     #AEAEB4;
  --ink-10:     #D1D1D8;

  /* Warm editorial palette */
  --white:      #FFFFFF;
  --paper:      #F5F2EB;   /* Quality paper — warm off-white */
  --paper-mid:  #EAE6DC;
  --border:     #D8D4CB;
  --border-lt:  #E8E4DC;

  /* Type */
  --serif:      'Fraunces', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;

  /* Fluid type scale */
  --fs-display: clamp(56px, 7vw, 108px);
  --fs-hero:    clamp(42px, 5.5vw, 80px);
  --fs-title:   clamp(32px, 4vw, 58px);
  --fs-sub:     clamp(22px, 2.8vw, 38px);
  --fs-lead:    clamp(17px, 1.6vw, 21px);
  --fs-body:    17px;
  --fs-small:   14px;
  --fs-label:   11px;

  /* Spacing */
  --sec:        clamp(80px, 10vw, 160px);
  --sec-sm:     clamp(56px, 7vw, 100px);
  --gutter:     clamp(24px, 5vw, 80px);

  /* Layout */
  --max:        1360px;
  --max-text:   800px;
  --max-narrow: 600px;

  /* Motion */
  --spring:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease:       cubic-bezier(0.45, 0, 0.55, 1);
  --dur:        0.85s;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  color: var(--ink-60);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ── TOPBAR ────────────────────────────────────────────────── */
.topbar {
  background: var(--ink-90);
  color: rgba(255,255,255,0.50);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px var(--gutter);
  position: relative;
  z-index: 300;
}
.topbar .hl { color: var(--sun); font-style: normal; }

/* ── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background 0.5s var(--ease),
              backdrop-filter 0.5s var(--ease),
              box-shadow 0.5s var(--ease),
              top 0.4s var(--ease);
}
.nav--scrolled {
  top: 0;
  background: rgba(10, 10, 10, 0.90);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}
/* Topbar present: offset nav by topbar height — but not once scrolled */
body:has(.topbar) .nav:not(.nav--scrolled) { top: 36px; }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 4px;
}
.nav-brand-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  transition: color 0.25s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--sky); }
.nav-links .nav-cta {
  border: 1px solid rgba(255,255,255,0.28);
  padding: 8px 20px;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.10em;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.nav-links .nav-cta:hover {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--ink);
}

/* ── LAYOUT CONTAINERS ─────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-text  { max-width: var(--max-text);   margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow{ max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--gutter); }

/* Section padding */
.sec        { padding: var(--sec) 0; }
.sec-sm     { padding: var(--sec-sm) 0; }

/* Background variants */
.bg-ink   { background: var(--ink); }
.bg-dark  { background: var(--ink-90); }
.bg-paper { background: var(--paper); }
.bg-white { background: var(--white); }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.t-display {
  font-family: var(--serif);
  font-size: var(--fs-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink-80);
}
.t-hero {
  font-family: var(--serif);
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink-80);
}
.t-title {
  font-family: var(--serif);
  font-size: var(--fs-title);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink-80);
}
.t-sub {
  font-family: var(--serif);
  font-size: var(--fs-sub);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink-60);
}
.t-lead {
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-40);
}
.t-body  { font-size: var(--fs-body); line-height: 1.78; color: var(--ink-60); }
.t-small { font-size: var(--fs-small); line-height: 1.6; color: var(--ink-40); }

/* White variants (for dark backgrounds) */
.on-dark .t-display,
.on-dark .t-hero,
.on-dark .t-title,
.on-dark .t-sub    { color: var(--white); }
.on-dark .t-lead   { color: rgba(255,255,255,0.60); }
.on-dark .t-body   { color: rgba(255,255,255,0.55); }
.on-dark .t-small  { color: rgba(255,255,255,0.38); }

/* Process list on dark backgrounds */
.on-dark .process-list  { border-color: rgba(255,255,255,0.08); }
.on-dark .process-item  { border-color: rgba(255,255,255,0.08); }
.on-dark .process-title { color: var(--sun); }
.on-dark .process-body  { color: rgba(255,255,255,0.55); }

/* Italic serif accent — references logo energy */
em { font-family: var(--serif); font-style: italic; color: var(--sun); }
.on-dark em { color: var(--sun); }

/* Section label — chapter marker, RR/Brunello style */
.label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--sky);          /* Logo wing colour */
  margin-bottom: 28px;
}
.label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--sky);     /* Logo wing colour */
  flex-shrink: 0;
}
.label--sun { color: var(--sun); }
.label--sun::before { background: var(--sun); }
.label--white { color: rgba(255,255,255,0.45); }
.label--white::before { background: rgba(255,255,255,0.30); }

/* Pull quote */
.quote-block {
  text-align: center;
  padding: var(--sec) var(--gutter);
}
.quote-block blockquote {
  font-family: var(--serif);
  font-size: var(--fs-sub);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  max-width: var(--max-text);
  margin: 0 auto 24px;
  color: var(--ink-80);
}
.quote-block cite {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-20);
}
.quote-block--sun blockquote { color: var(--sun); }
.quote-block--white blockquote { color: rgba(255,255,255,0.90); }
.quote-block--white cite { color: rgba(255,255,255,0.30); }

/* Drop cap */
.drop-cap::first-letter {
  font-family: var(--serif);
  font-size: 5em;
  font-weight: 400;
  line-height: 0.78;
  float: left;
  margin: 0.04em 0.10em 0 0;
  color: var(--ink-80);
}

/* Thin rule */
.rule {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 0;
}
.rule--sun { border-color: var(--sun); opacity: 0.35; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.3s var(--spring);
  white-space: nowrap;
}
.btn svg, .btn .arrow { transition: transform 0.3s var(--spring); }
.btn:hover .arrow    { transform: translateX(5px); }

.btn-sun {
  background: var(--sun);
  color: var(--ink);
  padding: 17px 36px;
}
.btn-sun:hover { background: var(--sun-mid); }

.btn-ink {
  background: var(--ink);
  color: var(--white);
  padding: 17px 36px;
}
.btn-ink:hover { background: var(--ink-60); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.80);
  padding: 16px 35px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.75); color: #fff; }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--ink-60);
  padding: 16px 35px;
}
.btn-outline:hover { border-color: var(--ink-60); color: var(--ink); }

.btn-text {
  color: var(--ink-40);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 0;
  gap: 10px;
}
.btn-text:hover { color: var(--ink); }

/* ── HERO — Homepage ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 clamp(60px, 8vw, 120px);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  margin-top: -10%;
  opacity: 0.45;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.55) 45%,
    rgba(10,10,10,0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 28px;
}
.hero-kicker span { color: var(--sky); }
.hero-title {
  font-family: var(--serif);
  font-size: var(--fs-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 36px;
}
.hero-title em { color: var(--sun); font-style: italic; }
.hero-rule {
  width: 56px;
  height: 2px;
  background: var(--sky);    /* Logo wing line */
  margin-bottom: 28px;
}
.hero-lead {
  font-size: var(--fs-lead);
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: clamp(32px, 5vw, 56px);
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.22);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.20), transparent);
  animation: scrollline 1.8s ease-in-out infinite;
}
@keyframes scrollline {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Stats strip in hero */
.hero-stats {
  display: flex;
  gap: clamp(32px, 5vw, 72px);
  padding-top: 48px;
  margin-top: 48px;
  border-top: 0.5px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--sun);         /* Logo hand colour */
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  margin-top: 6px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 72vh;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 clamp(60px, 8vw, 100px);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero-ph {
  width: 100%;
  height: 340px;
  border: 0.5px solid rgba(255,255,255,0.10);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.20);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  overflow: hidden;
}

/* ── EDITORIAL SECTIONS ────────────────────────────────────── */

/* Full-bleed image section */
.ed-full {
  position: relative;
  overflow: hidden;
}
.ed-full-img {
  position: relative;
  overflow: hidden;
}
.ed-full-img img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  display: block;
  margin-top: -15%;
}
.ed-full-overlay {
  position: absolute;
  inset: 0;
}
.ed-full-content {
  position: absolute;
  z-index: 2;
  bottom: clamp(48px, 7vw, 100px);
  left: 0; right: 0;
  padding: 0 var(--gutter);
}

/* Editorial split — image + text */
.ed-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ed-split--rev { direction: rtl; }
.ed-split--rev > * { direction: ltr; }
.ed-split__img {
  position: relative;
  overflow: hidden;
  min-height: clamp(400px, 55vw, 700px);
}
.ed-split__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  margin-top: -5%;
}
.ed-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 7vw, 110px) clamp(48px, 5vw, 88px);
}

/* Editorial numbered list — Brunello/RR process style */
.process-list { border-top: 0.5px solid var(--border); }
.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 0.5px solid var(--border);
  align-items: start;
}
.process-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--sky);          /* Logo colour */
  letter-spacing: 0.04em;
  padding-top: 5px;
}
.process-title {
  font-family: var(--serif);
  font-size: var(--fs-sub);
  font-weight: 400;
  color: var(--ink-80);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.process-body {
  font-size: var(--fs-body);
  color: var(--ink-40);
  line-height: 1.75;
  max-width: 600px;
}

/* Dark process list variant */
.process-list--dark { border-color: rgba(255,255,255,0.08); }
.process-list--dark .process-item { border-color: rgba(255,255,255,0.08); }
.process-list--dark .process-title { color: var(--white); }
.process-list--dark .process-body  { color: rgba(255,255,255,0.48); }

/* Editorial stats — typographic */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 0.5px solid var(--border);
}
.stat-cell {
  padding: 40px 0;
  border-bottom: 0.5px solid var(--border);
  padding-right: 32px;
}
.stat-cell + .stat-cell {
  padding-left: 32px;
  border-left: 0.5px solid var(--border);
  padding-right: 0;
}
@media (max-width: 600px) {
  .stat-cell + .stat-cell { border-left: none; padding-left: 0; }
}
.stat-n {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  color: var(--sun);          /* Logo colour */
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.stat-l {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-40);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* Dark variant */
.stat-row--dark { border-color: rgba(255,255,255,0.08); }
.stat-row--dark .stat-cell { border-color: rgba(255,255,255,0.08); }
.stat-row--dark .stat-cell + .stat-cell { border-color: rgba(255,255,255,0.08); }
.stat-row--dark .stat-l { color: rgba(255,255,255,0.38); }

/* Two-column editorial text */
.ed-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.ed-two-col__lead {
  font-family: var(--serif);
  font-size: var(--fs-sub);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink-80);
  letter-spacing: -0.01em;
}

/* Post / article list — Journal */
.post-list { display: flex; flex-direction: column; }
.post-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 0.5px solid var(--border);
  align-items: start;
  text-decoration: none;
  transition: opacity 0.25s;
}
.post-item:first-child { border-top: 0.5px solid var(--border); }
.post-item:hover { opacity: 0.65; }
.post-date {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-20);
  letter-spacing: 0.04em;
  padding-top: 3px;
}
.post-title {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 400;
  color: var(--ink-80);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.post-excerpt {
  font-size: 14px;
  color: var(--ink-40);
  line-height: 1.6;
}
.post-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-dark);
  background: rgba(111,196,232,0.08);
  padding: 5px 10px;
  white-space: nowrap;
  align-self: start;
}

/* Featured article */
.feat-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: var(--sec) 0;
}
.feat-article__img {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.feat-article__img img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
  margin-top: -5%;
}

/* ── IMAGE PLACEHOLDER ─────────────────────────────────────── */
.img-ph {
  background: var(--paper);
  border: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-20);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.img-ph-icon { font-size: 24px; }

/* ── MARQUEE ───────────────────────────────────────────────── */
.marquee {
  background: var(--ink-90);
  overflow: hidden;
  padding: 18px 0;
  border-top: 0.5px solid rgba(255,255,255,0.06);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 0 48px;
  flex-shrink: 0;
}
.marquee-track em { color: var(--sky); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── CONTACT FORM ──────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-80);
  background: var(--paper);
  border: 0.5px solid var(--border);
  padding: 14px 18px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--sky); }
.field textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: clamp(64px, 8vw, 100px) var(--gutter) 40px;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.50);
  line-height: 1.5;
}
.footer-col h5 {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.88); }
.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
}

/* ── MOTION UTILITIES ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity var(--dur) var(--spring),
              transform var(--dur) var(--spring);
}
[data-reveal="up"]    { transform: translateY(48px); }
[data-reveal="scale"] { transform: scale(0.96) translateY(24px); }
[data-reveal="fade"]  {}
[data-reveal].visible { opacity: 1; transform: none; }

[data-delay="1"] { transition-delay: 0.10s; }
[data-delay="2"] { transition-delay: 0.22s; }
[data-delay="3"] { transition-delay: 0.36s; }
[data-delay="4"] { transition-delay: 0.52s; }
[data-delay="5"] { transition-delay: 0.70s; }

/* ── MERCHANDISE (product page) ────────────────────────────── */
.m-hero {
  min-height: 100vh;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 130px var(--gutter) 80px;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.m-hero-img {
  position: relative;
  height: 76vh;
  overflow: hidden;
  border-radius: 2px;
}
.m-hero-img img {
  width: 100%; height: 120%;
  object-fit: cover; object-position: top center;
  display: block; margin-top: -10%;
}
.m-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 0.5px solid rgba(255,255,255,0.15);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.36);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.m-spec-list { border-top: 0.5px solid var(--border-lt); }
.m-spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--border-lt);
  align-items: baseline;
}
.m-spec-key {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-20);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.m-spec-val { font-size: 15px; color: var(--ink-80); line-height: 1.6; }

/* ── INSTAGRAM PAGE ────────────────────────────────────────── */
.ig-handle-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 0.5px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-60);
  transition: border-color 0.2s, color 0.2s;
}
.ig-handle-chip:hover { border-color: var(--sky); color: var(--ink); }

/* ── APPROVED BADGE ────────────────────────────────────────── */
.approved-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(111,196,232,0.08);
  border: 0.5px solid rgba(111,196,232,0.25);
  font-size: 11px;
  font-weight: 600;
  color: var(--sky-dark);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ── SPACING HELPERS ───────────────────────────────────────── */
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

/* ── HAMBURGER BUTTON ──────────────────────────────────────── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  z-index: 251;
  position: relative;
  padding: 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.nav-toggle svg { display: block; flex-shrink: 0; width: 22px; height: 16px; }
.nav-toggle svg rect {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-box: fill-box;
  transform-origin: center;
}

/* Nav tap-outside overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 149;
  cursor: pointer;
}
.nav--open .nav-overlay { display: block; }

/* ── RESPONSIVE ────────────────────────────────────────────── */

/* ─ 1024px ─ */
@media (max-width: 1024px) {
  .ed-split, .feat-article { grid-template-columns: 1fr; }
  .feat-article { gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ─ 768px ─ */
@media (max-width: 768px) {
  /* Show hamburger — !important overrides any conflicting rule */
  .nav-toggle { display: flex !important; }

  /* Hide nav links completely on mobile */
  .nav-links { display: none; }

  /* Full-screen panel when nav is open */
  .nav--open .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100vh;
    height: 100dvh;
    bottom: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 36px 48px;
    gap: 0;
    z-index: 250;
    overflow-y: auto;
    box-shadow: -4px 0 40px rgba(0,0,0,0.4);
  }

  /* All links shown inside the open panel */
  .nav--open .nav-links a {
    display: block !important;
    font-size: 14px;
    letter-spacing: 0.12em;
    padding: 16px 0;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    width: 100%;
    white-space: normal;
  }
  .nav--open .nav-links a:hover  { color: #fff; }
  .nav--open .nav-links a.active { color: var(--sky); }
  .nav--open .nav-links .nav-cta {
    border: 1px solid rgba(255,255,255,0.28) !important;
    border-bottom: 1px solid rgba(255,255,255,0.28) !important;
    padding: 14px 24px !important;
    text-align: center;
    margin-top: 28px;
  }

  /* KEY FIX: collapse all inline grid columns to single column */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* KEY FIX: kill sticky positioning on mobile — prevents text overlap
     when a 2-col grid collapses to one column */
  [style*="position:sticky"],
  [style*="position: sticky"] {
    position: static !important;
    top: auto !important;
  }

  /* Layout components */
  .ed-two-col { grid-template-columns: 1fr; }
  .m-hero     { grid-template-columns: 1fr; padding-top: 100px; }
  .m-hero-img { height: 55vw; min-height: 260px; }
  .ed-split__img  { min-height: 440px; }
  .ed-split__body { padding: clamp(40px,6vw,60px) var(--gutter); }

  /* Process list — tighter on mobile */
  .process-item { gap: 20px; padding: 32px 0; }

  /* Stats */
  .stat-cell + .stat-cell { border-left: none; padding-left: 0; }

  /* Post items */
  .post-item { grid-template-columns: 80px 1fr; }
  .post-tag  { display: none; }

  /* Hero scroll indicator */
  .hero-scroll { display: none; }

  /* Button groups — stack vertically */
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ─ 600px ─ */
@media (max-width: 600px) {
  .post-item  { grid-template-columns: 1fr; }
  .post-date  { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .m-spec-row { grid-template-columns: 1fr; gap: 4px; }
  .stat-cell + .stat-cell { border-left: none; padding-left: 0; }
}

/* ─ 400px — very small phones ─ */
@media (max-width: 400px) {
  .nav-brand-name { display: none; }
}
