/* ============================================================
   NeetMantra · Editorial landing page
   Aesthetic: warm cream paper · deep forest · saffron · serif
   ============================================================ */

*,
*::before,
*::after { box-sizing: border-box; }

:root {
  /* Palette */
  --bg:           #f3ecdc;
  --bg-deep:      #ebdfc2;
  --bg-paper:     #faf4e6;
  --fg:           #1c1a14;
  --fg-soft:      #3a342a;
  --muted:        #756f60;
  --line:         rgba(15, 61, 46, 0.18);
  --line-soft:    rgba(15, 61, 46, 0.10);

  --primary:      #0f3d2e;
  --primary-deep: #082a1f;
  --primary-soft: #1f5c43;

  --accent:       #d96b16;
  --accent-deep:  #b9540c;
  --accent-soft:  #f2b277;
  --accent-pale:  #fbe3c8;

  --night:        #0c1a14;

  /* Type */
  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body:    'Outfit', system-ui, -apple-system, sans-serif;
  --f-dev:     'Tiro Devanagari Hindi', 'Fraunces', serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;
  --f-hand:    'Caveat', 'Fraunces', cursive;

  /* Layout */
  --container: 1320px;
  --gutter: clamp(1.25rem, 3.2vw, 3.25rem);
  --radius: 4px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(217, 107, 22, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 30%, rgba(15, 61, 46, 0.05) 0%, transparent 60%);
  background-attachment: fixed;
}

/* Subtle paper grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.08 0 0 0 0 0.05 0 0 0 0.045 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }

a { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 236, 220, 0.78);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.brand-mark { display: inline-flex; }
.brand-mark img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }

.brand-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--primary);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}
.brand-name em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.brand-tagline {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav > a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--fg);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.site-nav > a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right .25s ease;
}
.site-nav > a:hover { color: var(--accent); }
.site-nav > a:hover::after { right: 0; }

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--primary);
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.phone-cta::after { content: none; }
.phone-cta:hover {
  background: var(--primary);
  color: var(--bg-paper);
  transform: translateY(-1px);
}

/* ============================================================
   COMMON: EYEBROW / SECTION HEADS
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}
.eb-no {
  color: var(--accent);
  font-weight: 600;
}
.eb-dot { opacity: 0.4; }
.eb-hi {
  font-family: var(--f-dev);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--primary);
  margin-top: -2px;
}
.eyebrow-light,
.eyebrow-light .eb-en,
.eyebrow-light .eb-hi { color: var(--bg-paper); }
.eyebrow-light .eb-no { color: var(--accent-soft); }

.section-head { max-width: 720px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head-center .eyebrow { justify-content: center; }
.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 20px 0 18px;
  color: var(--fg);
  font-variation-settings: "opsz" 96;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}
.section-lede {
  font-size: 1.05rem;
  color: var(--fg-soft);
  max-width: 60ch;
  margin: 0;
}
.section-head-center .section-lede { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn svg { transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 10px 24px -10px rgba(217, 107, 22, 0.45);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: var(--bg-paper);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(56px, 8vw, 110px) var(--gutter) clamp(72px, 10vw, 130px);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  filter: saturate(0.75) contrast(0.94) blur(3px);
  transform: scale(1.1);
}
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      var(--bg) 0%,
      rgba(243, 236, 220, 0.97) 30%,
      rgba(243, 236, 220, 0.9) 60%,
      rgba(243, 236, 220, 0.78) 85%,
      rgba(243, 236, 220, 0.65) 100%),
    radial-gradient(ellipse 60% 80% at 95% 50%, rgba(217, 107, 22, 0.14), transparent 70%),
    linear-gradient(180deg,
      rgba(243, 236, 220, 0.45) 0%,
      transparent 25%,
      transparent 70%,
      rgba(243, 236, 220, 0.75) 100%);
}

/* Decorative double rule top + bottom */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--line);
}
.hero::before { top: 16px; }
.hero::after { bottom: 16px; }

.hero-grid {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 350;
  font-size: clamp(2.6rem, 6.8vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 28px 0 28px;
  color: var(--fg);
  font-variation-settings: "opsz" 144, "SOFT" 20;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  position: relative;
  padding: 0 4px;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 8%;
  height: 0.16em;
  background: var(--accent-pale);
  z-index: -1;
  transform: skewX(-6deg);
}

.hero-lede {
  max-width: 540px;
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.55;
  color: var(--fg-soft);
  margin: 0 0 32px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-meta {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 56px);
  border-top: 1px solid var(--line);
  max-width: 640px;
}
.hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta li span {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  letter-spacing: -0.025em;
  color: var(--primary);
  line-height: 1;
  font-variation-settings: "opsz" 96;
}
.hero-meta li span sup {
  font-size: 0.5em;
  color: var(--accent);
  font-weight: 400;
  vertical-align: super;
  margin-left: 2px;
}
.hero-meta li em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* HERO PORTRAIT CARD */
.hero-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  justify-self: end;
  max-width: 440px;
  width: 100%;
}

.portrait-stack {
  position: relative;
  width: 100%;
  transform: rotate(1.2deg);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.portrait-stack:hover { transform: rotate(0); }

.portrait-frame {
  position: relative;
  background: var(--bg-paper);
  padding: 18px 18px 14px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.05),
    0 18px 40px -20px rgba(8, 42, 31, 0.45),
    0 40px 90px -40px rgba(0,0,0,0.4);
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.portrait-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0c1a14;
}
.portrait-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Blurred backdrop — same image, scaled & desaturated to simulate bokeh */
.portrait-img .portrait-bg {
  object-position: 10% center;
  transform: scale(1.45);
  filter: blur(24px) saturate(1.15) brightness(0.92) contrast(0.95);
}
/* Sharp foreground — zoomed out to show the founder's full head & shoulders,
   then masked with a radial gradient so it fades into the blurred backdrop */
.portrait-img .portrait-fg {
  object-position: 5% 22%;
  transform: scale(1.45);
  transform-origin: 5% 22%;
  filter: saturate(1.04) contrast(1.04);
  -webkit-mask-image: radial-gradient(
    ellipse 62% 72% at 28% 38%,
    #000 52%,
    rgba(0,0,0,0.78) 70%,
    rgba(0,0,0,0.35) 86%,
    transparent 100%
  );
          mask-image: radial-gradient(
    ellipse 62% 72% at 28% 38%,
    #000 52%,
    rgba(0,0,0,0.78) 70%,
    rgba(0,0,0,0.35) 86%,
    transparent 100%
  );
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.portrait-stack:hover .portrait-img .portrait-fg {
  transform: scale(1.52);
}
/* Subtle vignette to deepen the portrait edges */
.portrait-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 100% at 28% 40%, transparent 55%, rgba(8, 26, 20, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 26, 20, 0.06) 0%, transparent 30%, transparent 70%, rgba(8, 26, 20, 0.22) 100%);
  mix-blend-mode: multiply;
}

/* Decorative corner brackets */
.portrait-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--accent);
  z-index: 2;
}
.portrait-corner-tl { top: 4px; left: 4px; border-right: none; border-bottom: none; }
.portrait-corner-tr { top: 4px; right: 4px; border-left: none; border-bottom: none; }
.portrait-corner-bl { bottom: 4px; left: 4px; border-right: none; border-top: none; }
.portrait-corner-br { bottom: 4px; right: 4px; border-left: none; border-top: none; }

/* Round vintage badge */
.portrait-badge {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid var(--bg-paper);
  box-shadow: 0 0 0 4px var(--primary), 0 10px 24px -10px rgba(0,0,0,0.4);
  transform: rotate(-8deg);
  z-index: 3;
}
.badge-line {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.badge-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variation-settings: "opsz" 96;
}

.portrait-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  text-align: center;
}
.caption-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.caption-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--primary);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36;
}
.caption-sign {
  width: 130px;
  height: 26px;
  color: var(--accent);
  margin-top: 2px;
  opacity: 0.85;
}

/* Trust pulse indicator under portrait */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--primary);
  box-shadow: 0 6px 18px -10px rgba(0,0,0,0.15);
}
.trust-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2e9a4a;
  box-shadow: 0 0 0 0 rgba(46, 154, 74, 0.5);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 154, 74, 0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(46, 154, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 154, 74, 0); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* ============================================================
   PROGRAMS · marquee strip
   ============================================================ */

.programs {
  background: var(--primary);
  color: var(--bg-paper);
  padding: 24px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--primary-deep);
  position: relative;
}
.programs::before,
.programs::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.programs::before {
  left: 0;
  background: linear-gradient(90deg, var(--primary), transparent);
}
.programs::after {
  right: 0;
  background: linear-gradient(-90deg, var(--primary), transparent);
}

.programs-track {
  display: flex;
  gap: 38px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.program {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.01em;
  color: var(--bg-paper);
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.bullet {
  color: var(--accent-soft);
  font-size: 14px;
  align-self: center;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(60px, 7vw, 90px);
}

.service-grid {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-card {
  position: relative;
  padding: 36px 28px 44px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .25s ease;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: rgba(15, 61, 46, 0.035); }
.service-card:hover .service-line { width: 100%; background: var(--accent); }
.service-card:hover .service-icon { color: var(--accent); transform: translateY(-2px) rotate(-3deg); }

.service-no {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  font-weight: 500;
}
.service-icon {
  display: inline-flex;
  width: 44px; height: 44px;
  color: var(--primary);
  margin: 4px 0 10px;
  transition: color .3s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
  color: var(--fg);
  font-variation-settings: "opsz" 36;
}
.service-sub {
  font-family: var(--f-dev);
  font-size: 15px;
  color: var(--primary-soft);
  letter-spacing: 0;
  margin-top: -2px;
}
.service-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-soft);
  margin: 8px 0 0;
}
.service-line {
  position: absolute;
  left: 0; bottom: -1px;
  width: 28px;
  height: 2px;
  background: var(--primary);
  transition: width .35s ease, background .25s ease;
}

/* ============================================================
   ORNAMENT DIVIDER
   ============================================================ */

.ornament {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 40px) var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  color: var(--accent);
}
.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.ornament-mark {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--accent);
  opacity: 0.8;
}

/* ============================================================
   WHY · pull quote + checklist
   ============================================================ */

.why {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  position: relative;
}
.why::before {
  content: "";
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  top: 16px; height: 1px;
  background: var(--line);
}

.why-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.why-quote {
  position: relative;
  margin: 0;
  padding-left: clamp(40px, 5vw, 80px);
}
.quote-mark {
  position: absolute;
  left: -10px;
  top: -40px;
  font-family: var(--f-display);
  font-size: clamp(8rem, 14vw, 14rem);
  line-height: 1;
  color: var(--accent);
  opacity: 0.32;
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.why-quote blockquote {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--fg);
  text-wrap: balance;
  font-variation-settings: "opsz" 96;
}
.why-quote blockquote em {
  font-style: italic;
  color: var(--accent);
}
.why-quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.why-quote figcaption strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--primary);
}
.why-quote figcaption span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.why-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.why-points li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.why-points li:first-child { border-top: 1px solid var(--line); }
.why-arrow {
  font-family: var(--f-mono);
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  width: 22px;
  margin-top: 2px;
}
.why-points li p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: var(--fg);
}

/* ============================================================
   JOURNEY · five-step timeline
   ============================================================ */

.journey {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}

.journey-track {
  list-style: none;
  margin: clamp(48px, 6vw, 80px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}

/* Connecting line through all steps */
.journey-track::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 36px;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--line) 0,
    var(--line) 6px,
    transparent 6px,
    transparent 12px
  );
}

.journey-step {
  position: relative;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-no {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.step-no::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed var(--line);
}
.step-no span {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: 26px;
  color: var(--primary);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36;
}

.journey-step:hover .step-no {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.journey-step:hover .step-no span { color: white; }

.journey-step h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--fg);
  font-variation-settings: "opsz" 36;
}
.journey-step p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-soft);
  margin: 0;
  max-width: 22ch;
}

/* ============================================================
   VOICES · testimonial cards
   ============================================================ */

.voices {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) var(--gutter);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(40px, 5vw, 64px);
}

.voice-card {
  position: relative;
  margin: 0;
  padding: 32px 28px 28px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.voice-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -22px rgba(8, 42, 31, 0.3);
}
.voice-card-feature {
  background: var(--primary);
  color: var(--bg-paper);
  border-color: var(--primary);
  transform: translateY(-12px);
}
.voice-card-feature::before { border-color: rgba(250, 244, 230, 0.18); }
.voice-card-feature:hover { transform: translateY(-16px); }

.voice-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 56px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.7;
}
.voice-card-feature .voice-mark { color: var(--accent-soft); opacity: 1; }

.voice-card blockquote {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin: 0;
  color: inherit;
  font-variation-settings: "opsz" 36;
  text-wrap: pretty;
}

.voice-card figcaption {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.voice-card-feature figcaption { border-top-color: rgba(250, 244, 230, 0.2); }
.voice-card figcaption strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
}
.voice-card-feature figcaption strong { color: var(--bg-paper); }
.voice-card figcaption span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.voice-card-feature figcaption span { color: var(--accent-soft); }

/* ============================================================
   ENQUIRY · the headline section
   ============================================================ */

.enquiry {
  position: relative;
  isolation: isolate;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  color: var(--bg-paper);
  overflow: hidden;
}
.enquiry-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.enquiry-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% center;
  filter: saturate(0.7) contrast(1) brightness(0.6);
  transform: scale(1.04);
}
.enquiry-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(8, 42, 31, 0.94) 0%,
      rgba(8, 42, 31, 0.86) 40%,
      rgba(8, 42, 31, 0.72) 70%,
      rgba(8, 42, 31, 0.62) 100%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(217, 107, 22, 0.28), transparent 70%);
}

.enquiry-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.enquiry-intro { padding-top: 12px; }

.enquiry-title {
  font-family: var(--f-display);
  font-weight: 350;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 24px 0 22px;
  color: var(--bg-paper);
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.enquiry-title em {
  font-style: italic;
  color: var(--accent-soft);
  font-weight: 400;
}

.enquiry-lede {
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 46ch;
  color: rgba(250, 244, 230, 0.78);
  margin: 0 0 40px;
}

.enquiry-contact {
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(250, 244, 230, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
}
.enquiry-contact > div { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.enquiry-contact-wide { grid-column: 1 / -1; }
.enquiry-contact dd a { word-break: break-word; }
.enquiry-contact dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.enquiry-contact dd {
  margin: 0;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--bg-paper);
  font-variation-settings: "opsz" 24;
}
.enquiry-contact dd a {
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 244, 230, 0.3);
  transition: border-color .2s;
}
.enquiry-contact dd a:hover { border-color: var(--accent-soft); }

/* ============================================================
   ENQUIRY FORM (paper card)
   ============================================================ */

.enquiry-form {
  background: var(--bg-paper);
  color: var(--fg);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 30px 60px -30px rgba(8, 42, 31, 0.6),
    0 60px 120px -50px rgba(0,0,0,0.4);
}
.enquiry-form::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  pointer-events: none;
}

.form-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.form-no {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.form-head h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--primary);
  font-variation-settings: "opsz" 36;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0 14px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.field label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  transition: color .2s;
}
.field input,
.field textarea {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.005em;
  border: none;
  background: transparent;
  outline: none;
  padding: 4px 0 2px;
  color: var(--fg);
  width: 100%;
  resize: vertical;
  font-variation-settings: "opsz" 36;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(28, 26, 20, 0.28);
  font-style: italic;
}
.field textarea { min-height: 56px; line-height: 1.4; }

.field::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -1px;
  height: 2px;
  background: var(--accent);
  transition: right .3s ease;
}
.field:focus-within::after { right: 0; }
.field:focus-within label { color: var(--accent); }

.field.invalid::after {
  right: 0;
  background: #b04020;
}
.field.invalid label { color: #b04020; }

/* Consent checkbox */
.field-consent {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  cursor: pointer;
}
.consent input {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.consent-box {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--primary);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-paper);
  color: transparent;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  flex-shrink: 0;
  margin-top: 2px;
}
.consent:hover .consent-box {
  border-color: var(--accent);
}
.consent input:focus-visible + .consent-box {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.consent input:checked + .consent-box {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: scale(1.02);
}
.consent-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg);
}
.consent-text strong {
  font-weight: 500;
  color: var(--fg);
}
.consent-fine {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.55;
}
.consent-fine a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-pale);
}
.consent-fine a:hover { border-color: var(--accent); }
.consent-error {
  display: none;
  margin: 12px 0 0;
  font-size: 12.5px;
  color: #b04020;
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
}
.field-consent.invalid .consent-error { display: block; }
.field-consent.invalid .consent-box { border-color: #b04020; }

.disclaimer a {
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color .2s;
}
.disclaimer a:hover { border-color: var(--accent); }

.btn-submit {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
  background: var(--primary);
  color: var(--bg-paper);
  padding: 18px 22px;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
}
.btn-submit:hover { background: var(--primary-deep); transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }

.disclaimer {
  margin: 22px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
  display: flex;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.disclaimer strong {
  color: var(--primary);
  font-weight: 600;
}
.disclaimer em {
  font-style: italic;
  color: var(--accent-deep);
  font-family: var(--f-display);
  font-size: 13.5px;
}
.disclaimer-mark {
  font-family: var(--f-display);
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -1px;
}

.form-success {
  display: none;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 4px;
  background: rgba(15, 61, 46, 0.08);
  border: 1px solid var(--line);
  align-items: center;
  gap: 14px;
  color: var(--primary);
}
.form-success svg { flex-shrink: 0; }
.form-success strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 16px;
  display: block;
}
.form-success span {
  font-size: 13.5px;
  color: var(--fg-soft);
}
.form-success.is-visible { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 36px var(--gutter);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-brand { display: flex; flex-direction: column; line-height: 1; }
.footer-brand .brand-name { font-size: 20px; }
.footer-brand .brand-tagline { font-size: 9.5px; }

.footer-contact,
.footer-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-soft);
}
.footer-contact a {
  text-decoration: none;
  color: var(--primary);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.footer-contact a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.footer-dot { opacity: 0.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-portrait { justify-self: center; max-width: 380px; }
  .hero-portrait .portrait-stack { transform: rotate(0); }
  .hero-bg img { object-position: 80% center; }
  .hero-wash {
    background:
      linear-gradient(180deg,
        rgba(243, 236, 220, 0.92) 0%,
        rgba(243, 236, 220, 0.82) 35%,
        rgba(243, 236, 220, 0.7) 70%,
        rgba(243, 236, 220, 0.55) 100%);
  }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(1),
  .service-card:nth-child(2) { border-bottom: 1px solid var(--line); }
  .service-card:nth-child(2) { border-right: none; }
  .service-card:nth-child(4) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .journey-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }
  .journey-track::before { display: none; }
  .voices-grid { grid-template-columns: 1fr 1fr; }
  .voice-card-feature { grid-column: 1 / -1; transform: none; }
  .voice-card-feature:hover { transform: translateY(-4px); }
  .enquiry-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .header-inner { gap: 12px; }
  .site-nav { gap: 14px; }
  .site-nav > a:not(.phone-cta) { display: none; }
  .brand-tagline { display: none; }

  .hero { min-height: auto; padding-top: 56px; padding-bottom: 70px; }
  .hero-meta {
    gap: 22px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-meta li { flex: 1 1 30%; min-width: 90px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-scroll { display: none; }

  .portrait-badge { width: 78px; height: 78px; top: -20px; right: -16px; }
  .badge-num { font-size: 22px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
  }
  .service-card:last-child { border-bottom: none; }

  .quote-mark { top: -28px; font-size: 7rem; }
  .why-quote { padding-left: 28px; }

  .journey-track { grid-template-columns: 1fr; gap: 32px; }

  .voices-grid { grid-template-columns: 1fr; }

  .enquiry-contact { grid-template-columns: 1fr 1fr; }

  .field input,
  .field textarea { font-size: 19px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   LEGAL PAGE
   ============================================================ */

.legal-body { background: var(--bg-paper); }

.legal {
  padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(72px, 9vw, 130px);
  position: relative;
}
.legal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(217, 107, 22, 0.05), transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(15, 61, 46, 0.05), transparent 60%);
}

.legal-shell {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.legal-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 36px;
  margin-bottom: 48px;
}
.legal-title {
  font-family: var(--f-display);
  font-weight: 350;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 20px 0 18px;
  color: var(--fg);
  font-variation-settings: "opsz" 144;
}
.legal-title em {
  font-style: italic;
  color: var(--accent);
}
.legal-lede {
  font-size: 1.05rem;
  color: var(--fg-soft);
  max-width: 60ch;
  margin: 0 0 22px;
}
.legal-lede time {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--primary);
  white-space: nowrap;
}

.legal-toc {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
}
.legal-toc a {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}
.legal-toc a:hover { color: var(--accent); }
.legal-toc-dot { color: var(--accent); opacity: 0.6; }

.legal-article {
  margin-bottom: 64px;
  scroll-margin-top: 90px;
}
.legal-article-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.legal-no {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.legal-article-head h2 {
  font-family: var(--f-display);
  font-weight: 450;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--primary);
  font-variation-settings: "opsz" 96;
}

.legal-section {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--fg);
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-variation-settings: "opsz" 36;
}
.legal-section h3 span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
}
.legal-section p,
.legal-section li {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fg-soft);
}
.legal-section p { margin: 0 0 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  margin: 0 0 4px;
  padding-left: 22px;
}
.legal-section li {
  margin-bottom: 6px;
}
.legal-section li::marker { color: var(--accent); }
.legal-section a {
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-pale);
  transition: border-color .2s;
}
.legal-section a:hover { border-color: var(--accent); }
.legal-section em {
  font-family: var(--f-display);
  font-style: italic;
  font-variation-settings: "opsz" 36;
}
.legal-section strong {
  color: var(--primary);
  font-weight: 600;
}
.legal-section code {
  font-family: var(--f-mono);
  font-size: 0.85em;
  background: var(--bg-deep);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--primary);
}

.legal-contact {
  margin-top: 24px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--primary);
  color: var(--bg-paper);
  border-radius: 4px;
  scroll-margin-top: 90px;
  position: relative;
  overflow: hidden;
}
.legal-contact::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(250, 244, 230, 0.16);
  pointer-events: none;
}
.legal-contact .eyebrow,
.legal-contact .eyebrow .eb-en {
  color: var(--bg-paper);
}
.legal-contact .eb-no { color: var(--accent-soft); }
.legal-contact-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin: 14px 0 12px;
  color: var(--bg-paper);
  font-variation-settings: "opsz" 96;
}
.legal-contact > p {
  color: rgba(250, 244, 230, 0.75);
  font-size: 15px;
  margin: 0 0 24px;
  max-width: 50ch;
}
.legal-contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  margin: 0 0 28px;
}
.legal-contact-list > div { display: flex; flex-direction: column; gap: 4px; }
.legal-contact-list dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.legal-contact-list dd {
  margin: 0;
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--bg-paper);
  font-variation-settings: "opsz" 24;
}
.legal-contact-list dd a {
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 244, 230, 0.3);
  transition: border-color .2s;
}
.legal-contact-list dd a:hover { border-color: var(--accent-soft); }

@media (max-width: 720px) {
  .legal-contact-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
