/* =====================================================
   DR. ALINA SCHULHOFER — ARCHITECTURE OF EXCELLENCE™
   Complete Design System
   ===================================================== */

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

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  /* Ivory (default) */
  --bg:          #F3EFE6;
  --bg2:         #EDE8DD;
  --bg3:         #E6E0D3;
  --ink:         #1C1916;
  --ink2:        #5A5248;
  --ink3:        #8A8078;
  --accent:      #A8824E;
  --accent-2:    #C9A97A;
  --rule:        rgba(28,25,22,.14);
  --rule-strong: rgba(28,25,22,.30);
  --photo-filter: none;
  --card-bg:     rgba(255,255,255,.45);
  --card-border: rgba(28,25,22,.10);

  /* Type scale */
  --display:  clamp(3.2rem, 7.5vw, 7.5rem);
  --h1:       clamp(2.4rem, 5vw, 5rem);
  --h2:       clamp(1.8rem, 3vw, 3rem);
  --h3:       clamp(1.25rem, 1.9vw, 1.9rem);
  --body:     1.0625rem;
  --small:    0.875rem;
  --eyebrow:  0.72rem;

  /* Spacing */
  --gap:      clamp(1.5rem, 4vw, 4rem);
  --section:  clamp(3.5rem, 7vw, 7rem);
  --nav-h:    76px;
  --max-w:    1320px;
  --prose-w:  740px;

  /* Motion */
  --ease:     cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(0,0,.2,1);
  --dur:      .6s;
}

:root[data-theme="luxe"] {
  --bg:          #121110;
  --bg2:         #1A1917;
  --bg3:         #222120;
  --ink:         #EFE9DC;
  --ink2:        #B8B0A4;
  --ink3:        #7A7268;
  --rule:        rgba(239,233,220,.12);
  --rule-strong: rgba(239,233,220,.28);
  --photo-filter: grayscale(15%) contrast(1.08);
  --card-bg:     rgba(255,255,255,.04);
  --card-border: rgba(239,233,220,.10);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: var(--body);
  font-weight: 300;
  line-height: 1.7;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
.t-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.t-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--h1);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.015em;
}

.t-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--h2);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.t-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--h3);
  font-weight: 400;
  line-height: 1.3;
}

.t-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: var(--eyebrow);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
}

.t-italic { font-style: italic; }

/* ── LAYOUT UTILITIES ────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 5rem);
}

.rule {
  border: none;
  border-top: 1px solid var(--rule);
  width: 100%;
}

.mobile-br { display: none; }
.d-br { display: inline; }

.rule--accent {
  border-top-color: var(--accent);
  width: 3rem;
}

/* ── SCROLL REVEAL ───────────────────────────────────── */
/* ── Reveal system ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(0,.55,.45,1), transform .9s cubic-bezier(0,.55,.45,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
/* Heading variant — larger drift, slightly slower */
.reveal.reveal--heading {
  transform: translateY(40px);
  transition: opacity 1.1s cubic-bezier(0,.55,.45,1), transform 1.1s cubic-bezier(0,.55,.45,1);
}
/* Fade-only variant for subtle elements */
.reveal.reveal--fade {
  transform: none;
  transition: opacity 1.2s ease;
}
.reveal[data-delay="1"] { transition-delay: .2s; }
.reveal[data-delay="2"] { transition-delay: .42s; }
.reveal[data-delay="3"] { transition-delay: .62s; }
.reveal[data-delay="4"] { transition-delay: .82s; }
.reveal[data-delay="5"] { transition-delay: 1s; }
.reveal[data-delay="6"] { transition-delay: 1.2s; }

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

/* ── NAV ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}

/* Subtle gradient behind nav on hero — keeps wordmark legible without a solid bar */
.hero ~ * + *, .hero + #nav,
#nav::after {
  content: '';
}
#nav::before {
  content: '';
  position: absolute;
  inset: 0;
  height: calc(var(--nav-h) * 1.8);
  background: linear-gradient(to bottom, rgba(243,239,230,0.72) 0%, transparent 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity .4s var(--ease);
  z-index: -1;
}
#nav.scrolled::before { opacity: 0; }

#nav.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 5rem);
  padding-top: 8px;
}

.nav-wordmark { flex-shrink: 0; }

.nav-links { margin-left: auto; margin-right: 2.5rem; }

.nav-cta { flex-shrink: 0; }

.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: .03em;
  line-height: 1.2;
  white-space: nowrap;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a, .nav-dd-trigger {
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink2);
  transition: color .25s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-links a:hover,
.nav-dd-trigger:hover { color: var(--ink); }
.nav-links a[data-active] { color: var(--accent); }

/* Dropdown */
.nav-dd { position: relative; }

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 1.25rem 1.75rem;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

.nav-dd.open .nav-dd-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dd-menu a {
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink2);
  padding-block: .15rem;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-dd-menu a:hover { color: var(--ink); border-bottom-color: var(--accent); }

/* CTA nav button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--ink);
  padding: .6rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background .25s, color .25s;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  padding-top: calc(var(--nav-h) + 2rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: .02em;
  color: var(--ink);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu hr { width: 3rem; border-top: 1px solid var(--rule); }

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

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #F3EFE6;
}

/* Portrait — right column, head-to-waist crop via object-position */
.hero-photo {
  position: absolute;
  right: 0;
  top: 72px;
  bottom: 0;
  width: 52%;
  z-index: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 15%;
  display: block;
}

/* Photo edge blending — fades top, left, right into background */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, #F3EFE6 0%, rgba(243,239,230,0.85) 6%, rgba(243,239,230,0.3) 14%, transparent 22%),
    linear-gradient(to right, #F3EFE6 0%, rgba(243,239,230,0.6) 8%, transparent 18%),
    linear-gradient(to left, #F3EFE6 0%, rgba(243,239,230,0.5) 5%, transparent 12%);
}

/* Blend overlays — sit above photo, below text */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* Left mask — solid ivory for text, dissolves into photo */
    linear-gradient(to right,
      #F3EFE6 0%,
      #F3EFE6 37%,
      rgba(243,239,230,0.88) 46%,
      rgba(243,239,230,0.40) 55%,
      rgba(243,239,230,0.08) 63%,
      transparent 70%),
    /* Right edge — seamless fade */
    linear-gradient(to right, transparent 78%, rgba(243,239,230,0.45) 88%, rgba(243,239,230,0.90) 96%, #F3EFE6 100%),
    /* Top — thin nav clearance only */
    linear-gradient(to bottom, #F3EFE6 0%, rgba(243,239,230,0.70) 7%, transparent 14%),
    /* Bottom — waist fade */
    linear-gradient(to top, #F3EFE6 0%, #F3EFE6 16%, rgba(243,239,230,0.65) 28%, transparent 42%);
}

/* Text sits above both the image and the gradient overlay */
.hero-body {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--nav-h) + 8vh);
}

.hero-text {
  /* match .container + nav-inner exactly so left edge aligns with wordmark */
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
  padding-inline: clamp(1.5rem, 5vw, 5rem);
  padding-block: clamp(5rem, 10vw, 10rem);
  /* limit how wide the actual text block is within the container */
  box-sizing: border-box;
}

.hero-text > * {
  max-width: 560px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--display);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.025em;
  margin-bottom: 2rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  max-width: 420px;
  color: var(--ink2);
  font-size: .95rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .5;
  z-index: 3;
}
.hero-scroll span {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--ink), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%       { transform: scaleY(1); transform-origin: top; }
  50.001%   { transform-origin: bottom; }
}

/* Photo placeholder when no image */
.hero-image-placeholder {
  width: 100%; height: 100%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink3);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .hero-text { max-width: 100%; padding-inline: clamp(1.5rem, 5vw, 5rem); }
  .hero-image img { object-position: 70% top; }
  .hero-image::after {
    background:
      linear-gradient(to bottom, var(--bg) 0%, transparent 10%),
      linear-gradient(to top, var(--bg) 0%, transparent 18%),
      linear-gradient(to right, var(--bg) 0%, color-mix(in srgb, var(--bg) 70%, transparent) 50%, transparent 80%);
  }
  .hero-scroll { display: none; }
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid;
  transition: background .25s var(--ease), color .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }

/* Hero CTA uses refined ghost style */
.hero .btn-primary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.hero .btn-primary:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-2); border-color: var(--accent-2); }

/* ── STATEMENT BAND ──────────────────────────────────── */
.statement-band {
  padding-block: clamp(3rem, 6vw, 6rem);
  background: var(--bg2);
  border-block: 1px solid var(--rule);
  text-align: center;
}
.statement-quote { margin: 0; }
.statement-band p, .statement-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  max-width: 800px;
  margin-inline: auto;
  color: var(--ink);
}
.statement-band p em { color: var(--accent); font-style: italic; }
.statement-band .brand-mark {
  display: block;
  font-style: normal;
  font-family: 'Jost', sans-serif;
  font-size: clamp(.85rem, 1.1vw, 1.05rem);
  font-weight: 300;
  letter-spacing: .08em;
  margin-top: 1.25rem;
  color: var(--ink2);
}
.statement-cite {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(.68rem, .85vw, .78rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .statement-band .brand-mark { font-size: .82rem; }
}

/* ── PREMISE SPLIT ───────────────────────────────────── */
.premise {
  padding-block: var(--section);
}
.premise-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(4rem, 8vw, 10rem);
  align-items: center;
}
.premise-accent {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--ink2);
  align-self: center;
}
.premise-gold {
  font-style: italic;
  color: var(--accent);
}
.premise-body { color: var(--ink2); font-size: .9rem; line-height: 1.8; }
.premise-body p + p { margin-top: 1em; }
.premise-body .rule--accent { margin-block: 1.5rem; }

@media (max-width: 768px) {
  .premise-inner { grid-template-columns: 1fr; }
}

/* ── PULL QUOTE ──────────────────────────────────────── */
.pull-quote {
  padding-block: var(--section);
  border-block: 1px solid var(--rule);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '❊';
  position: absolute;
  font-size: 18rem;
  opacity: .03;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
}
.pull-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.2vw, 2.0rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  max-width: 900px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.pull-quote blockquote::before {
  content: '"';
  font-size: 6rem;
  line-height: 0;
  vertical-align: -.5em;
  color: var(--accent);
  opacity: .4;
  margin-right: .1em;
}
.pull-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink3);
}

/* ── TEASER GRID ─────────────────────────────────────── */
.teasers {
  padding-block: var(--section);
}
.teasers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  gap: 1rem;
  flex-wrap: wrap;
}
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--rule);
}
.teaser-card {
  background: var(--bg);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background .3s;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.teaser-card:hover {
  background: var(--bg2);
  border-color: var(--rule);
}
.teaser-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  transition: color .3s;
}
.teaser-card:hover .teaser-num { color: var(--accent); }
.teaser-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--accent);
}
.teaser-body { color: var(--ink2); font-size: .9rem; line-height: 1.65; flex: 1; }
.teaser-link {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
}
.teaser-link::after { content: '→'; }

@media (max-width: 900px) {
  .teaser-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .teaser-grid { grid-template-columns: 1fr; }
}

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(2rem, 4vw, 4rem));
  padding-bottom: clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, color-mix(in srgb, var(--accent) 6%, transparent), transparent);
  pointer-events: none;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--gap);
}
.page-hero-text { position: relative; z-index: 1; }
.page-hero-text h1 + * { margin-top: 3rem; }
.page-hero-meta {
  text-align: right;
  position: relative;
  z-index: 1;
}
.page-hero-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  letter-spacing: -.05em;
  user-select: none;
}

@media (max-width: 768px) {
  .page-hero-inner { grid-template-columns: 1fr; }
}

/* ── PROSE ───────────────────────────────────────────── */
.prose-section {
  padding-block: var(--section);
}
.prose {
  max-width: var(--prose-w);
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.85;
}
.prose p + p { margin-top: 1.6em; }
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--ink);
  margin-top: 2.5em;
  margin-bottom: .75em;
  letter-spacing: -.01em;
}
.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 2em;
  margin-bottom: .5em;
  font-style: italic;
}
.prose strong { color: var(--ink); font-weight: 500; }
.prose em { font-style: italic; }
.prose .pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink2);
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
  margin-block: 3.75rem;
  line-height: 1.75;
}

/* ── CREDENTIALS GRID ────────────────────────────────── */
.creds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--rule);
  margin-block: clamp(1.5rem, 3vw, 3rem);
}
.cred-item {
  background: var(--bg);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.cred-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--accent);
}
.cred-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--accent);
  line-height: 1.2;
}
.cred-value {
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--ink3);
}

/* ── PILLARS ─────────────────────────────────────────── */
.pillars-section {
  padding-block: var(--section);
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.pillar {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.pillar:nth-child(2n) { border-right: none; }
.pillar:hover { background: var(--bg2); }
.pillar::before {
  content: attr(data-num);
  position: absolute;
  top: -1rem; right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  transition: color .3s;
}
.pillar:hover::before { color: color-mix(in srgb, var(--accent) 25%, transparent); }
.pillar-num {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.pillar-title em { font-style: italic; color: var(--accent); }
.pillar-body { color: var(--ink2); font-size: .92rem; line-height: 1.7; }

@media (max-width: 640px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
}

/* ── SERVICE SECTIONS ────────────────────────────────── */
.svc-anchor-link {
  text-decoration: none;
  color: var(--accent);
  transition: color .2s;
}
.svc-anchor-link:hover { color: var(--ink); }

.svc-detail {
  padding-block: var(--section);
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: calc(var(--nav-h) + 2rem);
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}
.svc-sidebar { position: sticky; top: calc(var(--nav-h) + 3rem); }
.svc-sidebar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--rule-strong);
  line-height: 1;
  margin-bottom: 1rem;
}
.svc-sidebar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.svc-sidebar-tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: .35rem .8rem;
}
.svc-content { color: var(--ink2); }
.svc-content p + p { margin-top: 1.3em; line-height: 1.8; }
.svc-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 2em;
  margin-bottom: .5em;
  font-style: italic;
}
.svc-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.svc-feature {
  display: flex;
  gap: 1rem;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--ink2);
}
.svc-feature::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}
.svc-content h3.series-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.25;
  padding-bottom: .8rem;
  margin-top: 2.75rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(168,130,78,0.28);
}
.svc-content h3.series-heading + p { font-size: .9rem; line-height: 1.7; }

.svc-inquire {
  display: inline-block;
  margin-top: 3.5rem;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(168,130,78,0.4);
  transition: color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.svc-inquire::after { content: ' →'; }
.svc-inquire:hover { color: var(--ink); border-color: var(--ink); }

@media (max-width: 768px) {
  .svc-detail-inner { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
}

/* ===== Hero headline: word-by-word reveal ===== */
.hero-headline .word-mask,
.page-hero-text h1 .word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero-headline .word-inner,
.page-hero-text h1 .word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s var(--ease-out), opacity 1s var(--ease-out);
  will-change: transform;
}
.hero-headline.words-in .word-inner,
.page-hero-text h1.words-in .word-inner {
  transform: translateY(0);
  opacity: 1;
}

/* ===== Image reveal mask (gated on js-anim so images never hide without JS) ===== */
.js-anim .about-circle-hero,
.js-anim .about-portrait-inner img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.06);
  transition: clip-path 1.3s var(--ease-out), transform 1.6s var(--ease-out);
}
.js-anim .about-circle-hero.is-visible,
.js-anim .about-portrait.is-visible .about-portrait-inner img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

/* ===== Button hover — clean background transition ===== */
.btn { transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }

/* ===== Inquire arrow nudge ===== */
.svc-inquire::after {
  display: inline-block;
  transition: transform .3s var(--ease-out);
}
.svc-inquire:hover::after { transform: translateX(5px); }

/* ===== Teaser arrow nudge ===== */
.teaser-link::after {
  display: inline-block;
  transition: transform .3s var(--ease-out);
}
.teaser-card:hover .teaser-link::after { transform: translateX(5px); }

@media (prefers-reduced-motion: reduce) {
  .hero-headline .word-inner,
  .page-hero-text h1 .word-inner { transform: none; opacity: 1; transition: none; }
  .about-circle-hero,
  .about-portrait-inner img { clip-path: none; transform: none; }
}

/* ── ABOUT PAGE ──────────────────────────────────────── */
.about-split {
  padding-block: var(--section);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}
.about-portrait {
  padding-right: clamp(1.5rem, 3vw, 3rem);
}
.about-split .prose {
  padding-left: clamp(1.5rem, 3vw, 3rem);
}
.about-portrait {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about-portrait-inner {
  position: relative;
  overflow: hidden;
}
.about-portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) var(--photo-filter);
  display: block;
}
.about-portrait-inner::before,
.about-portrait-inner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 1;
}
.about-portrait-inner::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
}
.about-portrait-inner::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

.about-circle-hero {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 10%;
  border: 2px solid var(--accent);
  display: block;
  flex-shrink: 0;
}
.about-portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink3);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* About credentials grid */
.about-creds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}
.about-cred-col {
  padding-top: .25rem;
}
.about-cred-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.about-cred-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink2);
  padding-left: 1.25rem;
  position: relative;
}
.about-cred-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: .9rem;
}
.about-cred-list--dash li::before {
  content: '—';
}
@media (max-width: 900px) {
  .about-creds-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .about-creds-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
  .about-portrait { position: static; }
}

/* ── CONTACT BAND ────────────────────────────────────── */
#contact {
  padding-block: var(--section);
  background: var(--bg2);
  text-align: center;
  border-top: 1px solid var(--rule);
}
.contact-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.contact-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.015em;
}
.contact-headline em { font-style: italic; color: var(--accent); }
.contact-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent);
  margin-top: 1.75rem;
  letter-spacing: .02em;
  border-bottom: 1px solid var(--accent);
  padding-bottom: .1em;
  transition: opacity .2s;
}
.contact-email:hover { opacity: .7; }

/* ── FOOTER ──────────────────────────────────────────── */
.foot {
  padding-block: 2.5rem;
  border-top: 1px solid var(--rule);
}
.foot-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.foot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.foot-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
}
.foot-copy {
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--ink3);
}
.foot-links {
  display: flex;
  gap: 1.75rem;
}
.foot-links a {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink3);
  transition: color .2s;
}
.foot-links a:hover { color: var(--accent); }

/* ── PHILOSOPHY PAGE INTRO ───────────────────────────── */
.philosophy-intro {
  padding-block: var(--section);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}
@media (max-width: 768px) {
  .philosophy-intro { grid-template-columns: 1fr; }
}

/* Gold section markers — refined breathing room + hairline */
.phil-marker {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: .015em;
  color: var(--accent);
  margin: 0;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(168,130,78,0.28);
}

/* Faint architectural texture band behind one section (full-bleed) */
.philosophy-feature { position: relative; }
.philosophy-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background-color: #EFE9DB;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(168,130,78,0.045) 47px 48px),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(168,130,78,0.045) 47px 48px);
}

/* Editorial portrait slot (mid-page) */
.phil-portrait {
  padding-block: var(--section);
}
.phil-portrait-inner {
  max-width: 900px;
  margin-inline: auto;
}
.phil-portrait figure {
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, #EAE3D4 0 12px, #E4DCCB 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168,130,78,0.30);
}
.phil-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  display: block;
}
.phil-portrait .slot-note {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink3);
  text-align: center;
  padding: 1.5rem;
}
.phil-portrait figcaption {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-top: 1rem;
  text-align: center;
}

/* Section divider — centered gold hairline + diamond ornament */
.sec-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}
.sec-divider::before,
.sec-divider::after {
  content: "";
  width: clamp(44px, 6vw, 84px);
  height: 1px;
  background: rgba(168,130,78,0.45);
}
.sec-divider i {
  width: 5px;
  height: 5px;
  background: var(--accent);
  transform: rotate(45deg);
  display: block;
}

/* ── TWEAKS PANEL ────────────────────────────────────── */
#tweaks-root {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
}

/* ── METHOD PAGE DIMENSIONS ──────────────────────────── */
.method-dims {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
  max-width: 720px;
  margin-inline: auto;
}
.method-dim {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.75rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.method-dim:hover { background: var(--bg2); }
.method-dim-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  padding-top: .2rem;
}
.method-dim-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: .4rem;
}
.method-dim-body p {
  font-size: .82rem;
  line-height: 1.7;
  color: var(--ink2);
}

/* ── LEAD MAGNET POPUP ───────────────────────────────── */
.lm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,25,22,0.55);
  backdrop-filter: blur(3px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.lm-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lm-modal {
  background: var(--bg);
  max-width: 520px;
  width: calc(100% - 3rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  transform: translateY(20px);
  transition: transform .4s var(--ease-out);
}
.lm-overlay.open .lm-modal { transform: translateY(0); }
.lm-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink3);
  line-height: 1;
  padding: .25rem;
}
.lm-eyebrow {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.lm-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: .75rem;
}
.lm-body {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--ink2);
  margin-bottom: 1.75rem;
}
.lm-form { display: flex; flex-direction: column; gap: .75rem; }
.lm-input {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--rule-strong);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  color: var(--ink);
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
}
.lm-input:focus { border-color: var(--accent); }
.lm-input::placeholder { color: var(--ink3); }
.lm-submit { width: 100%; justify-content: center; }
.lm-note {
  font-size: .72rem;
  color: var(--ink3);
  text-align: center;
  margin-top: .5rem;
  line-height: 1.5;
}
.lm-success { display: none; text-align: center; }
.lm-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  margin-bottom: .75rem;
}
.lm-success p { font-size: .88rem; color: var(--ink2); line-height: 1.7; }

@media (max-width: 640px) {
  .method-dim { grid-template-columns: 2.5rem 1fr; gap: 1.25rem; }
  .method-dim-num { font-size: 2rem; }
}

/* ── CONTACT FORM ────────────────────────────────────── */
.contact-form {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cf-input {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--rule-strong);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  color: var(--ink);
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
}
.cf-input:focus { border-color: var(--accent); }
.cf-input::placeholder { color: var(--ink3); }
.cf-textarea { resize: vertical; min-height: 130px; }
.cf-submit { align-self: flex-start; }
.cf-note { font-size: .8rem; color: var(--ink3); margin-top: .25rem; }
.contact-alt {
  font-size: .85rem;
  color: var(--ink2);
  margin-top: 1rem;
}
.contact-alt a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 640px) {
  .cf-row { grid-template-columns: 1fr; }
  .cf-submit { width: 100%; justify-content: center; }
}

/* ── FORMSPREE STATES ────────────────────────────────── */
.cf-success,
[data-fs-success] {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  margin-top: 2rem;
  line-height: 1.5;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
[data-fs-success]:not([hidden]) { display: block; }
.cf-error {
  display: none;
  font-size: .82rem;
  color: #b94040;
  margin-top: .75rem;
}
[data-fs-error]:not([hidden]):not(:empty) { display: block; }
.cf-field { display: flex; flex-direction: column; }
.cf-field-error { font-size: .75rem; color: #b94040; margin-top: .25rem; min-height: 1em; }
.cf-input[aria-invalid="true"] { border-color: #b94040; }
[data-fs-submit-btn]:disabled { opacity: .55; cursor: not-allowed; }

/* ── METHOD LOGO HERO ────────────────────────────────── */
.method-hero {
  background: var(--ink);
  padding-block: clamp(4rem, 8vw, 7rem);
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.method-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.method-logo {
  width: min(680px, 80vw);
  height: auto;
  display: block;
}
.method-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(243,239,230,0.6);
  letter-spacing: .04em;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════
   PREMIUM UPGRADES — v36
   ═══════════════════════════════════════════════════════ */

/* ── Rule draw animation ──────────────────────────────── */
.reveal[data-anim="line"] {
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 1 !important;
  transition: transform .95s var(--ease-out) !important;
}
.reveal[data-anim="line"].in {
  transform: scaleX(1);
}

/* ── Slide-from-left animation ───────────────────────── */
.reveal[data-anim="left"] {
  transform: translateX(-22px);
  opacity: 0;
  transition: transform .7s var(--ease-out), opacity .7s var(--ease-out);
}
.reveal[data-anim="left"].in {
  transform: none;
  opacity: 1;
}

/* ── Heading sizes — keep original t-h2, no drama override */
.t-h2--drama {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--h2);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.01em;
}

/* ── Premise accent — no vertical border ────────────── */

/* ── Tighter section spacing ─────────────────────────── */
.premise {
  padding-block: var(--section);
}
.pillars-section {
  padding-block: var(--section);
}

/* ── Gold ornament section divider ───────────────────── */
.gold-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding-block: clamp(.75rem, 1.5vw, 1.25rem);
  position: relative;
}
.gold-ornament::before,
.gold-ornament::after {
  content: '';
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,130,78,.6));
}
.gold-ornament::after {
  background: linear-gradient(270deg, transparent, rgba(168,130,78,.6));
}
.gold-ornament-mark {
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(168,130,78,.18);
}

/* ── Method dim — staggered slide only, no left line ─── */
.method-dim {
  position: relative;
}
.method-dim::before {
  display: none;
}

/* ── Method seal — confidentiality ornament ──────────── */
.method-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 560px;
  margin-inline: auto;
  margin-top: 2.5rem;
  margin-bottom: 0;
  padding-top: 1.5rem;
  padding-bottom: 0;
  text-align: center;
  position: relative;
}
.method-seal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.method-seal-emblem {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.method-seal-emblem::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(168,130,78,.35);
  transform: rotate(45deg);
}
.method-seal-emblem::after {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}
.method-seal-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .9rem;
  color: var(--ink3);
  line-height: 1.75;
  letter-spacing: .015em;
}

/* ── Transformation Dimension Cards ──────────────────── */
.dim-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.dim-card {
  padding: clamp(1.75rem, 2.5vw, 2.5rem) clamp(1.25rem, 1.8vw, 2rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .25s;
}
.dim-card:hover { background: var(--bg2); }
.dim-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  font-style: italic;
  text-align: center;
}
.dim-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(.95rem, 1.2vw, 1.1rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  text-align: center;
}
.dim-card-body {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.85;
  flex: 1;
}
@media (max-width: 900px) {
  .dim-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dim-cards { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   NEW SECTIONS — v36 additions
   ═══════════════════════════════════════════════════════ */

/* ── Designed For ─────────────────────────────────────── */
.designed-for {
  padding-block: var(--section);
}
.designed-for-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.designed-for-circles {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(.75rem, 2vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.dfc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  flex: 1 1 0;
  min-width: 0;
  opacity: 1;
  transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.dfc-item.dfc-hidden {
  opacity: 0;
  transform: translateY(14px);
}
.dfc-item[data-dfc="2"] { transition-delay: .1s; }
.dfc-item[data-dfc="3"] { transition-delay: .2s; }
.dfc-item[data-dfc="4"] { transition-delay: .3s; }
.dfc-item[data-dfc="5"] { transition-delay: .4s; }
.dfc-circle {
  width: clamp(80px, 10vw, 145px);
  height: clamp(80px, 10vw, 145px);
  border-radius: 50%;
  border: 1px solid rgba(168,130,78,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .3s ease, transform .3s ease;
}
.dfc-item:hover .dfc-circle {
  border-color: var(--accent);
  transform: scale(1.05);
}
.dfc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
}
.dfc-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(.78rem, .95vw, .95rem);
  font-weight: 400;
  color: var(--ink2);
  text-align: center;
  line-height: 1.45;
  transition: color .3s ease;
}
.dfc-item:hover .dfc-label { color: var(--ink); }
@media (max-width: 640px) {
  .designed-for-circles { flex-wrap: wrap; justify-content: center; }
  .dfc-item { flex: 0 0 calc(50% - 1rem); }
  .dfc-circle { width: 110px; height: 110px; }
}

/* ── Founder Note ─────────────────────────────────────── */
.founder-note {
  padding-block: var(--section);
  border-top: 1px solid var(--rule);
}
.founder-note-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}
.founder-note-label {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.founder-note-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.founder-note-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  font-style: italic;
}
.founder-note-rule {
  width: 2.5rem;
  border: none;
  border-top: 1.5px solid var(--accent);
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.founder-prose {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.9;
}
.founder-prose p + p { margin-top: 1.5em; }
.founder-prose .founder-sig {
  display: block;
  margin-top: 2.5rem;
  font-style: italic;
  color: var(--ink3);
  font-size: .95rem;
}
@media (max-width: 768px) {
  .founder-note-inner { grid-template-columns: 1fr; }
  .founder-note-label { position: static; }
}

/* ── FAQ Accordion ────────────────────────────────────── */
.faq-section {
  padding-block: var(--section);
  border-top: 1px solid var(--rule);
}
.faq-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}
.faq-list {
  max-width: 720px;
  margin-inline: auto;
}
.faq-item {
  border-top: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
  transition: transform .35s var(--ease-out), opacity .35s;
}
.faq-icon::before { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after  { width: 1px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease-out);
}
.faq-a-inner {
  padding-bottom: 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.85;
  max-width: 680px;
}
.faq-a-inner p + p { margin-top: 1rem; }
.faq-item.open .faq-a { max-height: 900px; }

/* ── Disclaimer ───────────────────────────────────────── */
.disclaimer-note {
  max-width: 720px;
  margin-inline: auto;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
  border-top: 1px solid var(--rule);
  font-family: 'Jost', sans-serif;
  font-size: .74rem;
  font-weight: 300;
  color: var(--ink3);
  line-height: 1.75;
}
.disclaimer-note strong {
  font-weight: 500;
  color: var(--ink2);
  display: block;
  margin-bottom: .4rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .72rem;
}

/* ── Insights Page ────────────────────────────────────── */
.insights-intro {
  padding-block: var(--section);
  max-width: 680px;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.insight-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: background .25s;
}
.insight-card:nth-child(3n) { border-right: none; }
.insight-card:hover { background: var(--bg2); }
.insight-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.insight-tag {
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}
.insight-date {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  color: var(--ink3);
}
.insight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
}
.insight-excerpt {
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  flex: 1;
}
.insight-read {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
}
@media (max-width: 900px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-card:nth-child(3n) { border-right: 1px solid var(--rule); }
  .insight-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card { border-right: none; }
}

/* ── How We Begin ────────────────────────────────────── */
.how-we-begin {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hwb-eyebrow {
  display: block;
  text-align: center;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem) !important;
}
.hwb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hwb-step {
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}
.hwb-step + .hwb-step::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: var(--rule);
}
.hwb-step--anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.hwb-step--anim.in {
  opacity: 1;
  transform: none;
}
.hwb-step--anim[data-hwb="2"] { transition-delay: .15s; }
.hwb-step--anim[data-hwb="3"] { transition-delay: .3s; }
.hwb-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  font-style: italic;
}
.hwb-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: .75rem;
}
.hwb-step-body {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.85;
  max-width: 26ch;
}
.hwb-cta { display: none; }
@media (max-width: 640px) {
  .hwb-steps { grid-template-columns: 1fr; }
  .hwb-step + .hwb-step::before { top: 0; bottom: auto; left: 15%; right: 15%; width: auto; height: 1px; }
}

/* ── Process connector animation ─────────────────────── */
.hwb-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  overflow: hidden;
}
.hwb-connector-line {
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width 1s cubic-bezier(.4,0,.2,1) .3s;
  align-self: stretch;
}
.hwb-connector-drop {
  width: 1px;
  height: 0px;
  background: linear-gradient(180deg, var(--accent), rgba(168,130,78,.3));
  transition: height .7s cubic-bezier(.4,0,.2,1) 1.2s;
}
.hwb-connector-diamond {
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg) scale(0);
  transition: transform .3s ease 1.85s;
  flex-shrink: 0;
}
.hwb-connector.animate .hwb-connector-line { width: 100%; }
.hwb-connector.animate .hwb-connector-drop { height: 48px; }
.hwb-connector.animate .hwb-connector-diamond { transform: rotate(45deg) scale(1); }
@media (max-width: 640px) {
  .hwb-header { flex-direction: column; gap: .25rem; }
  .hwb-steps { grid-template-columns: 1fr; }
}

/* ── Investment ───────────────────────────────────────── */
.investment-section {
  padding-block: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg2);
}
.investment-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: 960px;
}
.investment-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.investment-content p {
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.9;
}
@media (max-width: 700px) {
  .investment-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Featured Essay ──────────────────────────────────── */
.featured-essay {
  padding-block: clamp(1.75rem, 2.5vw, 2.5rem);
  background: var(--bg3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.featured-essay-inner {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}
.featured-essay-link {
  display: block;
  text-decoration: none;
  margin-top: 1.5rem;
}
.featured-essay-tag {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.featured-essay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: .9rem;
  transition: color .3s ease;
}
.featured-essay-link:hover .featured-essay-title { color: var(--accent); }
.featured-essay-excerpt {
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.featured-essay-cta {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  transition: letter-spacing .3s ease;
}
.featured-essay-link:hover .featured-essay-cta { letter-spacing: .18em; }

/* ── Newsletter capture ───────────────────────────────── */
.newsletter-band {
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.newsletter-band-inner {
  max-width: 520px;
  margin-inline: auto;
}
.newsletter-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: .75rem;
}
.newsletter-sub {
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-inline: auto;
}
.newsletter-band h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: .75rem;
}
.newsletter-band p {
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.insight-card--coming { cursor: default; pointer-events: none; }

/* ── Article Pages ────────────────────────────────────── */
.article-header {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.article-header-inner {
  max-width: 760px;
  margin-inline: auto;
}
.article-back {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink3);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color .2s;
}
.article-back:hover { color: var(--accent); }
.article-header-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.article-date {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  color: var(--ink3);
  letter-spacing: .04em;
}
.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--accent);
  margin-bottom: 2.5rem;
  padding-bottom: .25rem;
  letter-spacing: -.01em;
}
.article-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.article-byline-photo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
}
.article-byline-name {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink2);
}
.article-body {
  padding-block: clamp(2rem, 4vw, 3.5rem);
}
.article-body-inner {
  max-width: 760px;
  margin-inline: auto;
}
.article-prose {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink);
}
.article-prose p + p { margin-top: 1.4em; }
.article-prose strong { font-weight: 500; }
.article-prose em { font-style: italic; }
.article-prose h2 { margin-top: 2.5rem; margin-bottom: .5rem; }
.article-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding: 1.5rem 0 1.5rem 2rem;
  margin-block: clamp(2.5rem, 5vw, 4rem);
}
.article-author {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.article-author-inner {
  max-width: 760px;
  margin-inline: auto;
}
.article-author-bio {
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.8;
}
.article-author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: .5rem;
}
@media (max-width: 560px) {
  .article-author-inner { flex-direction: column; gap: 1.25rem; }
  .article-pull { padding-left: 1.25rem; }
}
.newsletter-form {
  display: flex;
  gap: .75rem;
  max-width: 420px;
  margin-inline: auto;
}
.newsletter-input {
  flex: 1;
  border: 1px solid var(--rule-strong);
  background: transparent;
  padding: .75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.newsletter-input::placeholder { color: var(--ink3); }
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-success {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 1rem;
  margin-top: .75rem;
}
@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
}

/* ════════════════════════════════════════════════════════
   ANIMATION & INTERACTION ENHANCEMENTS
   ════════════════════════════════════════════════════════ */

/* ── 1. Nav entrance on page load ─────────────────────── */
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}
#nav {
  animation: navSlideDown .7s cubic-bezier(0,.55,.45,1) both;
}

/* ── 2. Hero text — more cinematic cascade ────────────── */
.hero .reveal[data-delay="1"] { transition-delay: .35s; }
.hero .reveal[data-delay="2"] { transition-delay: .65s; }
.hero .reveal[data-delay="3"] { transition-delay: .95s; }
.hero .t-eyebrow.reveal        { transition-delay: .1s; }

/* ── 3. Page hero headings — heading variant auto-applied */
.page-hero .t-h1.reveal,
.article-title.reveal,
.contact-headline.reveal,
.t-h2.reveal {
  transform: translateY(36px);
  transition: opacity 1.1s cubic-bezier(0,.55,.45,1), transform 1.1s cubic-bezier(0,.55,.45,1);
}

/* ── 4. Teaser cards — hover lift ─────────────────────── */
.teaser-card {
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease) !important;
}
.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(28,25,22,.07);
}

/* ── 5. Service section inquire links — hover lift ────── */
.svc-inquire {
  transition: color .25s ease, letter-spacing .25s ease !important;
}
.svc-inquire:hover { letter-spacing: .18em; }

/* ── 6. Statement band quote — fade only ──────────────── */
.statement-band.reveal {
  transform: none;
  transition: opacity 1.4s ease !important;
}

/* ── 7. Gold ornament — fade in on scroll ─────────────── */
.gold-ornament {
  opacity: 0;
  transition: opacity 1s ease .2s;
}
.gold-ornament.in { opacity: 1; }

/* ── 8. Premise accent — slightly slower ──────────────── */
.premise-accent.reveal {
  transform: translateY(32px);
  transition: opacity 1.2s cubic-bezier(0,.55,.45,1), transform 1.2s cubic-bezier(0,.55,.45,1);
}

/* ── 9. Article prose — gentle, unhurried ─────────────── */
.article-prose.reveal {
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0,.55,.45,1), transform 1s cubic-bezier(0,.55,.45,1);
}
.article-pull.reveal {
  transform: translateY(16px);
  transition: opacity 1.1s cubic-bezier(0,.55,.45,1) .15s, transform 1.1s cubic-bezier(0,.55,.45,1) .15s;
}

@media (prefers-reduced-motion: reduce) {
  #nav { animation: none; }
  .teaser-card:hover { transform: none; box-shadow: none; }
}

/* ── MOBILE GLOBAL FIXES ─────────────────────────────── */
@media (max-width: 900px) {
  /* Mobile menu: push content below the nav bar so links don't overlap wordmark */
  .mobile-menu {
    padding-top: calc(var(--nav-h) + 2rem);
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  /* ── HOMEPAGE HERO ── */
  /* Stack photo above text on mobile — portrait visible, no overlap */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: unset;
    padding-top: var(--nav-h);
    position: relative;
  }
  .hero::before { display: none; }
  .hero-photo {
    position: relative;
    width: 100%;
    height: 83vw;
    top: unset; right: unset; bottom: unset;
    order: -1;
  }
  .hero-photo img {
    object-position: 50% 10%;
  }
  .hero-photo::after {
    /* fade bottom of photo into ivory so it blends into text section */
    background: linear-gradient(to bottom,
      transparent 50%,
      rgba(243,239,230,0.6) 75%,
      #F3EFE6 100%);
  }
  .hero-body {
    position: relative;
    width: 100%;
    padding-top: 0;
    margin-top: -2rem;
    padding-bottom: 2rem;
    min-height: unset;
  }
  .hero-text > * { max-width: 100%; }
  /* Tighten eyebrow on mobile — prevent wrapping with nowrap */
  .hero-text .t-eyebrow { letter-spacing: .04em; font-size: .65rem; white-space: nowrap; margin-bottom: 1.25rem !important; }
  /* Larger, more commanding headline on mobile */
  .hero-headline { font-size: clamp(2.6rem, 10vw, 3.4rem) !important; line-height: 1.05; margin-bottom: 1.25rem !important; }
  /* More comfortable subtext */
  .hero-sub { font-size: 1rem; line-height: 2; margin-bottom: 1.75rem !important; }
  /* Philosophy page h1 — smaller so line 1 fits, hide desktop br, show mobile br */
  .philosophy-h1 { font-size: 1.75rem !important; line-height: 1.15; }
  .d-br { display: none; }
  /* Hide scroll indicator — doesn't apply in stacked mobile layout */
  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-actions .btn { width: auto; }

  /* ── HIDE ON MOBILE / SHOW ON MOBILE ── */
  .hide-mobile { display: none; }
  .mobile-br { display: inline; }

  /* ── PAGE HERO (about, philosophy, etc.) ── */
  /* Single column: text full-width on top, circle below aligned to the right */
  .page-hero { padding-top: calc(var(--nav-h) + 1.25rem); }
  .page-hero-inner { grid-template-columns: 1fr; gap: .75rem; }
  .page-hero-meta { display: flex; justify-content: flex-end; margin-top: 1.25rem; }
  .page-hero { padding-bottom: 1.25rem; border-bottom: none; }
  .about-circle-hero { width: 88px; height: 88px; opacity: 1 !important; transform: none !important; }

  /* ── ABOUT SPLIT ── */
  .about-split { grid-template-columns: 1fr; }
  .about-portrait { display: none; } /* hide portrait on mobile — hero already introduces her */

  /* ── PREMISE ── */
  .premise-accent { margin-top: 0 !important; font-size: clamp(1.5rem, 5vw, 2rem); }
  .premise-inner { grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); }

  /* ── FOOTER ── */
  .foot-top { flex-direction: column; align-items: center; text-align: center; }
  .foot-links { flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
  .foot-copy { text-align: center; }

  /* ── TYPOGRAPHY ── */
  .article-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .contact-headline { font-size: clamp(1.5rem, 5vw, 2.4rem); }
  .statement-band p, .statement-quote { font-size: clamp(1.4rem, 5vw, 2rem); }
  .pull { font-size: clamp(1.1rem, 4vw, 1.4rem); padding-left: 1.25rem; }
  .t-h1 { font-size: clamp(2rem, 7vw, 3.5rem); }
  .t-h2 { font-size: clamp(1.4rem, 5vw, 2.2rem); }

  /* ── SERVICES ── */
  .investment-inner { flex-direction: column; }
  .svc-anchor-link { font-size: .7rem; letter-spacing: .08em; }
  .svc-anchor-bar { flex-wrap: wrap; gap: .75rem 0; justify-content: flex-start; }
  .svc-anchor-bar .svc-anchor-link { padding: .5rem 1.25rem .5rem 0; border-bottom: 1px solid var(--rule); width: 100%; }

  /* ── INSIGHTS ── */
  .insight-card { padding: 1.75rem 0; }

  /* ── TEASERS HEADER ── */
  /* Stack title and "Learn More" vertically with proper spacing */
  .teasers-header { flex-direction: column; align-items: flex-start; gap: 1.25rem; margin-bottom: 2rem; }
}

@media (max-width: 480px) {
  /* Tighten section padding on very small screens */
  :root { --section: clamp(2.5rem, 8vw, 4rem); }

  /* Nav CTA hidden — mobile menu handles it */
  .nav-cta { display: none; }

  /* Article byline wraps cleanly */
  .article-byline { flex-wrap: wrap; gap: .5rem; }

  /* Insights grid gap */
  .insights-grid { gap: 0; }

  /* Designed-for circles smaller on phones */
  .dfc-circle { width: 90px; height: 90px; }
  .dfc-num { font-size: 1.1rem; }

  /* FAQ answers more readable */
  .faq-a-inner { font-size: .9rem; }

  /* Services sidebar number smaller */
  .svc-sidebar-num { font-size: clamp(3rem, 12vw, 5rem); }
}
