/* ============================================
   BEYOND IMAGE FITNESS COACHING
   Black / Gold / Silver — luxury athletic
   ============================================ */

:root {
  /* Palette */
  --bg: #0a0a0a;
  --bg-elev: #131313;
  --bg-elev-2: #1a1a1a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --ink: #f5f5f5;
  --ink-mute: #a5a5a5;
  --ink-dim: #6f6f6f;

  --gold: #d4af5c;
  --gold-bright: #e8c574;
  --gold-deep: #a8843a;
  --silver: #d9d9d9;

  /* Type scale (fluid) */
  --text-xs: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --text-sm: clamp(0.82rem, 0.8rem + 0.15vw, 0.9rem);
  --text-base: 1rem;
  --text-lg: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.4rem, 1.1rem + 1.2vw, 1.85rem);
  --text-2xl: clamp(1.9rem, 1.4rem + 2.4vw, 2.9rem);
  --text-hero: clamp(2.75rem, 1.6rem + 6vw, 6.5rem);

  /* Spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-32: 128px;

  --container: 1240px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  --shadow-gold: 0 12px 40px -12px rgba(212, 175, 92, 0.35);
  --shadow-hard: 0 20px 60px -20px rgba(0, 0, 0, 0.8);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: var(--text-base);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Display font for headlines — condensed, editorial, athletic */
.display,
h1, h2, h3 {
  font-family: 'Anton', 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.serif {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}

.section-title {
  font-size: var(--text-2xl);
  line-height: 0.95;
  margin-top: var(--s-4);
}

.section-lead {
  font-size: var(--text-lg);
  color: var(--ink-mute);
  max-width: 62ch;
  margin-top: var(--s-6);
  line-height: 1.55;
}

/* Gold gradient text (used sparingly) */
.gold-text {
  background: linear-gradient(180deg, #f0d488 0%, #d4af5c 45%, #a8843a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s, background 0.25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #e8c574 0%, #d4af5c 55%, #a8843a 100%);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px -12px rgba(212, 175, 92, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn svg { width: 16px; height: 16px; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 0 8px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 10, 10, 0.88);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 330px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text .brand-name {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.brand-text .brand-sub {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 6px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color 0.2s;
  font-weight: 500;
}
.nav a:hover { color: var(--gold); }
.header .btn { padding: 12px 20px; }

@media (max-width: 860px) {
  .nav { display: none; }
  .brand-text { display: none; }
  .brand img { height: 228px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 0;
  padding: 350px 0 60px;
  display: block;
  overflow: hidden;
}
@media (max-width: 860px) {
  .hero { padding: 240px 0 40px; }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 85% 30%, rgba(212, 175, 92, 0.12), transparent 60%),
    radial-gradient(800px 400px at 10% 90%, rgba(212, 175, 92, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-copy {
  max-width: 620px;
}
.hero-title {
  font-size: var(--text-hero);
  line-height: 0.9;
  margin-top: 28px;
  letter-spacing: -0.005em;
}
.hero-title .line-2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 6px;
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--ink-mute);
  margin-top: 28px;
  line-height: 1.55;
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta-item .num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold);
  line-height: 1;
}
.hero-meta-item .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-top: 8px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.55) 100%);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  z-index: 2;
}
.hero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  flex-shrink: 0;
}
.hero-badge-text {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.hero-badge-text span {
  color: var(--ink-mute);
  font-weight: 400;
  display: block;
  margin-top: 3px;
  letter-spacing: 0.08em;
  font-size: 10.5px;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 3 / 4; max-width: 480px; margin: 0 auto; }
  .hero-meta { gap: 24px; flex-wrap: wrap; }
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: #050505;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
}
.marquee-item::after {
  content: '★';
  color: var(--gold);
  font-size: 14px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   PILLARS / PHILOSOPHY
   ============================================ */
.pillars {
  background: linear-gradient(180deg, var(--bg) 0%, #060606 100%);
}
.pillars-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.pillars-header .eyebrow { justify-content: center; }
.pillars-header .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.pillars-header .section-lead { margin-left: auto; margin-right: auto; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pillar {
  padding: 48px 36px;
  background: var(--bg-elev);
  position: relative;
  transition: background 0.3s;
}
.pillar:hover { background: var(--bg-elev-2); }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.8;
}
.pillar-title {
  font-size: var(--text-xl);
  margin-top: 24px;
}
.pillar-copy {
  color: var(--ink-mute);
  margin-top: 16px;
  line-height: 1.6;
  font-size: 15px;
}
@media (max-width: 820px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ABOUT / COACH
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}
.about-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.6;
}
.about-visual-wrap {
  position: relative;
  max-width: 480px;
}
.about-title {
  font-size: var(--text-2xl);
  line-height: 0.95;
}
.about-title .accent {
  color: var(--gold);
}
.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.55rem);
  font-style: italic;
  color: var(--ink);
  margin-top: 28px;
  line-height: 1.4;
}
.about-body {
  color: var(--ink-mute);
  margin-top: 24px;
  line-height: 1.7;
}
.about-body p + p { margin-top: 16px; }
.about-sig {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-sig-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
}
.about-sig-role {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-dim);
  text-transform: uppercase;
  border-left: 1px solid var(--line-strong);
  padding-left: 16px;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual-wrap { margin: 0 auto; }
}

/* ============================================
   TRANSFORMATIONS
   ============================================ */
.transforms {
  background: #060606;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.transforms-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}
.transforms-header-copy { max-width: 620px; }

.transforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.transform-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.transform-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.transform-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.transform-name {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.transform-time {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}
.transform-ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}
.ba-col-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ink-dim);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.ba-col-text {
  color: var(--ink-mute);
  font-size: 14px;
  line-height: 1.5;
}
.ba-col.after .ba-col-label { color: var(--gold); }
.ba-col.after .ba-col-text { color: var(--ink); }
.ba-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-weight: 700;
  flex-shrink: 0;
}
.transform-quote {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}
@media (max-width: 760px) {
  .transforms-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS (quotes)
   ============================================ */
.testis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.testi-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--gold);
  line-height: 0.8;
  height: 32px;
  opacity: 0.7;
}
.testi-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 2px;
}
.testi-body {
  color: var(--ink);
  line-height: 1.6;
  margin-top: 16px;
  font-size: 15.5px;
  flex-grow: 1;
}
.testi-foot {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-elev-2), var(--bg));
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.05em;
}
.testi-who .n {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.testi-who .r {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 3px;
}
@media (max-width: 900px) { .testis-grid { grid-template-columns: 1fr; } }

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: linear-gradient(180deg, #060606 0%, var(--bg) 100%);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.process-visual {
  position: sticky;
  top: 120px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-visual img { width: 100%; height: 100%; object-fit: cover; }
.process-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.7));
}
.steps { margin-top: 32px; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
}
.step-title {
  font-size: var(--text-lg);
  color: var(--ink);
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.step-copy {
  color: var(--ink-mute);
  margin-top: 10px;
  line-height: 1.6;
  font-size: 15px;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-visual { position: static; max-width: 460px; margin: 0 auto; }
}

/* ============================================
   CTA / APPLY
   ============================================ */
.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 50% 30%, rgba(212, 175, 92, 0.18), transparent 60%),
    linear-gradient(180deg, #050505, var(--bg));
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 64px);
  background: rgba(19, 19, 19, 0.6);
  backdrop-filter: blur(12px);
}
.cta-title {
  font-size: var(--text-2xl);
  line-height: 0.95;
  margin-top: 20px;
}
.cta-title .l2 {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  text-transform: none;
  font-weight: 500;
  margin-top: 6px;
}
.cta-lead {
  color: var(--ink-mute);
  margin-top: 24px;
  font-size: var(--text-lg);
  line-height: 1.55;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-eyebrow { justify-content: center; }
.cta-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 96px);
  margin-top: 56px;
}
.faq-intro { max-width: 380px; }
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.2s, background 0.2s;
  font-size: 16px;
  line-height: 1;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--gold); color: #0a0a0a; }
.faq-a {
  padding: 0 0 24px;
  color: var(--ink-mute);
  line-height: 1.65;
  max-width: 62ch;
}
@media (max-width: 800px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT / FOOTER
   ============================================ */
.footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img { height: 90px; }
.footer-tag {
  color: var(--ink-mute);
  margin-top: 20px;
  max-width: 34ch;
  line-height: 1.6;
  font-size: 14px;
}
.footer-col h4 {
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li {
  color: var(--ink-mute);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-contact-item svg {
  width: 14px; height: 14px; color: var(--gold); flex-shrink: 0;
}
.footer-bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--ink-dim);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.footer-bottom .legacy {
  color: var(--gold);
  letter-spacing: 0.24em;
  font-weight: 600;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  * { transition: none !important; }
}

/* ============================================
   MOBILE OVERRIDES (must be last so they win)
   ============================================ */
@media (max-width: 860px) {
  .hero { padding: 240px 0 40px !important; min-height: 0 !important; align-items: flex-start !important; }
}
