/* =============================================================
   Distilled Advisory
   Monochrome. Paper and finish do the work.
   No "brand colour" in the marketing sense.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Spectral:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  /* ============== INK (dark side) =============================== */
  --ink-900: #0B0B0C;
  --ink-800: #1A1A1C;
  --ink-700: #2B2B2E;
  --ink-600: #3E3E40;
  --ink-500: #6A6A6E;

  /* ============== PAPER (light side) ============================ */
  --paper-300: #D7D5CF;
  --paper-200: #ECEBE7;
  --paper-100: #F4F2EF;
  --paper-50:  #FAFBF5;

  /* ============== SEMANTIC ===================================== */
  --bg:           var(--paper-100);
  --bg-raised:    var(--paper-50);
  --bg-recessed:  var(--paper-200);
  --bg-edge:      var(--paper-300);

  --fg:           var(--ink-900);
  --fg-muted:     var(--ink-700);
  --fg-subtle:    var(--ink-600);
  --fg-faint:     var(--ink-500);

  --rule:         rgba(11, 11, 12, 0.18);
  --rule-strong:  rgba(11, 11, 12, 0.42);
  --rule-faint:   rgba(11, 11, 12, 0.08);

  /* ============== TYPOGRAPHY =================================== */
  --font-display: 'Cormorant Garamond', 'Editorial New', Georgia, serif;
  --font-body:    'Spectral', Georgia, serif;
  --font-sans:    'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* ============== TYPE SCALE =================================== */
  --type-masthead: clamp(56px, 9vw, 132px);
  --type-display:  clamp(40px, 5.4vw, 84px);
  --type-h1:       clamp(32px, 3.4vw, 48px);
  --type-h2:       clamp(24px, 2.4vw, 32px);
  --type-h3:       20px;
  --type-h4:       16px;
  --type-body:     16px;
  --type-body-sm:  14px;
  --type-caption:  12px;
  --type-eyebrow:  11px;

  --lh-tight: 1.02;
  --lh-snug:  1.18;
  --lh-text:  1.55;
  --lh-loose: 1.7;

  --tracking-mast:    -0.02em;
  --tracking-text:     0;
  --tracking-label:    0.18em;
  --tracking-eyebrow:  0.24em;

  /* ============== SPACING ====================================== */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --margin-doc-x: clamp(24px, 6vw, 96px);
  --margin-section-y: clamp(72px, 12vw, 160px);

  --max-line: 64ch;
  --max-text: 720px;
  --max-page: 1320px;

  /* ============== MOTION ======================================= */
  --ease:        cubic-bezier(0.32, 0.08, 0.24, 1);
  --duration-1:  120ms;
  --duration-2:  220ms;
  --duration-3:  360ms;
}

/* ============== TACTILE NIGHT MODE ============================ */
[data-mode="night"] {
  --bg:           var(--ink-900);
  --bg-raised:    var(--ink-800);
  --bg-recessed:  #050506;
  --bg-edge:      var(--ink-700);

  --fg:           var(--paper-100);
  --fg-muted:     var(--paper-300);
  --fg-subtle:    #9A9A95;
  --fg-faint:     #6A6A6E;

  --rule:         rgba(244, 242, 239, 0.22);
  --rule-strong:  rgba(244, 242, 239, 0.55);
  --rule-faint:   rgba(244, 242, 239, 0.10);
}

/* ============== RESET / BASE ================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: var(--lh-text);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }

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

::selection { background: var(--ink-900); color: var(--paper-50); }

/* ============== TYPOGRAPHY ==================================== */
h1, h2, h3, h4, p { margin: 0; }

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-display);
  line-height: var(--lh-snug);
  letter-spacing: -0.015em;
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-h1);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
}

h3, .h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-h2);
  line-height: 1.22;
  letter-spacing: -0.005em;
}

h4, .h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--type-h4);
  line-height: 1.3;
}

p, .body {
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: var(--lh-text);
  text-wrap: pretty;
  max-width: var(--max-line);
}

.lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  max-width: 880px;
  color: var(--fg);
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--type-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-muted);
}

.caption {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--type-caption);
  line-height: 1.5;
  color: var(--fg-muted);
}

/* ============== HAIRLINES ===================================== */
.hairline {
  border: 0;
  border-top: 1px solid var(--rule);
  height: 0;
  margin: 0;
  width: 100%;
}

.hairline--short {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--fg);
  opacity: 0.7;
  border: 0;
}

.hairline--med {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--fg);
  opacity: 0.65;
  border: 0;
}

/* ============== LAYOUT ======================================== */
.container {
  width: 100%;
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 0 var(--margin-doc-x);
}

.section {
  padding-top: var(--margin-section-y);
  padding-bottom: var(--margin-section-y);
  position: relative;
}

.section--night {
  background: var(--ink-900);
  color: var(--paper-100);
}
.section--night .eyebrow { color: var(--paper-300); }
.section--night .hairline { border-top-color: rgba(244,242,239,0.22); }
.section--night .hairline--short,
.section--night .hairline--med { background: var(--paper-100); }

.section--bone   { background: var(--paper-200); }
.section--paper  { background: var(--paper-100); }
.section--raised { background: var(--paper-50); }

/* Standard section header (eyebrow + number + title + rule) */
.section-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-9);
  max-width: 1200px;
}

.section-header__meta {
  display: flex;
  align-items: baseline;
  gap: var(--space-5);
  font-family: var(--font-sans);
  font-size: var(--type-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-muted);
}

.section-header__num { letter-spacing: 0.24em; }

.section-header__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-display);
  line-height: var(--lh-snug);
  letter-spacing: -0.015em;
  max-width: 16ch;
}

.section-header__lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.42;
  max-width: 760px;
  color: var(--fg);
  margin-top: var(--space-3);
}

/* ============== NAV =========================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-5) var(--margin-doc-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: color-mix(in srgb, var(--paper-100) 86%, transparent);
  backdrop-filter: saturate(120%) blur(8px);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-2) var(--ease),
              background var(--duration-2) var(--ease);
}

.nav.is-scrolled {
  border-bottom-color: var(--rule);
}

.nav__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--fg);
}

.nav__desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.nav__links {
  display: flex;
  gap: var(--space-7);
  align-items: center;
}

.nav__link {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--duration-2) var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--duration-2) var(--ease);
}

.nav__link:hover { color: var(--fg); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  padding: var(--space-3) var(--space-5);
  border: 1px solid var(--rule-strong);
  transition: background var(--duration-2) var(--ease),
              color var(--duration-2) var(--ease);
}

.nav__cta:hover {
  background: var(--ink-900);
  color: var(--paper-50);
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--fg);
  position: relative;
}
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--fg);
}
.nav__toggle-bar::before { top: -7px; }
.nav__toggle-bar::after  { top: 7px; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }

  .nav.is-open + .nav-drawer { transform: translateX(0); }
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 86vw);
  background: var(--paper-50);
  z-index: 99;
  transform: translateX(100%);
  transition: transform var(--duration-3) var(--ease);
  padding: 96px var(--space-7) var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  border-left: 1px solid var(--rule);
}

.nav-drawer.is-open { transform: translateX(0); }

.nav-drawer__link {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--rule-faint);
}

/* ============== HERO ========================================== */
.hero {
  min-height: 100vh;
  background: var(--ink-900);
  color: var(--paper-100);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 120px var(--margin-doc-x) var(--space-8);
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.hero__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.hero__wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1;
}

.hero__rule {
  width: 22px;
  height: 1px;
  background: var(--paper-100);
  opacity: 0.6;
  margin: 6px 0;
}

.hero__desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper-300);
}

.hero__meta {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper-300);
  opacity: 0.7;
  text-align: right;
}

.hero__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-7);
  padding: var(--space-9) 0;
  max-width: 1100px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--type-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--paper-300);
}

.hero__statement {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 18ch;
  text-wrap: balance;
}

.hero__statement em {
  font-style: italic;
  font-weight: 300;
  color: var(--paper-300);
}

.hero__lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 620px;
  color: var(--paper-300);
}

.hero__actions {
  display: flex;
  gap: var(--space-5);
  align-items: center;
  flex-wrap: wrap;
}

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--space-5);
  padding-top: var(--space-7);
  border-top: 1px solid rgba(244, 242, 239, 0.18);
}

.hero__bottom-item {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper-300);
  opacity: 0.78;
}

/* ============== BUTTONS ======================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-6);
  border: 1px solid;
  cursor: pointer;
  transition: background var(--duration-2) var(--ease),
              color var(--duration-2) var(--ease),
              border-color var(--duration-2) var(--ease);
  background: transparent;
  text-decoration: none;
}

.btn--light {
  color: var(--paper-50);
  border-color: rgba(244, 242, 239, 0.55);
}
.btn--light:hover {
  background: var(--paper-50);
  color: var(--ink-900);
  border-color: var(--paper-50);
}

.btn--dark {
  color: var(--ink-900);
  border-color: var(--rule-strong);
}
.btn--dark:hover {
  background: var(--ink-900);
  color: var(--paper-50);
  border-color: var(--ink-900);
}

.btn--ghost-light {
  color: var(--paper-300);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost-light:hover { color: var(--paper-50); }
.btn--ghost-light::after {
  content: '\2192';
  font-family: var(--font-sans);
  font-weight: 400;
  margin-left: 4px;
}

.btn--ghost-dark {
  color: var(--fg);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost-dark:hover { color: var(--ink-900); text-decoration: underline; text-underline-offset: 6px; }
.btn--ghost-dark::after {
  content: '\2192';
  font-family: var(--font-sans);
  font-weight: 400;
  margin-left: 4px;
}

/* ============== TWO-COLUMN BLOCK ============================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 8vw, 128px);
  align-items: flex-start;
}

@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: var(--space-7); }
}

.two-col__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--type-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-muted);
}

.two-col__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: var(--space-4);
  max-width: 14ch;
}

.two-col__body p {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  margin: 0 0 var(--space-5) 0;
  max-width: 620px;
}
.two-col__body p:last-child { margin-bottom: 0; }

/* ============== THREE-COLUMN VALUE TILES ====================== */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}

@media (max-width: 880px) {
  .tiles { grid-template-columns: 1fr; gap: var(--space-7); }
}

.tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid var(--rule);
}

.section--night .tile { border-top-color: rgba(244,242,239,0.22); }

.tile__num {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--type-eyebrow);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.tile__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  margin-top: var(--space-2);
}

.tile__rule {
  width: 24px;
  height: 1px;
  background: var(--fg);
  opacity: 0.55;
  margin: var(--space-3) 0;
}

.tile__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
}

.section--night .tile__body { color: var(--paper-300); }

/* ============== PATHWAY (numbered list) ======================= */
.pathway {
  display: flex;
  flex-direction: column;
}

.pathway__row {
  display: grid;
  grid-template-columns: 96px 1fr 1.4fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: flex-start;
  padding: var(--space-7) 0;
  border-top: 1px solid var(--rule);
}

.pathway__row:last-child { border-bottom: 1px solid var(--rule); }

.section--night .pathway__row { border-top-color: rgba(244,242,239,0.22); }
.section--night .pathway__row:last-child { border-bottom-color: rgba(244,242,239,0.22); }

@media (max-width: 880px) {
  .pathway__row {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    padding: var(--space-5) 0;
  }
}

.pathway__num {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--fg-muted);
}

.pathway__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.005em;
}

.pathway__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 620px;
}

.section--night .pathway__body { color: var(--paper-300); }

/* ============== TIERS ========================================= */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section--night .tiers {
  border-top-color: rgba(244,242,239,0.22);
  border-bottom-color: rgba(244,242,239,0.22);
}

@media (max-width: 880px) {
  .tiers { grid-template-columns: 1fr; }
}

.tier {
  padding: var(--space-7) clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  border-right: 1px solid var(--rule);
}

.section--night .tier { border-right-color: rgba(244,242,239,0.22); }

.tier:last-child { border-right: 0; }

@media (max-width: 880px) {
  .tier {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .section--night .tier { border-bottom-color: rgba(244,242,239,0.22); }
  .tier:last-child { border-bottom: 0; }
}

.tier__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.section--night .tier__label { color: var(--paper-300); }

.tier__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 3.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.tier__rule {
  width: 28px;
  height: 1px;
  background: var(--fg);
  opacity: 0.7;
  margin: var(--space-3) 0 var(--space-5);
}

.section--night .tier__rule { background: var(--paper-100); }

.tier__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.4;
  color: var(--fg);
}

.section--night .tier__lede { color: var(--paper-100); }

.tier__list {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.tier__list li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  padding-left: var(--space-4);
  position: relative;
}

.tier__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--fg-muted);
}

.section--night .tier__list li { color: var(--paper-300); }
.section--night .tier__list li::before { background: var(--paper-300); }

/* ============== QUOTE ========================================= */
.quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  max-width: 1400px;
  text-wrap: balance;
}

.quote em {
  font-style: italic;
}

.quote b {
  font-style: normal;
  font-weight: 400;
}

.quote__attr {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: var(--space-7);
}

/* ============== CONTACT ======================================= */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 128px);
  align-items: flex-start;
}

@media (max-width: 880px) {
  .contact { grid-template-columns: 1fr; gap: var(--space-8); }
}

.contact__lead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 14ch;
}

.contact__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 560px;
  margin-top: var(--space-5);
}

.section--night .contact__body { color: var(--paper-300); }

.contact__points {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  padding-top: var(--space-4);
}

.contact__point {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--rule);
}

.section--night .contact__point { border-top-color: rgba(244,242,239,0.22); }

.contact__point-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.section--night .contact__point-label { color: var(--paper-300); }

.contact__point-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--fg);
}

.section--night .contact__point-value { color: var(--paper-100); }

.contact__point-value a {
  position: relative;
  transition: opacity var(--duration-2) var(--ease);
}

.contact__point-value a:hover {
  opacity: 0.7;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* ============== FOOTER ======================================== */
.footer {
  background: var(--ink-900);
  color: var(--paper-300);
  padding: var(--space-9) var(--margin-doc-x) var(--space-7);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-7);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(244, 242, 239, 0.18);
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr; gap: var(--space-6); }
}

.footer__brand-wm {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--paper-100);
  line-height: 1;
}

.footer__brand-rule {
  width: 22px;
  height: 1px;
  background: var(--paper-100);
  opacity: 0.6;
  margin: var(--space-3) 0;
}

.footer__brand-desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.footer__brand-note {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper-300);
  opacity: 0.8;
  max-width: 380px;
  margin-top: var(--space-5);
}

.footer__col-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper-300);
  opacity: 0.85;
  margin-bottom: var(--space-4);
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__list a, .footer__list span {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--paper-300);
  opacity: 0.85;
  transition: opacity var(--duration-2) var(--ease);
}

.footer__list a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-300);
  opacity: 0.65;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer__d {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.04em;
  color: var(--paper-100);
  opacity: 0.6;
  line-height: 1;
}

/* ============== ENQUIRE PAGE ================================== */
.enquire {
  min-height: 100vh;
  background: var(--paper-100);
  padding: 120px var(--margin-doc-x) var(--space-9);
}

.enquire__intro {
  max-width: 760px;
  margin-bottom: var(--space-9);
}

.enquire__intro h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  max-width: 16ch;
}

.enquire__intro p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 620px;
  margin-top: var(--space-5);
}

.form {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.form__required {
  color: var(--fg-faint);
  font-weight: 400;
  margin-left: var(--space-2);
}

.form__input,
.form__select,
.form__textarea {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--fg);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: var(--space-3) 0;
  width: 100%;
  outline: none;
  transition: border-color var(--duration-2) var(--ease);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-bottom-color: var(--fg);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--fg-faint);
  font-style: italic;
}

.form__select {
  background-image: linear-gradient(45deg, transparent 50%, var(--fg-muted) 50%),
                    linear-gradient(135deg, var(--fg-muted) 50%, transparent 50%);
  background-position: calc(100% - 14px) calc(50% + 2px),
                       calc(100% - 8px)  calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: var(--space-7);
  cursor: pointer;
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
  border: 1px solid var(--rule);
  padding: var(--space-4);
}

.form__textarea:focus { border-color: var(--fg); }

.form__note {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-muted);
}

.form__actions {
  display: flex;
  gap: var(--space-5);
  align-items: center;
  margin-top: var(--space-5);
  padding-top: var(--space-6);
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}

.form__submit {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--ink-900);
  color: var(--paper-50);
  border: 1px solid var(--ink-900);
  padding: var(--space-4) var(--space-7);
  cursor: pointer;
  transition: background var(--duration-2) var(--ease),
              color var(--duration-2) var(--ease);
}

.form__submit:hover {
  background: transparent;
  color: var(--ink-900);
}

.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============== THANKS PAGE =================================== */
.thanks {
  min-height: 100vh;
  background: var(--paper-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--margin-doc-x);
}

.thanks__inner {
  max-width: 720px;
  text-align: left;
}

.thanks__eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-7);
}

.thanks__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  max-width: 14ch;
}

.thanks__rule {
  width: 36px;
  height: 1px;
  background: var(--fg);
  opacity: 0.7;
  margin: var(--space-5) 0 var(--space-6);
}

.thanks__body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 540px;
}

.thanks__back {
  margin-top: var(--space-8);
  display: inline-flex;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg);
}
.thanks__back::before {
  content: '\2190';
  margin-right: var(--space-3);
}
.thanks__back:hover { text-decoration: underline; text-underline-offset: 6px; }

/* ============== REVEAL ON SCROLL ============================== */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--duration-3) var(--ease),
              transform var(--duration-3) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============== UTIL ========================================== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: var(--space-4);
  top: var(--space-4);
  width: auto;
  height: auto;
  padding: var(--space-3) var(--space-5);
  background: var(--ink-900);
  color: var(--paper-50);
  font-family: var(--font-sans);
  font-size: 13px;
  z-index: 1000;
}
