/* ═══════════════════════════════════════════════════════════
   ALPINE PREMIER NANNIES  ·  v4 — Premium Standard
   Editorial Luxury · Quiet Authority · Deliberate Restraint
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@200;300;400;500&family=Cormorant:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Core palette */
  --ink:        #0B1A2A;
  --ink-2:      #0D1E31;
  --ink-3:      #0F2238;

  /* Greige — correct, neutral, no brown */
  --greige-bg:    #B8AEA5;
  --greige-bg-2:  #B2A89F;
  --greige-mid:   #A89E95;
  --greige-stone: #9E9890;

  /* Gold — accent ONLY: borders, lines, highlights */
  --gold:       #C6A86B;
  --gold-pale:  #D4BB8A;
  --gold-dim:   rgba(198,168,107,0.18);
  --gold-line:  rgba(198,168,107,0.12);
  --gold-line2: rgba(198,168,107,0.20);

  /* Text on dark */
  --greige:      #B8AEA5;
  --text-body:   rgba(231,227,220,0.70);
  --text-muted:  rgba(231,227,220,0.46);
  --text-faint:  rgba(231,227,220,0.20);

  /* Text on greige */
  --on-greige:       #0B1A2A;
  --on-greige-body:  rgba(11,26,42,0.72);
  --on-greige-muted: rgba(11,26,42,0.50);

  /* Fonts */
  --f-serif: 'Playfair Display', 'Times New Roman', serif;
  --f-body:  'Jost', sans-serif;
  --f-fine:  'Cormorant', 'Georgia', serif;

  /* Layout */
  --w:   1160px;
  --pad: clamp(24px, 5.5vw, 80px);
  --sec: clamp(72px, 9vw, 120px);

  /* Easing */
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.4, 0, 0.2, 1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--f-body);
  font-weight: 300;
  background: var(--ink);
  color: var(--greige);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: rgba(198,168,107,0.25); }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--greige);
}

.label {
  display: block;
  font-family: var(--f-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--gold);
}
.label-dark { color: rgba(11,26,42,0.48); }

.caption {
  font-family: var(--f-fine);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ══════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  transition: background 0.6s var(--ease), border-color 0.6s;
  border-bottom: 1px solid transparent;
}
.nav.pinned {
  background: rgba(11,26,42,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--gold-line);
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0; /* collapse whitespace around img */
}
.nav-brand img {
  display: block;
  height: 48px;
  width: auto;
  min-width: 110px;
  max-width: 170px;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.4s;
  border: none;
  outline: none;
  background: transparent;
  /* Hide alt text and broken icon when image fails */
  color: transparent;
  font-size: 0;
}
.nav-brand:hover img { opacity: 0.78; }

/* Footer logo — consistent size */
.foot-brand img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.2rem;
  border: none;
  background: transparent;
  color: transparent;
  font-size: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  list-style: none;
}
.nav-links a {
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-body);
  position: relative;
  transition: color 0.3s;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.45s var(--ease);
}
.nav-links a:hover,
.nav-links a.here { color: var(--greige); }
.nav-links a:hover::after,
.nav-links a.here::after { width: 100%; }

.nav-inquire {
  font-size: 8px !important;
  letter-spacing: 0.36em !important;
  color: var(--gold) !important;
  background: transparent;
  border: 1px solid rgba(198,168,107,0.38) !important;
  padding: 9px 18px !important;
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s !important;
}
.nav-inquire::after { display: none !important; }
.nav-inquire:hover {
  color: var(--ink) !important;
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: translateY(-1px) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--greige);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: 76px; left: 0; right: 0;
  z-index: 499;
  background: rgba(11,26,42,0.98);
  backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--gold-line);
  padding: 2.4rem var(--pad) 2.8rem;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s;
  pointer-events: none;
}
.nav-drawer.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav-drawer a {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-body);
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--gold-line);
  transition: color 0.3s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--greige); }

/* ══════════════════════════════════════════════════════════
   HERO — Home page
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--ink);
  padding-top: clamp(200px, 32vh, 300px);
  padding-bottom: clamp(88px, 13vh, 132px);
  padding-left: var(--pad);
  padding-right: var(--pad);
  text-align: left !important;
  overflow: hidden;
}

/* Layer 1 — SVG grain noise, barely visible */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(198,168,107,0.04) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 90%,  rgba(11,26,42,0.60)   0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)' opacity='0.038'/%3E%3C/svg%3E");
  background-size: auto, auto, 320px 320px;
  pointer-events: none;
  z-index: 0;
}

/* Layer 2 — bottom gold rule */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: var(--pad); right: var(--pad);
  height: 1px;
  background: var(--gold-line);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

/* Label above H1 — service identifier */
.hero-subtitle {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.40em;
  text-transform: uppercase;
  color: rgba(212,187,138,0.80);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.6rem;
}

.hero-subtitle::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(212,187,138,0.55);
  flex-shrink: 0;
}

/* H1 — large, italic, emotional serif */
.hero-title {
  font-family: 'Playfair Display', 'Georgia', serif !important;
  font-size: clamp(4.2rem, 10vw, 8rem) !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: -0.028em !important;
  line-height: 0.96 !important;
  color: #E2DAC8 !important;
  margin-bottom: 2.2rem !important;
  text-align: left !important;
}

/* "trusted" — champagne italic accent */
.hero-title .champagne {
  font-style: italic;
  color: #D4BB8A;
}

/* Thin gold separator between title and buttons */
.hero-divider {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(198,168,107,0.40);
  margin: 0 0 2.4rem;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
}

/* ══════════════════════════════════════════════════════════
   BUTTON SYSTEM
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--f-body);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  transition: all 0.32s var(--ease);
  white-space: nowrap;
  position: relative;
}

/* Gold filled — primary CTA on dark bg */
.btn-solid {
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 30px;
}
.btn-solid:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

/* Ghost gold — secondary on dark bg */
.btn-line {
  color: var(--gold-pale);
  border: 1px solid rgba(198,168,107,0.38);
  padding: 16px 30px;
  background: transparent;
}
.btn-line:hover {
  border-color: rgba(198,168,107,0.60);
  color: var(--gold);
  transform: translateY(-1px);
}

/* Outlined dark — on greige bg */
.btn-dark {
  color: var(--on-greige);
  border: 1px solid rgba(11,26,42,0.25);
  padding: 14px 30px;
  background: transparent;
}
.btn-dark:hover {
  background: var(--ink);
  color: var(--greige);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* Filled dark — on greige bg */
.btn-dark-solid {
  background: var(--ink);
  color: var(--greige);
  border: 1px solid transparent;
  padding: 14px 30px;
}
.btn-dark-solid:hover {
  background: var(--ink-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,26,42,0.20);
}

/* Arrow */
.btn-arrow::after {
  content: '';
  display: block;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  width: 6px; height: 6px;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.32s var(--ease);
}
.btn-arrow:hover::after { transform: rotate(45deg) translateX(3px) translateY(-3px); }

/* ══════════════════════════════════════════════════════════
   SECTION SYSTEM
   ══════════════════════════════════════════════════════════ */
.sec { padding: var(--sec) 0; }

.sec-head { margin-bottom: clamp(2.8rem, 5vw, 4.6rem); }
.sec-head.center { text-align: center; }
.sec-head.center .gold-bar { margin-left: auto; margin-right: auto; }

.sec-head h2 {
  font-size: clamp(1.75rem, 3.8vw, 3.4rem);
  letter-spacing: -0.016em;
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.sec-head h2 em { font-style: italic; color: rgba(231,227,220,0.52); }

.sec-head p {
  font-size: clamp(0.86rem, 1.2vw, 0.94rem);
  color: var(--text-body);
  max-width: 500px;
  line-height: 1.95;
  margin-top: 1.2rem;
}
.sec-head.center p { margin-left: auto; margin-right: auto; }

.gold-bar {
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.6rem;
  margin-top: 0.6rem;
}

/* ══════════════════════════════════════════════════════════
   GREIGE SECTIONS — corrected palette + paper texture
   ══════════════════════════════════════════════════════════ */
.greige-section {
  background: #B8AEA5;
  box-shadow: inset 0 1px 0 rgba(11,26,42,0.10), inset 0 -1px 0 rgba(11,26,42,0.10);
}
.greige-section h1,
.greige-section h2,
.greige-section h3,
.greige-section h4 { color: var(--on-greige); }
.greige-section .label { color: rgba(11,26,42,0.45); }
.greige-section .gold-bar { background: rgba(11,26,42,0.18); }
.greige-section .sec-head h2 em { color: rgba(11,26,42,0.40); }
.greige-section .sec-head p { color: var(--on-greige-body); }

/* ══════════════════════════════════════════════════════════
   POSITIONING / PHILOSOPHY — merged greige section
   ══════════════════════════════════════════════════════════ */
.positioning {
  text-align: left;
}

.positioning-inner {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Thin gold accent line above headline */
.positioning-rule {
  display: none;
}

.positioning-headline {
  font-family: 'Cormorant Garamond', 'Cormorant', 'Georgia', serif;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.22;
  color: #0B1A2A;
  margin-bottom: 2.4rem;
}
.positioning-headline em {
  font-style: italic;
  color: rgba(11, 26, 42, 0.52);
}

.positioning-body {
  max-width: 620px;
}
.positioning-body p {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 0.95rem);
  font-weight: 300;
  color: rgba(11, 26, 42, 0.70);
  line-height: 1.95;
  letter-spacing: 0.01em;
}
.positioning-body p + p {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(198, 168, 107, 0.22);
}

@media (max-width: 768px) {
  .positioning-headline {
    font-size: clamp(1.6rem, 6.5vw, 2.1rem);
  }
  .positioning-rule {
    height: 36px;
    margin-bottom: 2rem;
  }
  .positioning-body p {
    font-size: 0.875rem;
  }
}

/* ══════════════════════════════════════════════════════════
   HOME — PHILOSOPHY (greige)
   ══════════════════════════════════════════════════════════ */
/* philosophy background inherited from .greige-section */

.philo-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.philo-pull {
  font-family: var(--f-fine);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(11,26,42,0.62);
  border-left: 1px solid rgba(11,26,42,0.14);
  padding-left: 2rem;
}

.philo-body p {
  font-size: 0.92rem;
  color: var(--on-greige-body);
  line-height: 1.82;
  margin-bottom: 1rem;
}
.philo-body p:last-of-type { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   HOME — SERVICES PREVIEW (dark)
   ══════════════════════════════════════════════════════════ */
.services-preview { background: var(--ink); }

.svc-list {
  margin-top: clamp(2.8rem, 5vw, 4.2rem);
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gold-line);
}

.svc-row {
  display: grid;
  grid-template-columns: 72px 1fr 48px;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--gold-line);
  transition: background 0.4s;
  position: relative;
  cursor: default;
}
.svc-row::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.55s var(--ease);
}
.svc-row:hover::after { width: 100%; }
.svc-row:hover { background: rgba(198,168,107,0.022); }
.svc-row:hover .svc-num { color: rgba(198,168,107,0.32); }

.svc-num {
  font-family: var(--f-fine);
  font-size: 1.9rem;
  font-weight: 300;
  color: rgba(198,168,107,0.12);
  line-height: 1;
  transition: color 0.4s;
}

.svc-content h3 {
  font-size: clamp(1.0rem, 1.8vw, 1.35rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--greige);
  margin-bottom: 0.45rem;
}
.svc-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.88;
  max-width: 480px;
}

.svc-arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--text-faint);
  transition: border-color 0.4s, color 0.4s, transform 0.4s var(--ease);
}
.svc-row:hover .svc-arrow {
  border-color: rgba(198,168,107,0.40);
  color: var(--gold);
  transform: translateX(3px);
}

/* ══════════════════════════════════════════════════════════
   HOME — THE DIFFERENCE (greige alt)
   ══════════════════════════════════════════════════════════ */
.why {
  background: #B8AEA5;
  box-shadow: inset 0 1px 0 rgba(11,26,42,0.06), inset 0 -1px 0 rgba(11,26,42,0.06);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.why-left h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  letter-spacing: -0.016em;
  color: var(--on-greige);
}
.why-left h2 em { font-style: italic; color: rgba(11,26,42,0.40); }

.caption-dark {
  font-family: var(--f-fine);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(11,26,42,0.52);
  line-height: 1.75;
  margin-top: 1.4rem;
}

.why-body-text {
  font-size: 0.88rem;
  color: var(--on-greige-body);
  line-height: 2;
  margin-top: 1.4rem;
}

.why-right { display: flex; flex-direction: column; padding-top: 0.4rem; }

.why-item-greige {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(11,26,42,0.09);
}
.why-item-greige:first-child { border-top: 1px solid rgba(11,26,42,0.09); }

.why-item-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.55rem;
}
.why-item-num {
  font-family: var(--f-fine);
  font-size: 0.82rem;
  color: rgba(11,26,42,0.35);
  font-style: italic;
  min-width: 22px;
}
.why-item-greige h3 {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--on-greige);
  font-family: var(--f-body);
  letter-spacing: 0.01em;
}
.why-item-greige p {
  font-size: 0.83rem;
  color: var(--on-greige-body);
  line-height: 1.92;
  padding-left: calc(22px + 0.9rem);
}

/* ══════════════════════════════════════════════════════════
   FINALE — Dark, centered
   ══════════════════════════════════════════════════════════ */
.finale {
  background: var(--ink);
  text-align: center;
  padding: clamp(64px, 8vw, 104px) var(--pad);
  border-top: 1px solid var(--gold-line);
}
.finale-glow { display: none; }
.finale h2 {
  font-size: clamp(1.7rem, 3.8vw, 3.5rem);
  letter-spacing: -0.016em;
  max-width: 680px;
  margin: 0 auto 1.6rem;
}
.finale h2 em { font-style: italic; color: rgba(231,227,220,0.52); }

/* ══════════════════════════════════════════════════════════
   PAGE HERO — All internal pages
   ══════════════════════════════════════════════════════════ */
.pg-hero {
  min-height: auto;
  display: flex;
  align-items: flex-end;
  padding-top: 164px;
  padding-bottom: 60px;
  padding-left: var(--pad);
  padding-right: var(--pad);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: var(--pad); right: var(--pad);
  height: 1px;
  background: var(--gold-line);
}
.pg-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 100%, rgba(198,168,107,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.pg-hero .wrap { position: relative; z-index: 1; }
.pg-hero .label { margin-bottom: 1.4rem; }
.pg-hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  max-width: 700px;
  letter-spacing: -0.018em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.pg-hero h1 em { font-style: italic; color: rgba(231,227,220,0.52); }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════ */
.about-story { background: var(--ink); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}
.about-anchor {
  position: sticky;
  top: 100px;
}
.about-anchor h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  margin-top: 1.2rem;
}
.about-anchor .caption { margin-top: 1.4rem; }

.about-text p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.82;
  margin-bottom: 1.2rem;
}
.about-text p:last-of-type { margin-bottom: 0; }

/* Pillars — greige */
.about-pillars { background: var(--greige-bg); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(11,26,42,0.10);
  border: 1px solid rgba(11,26,42,0.10);
  margin-top: 3.8rem;
}
.pillar {
  background: var(--greige-bg);
  padding: 2.6rem 2.2rem;
  transition: background 0.35s;
}
.pillar:hover { background: var(--greige-bg-2); }
.pillar .label { margin-bottom: 1.2rem; color: rgba(11,26,42,0.42); }
.pillar h3 {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--on-greige);
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}
.pillar p { font-size: 0.83rem; color: var(--on-greige-body); line-height: 1.95; }

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════════════════════ */
.services-full { background: var(--ink); }

.svc-detail {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--gold-line);
  align-items: start;
}
.svc-detail:first-child { padding-top: 0; }
.svc-detail:last-child { border-bottom: none; }

.svc-meta .svc-num { font-size: 2.8rem; }
.svc-meta h3 {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--greige);
  margin-top: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.svc-body p {
  font-size: 0.91rem;
  color: var(--text-body);
  line-height: 1.82;
  margin-bottom: 1rem;
}
.svc-body p:last-of-type { margin-bottom: 0; }

.svc-points {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.svc-points li {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  line-height: 1.7;
}
.svc-points li::before {
  content: '';
  flex-shrink: 0;
  width: 14px; height: 1px;
  background: var(--gold);
  margin-top: 0.7em;
}

/* Process — greige */
.process-bar { background: var(--greige-bg); }

.steps {
  margin-top: 3.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(11,26,42,0.14), rgba(11,26,42,0.14), transparent);
}
.step { padding-right: 0.8rem; }
.step-n {
  width: 40px; height: 40px;
  border: 1px solid rgba(11,26,42,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-fine);
  font-style: italic;
  font-size: 1rem;
  color: rgba(11,26,42,0.40);
  margin-bottom: 1.8rem;
  background: var(--greige-bg);
  position: relative;
  z-index: 1;
}
.step h4 {
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--on-greige);
  margin-bottom: 0.55rem;
  font-family: var(--f-body);
}
.step p { font-size: 0.83rem; color: var(--on-greige-body); line-height: 1.92; }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════ */
.contact-body { background: var(--ink); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: clamp(3rem, 7vw, 9rem);
  align-items: start;
}
.contact-aside { position: sticky; top: 100px; }
.contact-aside h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
  line-height: 1.12;
}
.contact-aside p {
  font-size: 0.89rem;
  color: var(--text-body);
  line-height: 1.95;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.4rem; }
.c-det-item .label { margin-bottom: 0.35rem; }
.c-det-item a, .c-det-item span {
  font-size: 0.88rem;
  color: var(--text-body);
  transition: color 0.3s;
}
.c-det-item a:hover { color: var(--greige); }

/* Contact page preface banner */
.access-preface {
  background: var(--ink-2);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 1.4rem var(--pad);
}
.access-preface-inner {
  max-width: var(--w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.access-preface-line {
  width: 1px; height: 28px;
  background: var(--gold-line2);
  flex-shrink: 0;
}
.access-preface p {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.access-preface strong { font-weight: 400; color: rgba(231,227,220,0.52); }

.admission-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--gold-line2);
  padding: 0.72rem 1.1rem;
  margin-bottom: 2.4rem;
}
.admission-badge-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-dot 3s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}
.admission-badge span {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

.aside-body {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.95;
  margin-bottom: 2.4rem;
}

/* Form */
.form-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--gold-line);
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-line);
}
.f-row.full { grid-template-columns: 1fr; }

.f-cell {
  background: var(--ink-2);
  padding: 1.5rem 1.8rem 1.3rem;
  position: relative;
}
.f-cell label {
  display: block;
  font-size: 7.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.f-cell input, .f-cell select, .f-cell textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--greige);
  line-height: 1.5;
  -webkit-appearance: none;
  appearance: none;
}
.f-cell input::placeholder, .f-cell textarea::placeholder { color: var(--text-faint); }
.f-cell textarea { resize: none; min-height: 92px; }
.f-cell select option { background: var(--ink-2); color: var(--greige); }
.f-cell::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.8rem; right: 1.8rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.f-cell:focus-within::after { transform: scaleX(1); }

/* ══════════════════════════════════════════════════════════
   FOOTER — Ultra-luxury, editorial, quiet
   ══════════════════════════════════════════════════════════ */
footer {
  background: #0B1A2A;
  padding: clamp(60px, 8vw, 96px) clamp(24px, 5vw, 72px) clamp(40px, 5vw, 56px);
}

.foot-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── 3-column grid ── */
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 2rem;
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid rgba(198,168,107,0.10);
  align-items: start;
}

/* LEFT — Brand */
.foot-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #EAE7E2;
  margin-bottom: 0.6rem;
}

.foot-brand-line {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(234,231,226,0.48);
  text-transform: uppercase;
  line-height: 1.6;
}

/* CENTER — Nav */
.foot-nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.foot-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(234,231,226,0.55);
  text-decoration: none;
  transition: color 0.35s ease;
}

.foot-nav a:hover { color: #C6A86B; }

/* RIGHT — Email */
.foot-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.foot-email-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(234,231,226,0.55);
  text-decoration: none;
  transition: color 0.35s ease;
  text-align: right;
}

.foot-email-link:hover { color: #C6A86B; }

/* ── Lower section ── */
.foot-lower {
  padding-top: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.service-area {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234,231,226,0.38);
  line-height: 1.7;
}

.foot-copyright {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(234,231,226,0.28);
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    text-align: center;
  }
  .foot-contact { align-items: center; }
  .foot-nav { align-items: center; }
  .foot-email-link { text-align: center; }
}

/* ══════════════════════════════════════════════════════════
   PRIVATE INTRODUCTION MODAL — Ultra-luxury form experience
   ══════════════════════════════════════════════════════════ */

.pi-overlay {
  position: fixed; inset: 0; z-index: 800;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.pi-overlay.pi-active { opacity: 1; pointer-events: all; }

.pi-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,19,31,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.pi-panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  border: 1px solid rgba(198,168,107,0.12);
  background: #0D1E31;
  padding: clamp(2rem, 5vw, 3.2rem) clamp(1.8rem, 5vw, 3.2rem);
  transform: translateY(16px);
  transition: transform 0.6s var(--ease);
  scrollbar-width: none;
}
.pi-panel::-webkit-scrollbar { display: none; }
.pi-overlay.pi-active .pi-panel { transform: translateY(0); }
.pi-panel::before {
  content: ''; position: absolute; top: -1px; left: 0;
  width: 40px; height: 1px; background: var(--gold);
}

.pi-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0.28; transition: opacity 0.3s;
  font-size: 0.85rem; color: var(--greige);
  font-family: var(--f-body); font-weight: 200;
  background: none; border: none;
}
.pi-close:hover { opacity: 0.70; }

.pi-step {
  display: none; opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.pi-step.pi-step-visible { display: block; }
.pi-step.pi-step-in { opacity: 1; transform: translateY(0); }

.pi-label {
  font-family: var(--f-body); font-size: 7px; font-weight: 400;
  letter-spacing: 0.48em; text-transform: uppercase;
  color: var(--gold); opacity: 0.80;
  display: block; margin-bottom: 1.1rem;
}

.pi-title {
  font-family: var(--f-serif);
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.018em;
  color: #E2DAC8; margin-bottom: 1.2rem;
}
.pi-title em { font-style: italic; color: rgba(226,218,200,0.50); }

.pi-body {
  font-size: 0.82rem; color: rgba(226,218,200,0.52);
  line-height: 1.95; margin-bottom: 2rem;
  font-family: var(--f-body); font-weight: 300;
}

.pi-divider {
  width: 24px; height: 1px;
  background: var(--gold); opacity: 0.45; margin-bottom: 1.4rem;
}

.pi-form { display: flex; flex-direction: column; gap: 0; }

.pi-field {
  border-bottom: 1px solid rgba(198,168,107,0.08);
  padding: 1.2rem 0 0.7rem; position: relative;
}
.pi-field:first-child { border-top: 1px solid rgba(198,168,107,0.08); }

.pi-field label {
  display: block; font-family: var(--f-body);
  font-size: 0.62rem; font-weight: 300; letter-spacing: 0.12em;
  color: rgba(226,218,200,0.55); margin-bottom: 0.5rem;
  text-transform: none;
}
.pi-optional {
  font-style: italic; opacity: 0.60;
  font-size: 0.60rem; letter-spacing: 0.04em;
}

.pi-field input,
.pi-field select,
.pi-field textarea {
  display: block; width: 100%; background: transparent;
  border: none; outline: none;
  font-family: var(--f-body); font-size: 0.88rem;
  font-weight: 300; color: #E2DAC8; line-height: 1.5;
  -webkit-appearance: none; appearance: none; padding: 0;
  transition: color 0.3s;
}
.pi-field input::placeholder,
.pi-field textarea::placeholder {
  color: rgba(226,218,200,0.16); font-style: italic; font-weight: 300;
}
.pi-field select option { background: #0D1E31; color: #E2DAC8; }
.pi-field textarea { resize: none; min-height: 80px; line-height: 1.7; }

.pi-field-select { position: relative; }
.pi-select-arrow {
  position: absolute; right: 0; bottom: 1.1rem;
  width: 10px; height: 10px; pointer-events: none; display: block;
}
.pi-select-arrow::before,
.pi-select-arrow::after {
  content: ''; position: absolute; right: 0;
  width: 6px; height: 1px; background: rgba(198,168,107,0.45);
}
.pi-select-arrow::before { transform: rotate(40deg); right: 4px; top: 5px; }
.pi-select-arrow::after  { transform: rotate(-40deg); top: 5px; }

.pi-field::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: rgba(198,168,107,0.55);
  transition: width 0.45s var(--ease);
}
.pi-field:focus-within::after { width: 100%; }

.pi-btn-row {
  display: flex; align-items: center; gap: 1.2rem;
  margin-top: 2.2rem; flex-wrap: wrap;
}

.pi-btn-primary {
  display: inline-flex; align-items: center; gap: 1rem;
  background: #C6A86B; color: #0B1A2A;
  font-family: var(--f-body); font-size: 8px; font-weight: 400;
  letter-spacing: 0.36em; text-transform: uppercase;
  padding: 1rem 2rem; border: none; cursor: pointer;
  transition: filter 0.35s ease, transform 0.35s ease;
  white-space: nowrap;
}
.pi-btn-primary:hover { filter: brightness(1.07); transform: translateY(-1px); }
.pi-btn-primary .pi-arrow {
  font-size: 11px; font-weight: 200;
  transition: transform 0.32s var(--ease);
}
.pi-btn-primary:hover .pi-arrow { transform: translateX(4px); }

.pi-btn-ghost {
  font-family: var(--f-body); font-size: 7px; font-weight: 300;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: rgba(226,218,200,0.38); border: none; background: none;
  cursor: pointer; transition: color 0.3s; padding: 0.5rem 0;
}
.pi-btn-ghost:hover { color: rgba(226,218,200,0.65); }

.form-confidentiality {
  font-family: var(--f-body); font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.04em; color: rgba(226,218,200,0.40);
  margin-top: 1rem; line-height: 1.7; font-style: italic;
}

.pi-received-badge {
  display: inline-flex; align-items: center; gap: 0.65rem;
  border: 1px solid rgba(198,168,107,0.14);
  padding: 0.55rem 1rem; margin-bottom: 1.8rem;
}
.pi-received-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); animation: pulse-dot 3s ease-in-out infinite;
}
.pi-received-badge span:last-child {
  font-size: 7px; font-weight: 400; letter-spacing: 0.44em;
  text-transform: uppercase; color: var(--gold);
}

.pi-access-line {
  margin-top: 2rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(198,168,107,0.08);
  font-size: 0.76rem; color: rgba(226,218,200,0.38);
  font-family: var(--f-fine); font-style: italic; line-height: 1.85;
}
.pi-reveal-trigger {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 0.9rem; font-family: var(--f-body);
  font-size: 7px; font-weight: 400; letter-spacing: 0.36em;
  text-transform: uppercase; color: rgba(226,218,200,0.42);
  cursor: pointer; border: none; background: none;
  transition: color 0.3s; padding: 0;
}
.pi-reveal-trigger:hover { color: var(--gold); }
.pi-reveal-trigger::before {
  content: ''; width: 14px; height: 1px;
  background: currentColor; flex-shrink: 0;
  transition: width 0.4s var(--ease);
}
.pi-reveal-trigger:hover::before { width: 24px; }
.pi-email-revealed {
  display: none; opacity: 0; transform: translateY(4px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.pi-email-revealed.pi-email-in { opacity: 1; transform: translateY(0); }
.pi-email-revealed a {
  font-family: var(--f-fine); font-style: italic; font-size: 0.88rem;
  color: var(--gold); border-bottom: 1px solid rgba(198,168,107,0.18);
  padding-bottom: 1px; transition: color 0.3s;
}
.pi-email-revealed a:hover { color: var(--gold-pale); }
.pi-reveal-trigger.pi-revealed { display: none; }

@media (max-width: 767px) {
  .pi-panel { padding: 1.8rem 1.5rem; max-height: 95vh; }
  .pi-btn-row { flex-direction: column; align-items: stretch; }
  .pi-btn-primary { justify-content: space-between; width: 100%; }
}

/* Pro email block */
.pro-email-block {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-line);
}
.pro-email-label {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.7rem;
}
.pro-email-address {
  font-family: var(--f-fine);
  font-style: italic;
  font-size: 1rem;
  color: var(--greige);
  border-bottom: 1px solid rgba(198,168,107,0.20);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.3s;
}
.pro-email-address:hover { color: var(--gold-pale); }
.pro-email-note {
  font-size: 0.77rem;
  color: var(--text-faint);
  font-family: var(--f-fine);
  font-style: italic;
  margin-top: 0.6rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════ */
.up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.0s var(--ease), transform 1.0s var(--ease);
}
.up.in { opacity: 1; transform: translateY(0); }
.up.d1 { transition-delay: 0.10s; }
.up.d2 { transition-delay: 0.20s; }
.up.d3 { transition-delay: 0.30s; }
.up.d4 { transition-delay: 0.40s; }

/* ── KEYFRAMES ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroEmailFade {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
.pg-enter { animation: fadeIn 0.55s var(--ease) both; }

/* ══════════════════════════════════════════════════════════
   LEGAL CLOSE — greige section on terms/privacy
   ══════════════════════════════════════════════════════════ */
.legal-close { padding: clamp(48px, 7vw, 80px) 0; }
.legal-close-inner {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.legal-close-text {
  font-size: 0.90rem;
  color: var(--on-greige-body);
  line-height: 1.85;
  margin-top: 0.4rem;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .philo-grid, .why-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-anchor, .contact-aside { position: static; }
  .svc-detail { grid-template-columns: 1fr; gap: 2rem; }
  .svc-detail:first-child { padding-top: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --pad: 28px;
    --sec: clamp(56px, 9vw, 80px);
  }

  .nav-links, .nav-inquire-wrap { display: none; }
  .nav-burger { display: flex; }
  .nav-brand img { height: 42px; min-width: 100px; }

  .hero {
    padding-top: clamp(170px, 28vh, 210px);
    padding-bottom: clamp(72px, 12vh, 96px);
  }
  .hero-title {
    font-size: clamp(4.2rem, 15vw, 7rem) !important;
    line-height: 0.96 !important;
    margin-bottom: 2rem !important;
    text-align: left !important;
  }
  .hero-subtitle { font-size: 0.58rem; letter-spacing: 0.28em; margin-bottom: 1.3rem; }
  .hero-divider { margin-bottom: 1.8rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch !important; gap: 12px !important; }
  .hero-cta-row .btn { justify-content: space-between !important; width: 100% !important; max-width: 100% !important; }

  .pg-hero { padding-top: 128px; padding-bottom: 48px; }
  .pg-hero h1 { font-size: clamp(2.2rem, 7vw, 3rem); }

  .sec-head h2 { font-size: clamp(1.75rem, 6vw, 2.4rem); }
  .finale h2 { font-size: clamp(1.55rem, 6vw, 2.2rem); }
  .finale .hero-cta-row,
  .pg-hero .hero-cta-row { gap: 12px !important; }

  .svc-row { grid-template-columns: 50px 1fr 38px; gap: 1.2rem; }
  .svc-meta .svc-num { font-size: 2.2rem; }

  .pillars-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }

  .foot-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .f-row { grid-template-columns: 1fr; }
  .f-footer { flex-direction: column; align-items: flex-start; }

  .pi-panel { padding: 2rem 1.5rem; }
  .pi-btn-row { flex-direction: column; align-items: flex-start; }

  .access-preface-inner { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .access-preface-line { display: none; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Small mobile
   ══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .pg-hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .steps { grid-template-columns: 1fr; }
  .philo-grid, .why-layout { gap: 2.4rem; }
  .about-grid, .contact-grid { gap: 2.8rem; }
}

/* ══════════════════════════════════════════════════════════
   HERO — Service area + confidentiality lines
   ══════════════════════════════════════════════════════════ */
.hero-confidentiality {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(226,218,200,0.38);
  margin-top: 1.4rem;
  line-height: 1.7;
}

.hero-service-area {
  font-family: var(--f-body);
  font-size: 0.60rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(226,218,200,0.24);
  margin-top: 0.6rem;
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIAL — Editorial, no photos, quiet luxury
   ══════════════════════════════════════════════════════════ */
.testimonial-section {
  background: var(--ink);
  padding: clamp(72px, 10vw, 112px) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle top/bottom rules */
.testimonial-section::before,
.testimonial-section::after {
  content: '';
  position: absolute;
  left: var(--pad); right: var(--pad);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(198,168,107,0.12) 20%,
    rgba(198,168,107,0.18) 50%,
    rgba(198,168,107,0.12) 80%,
    transparent
  );
}
.testimonial-section::before { top: 0; }
.testimonial-section::after  { bottom: 0; }

.testimonial-inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}

/* Large decorative opening quote */
.testimonial-mark {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.7;
  color: rgba(198,168,107,0.15);
  margin-bottom: 1.2rem;
  font-weight: 400;
  user-select: none;
}

.testimonial-quote {
  font-family: var(--f-fine);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgba(226,218,200,0.82);
  margin: 0 0 2rem;
  quotes: none;
}

.testimonial-cite {
  display: block;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(198,168,107,0.60);
  font-style: normal;
}

@media (max-width: 767px) {
  .testimonial-quote {
    font-size: 1.05rem;
  }
}

/* ══════════════════════════════════════════════════════════
   FINAL BRAND SYSTEM — Greige section buttons + footer meta
   ══════════════════════════════════════════════════════════ */

/* In greige sections, primary CTAs use navy for stronger luxury contrast. */
.greige-section .btn-solid,
.greige-section .btn.btn-solid,
.greige-section .btn-dark-solid,
.positioning .btn-solid,
.why .btn-solid,
.about-pillars .btn-solid,
.process-bar .btn-solid,
.legal-close .btn-solid,
.confidentiality-section .btn-solid {
  background: var(--ink) !important;
  color: var(--greige) !important;
  border-color: var(--ink) !important;
  box-shadow: none !important;
}

.greige-section .btn-solid:hover,
.greige-section .btn.btn-solid:hover,
.greige-section .btn-dark-solid:hover,
.positioning .btn-solid:hover,
.why .btn-solid:hover,
.about-pillars .btn-solid:hover,
.process-bar .btn-solid:hover,
.legal-close .btn-solid:hover,
.confidentiality-section .btn-solid:hover {
  background: var(--ink-3) !important;
  border-color: var(--ink-3) !important;
  color: var(--greige) !important;
  transform: translateY(-2px);
}

/* In greige sections, secondary CTAs are navy outline. */
.greige-section .btn-line,
.greige-section .btn-dark,
.positioning .btn-line,
.why .btn-line,
.about-pillars .btn-line,
.process-bar .btn-line,
.legal-close .btn-line,
.confidentiality-section .btn-line {
  background: transparent !important;
  color: var(--ink) !important;
  border-color: rgba(11,26,42,0.34) !important;
}

.greige-section .btn-line:hover,
.greige-section .btn-dark:hover,
.positioning .btn-line:hover,
.why .btn-line:hover,
.about-pillars .btn-line:hover,
.process-bar .btn-line:hover,
.legal-close .btn-line:hover,
.confidentiality-section .btn-line:hover {
  background: var(--ink) !important;
  color: var(--greige) !important;
  border-color: var(--ink) !important;
}

/* Keep hero clean: confidentiality + service area belong in footer only. */
.hero-confidentiality,
.hero-service-area {
  display: none !important;
}

.footer-confidentiality {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  line-height: 1.7;
  letter-spacing: 0.035em;
  color: rgba(234,231,226,0.46);
  max-width: 620px;
  margin: 0 auto 0.35rem;
  text-align: center;
}

.foot-lower {
  padding-left: 20px;
  padding-right: 20px;
}

.service-area {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.60rem;
  letter-spacing: 0.10em;
  line-height: 1.9;
  color: rgba(234,231,226,0.36);
}

@media (max-width: 767px) {
  .footer-confidentiality {
    font-size: 0.66rem;
    max-width: 92vw;
  }
  .service-area {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    max-width: 92vw;
  }
}


/* APN final polish: greige-section buttons navy + footer nav left */
body .greige-section .btn,
body .greige-section a.btn,
body .greige-section button.btn,
body .legal-close.greige-section .btn,
body .positioning.greige-section .btn,
body .why.greige-section .btn,
body .about-pillars.greige-section .btn,
body .process-bar.greige-section .btn,
body .confidentiality-section.greige-section .btn {
  background: #0B1A2A !important;
  color: #EAE7E2 !important;
  border: 1px solid #0B1A2A !important;
  box-shadow: none !important;
}
body .greige-section .btn:hover,
body .greige-section a.btn:hover,
body .greige-section button.btn:hover,
body .legal-close.greige-section .btn:hover {
  background: #10243A !important;
  color: #EAE7E2 !important;
  border-color: #10243A !important;
  transform: translateY(-1px);
}
body footer .foot-nav,
body footer .footer-links {
  align-items: flex-start !important;
  text-align: left !important;
}
body footer .foot-nav a,
body footer .footer-links a {
  display: block !important;
  text-align: left !important;
}
@media (max-width: 767px) {
  body footer .foot-grid {
    text-align: left !important;
    align-items: start !important;
  }
  body footer .foot-brand,
  body footer .foot-contact,
  body footer .foot-nav {
    align-items: flex-start !important;
    text-align: left !important;
  }
  body footer .foot-email-link {
    text-align: left !important;
  }
}
/* END APN final polish */

/* ══════════════════════════════════════════════════════════
   APN FINAL SPACING SYSTEM — aligned buttons + restored footer air
   ══════════════════════════════════════════════════════════ */
:root {
  --page-gutter: clamp(24px, 6vw, 80px);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

/* Home greige intro: keep editorial feel, but prevent CTA/text from touching the viewport edge. */
.positioning-inner {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--page-gutter) !important;
  padding-right: var(--page-gutter) !important;
}

.positioning-body {
  width: 100% !important;
  max-width: 620px !important;
}

.positioning-body .btn,
.positioning .btn,
.greige-section .btn {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Footer: restore the premium breathing room and keep left-aligned structure away from screen edges. */
footer {
  padding-top: clamp(76px, 9vw, 104px) !important;
  padding-bottom: clamp(48px, 6vw, 68px) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

footer .foot-inner {
  width: 100% !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--page-gutter) !important;
  padding-right: var(--page-gutter) !important;
}

footer .foot-grid {
  width: 100% !important;
}

@media (max-width: 767px) {
  :root { --page-gutter: clamp(38px, 10vw, 54px); }

  .positioning-inner {
    padding-left: var(--page-gutter) !important;
    padding-right: var(--page-gutter) !important;
  }

  footer .foot-inner {
    padding-left: var(--page-gutter) !important;
    padding-right: var(--page-gutter) !important;
  }

  footer .foot-grid {
    grid-template-columns: 1fr !important;
    gap: 2.6rem !important;
    align-items: start !important;
    text-align: left !important;
  }

  footer .foot-brand,
  footer .foot-nav,
  footer .foot-contact {
    align-items: flex-start !important;
    text-align: left !important;
  }

  footer .foot-email-link {
    text-align: left !important;
    overflow-wrap: anywhere;
  }

  footer .foot-lower {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* END APN FINAL SPACING SYSTEM */

/* ══════════════════════════════════════════════════════════
   APN FINAL MICRO-FIX — Home CTA alignment + restored footer air
   Scope: alignment only. No redesign.
   ══════════════════════════════════════════════════════════ */

/* Match the homepage “Begin an Inquiry” button with the same left edge as “Our Story”. */
.why > .wrap {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--page-gutter) !important;
  padding-right: var(--page-gutter) !important;
}

.why .btn,
.why-left .btn,
.why-left button.btn {
  margin-left: 0 !important;
  padding-left: 30px !important;
  transform: none;
}

/* Restore premium breathing room in the footer so content never touches the screen edge. */
footer .foot-inner {
  width: 100% !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(42px, 10vw, 96px) !important;
  padding-right: clamp(42px, 10vw, 96px) !important;
}

footer .foot-grid {
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 767px) {
  .why > .wrap {
    padding-left: var(--page-gutter) !important;
    padding-right: var(--page-gutter) !important;
  }

  .why .btn,
  .why-left .btn,
  .why-left button.btn {
    margin-left: 0 !important;
  }

  footer .foot-inner {
    padding-left: clamp(54px, 13vw, 86px) !important;
    padding-right: clamp(54px, 13vw, 86px) !important;
  }
}
/* END APN FINAL MICRO-FIX */


/* ══════════════════════════════════════════
   APN ELEVATION PASS — Soft edges, standards, FAQ, micro-motion
   Added without changing the selected greige tone.
   ══════════════════════════════════════════ */

.soft-edge {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.soft-edge::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 54%, rgba(0,0,0,0.10) 100%),
    linear-gradient(90deg, rgba(11,26,42,0.08), rgba(11,26,42,0) 18%, rgba(11,26,42,0) 82%, rgba(11,26,42,0.08));
  filter: blur(0.2px);
  mix-blend-mode: multiply;
}

.soft-edge > * { position: relative; z-index: 1; }

.hero.soft-edge::after,
.finale.soft-edge::after {
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 50%, rgba(0,0,0,0.22) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.22), rgba(0,0,0,0) 18%, rgba(0,0,0,0) 82%, rgba(0,0,0,0.22));
  mix-blend-mode: normal;
}

.standards {
  background: linear-gradient(180deg, rgba(11,26,42,0.98), rgba(8,18,30,0.98));
  color: var(--text);
}

.standards-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: start;
}

.standards-intro h2,
.faq-heading h2 { margin-top: 1.15rem; }

.standards-intro p {
  max-width: 440px;
  margin-top: 1.6rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(198,168,107,0.20);
  border: 1px solid rgba(198,168,107,0.18);
}

.standard-card {
  min-height: 238px;
  padding: clamp(1.55rem, 3vw, 2.35rem);
  background: rgba(11,26,42,0.88);
  transition: transform 700ms cubic-bezier(.19,1,.22,1), background 700ms cubic-bezier(.19,1,.22,1);
}

.standard-card:hover {
  transform: translateY(-4px);
  background: rgba(16,36,58,0.92);
}

.standard-card span {
  display: inline-block;
  margin-bottom: 2.8rem;
  color: rgba(198,168,107,0.72);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
}

.standard-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.standard-card p {
  color: rgba(234,231,226,0.68);
  line-height: 1.85;
  font-size: 0.88rem;
}

.faq-section { color: #0B1A2A; }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 7vw, 6.5rem);
}

.faq-list { border-top: 1px solid rgba(11,26,42,0.18); }

.faq-item {
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(11,26,42,0.18);
}

.faq-item h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #0B1A2A;
  margin-bottom: 0.55rem;
}

.faq-item p {
  max-width: 650px;
  color: rgba(11,26,42,0.72);
  line-height: 1.85;
  font-size: 0.92rem;
}

.gold-bar,
.hero-divider {
  transform-origin: left center;
  animation: apnLineReveal 1100ms cubic-bezier(.19,1,.22,1) both;
}

.hero-title .champagne,
.positioning-headline em,
.standards-intro em,
.faq-heading em,
.finale em { text-shadow: 0 18px 42px rgba(198,168,107,0.08); }

.btn, .btn-proceed, .pi-btn-primary {
  transition: transform 650ms cubic-bezier(.19,1,.22,1), background 650ms cubic-bezier(.19,1,.22,1), border-color 650ms cubic-bezier(.19,1,.22,1), color 650ms cubic-bezier(.19,1,.22,1);
}

.btn:hover, .btn-proceed:hover, .pi-btn-primary:hover { transform: translateY(-2px); }

@keyframes apnLineReveal {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 900px) {
  .standards-layout,
  .faq-layout { grid-template-columns: 1fr; gap: 2.8rem; }
  .standards-grid { grid-template-columns: 1fr; }
  .standard-card { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .gold-bar, .hero-divider { animation: none; }
  .standard-card, .btn, .btn-proceed, .pi-btn-primary { transition: none; }
  .standard-card:hover, .btn:hover, .btn-proceed:hover, .pi-btn-primary:hover { transform: none; }
}

/* ULTRA EDITORIAL REFINEMENT — Less friction, more calm */
:root{--sec:clamp(96px,12vw,156px);--quiet-line:rgba(198,168,107,.10);--quiet-line-dark:rgba(11,26,42,.10)}
body{letter-spacing:.005em}.sec,.contact-body,.confidentiality-section,.legal-close{padding-top:var(--sec)!important;padding-bottom:var(--sec)!important}.hero{min-height:100vh;padding-top:clamp(120px,16vh,180px)!important;padding-bottom:clamp(96px,12vh,150px)!important}.hero-title,.pg-title,.sec-head h2,.positioning-headline,.standards h2,.why h2,.finale h2{letter-spacing:-.035em!important}p,.caption,.svc-content p,.standard-card p,.why-item p,.faq-item p,.form-confidentiality{line-height:1.85!important}.btn,.btn-solid,.btn-line,.btn-dark,.btn-proceed,.pi-btn-primary,.pi-btn-ghost,.nav-inquire{box-shadow:none!important;transform:none!important;border-radius:0!important;letter-spacing:.34em!important;font-weight:400!important;transition:opacity .7s var(--ease),border-color .7s var(--ease),color .7s var(--ease),background .7s var(--ease)!important}.btn-solid,.pi-btn-primary{background:transparent!important;color:var(--gold)!important;border:1px solid rgba(198,168,107,.42)!important}.btn-solid:hover,.pi-btn-primary:hover,.nav-inquire:hover{background:transparent!important;color:var(--gold-pale)!important;border-color:rgba(212,187,138,.72)!important;opacity:.82!important;transform:none!important}.greige-section .btn,.greige-section .btn-solid,.greige-section .btn-dark,.greige-section button.btn,.greige-section a.btn{background:transparent!important;color:var(--on-greige)!important;border:1px solid rgba(11,26,42,.26)!important}.greige-section .btn:hover,.greige-section button.btn:hover,.greige-section a.btn:hover{background:transparent!important;color:var(--on-greige)!important;border-color:rgba(11,26,42,.42)!important;opacity:.72!important;transform:none!important}.gold-bar,.hero-divider,.positioning-rule,.svc-arrow,.btn-arrow span::after,.pi-divider{opacity:.42!important}.standard-card,.why-item,.faq-item,.pillar,.form-card,.private-form-panel,.pi-modal,.service-card,.process-card{box-shadow:none!important}.standard-card,.why-item,.faq-item,.svc-row,.pillar,.service-card,.process-card{border-color:rgba(198,168,107,.10)!important}.greige-section .standard-card,.greige-section .why-item,.greige-section .faq-item,.greige-section .pillar{border-color:rgba(11,26,42,.10)!important}.soft-edge{position:relative;overflow:hidden}.soft-edge::before{content:"";position:absolute;inset:-2px;pointer-events:none;z-index:0;background:radial-gradient(ellipse at center,rgba(255,255,255,0) 52%,rgba(255,255,255,.05) 74%,rgba(11,26,42,.10) 100%);filter:blur(18px);opacity:.55}.soft-edge>*{position:relative;z-index:1}.greige-section.soft-edge::before{background:radial-gradient(ellipse at center,rgba(184,174,165,0) 50%,rgba(184,174,165,.24) 74%,rgba(11,26,42,.12) 100%);opacity:.45}.nav{height:78px}.nav.pinned{background:rgba(11,26,42,.96)!important;border-color:rgba(198,168,107,.08)!important}.nav-links a::after{display:none!important}.nav-links a:hover{opacity:.68}.finale .wrap>div:last-child{gap:16px!important}input,textarea,select,.pi-input,.pi-select{box-shadow:none!important;border-radius:0!important}input:focus,textarea:focus,select:focus,.pi-input:focus,.pi-select:focus{outline:none!important;border-color:rgba(198,168,107,.58)!important;box-shadow:none!important}@media(max-width:767px){:root{--sec:88px}.hero-title{font-size:clamp(4.1rem,18vw,6rem)!important}.hero-cta-row .btn{width:auto!important;align-self:flex-start!important}.sec-head,.standards-intro,.faq-heading{margin-bottom:2.8rem!important}}

/* =========================================================
   SURGICAL REPAIR — requested 3 fixes + services edge fix
   Date: 2026-04-26
   Scope: spacing only. No typography, colors, copy, logo, or layout redesign.
   ========================================================= */

/* 1) Homepage hero breathes more above */
.hero {
  padding-top: 200px !important;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 170px !important;
  }
}

/* 2) Stacked CTA buttons separated cleanly on mobile */
@media (max-width: 768px) {
  .hero-cta-row,
  .finale .wrap > div:last-child,
  .pg-hero .hero-cta-row,
  .cta-group,
  .button-group,
  .section-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
}

/* 3) Mobile left/right padding refined */
@media (max-width: 768px) {
  :root {
    --pad: 28px !important;
  }

  .wrap,
  .section,
  .container,
  .content,
  .section-inner {
    padding-left: var(--pad) !important;
    padding-right: var(--pad) !important;
    box-sizing: border-box !important;
  }
}

/* Services page: professional correspondence block was outside the main wrap,
   so it needs its own gutter. This only moves it away from the screen edge. */
.pro-email-block {
  width: 100% !important;
  padding-left: var(--pad) !important;
  padding-right: var(--pad) !important;
  box-sizing: border-box !important;
}

@media (min-width: 769px) {
  .pro-email-block {
    max-width: var(--w) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ══════════════════════════════════════════════════════════
   CROSS-BROWSER COMPATIBILITY FIX — Android Chrome + PC/Laptop
   Fixes: backdrop-filter fallback, CTA gap, touch targets, font rendering
   ══════════════════════════════════════════════════════════ */

/* Backdrop-filter: Android Chrome may not support it — ensure nav is always visible */
@supports not (backdrop-filter: blur(1px)) {
  .nav.pinned {
    background: rgba(11, 26, 42, 0.98) !important;
  }
  .nav-drawer {
    background: rgba(11, 26, 42, 0.99) !important;
  }
  .pi-overlay .pi-backdrop {
    background: rgba(8, 19, 31, 0.99) !important;
  }
}

/* Hero CTA row: proper gap on desktop (PC/laptop), column+gap on mobile */
.hero-cta-row {
  gap: 1.2rem !important;
}

@media (max-width: 768px) {
  .hero-cta-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .hero-cta-row .btn {
    width: 100% !important;
    justify-content: space-between !important;
  }
}

/* Touch targets: buttons too small on Android — minimum 44px height */
.btn,
.btn-solid,
.btn-line,
.btn-dark,
.btn-dark-solid,
.pi-btn-primary {
  min-height: 44px;
}

/* Prevent iOS/Safari font inflation from affecting Android layout */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Font rendering: Android Chrome uses different defaults */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Ensure grid layouts don't overflow on smaller Android screens */
.svc-row {
  overflow: hidden;
}

.foot-grid {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Fix: select inputs on Android Chrome (appearance reset) */
.f-cell select,
.pi-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Fix: contact grid on PC — ensure it doesn't collapse prematurely */
@media (min-width: 1061px) {
  .contact-grid {
    grid-template-columns: 1fr 1.65fr !important;
  }
}

/* END CROSS-BROWSER FIX */

/* ══════════════════════════════════════════════════════════
   FINALE BUTTON FIX — gap + mobile stack
   ══════════════════════════════════════════════════════════ */
.finale .wrap > div:last-child,
.finale [style*="display:flex"],
.finale [style*="display: flex"] {
  gap: 16px !important;
}

@media (max-width: 768px) {
  .finale .wrap > div:last-child,
  .finale [style*="display:flex"],
  .finale [style*="display: flex"] {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .finale .wrap > div:last-child .btn,
  .finale [style*="display:flex"] .btn {
    width: 100% !important;
    justify-content: space-between !important;
    text-align: left !important;
  }
}
/* END FINALE BUTTON FIX */

/* ══════════════════════════════════════════════════════════
   PRO EMAIL BLOCK — correct padding all breakpoints
   ══════════════════════════════════════════════════════════ */
.pro-email-block {
  width: 100% !important;
  max-width: var(--w) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--pad) !important;
  padding-right: var(--pad) !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .pro-email-block {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}
/* END PRO EMAIL BLOCK */

/* ══════════════════════════════════════════════════════════
   CONTACT — Entry vessel (form wrapper)
   ══════════════════════════════════════════════════════════ */
.entry-vessel {
  border: 1px solid var(--gold-line);
  background: var(--ink-2);
  overflow: hidden;
}

.vessel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid var(--gold-line);
}

.vessel-header-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-family: var(--f-fine);
  font-style: italic;
}

.vessel-header-mark {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.70;
  white-space: nowrap;
  flex-shrink: 0;
}

.vessel-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 1.8rem;
  border-top: 1px solid var(--gold-line);
  flex-wrap: wrap;
}

.vessel-footer-copy {
  flex: 1;
}

.vessel-footer-copy p {
  font-size: 0.72rem;
  color: var(--text-faint);
  line-height: 1.75;
  font-family: var(--f-fine);
  font-style: italic;
  margin-bottom: 0.4rem;
}

.btn-proceed {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--f-body);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 28px;
  cursor: pointer;
  transition: all 0.32s var(--ease);
  white-space: nowrap;
  min-height: 44px;
}

.btn-proceed:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.btn-proceed-arrow {
  font-size: 0.85rem;
  font-weight: 200;
  transition: transform 0.32s var(--ease);
}

.btn-proceed:hover .btn-proceed-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .vessel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .vessel-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1.4rem;
  }
  .btn-proceed {
    width: 100%;
    justify-content: space-between;
  }
}
/* END ENTRY VESSEL */

/* Contact aside rule */
.aside-rule {
  width: 32px;
  height: 1px;
  background: var(--gold-line2);
  margin: 2rem 0;
}
