/* ============================================================
   AXIOM JOURNEYS — Design Tokens
   Prestige · Opulence · Elevate
   ============================================================ */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1.0625rem, 1rem + 0.25vw, 1.1875rem);
  --text-lg: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2.1rem, 1.3rem + 2.6vw, 3.75rem);
  --text-3xl: clamp(2.6rem, 1.1rem + 4vw, 5.25rem);
  --text-hero: clamp(3rem, 0.9rem + 6.4vw, 7.25rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.2rem;
  --radius-md: 0.35rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1040px;
  --content-wide: 1280px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --font-label: 'Jost', 'Century Gothic', sans-serif;

  /* Fixed brand navy (used for hero/CTA/footer blocks — brand-invariant, not theme-dependent) */
  --navy-950: #0a1322;
  --navy-900: #0e1b30;
  --navy-800: #142845;
  --navy-700: #1c3358;
  --gold-brand: #c9a46b;
  --gold-brand-light: #e3cb99;
  --cream-brand: #f5efdf;
}

/* ---------------- LIGHT MODE (default) ---------------- */
:root,
[data-theme='light'] {
  --color-bg: #f6f1e5;
  --color-surface: #fbf8f0;
  --color-surface-2: #ffffff;
  --color-surface-offset: #eee6d1;
  --color-surface-offset-2: #e6dcc0;
  --color-divider: #ddd2ac;
  --color-border: #d1c39a;

  --color-text: #182338;
  --color-text-muted: #5c5644;
  --color-text-faint: #a89b78;
  --color-text-inverse: #f6f1e5;

  --color-primary: #96702f;
  --color-primary-hover: #7a5a24;
  --color-primary-active: #5f451b;
  --color-primary-highlight: #ecdfb9;

  --shadow-sm: 0 1px 2px oklch(0.25 0.03 80 / 0.08);
  --shadow-md: 0 6px 18px oklch(0.25 0.03 80 / 0.12);
  --shadow-lg: 0 16px 40px oklch(0.25 0.03 80 / 0.16);
}

/* ---------------- DARK MODE ---------------- */
[data-theme='dark'] {
  --color-bg: #0e1524;
  --color-surface: #131b2c;
  --color-surface-2: #182036;
  --color-surface-offset: #101828;
  --color-surface-offset-2: #1a2338;
  --color-divider: rgba(230, 216, 179, 0.12);
  --color-border: rgba(201, 164, 107, 0.28);

  --color-text: #f0e9d6;
  --color-text-muted: #b8ac89;
  --color-text-faint: #6d6350;
  --color-text-inverse: #14213a;

  --color-primary: #d8b473;
  --color-primary-hover: #e6c78f;
  --color-primary-active: #f0d9ab;
  --color-primary-highlight: rgba(216, 180, 115, 0.16);

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
  --shadow-md: 0 6px 18px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0e1524;
    --color-surface: #131b2c;
    --color-surface-2: #182036;
    --color-surface-offset: #101828;
    --color-surface-offset-2: #1a2338;
    --color-divider: rgba(230, 216, 179, 0.12);
    --color-border: rgba(201, 164, 107, 0.28);
    --color-text: #f0e9d6;
    --color-text-muted: #b8ac89;
    --color-text-faint: #6d6350;
    --color-text-inverse: #14213a;
    --color-primary: #d8b473;
    --color-primary-hover: #e6c78f;
    --color-primary-active: #f0d9ab;
    --color-primary-highlight: rgba(216, 180, 115, 0.16);
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
    --shadow-md: 0 6px 18px oklch(0 0 0 / 0.4);
    --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.5);
  }
}

/* ============================================================
   Base type & layout
   ============================================================ */

body {
  font-family: var(--font-body);
  font-optical-sizing: auto;
}

.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
}
.container--wide {
  max-width: var(--content-wide);
}
.container--narrow {
  max-width: var(--content-narrow);
}

section {
  position: relative;
}

.section-pad {
  padding-block: clamp(var(--space-16), 9vw, var(--space-24));
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.005em;
}

p {
  max-width: 62ch;
}

a {
  color: inherit;
  text-decoration: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-label);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.eyebrow--center {
  justify-content: center;
}

.on-navy .eyebrow {
  color: var(--gold-brand-light);
}

.rule {
  width: 64px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.55;
  margin-block: var(--space-5);
}
.rule--center {
  margin-inline: auto;
}
.on-navy .rule {
  background: var(--gold-brand);
  opacity: 0.6;
}

.section-title {
  font-size: var(--text-2xl);
  line-height: 1.08;
  max-width: 20ch;
}
.section-lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-style: italic;
  max-width: 48ch;
  line-height: 1.5;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  white-space: nowrap;
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive),
    border-color var(--transition-interactive),
    transform var(--transition-interactive),
    box-shadow var(--transition-interactive);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn--gold {
  background: var(--gold-brand);
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}
.btn--gold:hover {
  background: var(--gold-brand-light);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  border-color: currentColor;
  color: inherit;
  opacity: 0.85;
}
.btn--outline:hover {
  opacity: 1;
  background: oklch(from currentColor l c h / 0.08);
}

.btn--ghost {
  color: var(--color-primary);
  padding-inline: var(--space-2);
  gap: var(--space-2);
}
.btn--ghost::after {
  content: '\2192';
  transition: transform var(--transition-interactive);
}
.btn--ghost:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   Header
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--navy-950) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 164, 107, 0.16);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.header--hidden {
  transform: translateY(-100%);
}
.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-6);
  color: var(--cream-brand);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--gold-brand);
  flex-shrink: 0;
}
.brand-word {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.14em;
  color: var(--cream-brand);
  line-height: 1;
}
.brand-word small {
  display: block;
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  color: var(--gold-brand);
  font-weight: 500;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-brand);
  opacity: 0.82;
  position: relative;
  padding-block: var(--space-1);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold-brand);
  transition: width var(--transition-interactive);
}
.nav-links a:hover {
  opacity: 1;
}
.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.theme-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  color: var(--gold-brand);
  border: 1px solid rgba(201, 164, 107, 0.35);
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: rgba(201, 164, 107, 0.12);
}
.theme-toggle svg {
  width: 17px;
  height: 17px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  color: var(--cream-brand);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 1px;
  background: currentColor;
  display: block;
  transition: transform var(--transition-interactive), opacity var(--transition-interactive);
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream-brand);
  overflow: clip;
  background: var(--navy-950);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 19, 34, 0.55) 0%, rgba(10, 19, 34, 0.72) 55%, rgba(10, 19, 34, 0.94) 100%),
    linear-gradient(90deg, rgba(10, 19, 34, 0.55) 0%, rgba(10, 19, 34, 0.15) 45%, rgba(10, 19, 34, 0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(var(--space-24), 14vw, var(--space-32));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-compass {
  width: clamp(84px, 9vw, 120px);
  height: auto;
  aspect-ratio: 100 / 106;
  margin-bottom: var(--space-6);
}

.hero-tagline {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-brand-light);
  margin-bottom: var(--space-6);
}

.hero h1 {
  font-size: var(--text-hero);
  font-weight: 500;
  line-height: 1.04;
  max-width: 16ch;
  color: var(--cream-brand);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-brand-light);
}


.hero-sub {
  font-size: var(--text-lg);
  font-style: italic;
  color: rgba(240, 233, 214, 0.82);
  max-width: 42ch;
  margin-bottom: var(--space-10);
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--gold-brand);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0.75;
}
.hero-scroll svg {
  width: 14px;
  height: 22px;
  animation: bob 2.2s var(--ease-in-out) infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ============================================================
   Trust strip
   ============================================================ */

.trust-strip {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-6);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4) var(--space-10);
  text-align: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ============================================================
   Services (asymmetric editorial rows)
   ============================================================ */

.services {
  background: var(--color-bg);
}
.services-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-16), 8vw, var(--space-24));
}
.services-head .eyebrow {
  justify-content: center;
}
.services-head .eyebrow::before {
  display: none;
}
.services-head .rule {
  margin-inline: auto;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(var(--space-8), 6vw, var(--space-20));
  margin-bottom: clamp(var(--space-16), 9vw, var(--space-28));
}
.service-row:last-child {
  margin-bottom: 0;
}
.service-row--reverse .service-media {
  order: 2;
}
.service-row--reverse .service-copy {
  order: 1;
}

.service-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.service-media::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 164, 107, 0.5);
  border-radius: var(--radius-lg);
  z-index: 2;
  pointer-events: none;
  margin: 12px;
}

.service-copy .eyebrow {
  margin-bottom: var(--space-4);
}
.service-copy h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}
.service-copy p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
}

/* ============================================================
   Everything Arranged (navy grid)
   ============================================================ */

.arranged {
  background: var(--navy-950);
  color: var(--cream-brand);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201, 164, 107, 0.08), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(201, 164, 107, 0.06), transparent 45%);
}
.arranged-head {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-14), 7vw, var(--space-20));
}
.arranged-head .eyebrow {
  justify-content: center;
  color: var(--gold-brand-light);
}
.arranged-head .eyebrow::before {
  display: none;
}
.arranged-head h2 {
  color: var(--cream-brand);
}
.arranged-head .rule {
  margin-inline: auto;
  background: var(--gold-brand);
}
.arranged-head p {
  color: rgba(240, 233, 214, 0.72);
  margin-inline: auto;
  font-style: italic;
}

.arranged-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.arranged-card {
  border: 1px solid rgba(201, 164, 107, 0.22);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  background: rgba(20, 32, 51, 0.5);
  transition: border-color var(--transition-interactive), transform var(--transition-interactive);
}
.arranged-card:hover {
  border-color: rgba(201, 164, 107, 0.5);
  transform: translateY(-3px);
}
.arranged-icon {
  width: 40px;
  height: 40px;
  color: var(--gold-brand);
  margin-bottom: var(--space-5);
}
.arranged-card h3 {
  font-size: var(--text-lg);
  color: var(--cream-brand);
  margin-bottom: var(--space-3);
}
.arranged-card p {
  font-size: var(--text-sm);
  color: rgba(240, 233, 214, 0.68);
}

/* ============================================================
   Process timeline
   ============================================================ */

.process {
  background: var(--color-surface);
}
.process-head {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-16), 8vw, var(--space-24));
}
.process-head .eyebrow,
.process-head .rule {
  margin-inline: auto;
  justify-content: center;
}
.process-head .eyebrow::before {
  display: none;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--color-border);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-inline: auto;
  margin-bottom: var(--space-6);
}
.process-step h3 {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  font-weight: 600;
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-inline: auto;
}

/* ============================================================
   Social proof
   ============================================================ */

.proof {
  background: var(--color-bg);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: clamp(var(--space-12), 6vw, var(--space-16));
}
.proof-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.proof-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-primary);
  font-style: italic;
}
.proof-card blockquote {
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
}
.proof-card cite {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-style: normal;
}

/* ============================================================
   Inquiry section
   ============================================================ */

.inquire {
  background: var(--navy-950);
  color: var(--cream-brand);
  position: relative;
}
.inquire-frame {
  position: relative;
  border: 1px solid rgba(201, 164, 107, 0.45);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-8), 6vw, var(--space-16));
}
.inquire-frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 164, 107, 0.22);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.inquire-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}
.inquire-copy .eyebrow {
  color: var(--gold-brand-light);
}
.inquire-copy h2 {
  font-size: var(--text-2xl);
  color: var(--cream-brand);
  margin-bottom: var(--space-5);
}
.inquire-copy p {
  color: rgba(240, 233, 214, 0.75);
  font-size: var(--text-base);
  margin-bottom: var(--space-8);
}
.inquire-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  letter-spacing: 0.03em;
}
.inquire-contact a,
.inquire-contact span {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(240, 233, 214, 0.85);
}
.inquire-contact svg {
  width: 16px;
  height: 16px;
  color: var(--gold-brand);
  flex-shrink: 0;
}
.inquire-contact a:hover {
  color: var(--gold-brand-light);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 233, 214, 0.7);
}
.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 164, 107, 0.3);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  color: var(--cream-brand);
  font-family: var(--font-body);
  font-size: var(--text-base);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(240, 233, 214, 0.35);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-brand);
  box-shadow: 0 0 0 3px rgba(201, 164, 107, 0.15);
  outline: none;
}
.field select option {
  color: #111;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-4);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}
.form-status {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  color: var(--gold-brand-light);
  min-height: 1.2em;
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--navy-950);
  color: rgba(240, 233, 214, 0.7);
  border-top: 1px solid rgba(201, 164, 107, 0.16);
  padding-block: var(--space-16) var(--space-10);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-brand svg {
  width: 30px;
  height: 30px;
  color: var(--gold-brand);
}
.footer-brand span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.12em;
  color: var(--cream-brand);
}
.footer-tag {
  font-style: italic;
  font-size: var(--text-sm);
  max-width: 30ch;
  color: rgba(240, 233, 214, 0.6);
}
.footer h4 {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-brand);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--text-sm);
}
.footer ul a:hover {
  color: var(--gold-brand-light);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(201, 164, 107, 0.14);
  font-size: var(--text-xs);
  letter-spacing: 0.03em;
}

/* ============================================================
   Reveal on scroll
   ============================================================ */

.reveal {
  opacity: 1;
}
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }
}
@keyframes reveal-fade {
  to {
    opacity: 1;
  }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1000px) {
  .arranged-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .inquire-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

@media (max-width: 860px) {
  .header-inner > nav,
  .header-actions .btn {
    display: none;
  }
  .header-actions {
    gap: var(--space-3);
  }
  .nav-toggle {
    display: flex;
  }
  .service-row,
  .service-row--reverse {
    grid-template-columns: 1fr;
  }
  .service-row--reverse .service-media,
  .service-row--reverse .service-copy {
    order: initial;
  }
  .process-track {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .process-track::before {
    display: none;
  }
  .arranged-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--navy-950);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-nav.is-open {
  transform: translateY(0);
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--cream-brand);
  letter-spacing: 0.06em;
}
.mobile-nav a:hover {
  color: var(--gold-brand);
}

@media (max-width: 640px) {
  .hero h1 {
    max-width: 13ch;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .service-media {
    aspect-ratio: 5/4;
  }
}
