/* ============================================================
   THE AWARD RESERVE — DESIGN SYSTEM
   Navy + gold luxury aesthetic, Cormorant Garamond + DM Sans
   ============================================================ */

:root {
  /* Color palette */
  --navy-deep: #060c18;
  --navy: #0B1426;
  --navy-mid: #131f38;
  --navy-light: #1a2d50;
  --gold: #C9A84C;
  --gold-light: #dfc373;
  --gold-pale: #f0e4c4;
  --cream: #f0ece4;
  --white: #ffffff;
  --text: #c8c4bc;
  --text-dim: #8a8578;
  --text-mute: #5a564d;
  --error: #d97757;
  --glass: rgba(26, 45, 80, 0.4);
  --glass-border: rgba(201, 168, 76, 0.15);
  --glass-border-strong: rgba(201, 168, 76, 0.3);

  /* Type */
  --font-display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-section: clamp(5rem, 10vw, 9rem);
  --container: 1240px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--text);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02", "cv11";
}

/* Background atmosphere — subtle gold-tinted gradient mesh */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 1200px 800px at 15% 20%, rgba(201, 168, 76, 0.04), transparent 60%),
    radial-gradient(ellipse 1000px 600px at 85% 80%, rgba(26, 45, 80, 0.5), transparent 60%);
}

/* Subtle grain overlay for cinematic feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

main, nav, footer { position: relative; z-index: 2; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; color: var(--cream); }

h1 em, h2 em, h3 em { color: var(--gold); font-style: italic; font-weight: 400; }

p { font-size: 1rem; }
a { color: var(--gold); text-decoration: none; }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* Gold accent line */
.gold-line {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-line.center { margin: 1.5rem auto; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.45s var(--ease-out), padding 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 12, 24, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--glass-border);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.nav-brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-brand img { height: 44px; width: 44px; border-radius: 50%; transition: height 0.4s var(--ease-out), width 0.4s var(--ease-out); }
.nav.scrolled .nav-brand img { height: 36px; width: 36px; }
.nav-brand .brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  font-weight: 500;
}
.nav-brand .brand-text em { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  gap: 1.7rem;
  align-items: center;
}
@media (max-width: 1100px) and (min-width: 641px) {
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.74rem; letter-spacing: 0.12em; }
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.75rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 6px; right: 6px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.4s var(--ease-out), top 0.4s var(--ease-out), opacity 0.3s;
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 18px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav.menu-open .nav-toggle span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-toggle span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s var(--ease-out);
  border: none;
  background: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(201, 168, 76, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-ghost:hover {
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

/* Link-arrow style */
.link-arrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: gap 0.3s var(--ease-out), color 0.3s;
}
.link-arrow::after {
  content: '→';
  transition: transform 0.3s var(--ease-out);
}
.link-arrow:hover { color: var(--gold-light); gap: 0.85rem; }
.link-arrow:hover::after { transform: translateX(2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bora-bora.jpg");
  background-size: cover;
  background-position: center 60%;
  z-index: -2;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(6, 12, 24, 0.55) 0%,
      rgba(6, 12, 24, 0.4) 40%,
      rgba(6, 12, 24, 0.7) 80%,
      var(--navy-deep) 100%);
}
.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  position: relative;
}
.hero h1 {
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-weight: 400;
}
.hero p.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: rgba(240, 236, 228, 0.92);
  font-weight: 300;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 8px); }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
section { position: relative; padding: var(--space-section) 0; }
.section-head { max-width: 720px; margin-bottom: 4rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p {
  font-size: 1.05rem;
  color: var(--text);
  margin-top: 1.2rem;
  line-height: 1.75;
  max-width: 580px;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.08s; }
.reveal-2 { transition-delay: 0.16s; }
.reveal-3 { transition-delay: 0.24s; }
.reveal-4 { transition-delay: 0.32s; }
.reveal-5 { transition-delay: 0.4s; }

/* ============================================================
   INTRO / WHAT WE DO
   ============================================================ */
.intro {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.intro-grid .intro-lead h2 { font-weight: 500; }
.intro-grid .intro-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.intro-grid .intro-body p:last-child { margin-bottom: 0; }
.intro-grid .intro-body em {
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18em;
  font-weight: 500;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.service-card {
  background: linear-gradient(180deg, rgba(26, 45, 80, 0.4), rgba(19, 31, 56, 0.5));
  border: 1px solid var(--glass-border);
  padding: clamp(2rem, 3.5vw, 3rem);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  transition: border-color 0.5s var(--ease-out), transform 0.5s var(--ease-out), background 0.5s var(--ease-out);
}
.service-card:hover {
  border-color: var(--glass-border-strong);
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(26, 45, 80, 0.55), rgba(19, 31, 56, 0.6));
}
.service-card .service-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.6rem;
}
.service-card h3 { margin-bottom: 0.8rem; }
.service-card .desc {
  color: var(--text);
  margin-bottom: 1.8rem;
  font-size: 1rem;
  line-height: 1.7;
}
.service-card .price {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.service-card .price .price-prefix {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 500;
}
.service-card .price-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  font-style: italic;
}
.service-card .service-includes {
  list-style: none;
  margin-bottom: 2rem;
}
.service-card .service-includes li {
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.service-card .service-includes li:last-child { border-bottom: none; }
.service-card .service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 1px;
  background: var(--gold);
}
.service-card .card-cta {
  margin-top: auto;
}

/* ============================================================
   PROOF GALLERY
   ============================================================ */
.proof {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-top: 3rem;
}
.proof-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.06);
}
.proof-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease-out), filter 0.6s;
  filter: brightness(0.85) saturate(0.95);
}
.proof-tile:hover img { transform: scale(1.04); filter: brightness(1) saturate(1.05); }
.proof-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 12, 24, 0.92) 100%);
  pointer-events: none;
}
.proof-tile .caption {
  position: absolute;
  left: 1.5rem; right: 1.5rem; bottom: 1.3rem;
  z-index: 2;
}
.proof-tile .caption .place {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.proof-tile .caption .place em { color: var(--gold); font-style: italic; }
.proof-tile .caption .booking {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* Grid placement: asymmetric editorial layout */
.proof-grid .tile-1 { grid-column: span 7; grid-row: span 2; } /* big hero pano */
.proof-grid .tile-2 { grid-column: span 5; grid-row: span 1; }
.proof-grid .tile-3 { grid-column: span 5; grid-row: span 1; }
.proof-grid .tile-4 { grid-column: span 4; grid-row: span 2; }
.proof-grid .tile-5 { grid-column: span 4; grid-row: span 2; }
.proof-grid .tile-6 { grid-column: span 4; grid-row: span 2; }

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.about-teaser {
  background: var(--navy-deep);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
}
.about-image::before {
  content: '';
  position: absolute;
  left: -16px;
  top: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-content p {
  margin-bottom: 1.2rem;
  font-size: 1.04rem;
  line-height: 1.85;
}
.about-content .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 1.8rem 0 2rem;
  font-weight: 500;
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process { background: var(--navy); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 2rem 0 0;
  border-top: 1px solid var(--glass-border);
}
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--cream);
  font-weight: 500;
}
.process-step p { color: var(--text); font-size: 0.95rem; line-height: 1.75; }

/* ============================================================
   NEWSLETTER / DISPATCH CTA
   ============================================================ */
.dispatch {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.dispatch-card {
  background: linear-gradient(135deg, rgba(26, 45, 80, 0.5), rgba(19, 31, 56, 0.6));
  border: 1px solid var(--glass-border-strong);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dispatch-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 30%; height: 200%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08), transparent 60%);
  pointer-events: none;
}
.dispatch-card .eyebrow { margin-bottom: 1.5rem; }
.dispatch-card h2 { margin-bottom: 1rem; }
.dispatch-card p {
  color: var(--text);
  margin: 0 auto 2rem;
  max-width: 540px;
  font-size: 1.02rem;
}

/* Substack embed wrapper */
.substack-embed {
  display: flex;
  justify-content: center;
}
.substack-embed iframe {
  border: 1px solid var(--glass-border) !important;
  background: var(--navy-mid) !important;
  max-width: 480px;
  width: 100%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  padding: 5rem 0 3rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}
.footer .footer-brand img { width: 60px; height: 60px; border-radius: 50%; }
.footer .footer-brand-text {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  font-weight: 500;
}
.footer .footer-brand-text em { font-style: italic; font-weight: 400; }
.footer .footer-tag {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-style: italic;
  margin: 0.5rem 0 2.5rem;
  font-family: var(--font-display);
}
.footer-socials, .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-socials a, .footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-weight: 500;
}
.footer-socials a:hover, .footer-links a:hover { color: var(--gold); }
.footer .footer-divider { width: 60px; height: 1px; background: var(--glass-border); margin: 2.5rem auto 1.5rem; }
.footer .footer-legal {
  color: var(--text-mute);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.footer .footer-legal a { color: var(--text-dim); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 480px; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Gallery: simplify to 2 cols on tablet */
  .proof-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; }
  .proof-grid .tile-1 { grid-column: span 6; }
  .proof-grid .tile-2 { grid-column: span 3; }
  .proof-grid .tile-3 { grid-column: span 3; }
  .proof-grid .tile-4 { grid-column: span 3; grid-row: span 2; }
  .proof-grid .tile-5 { grid-column: span 3; grid-row: span 2; }
  .proof-grid .tile-6 { grid-column: span 6; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  /* Mobile menu drawer */
  .nav.menu-open {
    background: rgba(6, 12, 24, 0.96);
    backdrop-filter: blur(20px);
  }
  .nav.menu-open .nav-links {
    display: flex;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(6, 12, 24, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.6rem;
    border-bottom: 1px solid var(--glass-border);
  }
  .nav.menu-open .nav-cta {
    display: block;
    margin: 1rem 2rem 2rem;
    text-align: center;
    position: fixed;
    top: calc(70px + 14rem);
    left: 0; right: 0;
  }

  .hero { min-height: 92vh; padding-top: 8rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .hero-cta-row .btn { width: 100%; text-align: center; }

  .proof-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; gap: 0.6rem; }
  .proof-grid .tile-1, .proof-grid .tile-2, .proof-grid .tile-3,
  .proof-grid .tile-4, .proof-grid .tile-5, .proof-grid .tile-6 {
    grid-column: span 1; grid-row: span 1;
  }

  .service-card { min-height: 0; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue { animation: none; }
  * { transition-duration: 0.01s !important; animation-duration: 0.01s !important; }
}
