*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: oklch(0.97 0.015 80); color: oklch(0.18 0.025 60); }

/* ── TOKENS ── */
:root {
  --bg: oklch(0.97 0.015 80);
  --fg: oklch(0.18 0.025 60);
  --accent: oklch(0.62 0.12 40);
  --sage: oklch(0.57 0.07 150);
  --sand: oklch(0.88 0.04 75);
  --border: oklch(0.85 0.02 75);
  --fg-dim: oklch(0.18 0.025 60 / 0.55);
}

/* ── ANIMATED LOGO MARK ── */
.brand-mark { display: block; flex-shrink: 0; }
.brand-mark svg { display: block; overflow: visible; }

.mark-line-top {
  transform-box: fill-box; transform-origin: center;
  transform: translateX(7px);
  transition: transform 1.2s cubic-bezier(0.4,0,0.2,1);
}
.mark-line-bot {
  transform-box: fill-box; transform-origin: center;
  transform: translateX(-7px);
  transition: transform 1.2s cubic-bezier(0.4,0,0.2,1);
}

@keyframes slide-from-left {
  from { transform: translateX(0); }
  to   { transform: translateX(7px); }
}
@keyframes slide-from-right {
  from { transform: translateX(0); }
  to   { transform: translateX(-7px); }
}
.brand-mark.animate .mark-line-top {
  animation: slide-from-left 1.8s cubic-bezier(0.4,0,0.2,1) 0.3s both;
}
.brand-mark.animate .mark-line-bot {
  animation: slide-from-right 1.8s cubic-bezier(0.4,0,0.2,1) 0.3s both;
}

a:hover .mark-line-top { transform: translateX(4px); }
a:hover .mark-line-bot { transform: translateX(-4px); }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 80px;
  background: oklch(0.97 0.015 80 / 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.cl-logo { display: inline-flex; flex-direction: column; gap: 5px; font-family: 'Manrope', system-ui, sans-serif; line-height: 1; }
.cl-logo .cl-name { font-weight: 600; font-size: 17px; letter-spacing: -0.03em; color: var(--fg); }
.cl-logo .cl-sub { font-weight: 500; font-size: 8.5px; letter-spacing: 0.36em; text-transform: uppercase; color: oklch(0.18 0.025 60 / 0.5); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; color: inherit; text-decoration: none; letter-spacing: 0.04em;
  opacity: 0.6; transition: opacity 0.2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--fg);
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta::after { display: none !important; }
.nav-cta {
  padding: 8px 18px !important; border: 1px solid var(--accent);
  color: var(--accent) !important; opacity: 1 !important;
  border-radius: 2px; font-weight: 500 !important;
  transition: background 0.25s, color 0.25s !important;
}
.nav-cta:hover { background: var(--accent) !important; color: white !important; }

/* ── NAV DROPDOWN ── */
.has-dropdown { position: relative; }
.nav-dropdown-trigger {
  font-size: 13px; color: inherit; letter-spacing: 0.04em;
  opacity: 0.6; transition: opacity 0.2s;
  display: inline-flex; align-items: center; gap: 5px;
  cursor: pointer; padding-bottom: 2px; user-select: none;
}
.nav-dropdown-trigger:hover { opacity: 1; }
.nav-dropdown-caret { width: 9px; height: 9px; opacity: 0.7; transition: transform 0.2s; flex-shrink: 0; }
.has-dropdown:hover .nav-dropdown-caret,
.has-dropdown:focus-within .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: -16px;
  min-width: 230px; list-style: none;
  background: var(--bg); border: 1px solid var(--border); border-radius: 4px;
  padding: 6px 0; margin-top: 16px;
  display: flex; flex-direction: column; gap: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
  box-shadow: 0 8px 24px oklch(0.18 0.025 60 / 0.08);
  z-index: 110;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown li { width: 100%; }
.nav-dropdown a, .nav-dropdown-soon {
  display: block; padding: 11px 18px;
  font-size: 13px; color: inherit; text-decoration: none;
  letter-spacing: 0.02em; opacity: 0.78; line-height: 1.3;
  transition: opacity 0.15s, background 0.15s;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { opacity: 1; background: oklch(0.94 0.02 78); }
.nav-dropdown-soon { opacity: 0.4; cursor: default; }
.nav-dropdown-soon-tag {
  display: block; font-style: normal; font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.7; margin-top: 3px;
}

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; color: inherit;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  padding: 13px 24px; border-radius: 2px; text-decoration: none; cursor: pointer; border: none;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: white; opacity: 0;
  transition: opacity 0.25s;
}
.btn:hover::before { opacity: 0.07; }
.btn-primary { background: var(--fg); color: var(--bg); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px oklch(0.18 0.025 60 / 0.25); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 6px 20px oklch(0.62 0.12 40 / 0.35); }
.btn-accent:active { transform: translateY(0); }
.btn svg { transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.btn:hover svg { transform: translateX(3px); }
.btn-ghost {
  font-size: 13px; color: var(--accent); background: none; text-decoration: none;
  border-bottom: 1px solid oklch(0.62 0.12 40 / 0.4); padding: 0 0 2px;
  letter-spacing: 0.04em; position: relative; overflow: hidden;
  transition: border-color 0.25s, opacity 0.25s;
}
.btn-ghost:hover { border-color: var(--accent); opacity: 0.8; }

/* ── TEXT LINK ── */
.text-link {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px;
  letter-spacing: 0.06em; color: var(--accent); text-decoration: none;
  border-bottom: 1px solid oklch(0.62 0.12 40 / 0.35); padding-bottom: 2px;
  transition: gap 0.5s cubic-bezier(0.4,0,0.2,1), border-color 0.5s;
}
.text-link:hover { gap: 10px; border-color: var(--accent); }
.divider { width: 100%; height: 1px; background: var(--border); }

/* ── SHARED TYPE ── */
.section-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.4; margin-bottom: 20px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; line-height: 1.1; letter-spacing: -0.01em; }
.section-title em { font-style: italic; color: var(--accent); }

/* ── PSYCHOANALYTIC CALLOUT ── */
.psych-callout {
  background: oklch(0.62 0.12 40 / 0.07); border-left: 2px solid var(--accent);
  padding: 28px 32px; margin: 40px 0; border-radius: 0 2px 2px 0;
}
.psych-callout-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.psych-callout p { font-size: 14px; line-height: 1.75; opacity: 0.75; }
.psych-callout em { color: var(--accent); font-style: italic; }

/* ── PAGE TRANSITIONS ── */
.page { animation: page-in 0.9s cubic-bezier(0.4, 0, 0.2, 1) both; }
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }

/* ── REVEAL ── */
.reveal { opacity: 0; transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; }

h1.reveal, h2.reveal, .section-title.reveal {
  clip-path: none; transform: none; opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}
h1.reveal.visible, h2.reveal.visible, .section-title.reveal.visible {
  clip-path: none; opacity: 1;
}

.section-label.reveal { opacity: 0; transform: none; transition: opacity 0.9s ease 0.2s; }
.section-label.reveal.visible { opacity: 0.4; }
.section-label { position: relative; padding-left: 0; }
.section-label::before {
  content: ''; display: inline-block; width: 0; height: 1px;
  background: currentColor; vertical-align: middle; margin-right: 0;
  transition: width 0.9s cubic-bezier(0.4,0,0.2,1), margin-right 0.7s ease; opacity: 0.5;
}
.section-label.visible::before { width: 28px; margin-right: 10px; }

/* ── HOME PAGE ── */
.hero { padding: 64px 80px 0; position: relative; overflow: hidden; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.45; margin-bottom: 32px; }
.hero-eyebrow-line { width: 36px; height: 1px; background: currentColor; flex-shrink: 0; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: 96px; font-weight: 300; line-height: 0.95; letter-spacing: -0.025em; max-width: 860px; position: relative; z-index: 2; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-body { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--border); }
.hero-sub { font-size: 15px; line-height: 1.75; opacity: 0.72; max-width: 480px; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 4px; }
.hero-meta { display: flex; gap: 48px; padding: 28px 0; border-top: 1px solid var(--border); margin-top: 28px; }
.meta-item strong { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.meta-item span { font-size: 13px; opacity: 0.55; }

/* Hero eyebrow line animation */
.hero-eyebrow-line { width: 0 !important; transition: width 1.4s cubic-bezier(0.4,0,0.2,1) 0.8s !important; }
.hero-eyebrow.visible .hero-eyebrow-line { width: 36px !important; }

.intro-section { padding: 80px 80px; }
.section-divider { border: 0; height: 1px; background: var(--border); margin: 0 80px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.intro-body p { font-size: 15px; line-height: 1.8; opacity: 0.7; margin-bottom: 20px; }

/* Circle photo row in intro */
.intro-portrait { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; position: sticky; top: 100px; }
.intro-portrait-photo { width: 320px; height: 420px; border-radius: 18px; overflow: hidden; border: 2px solid var(--border); }
.intro-portrait-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.intro-portrait-meta { display: flex; flex-direction: column; gap: 4px; padding-left: 4px; }
.intro-portrait-eyebrow { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.5; font-weight: 500; margin-bottom: 4px; }
.intro-portrait-meta strong { font-size: 18px; font-weight: 500; color: var(--fg); letter-spacing: 0.005em; line-height: 1.3; }
.intro-portrait-detail { font-size: 13px; opacity: 0.55; line-height: 1.5; }
.intro-section h2.section-title { margin-bottom: 32px; }

.offerings-section { padding: 80px 80px; background: oklch(0.94 0.02 78); }
.offerings-header { margin-bottom: 48px; }
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.offering-card {
  background: var(--bg); padding: 36px 28px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), box-shadow 0.6s cubic-bezier(0.4,0,0.2,1);
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px oklch(0.18 0.025 60 / 0.08);
  z-index: 1; position: relative;
}
.offering-num { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; opacity: 0.25; margin-bottom: 16px; line-height: 1; }
.offering-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.specialty-tag { display: inline-block; font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); background: oklch(0.62 0.12 40 / 0.09); padding: 3px 7px; border-radius: 2px; }
.offering-card p { font-size: 13px; line-height: 1.7; opacity: 0.62; }
.offering-card .text-link { font-size: 12px; margin-top: 12px; display: inline-flex; align-items: center; gap: 4px; }

/* ── MARQUEE (city names) ── */
.marquee-section { overflow: hidden; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 55s linear infinite; }
.marquee-track span { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.45; padding: 0 28px; }
.marquee-track .sep { opacity: 0.25; padding: 0 4px; font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── LOGO BANNER ── */
.logo-banner-section { padding: 40px 80px; border-bottom: 1px solid var(--border); }
.logo-banner-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.35; margin-bottom: 28px; text-align: center; }
.logo-banner-track { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-banner-track img.psych-logo { height: 36px; width: auto; opacity: 0.5; filter: grayscale(100%); transition: opacity 0.25s, filter 0.25s; }
.logo-banner-track img.psych-logo:hover { opacity: 0.85; filter: grayscale(0%); }
.wordmark-logo {
  display: flex; flex-direction: column; align-items: center;
  gap: 1px; opacity: 0.4; transition: opacity 0.25s; cursor: default;
  padding: 0 8px;
}
.wordmark-logo:hover { opacity: 0.75; }
.wordmark-main {
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg);
  line-height: 1;
}
.wordmark-sub {
  font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg);
  opacity: 0.7; line-height: 1;
}
.wordmark-logo--spaced .wordmark-main { letter-spacing: 0.18em; }

.feature-section { padding: 100px 80px; text-align: center; }
.feature-mark { margin: 0 auto 32px; opacity: 0.2; }
.feature-text { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; font-style: italic; line-height: 1.3; max-width: 760px; margin: 0 auto 28px; }
.feature-text em { font-style: normal; color: var(--accent); }
.feature-sig { font-size: 13px; letter-spacing: 0.08em; opacity: 0.5; }
.feature-sig strong { display: block; text-transform: uppercase; font-size: 11px; letter-spacing: 0.14em; margin-bottom: 4px; opacity: 0.8; }

.cta-section { padding: 80px 80px; background: var(--fg); color: var(--bg); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.cta-section .section-label { color: var(--bg); opacity: 0.4; }
.cta-section .section-title { color: var(--bg); }
.cta-section .section-title em { color: oklch(0.75 0.12 42); }
.cta-section p { font-size: 15px; line-height: 1.7; opacity: 0.62; margin-top: 16px; max-width: 480px; }
.cta-section .btn-accent { font-size: 15px; padding: 16px 32px; }

/* ── ABOUT PAGE ── */
.about-hero { padding: 80px 80px 64px; border-bottom: 1px solid var(--border); }
.about-hero-grid { display: grid; grid-template-columns: 1fr 260px; gap: 64px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); align-items: start; }
.about-hero-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.4; margin-bottom: 24px; }
.about-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 6vw, 80px); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 32px; }
.about-title em { font-style: italic; color: var(--accent); }
.about-body p { font-size: 15px; line-height: 1.8; opacity: 0.72; margin-bottom: 18px; }
.about-photo-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.about-photo { width: 260px; height: 340px; border-radius: 20px; overflow: hidden; flex-shrink: 0; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.about-photo-name { font-size: 14px; opacity: 0.6; line-height: 1.5; }
.about-photo-name strong { display: block; font-size: 15px; font-weight: 500; opacity: 1; color: var(--fg); margin-bottom: 2px; letter-spacing: 0.01em; }
.about-quals { padding: 64px 80px; display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: oklch(0.94 0.02 78); }
.qual-card { background: var(--bg); padding: 32px 28px; }
.qual-card-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.4; margin-bottom: 10px; }
.qual-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; margin-bottom: 8px; }
.qual-card p { font-size: 13px; line-height: 1.65; opacity: 0.62; }
.about-approach { padding: 80px 80px; display: grid; grid-template-columns: 360px 1fr; gap: 80px; }
.about-approach .section-title { font-size: 42px; }
.approach-body p { font-size: 15px; line-height: 1.8; opacity: 0.7; margin-bottom: 18px; }

/* ── PROCESS PAGE ── */
.process-hero { padding: 80px 80px 64px; border-bottom: 1px solid var(--border); }
.process-title { font-family: 'Cormorant Garamond', serif; font-size: 80px; font-weight: 300; line-height: 0.95; letter-spacing: -0.02em; max-width: 680px; margin-bottom: 28px; }
.process-title em { font-style: italic; color: var(--accent); }
.process-sub { font-size: 16px; line-height: 1.75; opacity: 0.68; max-width: 520px; }
.process-callout-wrap { padding: 0 80px; }
.process-steps { padding: 80px 80px; }
.process-step { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 48px; padding: 48px 0; border-bottom: 1px solid var(--border); align-items: start; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; opacity: 0.2; line-height: 1; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; line-height: 1.2; margin-bottom: 8px; }
.step-tag { display: inline-block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; background: oklch(0.62 0.12 40 / 0.1); color: var(--accent); padding: 3px 8px; border-radius: 2px; margin-bottom: 14px; }
.step-body p { font-size: 14px; line-height: 1.75; opacity: 0.68; }
.process-faq { padding: 0 80px 80px; }
.faq-title { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; margin-bottom: 40px; }
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: padding 0.3s; }
.faq-item:hover { padding-left: 6px; }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 500; transition: color 0.2s; }
.faq-item:hover .faq-q { color: var(--accent); }
.faq-a { font-size: 14px; line-height: 1.75; opacity: 0; max-width: 680px; max-height: 0; overflow: hidden; margin-top: 0; transition: opacity 0.7s ease, max-height 0.7s cubic-bezier(0.4,0,0.2,1), margin-top 0.5s; }
.faq-a.open { opacity: 0.65; max-height: 400px; margin-top: 14px; }
.faq-icon { font-size: 20px; opacity: 0.4; flex-shrink: 0; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.2s; }
.faq-icon.open { transform: rotate(45deg); opacity: 0.7; }

/* ── CONTACT FORM ── */
.contact-section { padding: 72px 80px; border-top: 1px solid var(--border); }
.contact-form { margin-top: 40px; max-width: 560px; display: flex; flex-direction: column; gap: 20px; }
.contact-form .btn-primary { margin-top: 4px; align-self: flex-start; }
.contact-field { display: flex; flex-direction: column; gap: 8px; }
.contact-field label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.45; font-family: 'DM Sans', sans-serif; }
.contact-field input, .contact-field textarea {
  width: 100%; padding: 14px 16px;
  background: oklch(0.94 0.02 78); border: 1px solid transparent;
  border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--fg); outline: none; transition: border-color 0.2s;
  box-sizing: border-box;
}
.contact-field input:focus, .contact-field textarea:focus { border-color: var(--accent); }
.contact-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.contact-sent { font-size: 14px; opacity: 0.6; padding: 16px 0; }
.contact-followup { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.contact-followup .followup-eyebrow { font-size: 13px; opacity: 0.55; margin-bottom: 4px; }
.contact-followup .followup-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.35; margin-bottom: 20px; font-family: 'DM Sans', sans-serif; }

/* ── BOOKING PAGE ── */
.booking-hero { padding: 80px 80px 72px; display: grid; grid-template-columns: 1fr 480px; gap: 80px; border-bottom: 1px solid var(--border); }
.booking-title { font-family: 'Cormorant Garamond', serif; font-size: 76px; font-weight: 300; line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 28px; }
.booking-title em { font-style: italic; color: var(--accent); }
.booking-sub { font-size: 15px; line-height: 1.8; opacity: 0.68; max-width: 440px; margin-bottom: 36px; }
.booking-options { display: flex; flex-direction: column; gap: 12px; }
.booking-opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border: 1px solid var(--border); border-radius: 2px;
  cursor: pointer; text-decoration: none; color: inherit;
  transition: border-color 0.5s, background 0.5s, transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s;
}
.booking-opt:hover {
  border-color: var(--accent); background: oklch(0.62 0.12 40 / 0.03);
  transform: translateX(4px); box-shadow: 4px 0 0 0 var(--accent);
}
.booking-opt-arrow { transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); opacity: 0.3; font-size: 18px; }
.booking-opt:hover .booking-opt-arrow { transform: translateX(4px); opacity: 0.7; }
.booking-opt-label { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.booking-opt-sub { font-size: 12px; opacity: 0.5; letter-spacing: 0.03em; }
.booking-card { background: var(--sand); padding: 40px 36px; border-radius: 2px; align-self: start; }
.booking-card-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; margin-bottom: 20px; }
.booking-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.booking-card li { font-size: 13px; line-height: 1.6; opacity: 0.72; padding-left: 16px; position: relative; }
.booking-card li::before { content: '—'; position: absolute; left: 0; opacity: 0.4; }
.booking-notice { padding: 40px 80px; background: oklch(0.94 0.02 78); display: flex; align-items: start; gap: 24px; }
.notice-icon { font-size: 20px; opacity: 0.3; flex-shrink: 0; margin-top: 2px; }
.notice-text { font-size: 13px; line-height: 1.7; opacity: 0.6; max-width: 640px; }
.notice-text strong { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; margin-bottom: 6px; }
.section-divider { display: flex; align-items: center; gap: 28px; padding: 0 80px; background: oklch(0.94 0.02 78); }
.section-divider-line { flex: 1; height: 1px; background: oklch(0.82 0.025 78); }
.section-divider-mark { opacity: 0.4; flex-shrink: 0; display: flex; color: var(--fg); }
@media (max-width: 900px) { .section-divider { padding: 0 24px; gap: 20px; } }

.home-rates { padding: 96px 80px; background: oklch(0.94 0.02 78); }
.home-rates-header { margin-bottom: 56px; max-width: 640px; }
.home-rates-body { display: grid; grid-template-columns: 1fr 1.2fr; gap: 96px; align-items: center; }
.home-rates-card { border-left: 1px solid oklch(0.82 0.025 78); padding-left: 36px; }
.home-rates-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.45; margin-bottom: 18px; }
.home-rates-price { font-family: 'Cormorant Garamond', serif; font-size: 104px; font-weight: 300; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 14px; }
.home-rates-detail { font-size: 13px; opacity: 0.55; letter-spacing: 0.04em; }
.home-rates-note { font-size: 17px; line-height: 1.7; opacity: 0.75; margin-bottom: 24px; max-width: 460px; }
.home-rates-note strong { font-weight: 500; opacity: 1; color: var(--accent); }
@media (max-width: 900px) {
  .home-rates { padding: 56px 24px; }
  .home-rates-header { margin-bottom: 40px; }
  .home-rates-body { grid-template-columns: 1fr; gap: 40px; }
  .home-rates-card { border-left: none; border-top: 1px solid oklch(0.82 0.025 78); padding-left: 0; padding-top: 24px; }
  .home-rates-price { font-size: 72px; }
}

.booking-rates { padding: 72px 80px; }
.booking-rates .section-title { font-size: 42px; }
.rates-grid { display: grid; grid-template-columns: repeat(1,1fr); gap: 2px; margin-top: 40px; max-width: 400px; }
.rate-card { background: oklch(0.94 0.02 78); padding: 32px 28px; }
.rate-type { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.45; margin-bottom: 12px; }
.rate-price { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; margin-bottom: 4px; }
.rate-unit { font-size: 12px; opacity: 0.5; margin-bottom: 14px; }
.rate-note { font-size: 13px; opacity: 0.6; line-height: 1.6; }
.booking-rates-disclaimer { margin-top: 28px; font-size: 13px; opacity: 0.55; line-height: 1.7; }

/* ── FOOTER ── */
.footer { padding: 64px 80px 40px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-link { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.footer-brand-link .cl-logo { gap: 6px; }
.footer-brand-link .cl-logo .cl-name { font-size: 22px; }
.footer-brand-link .cl-logo .cl-sub { font-size: 10px; }
.footer-brand p { font-size: 13px; line-height: 1.7; opacity: 0.5; margin-top: 14px; max-width: 240px; }
.footer-col-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.4; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: inherit; text-decoration: none; opacity: 0.6; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; }
.footer-col li { font-size: 13px; opacity: 0.5; line-height: 1.5; }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 12px; opacity: 0.4; letter-spacing: 0.04em; }

/* ── LEGAL PAGES ── */
.legal-page { max-width: 760px; margin: 0 auto; padding: 80px 80px 100px; }
.legal-eyebrow { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.4; margin-bottom: 20px; font-family: 'DM Sans', sans-serif; }
.legal-title { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 12px; }
.legal-meta { font-size: 13px; opacity: 0.45; margin-bottom: 56px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.legal-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; margin: 48px 0 12px; }
.legal-body h3 { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; margin: 24px 0 8px; opacity: 0.8; }
.legal-body p { font-size: 14px; line-height: 1.8; opacity: 0.7; margin-bottom: 16px; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin-bottom: 16px; }
.legal-body li { font-size: 14px; line-height: 1.8; opacity: 0.7; margin-bottom: 6px; }
.legal-body a { color: var(--accent); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-body strong { font-weight: 600; opacity: 1; }
.legal-notice { background: oklch(0.94 0.02 78); border-left: 2px solid var(--accent); padding: 16px 20px; margin: 24px 0; border-radius: 2px; }
.legal-notice p { margin: 0; }
.legal-footer-link { margin-top: 32px; }
@media (max-width: 900px) { .legal-page { padding: 48px 24px 72px; } .legal-title { font-size: 40px; } }

/* ── LOCATIONS ── */
.loc-hero { padding: 80px 80px 56px; border-bottom: 1px solid var(--border); }
.loc-hero-eyebrow { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.45; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.loc-hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: currentColor; }
.loc-hero-title { font-family: 'Cormorant Garamond', serif; font-size: 58px; font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 20px; }
.loc-hero-title em { font-style: italic; color: var(--accent); }
.loc-hero-sub { font-size: 17px; opacity: 0.65; max-width: 520px; line-height: 1.65; }
.loc-hero-sub + .loc-hero-sub { margin-top: 18px; }

.loc-gallery { padding: 0 80px; margin: 0 0 0px; display: grid; gap: 6px; }
.loc-gallery.two-col { grid-template-columns: 1fr 1fr; }
.loc-gallery.three-col { grid-template-columns: 1fr 1fr 1fr; }
.loc-gallery img { width: 100%; height: 340px; object-fit: cover; display: block; }
.loc-gallery .loc-feat { grid-column: 1 / -1; height: 500px; object-position: center 30%; }

.loc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 56px 80px 80px; border-top: 1px solid var(--border); }
.loc-detail-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 400; line-height: 1.15; margin-bottom: 20px; }
.loc-detail-text p { font-size: 15px; line-height: 1.75; opacity: 0.7; margin-bottom: 16px; }
.loc-address-block { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.loc-address-block p { font-size: 13px; opacity: 0.55; line-height: 1.7; margin-bottom: 0; }
.loc-address-block strong { opacity: 0.8; font-weight: 500; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 6px; }

.locs-intro { padding: 72px 80px 56px; }
.locs-intro p { font-size: 17px; opacity: 0.65; max-width: 600px; line-height: 1.65; margin-top: 20px; }
.locs-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 0 80px 80px; }
.loc-card { background: oklch(0.94 0.02 78); }
.loc-card-img { width: 100%; height: 380px; object-fit: cover; display: block; }
.loc-card-body { padding: 36px 36px 40px; }
.loc-card-eyebrow { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.45; margin-bottom: 14px; }
.loc-card-title { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 400; line-height: 1.1; margin-bottom: 16px; }
.loc-card-desc { font-size: 15px; opacity: 0.68; line-height: 1.65; margin-bottom: 20px; }
.loc-card-addr { font-size: 13px; opacity: 0.5; line-height: 1.65; margin-bottom: 28px; }

@media (max-width: 900px) {
  .loc-hero { padding: 48px 24px 40px; }
  .loc-hero-title { font-size: 42px; }
  .loc-gallery { padding: 0 24px; }
  .loc-gallery.two-col, .loc-gallery.three-col { grid-template-columns: 1fr; }
  .loc-gallery img { height: 260px; }
  .loc-gallery .loc-feat { height: 300px; }
  .loc-detail { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 64px; }
  .locs-intro { padding: 48px 24px 36px; }
  .locs-cards { grid-template-columns: 1fr; padding: 0 24px 64px; }
  .loc-card-img { height: 280px; }
  .loc-card-body { padding: 28px 24px 32px; }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; flex-wrap: wrap; position: relative; }
  .nav-toggle { display: flex; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); }
  .nav.open .nav-toggle { top: 28px; transform: none; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    width: 100%; gap: 0; list-style: none;
    border-top: 1px solid var(--border); margin-top: 12px; padding-top: 8px; padding-bottom: 8px;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; font-size: 15px; opacity: 0.75; }
  .nav-links a:hover, .nav-links a.active { opacity: 1; }
  .nav-links a::after { display: none; }
  .nav-cta { border: none !important; padding: 12px 0 !important; font-size: 15px !important; color: var(--accent) !important; font-weight: 600 !important; }
  .nav-cta:hover { background: none !important; }
  .has-dropdown { width: 100%; }
  .nav-dropdown-trigger { display: block; padding: 12px 0; font-size: 15px; opacity: 0.75; }
  .nav-dropdown-caret { display: none; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: none; border: none; box-shadow: none; border-radius: 0;
    padding: 0 0 8px 0; margin-top: 0; min-width: 0; z-index: auto;
  }
  .nav-dropdown a, .nav-dropdown-soon { padding: 8px 0 8px 18px; font-size: 13px; opacity: 0.7; }
  .nav-dropdown a:hover { background: none; opacity: 1; }
  .hero, .intro-section, .offerings-section, .feature-section, .cta-section, .about-hero, .about-approach, .process-hero, .process-steps, .process-faq, .process-callout-wrap, .booking-hero, .booking-notice, .booking-rates, .footer, .logo-banner-section { padding-left: 24px; padding-right: 24px; }
  .section-divider { margin-left: 24px; margin-right: 24px; }
  .hero-title { font-size: 56px; }
  .hero-body, .intro-grid, .cta-inner, .about-hero-grid, .about-quals, .process-step, .booking-hero, .about-approach { grid-template-columns: 1fr; }
  .offerings-grid, .rates-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 36px; }
  .logo-banner-track { gap: 24px; }
  .about-photo { width: 200px; height: 260px; }
}
