/* The Wild Within — Brand Stylesheet
   Built from Alicia's Canva brand materials + questionnaire.
   Fonts: Playfair Display (headings), Ibarra Real Nova (body serif), Inter (UI/subtext), Great Vibes (script accent).
   Palette: Cream/ivory base, plum + gold primary, pink/blush + sage accents.
*/

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

:root {
  /* Base */
  --ivory: #FAF7F2;
  --ivory-warm: #F5F0E8;
  --linen: #EDE6DA;
  --warm-white: #FDFBF8;

  /* Crystal neutrals — smoky quartz, milky opal */
  --sand: #D4C5AD;
  --sand-warm: #C4B496;
  --clay: #B89F7E;
  --earth: #7D756D;
  --earth-warm: #988D82;
  --smoky: #6B5B4F;
  --smoky-light: #8B7D6B;
  --milky: #F0EBE3;
  --opal: #E8E2D8;

  /* Amethyst — upgraded plum toward crystal violet */
  --plum: #4A2848;
  --plum-deep: #2E1A2D;
  --plum-muted: #6B3560;
  --plum-light: #8B5A82;
  --amethyst: #5B3A6B;
  --amethyst-light: #7B5EA7;
  --amethyst-glow: rgba(123, 94, 167, 0.15);

  /* Pink / blush — soft feminine layer */
  --blush: #E8D5CC;
  --rose-dust: #C9A99A;
  --pink-soft: #F0DDD6;
  --mauve: #B8879B;

  /* Gold — Alicia's accent, polished crystal warmth */
  --gold: #C9A84C;
  --gold-muted: #BFA96F;
  --gold-deep: #A68B3C;
  --gold-glow: rgba(201, 168, 76, 0.12);

  /* Mossy agate — deep earthy green with organic warmth */
  --sage: #8A9A7B;
  --sage-muted: #9DAD8E;
  --sage-deep: #4A5D3A;
  --moss: #3D5C3A;
  --moss-muted: #5A7350;
  --moss-glow: rgba(61, 92, 58, 0.1);

  /* Terracotta — warm accent */
  --terracotta: #C08B6E;
  --terracotta-deep: #A6725A;

  /* Dark tones — smoky quartz depths */
  --charcoal: #2B2724;
  --charcoal-soft: #3D3935;
  --warm-gray: #524C46;
  --warm-gray-light: #6B6560;

  /* Aliases */
  --cream: #FAF7F2;
  --cream-warm: #FDFBF8;
  --green-dark: #6B7E5C;
  --green-deep: #2B2724;
  --ink: #2B2724;
  --ink-soft: #3D3935;
  --muted: #6B6560;
  --line: #EDE6DA;

  /* Fonts — 4 families only, matched to brand spec:
     Playfair Display → headings (h1, h2, h3, display)
     Ibarra Real Nova → paragraph body serif, easily readable
     Inter            → UI / subtext / eyebrows / buttons
     Great Vibes      → decorative script accents */
  --display: 'Playfair Display', Georgia, serif;
  --serif:   'Ibarra Real Nova', Georgia, serif;
  --serif-alt: 'Ibarra Real Nova', Georgia, serif;
  --sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --script:  'Great Vibes', cursive;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  font-size: 1rem;
}
::selection { background: var(--blush); color: var(--plum-deep); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 3px; }

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

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--plum-muted), var(--gold), var(--rose-dust));
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ===== NAVIGATION — dark plum bar, consistent on all pages ===== */
.site-header,
nav.nav-mockup {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: var(--plum-deep);
  box-shadow: 0 2px 20px rgba(54, 27, 46, 0.3);
}
.site-header.scrolled,
nav.nav-mockup.scrolled {
  background: rgba(54, 27, 46, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  box-shadow: 0 2px 24px rgba(54, 27, 46, 0.4);
}

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  transition: padding 0.4s ease;
}
.site-header.scrolled .nav { padding: 0.6rem 4rem; }

.nav-brand,
.nav-logo {
  text-decoration: none;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  display: block;
}
.nav-brand .nav-brand-name,
.nav-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}
.nav-logo span { color: var(--gold); font-style: italic; font-weight: 500; }
.nav-brand-sub {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
  margin-top: 1px;
  display: block;
}
.nav-logo::after { display: none; }
/* Invert logo to white on dark nav */
.nav-logo img {
  height: 72px;
  width: auto;
  transition: height 0.4s ease;
  filter: brightness(0) invert(1);
}
.site-header.scrolled .nav-logo img,
nav.scrolled .nav-logo img { height: 56px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: rgba(250, 247, 242, 0.8);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  position: relative;
  padding: 0.2rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

/* Services dropdown */
.nav-links .has-dropdown {
  position: relative;
}
.nav-links .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  position: static;
  vertical-align: middle;
  transition: transform 0.3s;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--plum-deep);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 0.75rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  list-style: none;
  z-index: 100;
}
.nav-links .has-dropdown:hover .nav-dropdown,
.nav-links .has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { padding: 0; }
.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.5rem !important;
  font-size: 0.8rem !important;
  color: rgba(250, 247, 242, 0.75) !important;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover {
  color: #fff !important;
  background: rgba(201, 168, 76, 0.1);
  padding-left: 1.75rem !important;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-phone {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.8);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-phone:hover { color: var(--gold); }
.nav-cta-btn,
.site-header .nav-cta .btn {
  background: var(--gold) !important;
  color: var(--plum-deep) !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 50px;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease !important;
  border: 1.5px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover,
.site-header .nav-cta .btn:hover {
  background: transparent !important;
  border-color: var(--gold);
  color: var(--gold) !important;
  transform: translateY(-1px);
}

.menu-toggle,
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.menu-toggle span,
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: '';
  display: block; width: 26px; height: 1.5px;
  background: #fff;
  transition: all 0.4s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F0EBE3 0%, #F5F0E8 35%, #EFE3E0 70%, #E8D5CC 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
}
.hero-orb-1 {
  width: 550px; height: 550px;
  background: var(--sage-muted);
  top: -10%; right: -5%;
  animation: orbFloat 22s ease-in-out infinite;
}
.hero-orb-2 {
  width: 450px; height: 450px;
  background: var(--blush);
  bottom: -15%; left: -8%;
  animation: orbFloat 22s ease-in-out infinite 7s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: var(--linen);
  top: 35%; left: 25%;
  animation: orbFloat 22s ease-in-out infinite 14s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(25px, -35px) scale(1.04); }
  66% { transform: translate(-15px, 20px) scale(0.96); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-text { padding-top: 2rem; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum-muted);
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}
.hero-tag-line { width: 35px; height: 1px; background: var(--plum-muted); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.5s;
}
.hero-title em { font-style: italic; color: var(--plum-muted); }
.hero-title .accent-script,
.accent-script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--plum-muted);
  font-size: 1.4em;
  line-height: 0.9;
  font-style: normal;
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--warm-gray);
  max-width: 460px;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s ease forwards 0.9s;
}

/* Buttons — plum primary (Alicia's brand) */
.btn-primary,
.btn,
.btn-plum,
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--plum);
  color: var(--ivory);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--plum);
  cursor: pointer;
}
.btn-primary:hover,
.btn:hover,
.btn-plum:hover,
.btn-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74,40,64,0.25);
}

.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--charcoal);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border: none;
  border-bottom: 1px solid var(--sand);
  border-radius: 0;
  background: transparent;
  transition: all 0.3s;
}
.btn-secondary:hover,
.btn-outline:hover {
  color: var(--plum);
  border-color: var(--plum);
  background: transparent;
  transform: none;
  box-shadow: none;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 580px;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeLeft 1s ease forwards 0.6s;
}
.hero-image-wrapper {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 220px 220px 100px 100px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(43,39,36,0.07);
}
.hero-image-placeholder,
.welcome-image-inner,
.approach-image-inner {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.hero-image-placeholder {
  background: linear-gradient(160deg, var(--sage-muted) 0%, var(--linen) 40%, var(--blush) 80%, var(--rose-dust) 100%);
}
.hero-image-placeholder span,
.welcome-image-inner span {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}
.placeholder-icon {
  width: 60px; height: 60px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-icon svg { width: 24px; height: 24px; opacity: 0.4; }

.hero-badge {
  position: absolute;
  bottom: 50px; left: -35px;
  background: var(--warm-white);
  padding: 1.1rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(43,39,36,0.07);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3;
  animation: floatBadge 6s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-badge-icon {
  width: 42px; height: 42px;
  background: var(--sage-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge-icon svg { width: 20px; height: 20px; color: #fff; }
.hero-badge-text { font-size: 0.78rem; font-weight: 500; color: var(--charcoal); }
.hero-badge-text span {
  display: block;
  font-size: 0.67rem;
  font-weight: 400;
  color: var(--warm-gray-light);
  margin-top: 2px;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { to { opacity: 1; transform: translateX(0); } }

.trust-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--warm-white);
  padding: 1.75rem 4rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  z-index: 5;
  border-top: 1px solid var(--linen);
}
.trust-item { text-align: center; }
.trust-item-val {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--sage-deep);
  line-height: 1;
}
.trust-item-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  margin-top: 0.35rem;
}

/* ===== SECTIONS ===== */
section { padding: 9rem 4rem; }
section.full-bleed { padding: 0 !important; }
.section { padding: 9rem 4rem; }
.section-tight { padding: 5rem 4rem; }
@media (max-width: 900px) {
  section, .section { padding: 5rem 1.5rem; }
  .section-tight { padding: 3.5rem 1.5rem; }
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--plum-muted);
  margin-bottom: 1.15rem;
}
.section-tag-line {
  width: 25px; height: 1px;
  background: var(--plum-muted);
}
.eyebrow::before {
  content: '';
  width: 25px; height: 1px;
  background: var(--plum-muted);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--plum-muted);
}

.section-subtitle {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* Generic headings */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); font-weight: 500; }
h3 { font-size: 1.3rem; font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--display); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--plum-muted); }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
a { color: var(--plum-muted); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--plum); }

/* ===== WELCOME ===== */
.welcome {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.welcome-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.welcome-visual { position: relative; }
.welcome-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(43,39,36,0.06);
}
.welcome-image-inner {
  background: linear-gradient(160deg, var(--linen), var(--blush), var(--sage-muted));
}
.welcome-float {
  position: absolute;
  top: -15px; right: -25px;
  background: var(--ivory);
  padding: 1.25rem;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(43,39,36,0.06);
  max-width: 220px;
}
.welcome-float p {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--warm-gray);
  line-height: 1.5;
  margin: 0;
}
.welcome-float .wf-attr {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  margin-top: 0.6rem;
}
.welcome-content .section-tag { justify-content: flex-start; }
.welcome-content .section-title { text-align: left; }
.welcome-text {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}
.welcome-text strong { color: var(--charcoal); font-weight: 500; }
.welcome-values {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.welcome-value {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform 0.3s ease;
}
.welcome-value:hover { transform: translateX(5px); }
.welcome-value-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.welcome-value-text { font-size: 0.98rem; color: var(--charcoal); }

/* ===== SERVICES ===== */
.services { background: var(--ivory); }
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card,
.card {
  background: var(--warm-white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  border: 1px solid rgba(201, 168, 76, 0.12);
}
.service-card:hover,
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(74, 40, 72, 0.08);
  border-color: rgba(201, 168, 76, 0.4);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }
.service-icon svg { width: 26px; height: 26px; color: #fff; }
.service-icon svg * { stroke: #fff; }
.si-sage  { background: linear-gradient(135deg, var(--sage-muted), var(--sage)); }
.si-terra { background: linear-gradient(135deg, var(--rose-dust), var(--terracotta)); }
.si-sand  { background: linear-gradient(135deg, var(--sand), var(--clay)); }
.si-blush { background: linear-gradient(135deg, var(--blush), var(--terracotta)); }
.si-deep  { background: linear-gradient(135deg, var(--sage-deep), var(--sage)); }
.si-gold  { background: linear-gradient(135deg, var(--sand-warm), var(--gold-muted)); }
.si-rose  { background: linear-gradient(135deg, var(--blush), var(--rose-dust)); }
.si-clay  { background: linear-gradient(135deg, var(--clay), var(--terracotta-deep)); }

.service-card h3,
.card h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.service-card p,
.card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
}
.service-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--plum-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 0.3s, color 0.3s;
}
.service-link svg,
.card-link svg { transition: transform 0.3s; }
.service-link:hover svg,
.card-link:hover svg { transform: translateX(4px); }
.card-link::after { content: '→'; transition: transform 0.3s; }
.service-link:hover,
.card-link:hover { gap: 0.7rem; color: var(--plum); }

/* ===== PROCESS ===== */
.process {
  background: var(--plum-deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(138, 154, 123, 0.06);
  filter: blur(80px);
}
.process .section-tag,
.process .eyebrow { color: var(--gold-muted); }
.process .section-tag-line,
.process .eyebrow::before { background: var(--gold-muted); }
.process .section-title,
.process h2 { color: var(--ivory); }
.process .section-subtitle,
.process p { color: var(--warm-gray-light); }

.process-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}
.process-step { text-align: center; }
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--plum-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  background: var(--plum-deep);
  transition: all 0.4s ease;
}
.process-step:hover .process-step-num {
  background: var(--plum-muted);
  border-color: var(--plum-muted);
  color: var(--ivory);
}
.process-step h4 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  color: var(--ivory);
}
.process-step p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--warm-gray-light);
}

/* ===== APPROACH ===== */
.approach {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(232, 213, 204, 0.28), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(123, 94, 167, 0.12), transparent 55%),
    var(--warm-white);
}
.approach-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.approach-content .section-tag { justify-content: flex-start; }
.approach-content .section-title { text-align: left; margin-bottom: 1.25rem; }
.approach-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
}
.approach-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.approach-pillar {
  background: var(--ivory);
  padding: 1.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.approach-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(43,39,36,0.05);
}
.approach-pillar h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}
.approach-pillar p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--warm-gray);
  margin: 0;
}
.approach-visual { position: relative; }
.approach-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(43,39,36,0.06);
}
.approach-image-inner {
  background: linear-gradient(135deg, var(--blush), var(--sage-muted), var(--linen));
}

/* ===== TESTIMONIALS ===== */
.testimonial-section {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232, 213, 204, 0.32), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(123, 94, 167, 0.14), transparent 55%),
    var(--ivory);
  text-align: center;
}
.testimonial-stage {
  display: grid;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}
.testimonial-stage > .testimonial-card {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: block;
  pointer-events: none;
}
.testimonial-stage > .testimonial-card.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.testimonial-card {
  max-width: 750px;
  margin: 0 auto;
  padding: 2.5rem;
}
.testimonial-quote-mark {
  width: 45px; height: 35px;
  margin: 0 auto 1.25rem;
  background: var(--plum-light);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 40'%3E%3Cpath d='M0 30V20C0 8.954 8.954 0 20 0v8C13.373 8 8 13.373 8 20h12v20H0v-10zm30 0V20C30 8.954 38.954 0 50 0v8c-6.627 0-12 5.373-12 12h12v20H30v-10z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 40'%3E%3Cpath d='M0 30V20C0 8.954 8.954 0 20 0v8C13.373 8 8 13.373 8 20h12v20H0v-10zm30 0V20C30 8.954 38.954 0 50 0v8c-6.627 0-12 5.373-12 12h12v20H30v-10z'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.45;
}
.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
}
.testimonial-author span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--warm-gray-light);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.testimonial-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sand);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.testimonial-dot.active {
  background: var(--terracotta);
  transform: scale(1.3);
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(160deg, var(--blush), var(--pink-soft) 40%, var(--ivory-warm));
  text-align: center;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--sage-muted);
  opacity: 0.08;
  filter: blur(100px);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.cta-content p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
}
.cta-phone:hover { color: var(--plum); }

/* ===== FOOTER ===== */
footer.site-footer,
footer {
  background: var(--plum-deep);
  color: var(--ivory);
  padding: 4.5rem 4rem 1.75rem;
}
footer a,
.site-footer a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover,
.site-footer a:hover { color: var(--ivory); }
footer p,
.site-footer p { color: rgba(250, 247, 242, 0.88); }
footer strong,
.site-footer strong { color: var(--ivory); }
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-name,
.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.2rem;
}
/* Make dark logo visible on dark footer */
footer img[alt="The Wild Within"],
.site-footer img[alt="The Wild Within"] {
  filter: brightness(0) invert(1) opacity(0.85);
  height: 60px !important;
}
.footer-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.72);
}
.footer-brand p,
.footer-top > div p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.86);
  max-width: 280px;
  margin-top: 0.85rem;
}
.footer-col h4,
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h4::after,
.footer-grid h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.75;
}
.footer-col ul,
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li,
.footer-grid ul li { margin-bottom: 0.85rem; }
.footer-col ul a,
.footer-grid ul a {
  font-size: 0.98rem;
  color: rgba(250, 247, 242, 0.85);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}
.footer-col ul a:hover,
.footer-grid ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p,
.footer-bottom span {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.65);
}
.footer-bottom a {
  color: rgba(250, 247, 242, 0.85);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--warm-gray-light);
}
.footer-social a:hover {
  border-color: var(--sage);
  background: rgba(138,154,123,0.12);
}
.footer-social a svg { width: 14px; height: 14px; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-35px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(35px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger > * {
  opacity: 0; transform: translateY(25px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger.visible > *:nth-child(1) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(7) { transition-delay: 0.56s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(8) { transition-delay: 0.64s; opacity: 1; transform: translateY(0); }

/* =============================================================
   INTERIOR PAGE UTILITY CLASSES
   These power /individual-therapy.html, /about.html, /contact.html, etc.
   They share the same tokens as the mockup above.
   ============================================================= */

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
/* Crystal-textured section backgrounds */
.bg-cream {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(123, 94, 167, 0.18), transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(201, 168, 76, 0.16), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(232, 213, 204, 0.22), transparent 65%),
    var(--ivory);
  color: var(--charcoal);
}
.bg-warm {
  background:
    radial-gradient(ellipse at 70% 70%, rgba(61, 92, 58, 0.14), transparent 50%),
    radial-gradient(ellipse at 25% 25%, rgba(232, 213, 204, 0.3), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(201, 168, 76, 0.12), transparent 55%),
    var(--milky);
  color: var(--charcoal);
}
.bg-pink  { background: linear-gradient(160deg, var(--linen), var(--blush) 40%, var(--ivory-warm)); color: var(--charcoal); }
.bg-green, .bg-green-deep {
  background: var(--charcoal);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.bg-green::before, .bg-green-deep::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(138, 154, 123, 0.08);
  filter: blur(90px);
  pointer-events: none;
}
.bg-green::after, .bg-green-deep::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(74, 40, 64, 0.08);
  filter: blur(80px);
  pointer-events: none;
}
/* CTA sections — deep plum, speakeasy dark, intimate */
.bg-plum, .bg-plum-deep {
  background: var(--plum);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.bg-plum-deep { background: var(--plum-deep); }
.bg-plum::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--plum-muted);
  opacity: 0.25;
  filter: blur(90px);
  pointer-events: none;
}
.bg-plum::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: var(--rose-dust);
  opacity: 0.12;
  filter: blur(80px);
  pointer-events: none;
}
.bg-plum h2, .bg-plum-deep h2 { color: var(--cream) !important; }
.bg-plum p, .bg-plum-deep p { color: rgba(250,247,242,0.82) !important; }
.bg-plum .eyebrow, .bg-plum-deep .eyebrow { color: var(--gold) !important; }
.bg-plum .eyebrow::before, .bg-plum-deep .eyebrow::before { background: var(--gold); }
.bg-plum a, .bg-plum-deep a { color: var(--gold); }
.bg-plum a:hover, .bg-plum-deep a:hover { color: var(--cream); }
.bg-plum .btn, .bg-plum .btn-primary,
.bg-plum .btn-plum, .bg-plum .btn-gold {
  background: var(--gold) !important;
  color: var(--plum-deep) !important;
  border-color: var(--gold) !important;
}
.bg-plum .btn:hover, .bg-plum .btn-primary:hover,
.bg-plum .btn-plum:hover, .bg-plum .btn-gold:hover {
  background: var(--cream) !important;
  color: var(--plum) !important;
}
.bg-plum .btn-outline, .bg-plum .btn-secondary {
  color: var(--cream) !important;
  border-color: rgba(250,247,242,0.5) !important;
}
.bg-plum .btn-outline:hover, .bg-plum .btn-secondary:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.bg-green > .wrap, .bg-green-deep > .wrap, .bg-plum > .wrap { position: relative; z-index: 1; }

.bg-green a, .bg-green-deep a { color: var(--gold-muted); }
.bg-green a:hover, .bg-green-deep a:hover { color: var(--ivory); }
.bg-green .eyebrow, .bg-green-deep .eyebrow { color: var(--gold-muted); }
.bg-green .eyebrow::before, .bg-green-deep .eyebrow::before { background: var(--gold-muted); }
.bg-green h1, .bg-green h2, .bg-green h3,
.bg-green-deep h1, .bg-green-deep h2, .bg-green-deep h3 { color: var(--ivory); }
.bg-green p, .bg-green-deep p { color: rgba(250, 247, 242, 0.88); }
.bg-green em, .bg-green-deep em { color: var(--gold); }
.bg-green .card, .bg-green-deep .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.bg-green .card h3, .bg-green-deep .card h3 { color: var(--ivory); }
.bg-green .card p, .bg-green-deep .card p { color: rgba(250, 247, 242, 0.85); }
.bg-green .checklist li, .bg-green-deep .checklist li { color: rgba(250, 247, 242, 0.92); }
.bg-green .checklist li strong, .bg-green-deep .checklist li strong { color: var(--ivory); }

/* Page header for interior pages — photo hero with dark overlay */
.page-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 12rem 4rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Dark plum overlay for readability */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(54, 27, 46, 0.82) 0%,
    rgba(74, 40, 64, 0.72) 50%,
    rgba(54, 27, 46, 0.88) 100%
  );
  z-index: 1;
}
/* Subtle floral texture overlay */
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c2 4 6 8 6 14s-6 10-6 10-6-4-6-10 4-10 6-14z' fill='%23C9A84C' fill-opacity='0.04'/%3E%3Cpath d='M15 35c2 3 5 6 5 11s-5 8-5 8-5-3-5-8 3-8 5-11z' fill='%23C9A84C' fill-opacity='0.03'/%3E%3Cpath d='M45 35c2 3 5 6 5 11s-5 8-5 8-5-3-5-8 3-8 5-11z' fill='%23C9A84C' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}
/* Decorative gold line below H1 */
.page-header h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}
.page-header > .wrap { position: relative; z-index: 3; }
.page-header h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(54, 27, 46, 0.4);
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.3s;
}
.page-header a:hover { color: var(--ivory); }
.page-header p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
  color: rgba(250, 247, 242, 0.9);
}
.page-header .eyebrow {
  justify-content: center;
  color: var(--gold);
  letter-spacing: 0.15em;
}
.page-header .eyebrow::before {
  background: var(--gold);
}

/* Gold decorative flourish divider — use between sections */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
}
.flourish::before, .flourish::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}
.flourish-icon {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.7;
}

/* Subtle linen texture for sections */
.bg-textured {
  background-image:
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h1v1H0zM10 10h1v1h-1zM20 0h1v1h-1zM30 10h1v1h-1zM0 20h1v1H0zM10 30h1v1h-1zM20 20h1v1h-1zM30 30h1v1h-1z' fill='%23D4C5AD' fill-opacity='0.12'/%3E%3C/svg%3E");
}

/* Dark section with floral bg image */
.section-dark-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 6rem 4rem;
}
.section-dark-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(54, 27, 46, 0.85) 0%,
    rgba(74, 40, 64, 0.78) 50%,
    rgba(54, 27, 46, 0.9) 100%
  );
}
.section-dark-photo > * { position: relative; z-index: 1; }
.section-dark-photo h2, .section-dark-photo h3 { color: #fff; }
.section-dark-photo p { color: rgba(250, 247, 242, 0.88); }
.section-dark-photo em { color: var(--gold); }

/* Featured testimonial — large format with decorative quotes */
.testimonial-featured {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
}
.testimonial-featured .quote-mark {
  font-family: var(--script);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: -1rem;
}
.testimonial-featured blockquote {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--charcoal);
  margin: 1rem 0 1.5rem;
}
.testimonial-featured .author {
  font-family: var(--script);
  font-size: 1.6rem;
  color: var(--plum-muted);
}

/* Credentials band — refined trust strip with gold-line icons */
.credentials-band {
  background: linear-gradient(180deg, rgba(232, 226, 216, 0.55) 0%, rgba(240, 235, 227, 0.55) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.22);
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
  padding: 2.25rem 1.5rem;
  margin: 0;
}
.credentials-inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.credentials-inner .eyebrow {
  margin-bottom: 1.4rem;
}
.credentials-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2.4rem;
}
.cred-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--plum);
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.cred-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 1180px) {
  .credentials-row { gap: 0.85rem 1.6rem; }
  .cred-item { font-size: 0.98rem; }
  .cred-item svg { width: 18px; height: 18px; flex: 0 0 18px; }
}
@media (max-width: 720px) {
  .credentials-band { padding: 1.75rem 1.25rem; }
  .credentials-row { gap: 0.85rem 1.4rem; }
  .cred-item { white-space: normal; }
}

/* Decorative bottom edge */
.page-header + .section,
.page-header + section {
  border-top: none;
}

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.two-col {
  display: grid;
  gap: 5rem;
  align-items: start;
}
.two-col > img {
  position: sticky;
  top: 110px;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}
@media (min-width: 860px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col img,
.two-col iframe {
  border-radius: 28px;
  box-shadow: 0 25px 50px rgba(43,39,36,0.06);
}

.quote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote-attr {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  font-weight: 500;
}

.checklist { list-style: none; padding: 0; margin: 1.5rem 0; }
.checklist li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.75rem;
  border-bottom: 1px solid var(--linen);
  font-size: 0.95rem;
  line-height: 1.7;
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.bg-green .checklist li, .bg-green-deep .checklist li { border-color: rgba(255,255,255,0.08); }
.bg-green .checklist li::before, .bg-green-deep .checklist li::before { background: var(--gold-muted); }

.faq details {
  border-bottom: 1px solid var(--linen);
  padding: 1.4rem 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  font-family: var(--sans);
  transition: transform 0.3s ease;
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  padding-top: 0.85rem;
  color: var(--warm-gray);
  font-size: 0.98rem;
  line-height: 1.75;
}

form.contact-form {
  display: grid;
  gap: 1.1rem;
  max-width: 560px;
}
.contact-form label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--linen);
  background: var(--warm-white);
  border-radius: 14px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color .25s, box-shadow .25s;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--plum-muted);
  box-shadow: 0 0 0 3px rgba(74,40,64,0.12);
}
.contact-form .note { font-size: 0.85rem; color: var(--warm-gray-light); line-height: 1.6; }

/* Editorial prose — service pages, blog posts */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
  color: var(--charcoal);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  border-top: 1px solid var(--linen);
}
.prose h2:first-of-type { border-top: none; padding-top: 0; }
.prose h3 {
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  color: var(--plum-muted);
  font-size: 1.25rem;
}
.prose ul { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.prose ul li {
  margin-bottom: 0.65rem;
  line-height: 1.8;
  color: var(--warm-gray);
}
.prose p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
}
.prose p:first-of-type {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
}
.prose p:last-child { margin-bottom: 0; }
.prose p strong { color: var(--charcoal); font-weight: 500; }
.prose p em { font-style: italic; }
.prose blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--plum-muted);
  background: var(--warm-white);
  border-radius: 0 14px 14px 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal-soft);
  line-height: 1.7;
}
.bg-green .prose h2, .bg-green-deep .prose h2 { color: var(--ivory); }
.bg-green .prose h3, .bg-green-deep .prose h3 { color: var(--gold); }
.bg-green .prose p, .bg-green-deep .prose p { color: rgba(250, 247, 242, 0.90); }

/* ===== MID-PAGE INLINE CTA ===== */
.inline-cta {
  background: var(--plum);
  color: var(--ivory);
  padding: 3.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inline-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: var(--sage-deep);
  opacity: 0.15;
  filter: blur(60px);
  pointer-events: none;
}
.inline-cta h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  position: relative;
}
.inline-cta p {
  font-size: 1rem;
  color: var(--sand);
  max-width: 500px;
  margin: 0 auto 1.75rem;
  position: relative;
}
.inline-cta .btn-primary,
.inline-cta .btn {
  background: var(--ivory);
  color: var(--charcoal);
  border-color: var(--ivory);
}
.inline-cta .btn-primary:hover,
.inline-cta .btn:hover {
  background: var(--gold);
  color: var(--plum-deep);
  border-color: var(--gold);
}

/* ===== ALTERNATING CONTENT-SPLIT LAYOUT ===== */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}
.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }
.content-split-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(43, 39, 36, 0.06);
}
.content-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.6s ease;
}
.content-split:hover .content-split-image img { transform: scale(1.03); }
.content-split-text h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}
.content-split-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}
@media (max-width: 860px) {
  .content-split { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .content-split.reverse { direction: ltr; }
}

/* ===== STICKY MOBILE CTA BAR ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--charcoal);
  padding: 0.85rem 1.5rem;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(43,39,36,0.15);
}
.mobile-cta-bar a {
  display: block;
  background: var(--plum);
  color: var(--ivory);
  padding: 0.85rem;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.mobile-cta-bar a:hover { background: var(--plum-deep); }
@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  footer, footer.site-footer { padding-bottom: 5rem; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--terracotta);
  color: var(--ivory);
  padding: .5rem 1rem;
  z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

main { padding-top: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav.nav-mockup,
  .site-header { padding: 1.15rem 2rem; }
  nav.nav-mockup.scrolled,
  .site-header.scrolled { padding: 0.7rem 2rem; }
  .site-header .nav { padding: 1.15rem 2rem; }
  .site-header.scrolled .nav { padding: 0.7rem 2rem; }
  section, .section { padding: 5rem 2rem; }
  .wrap, .page-header { padding-left: 2rem; padding-right: 2rem; }
  .hero-content { grid-template-columns: 1fr; padding: 0 2rem; text-align: center; }
  .hero-text { padding-top: 6rem; }
  .hero-subtitle { margin: 0 auto 2.25rem; }
  .hero-actions { justify-content: center; }
  .hero-visual { height: 420px; max-width: 380px; margin: 0 auto; }
  .hero-badge { left: 0; }
  .trust-strip { gap: 2rem; padding: 1.25rem 2rem; flex-wrap: wrap; }
  .welcome-grid, .approach-grid, .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top, .footer-grid { grid-template-columns: 1fr 1fr; }
  footer, footer.site-footer { padding: 4rem 2rem 1.75rem; }
}
@media (max-width: 768px) {
  .menu-toggle, .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 340px;
    height: 100vh;
    background: var(--plum-deep);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1.75rem;
    transition: right 0.5s ease;
    box-shadow: -15px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links a { color: rgba(250, 247, 242, 0.85) !important; font-size: 1rem !important; }
  .nav-links a:hover { color: var(--gold) !important; }
  .nav-links.open,
  .nav-open .nav-links { right: 0; display: flex; }
  /* Dropdown in mobile — always visible, no hover needed */
  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0.5rem 0 0 1rem !important;
    min-width: auto !important;
  }
  .nav-dropdown a { font-size: 0.88rem !important; padding: 0.4rem 0 !important; }
  .nav-dropdown a:hover { padding-left: 0 !important; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .approach-pillars { grid-template-columns: 1fr; }
  .footer-top, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
@media (max-width: 480px) {
  nav.nav-mockup, .site-header { padding: 0.9rem 1.25rem; }
  .site-header .nav { padding: 0.9rem 1.25rem; }
  section, .section { padding: 3.5rem 1.25rem; }
  .wrap, .page-header { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-visual { height: 300px; }
  .cta-section { padding: 4rem 1.25rem; }
  .page-header { padding: 9rem 1.25rem 4rem; }
}

/* ===================================================================== */
/* DECORATIVE LAYER — paper grain, sprigs, pull-quote, ambient blooms     */
/* ===================================================================== */

/* Body-wide paper grain — single biggest perceived-value bump */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.29  0 0 0 0 0.16  0 0 0 0 0.28  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  mix-blend-mode: multiply;
}
.site-header { z-index: 1000; position: relative; }

/* Asymmetric corner sprigs — visible gold-line botanical accents */
.sprig {
  position: absolute;
  width: 180px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 2;
}
.sprig-bl { bottom: 4rem; right: 5rem; transform: rotate(-12deg); }
.sprig-tl { top: 4rem; left: 5rem; transform: rotate(16deg); }
.sprig-tr { top: 5rem; right: 6rem; transform: rotate(-22deg); }
.sprig-br { bottom: 4rem; right: 4rem; transform: rotate(8deg); }
.welcome, .testimonial-section, .process, .team-section { position: relative; }
@media (max-width: 900px) {
  .sprig { width: 100px; opacity: 0.45; }
  .sprig-bl { bottom: 1.5rem; right: 1rem; }
  .sprig-tl { top: 1.5rem; left: 1rem; }
  .sprig-tr { top: 1.5rem; right: 1rem; }
}

/* Subtle centered glow behind testimonials */
.testimonial-section { position: relative; overflow: hidden; }
.testimonial-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  max-width: 90%;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0) 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.testimonial-section > * { position: relative; z-index: 1; }

/* PULL-QUOTE TREATMENT — replaces dense card */
.testimonial-stage { max-width: 760px; margin: 0 auto; }
.pullquote {
  text-align: center;
  padding: 3rem 3rem 2.5rem;
  position: relative;
}
.pullquote::before,
.pullquote::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  opacity: 0.7;
}
.pullquote::before {
  top: 0; left: 0;
  border-right: 0;
  border-bottom: 0;
}
.pullquote::after {
  bottom: 0; right: 0;
  border-left: 0;
  border-top: 0;
}
.pullquote-mark {
  display: block;
  font-family: var(--display);
  font-size: 6.5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.pullquote-lede {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  line-height: 1.4;
  font-style: italic;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 auto 1.6rem;
  max-width: 680px;
  letter-spacing: -0.005em;
}
.pullquote-body {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--charcoal-soft);
  margin: 0 auto 2rem;
  max-width: 620px;
}
.pullquote-attr {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--plum-muted);
}
.pullquote-attr .attr-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

@media (max-width: 720px) {
  .sprig { width: 78px; }
  .sprig-bl { bottom: 24px; right: 20px; }
  .pullquote-mark { font-size: 4.5rem; }
  .pullquote-body { font-size: 1rem; line-height: 1.8; }
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: var(--ivory);
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.team-card {
  background: linear-gradient(180deg, rgba(240, 235, 227, 0.55) 0%, rgba(232, 226, 216, 0.4) 100%);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 4px;
  padding: 3rem 2rem 2.5rem;
  position: relative;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(74, 40, 72, 0.08);
  border-color: rgba(201, 168, 76, 0.45);
}
.team-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.team-avatar {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--amethyst));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(74, 40, 72, 0.18);
  border: 2px solid rgba(201, 168, 76, 0.4);
}
.team-avatar span {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.02em;
}
.team-name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 0.4rem;
}
.team-role {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum-muted);
  margin: 0 0 1.25rem;
}
.team-bio {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  margin: 0 0 1.25rem;
}
.team-pricing-note {
  text-align: center;
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal-soft);
  margin: 3rem auto 0;
  max-width: 640px;
}
.team-pricing-note a {
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(166, 139, 60, 0.4);
  padding-bottom: 1px;
  transition: border-color 0.3s;
}
.team-pricing-note a:hover { border-color: var(--gold-deep); }
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-card { padding: 2.5rem 1.5rem 2rem; }
}

/* ===================================================================== */
/* SERVICE PAGE DECORATIVE LAYER                                         */
/* ===================================================================== */

/* Page header — decorative gold underline below H1 */
.page-header h1 {
  position: relative;
}
.page-header h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.25rem auto 0;
}

/* Improved flourish dividers — horizontal rules + gold sparkle */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 0;
  padding: 2.5rem 1rem;
}
.flourish::before,
.flourish::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.55), transparent);
}
.flourish-icon {
  font-family: var(--display);
  color: var(--gold);
  opacity: 0.85;
  font-size: 1.1rem;
  line-height: 1;
}

/* Decorative botanical pseudo-element — controlled via CSS, no SVG sizing risk */
.with-botanical::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 110px;
  height: 110px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 160'><g fill='none' stroke='%23A68B3C' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><path d='M60 152 Q62 100 60 50'/><path d='M60 110 Q35 102 22 78 Q44 92 60 110'/><path d='M60 88 Q86 80 100 56 Q78 72 60 88'/><path d='M60 50 Q48 32 60 16 Q72 32 60 50'/><circle cx='60' cy='14' r='2.6' fill='%23A68B3C'/></g></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.4;
  pointer-events: none;
  transform: rotate(-12deg);
  z-index: 0;
}
.with-botanical-bl::before {
  top: auto;
  right: auto;
  bottom: -1.5rem;
  left: -1.5rem;
  transform: rotate(168deg);
}
.with-botanical > * { position: relative; z-index: 1; }

/* Editorial card-grid wrapper with gold corner brackets */
.bracketed-grid {
  position: relative;
  padding: 3rem 2rem;
}
.bracketed-grid::before,
.bracketed-grid::after {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gold);
  opacity: 0.55;
}
.bracketed-grid::before {
  top: 0; left: 0;
  border-right: 0;
  border-bottom: 0;
}
.bracketed-grid::after {
  bottom: 0; right: 0;
  border-left: 0;
  border-top: 0;
}

/* Soft photo overlay for warm-grade unification */
.photo-warm-grade {
  position: relative;
  overflow: hidden;
}
.photo-warm-grade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 40, 72, 0.12), rgba(201, 168, 76, 0.08));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

/* Service-page value strip — quick-info badge row under hero */
.value-strip {
  background: linear-gradient(180deg, rgba(232, 226, 216, 0.45), rgba(240, 235, 227, 0.6));
  border-top: 1px solid rgba(201, 168, 76, 0.22);
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
  padding: 1.75rem 1.5rem;
}
.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: flex-start;
}
.value-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.value-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--plum-muted);
  margin-bottom: 0.15rem;
  display: block;
}
.value-detail {
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.005em;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .value-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1.5rem; }
}
@media (max-width: 520px) {
  .value-strip-grid { grid-template-columns: 1fr; }
  .value-item { justify-content: flex-start; }
}

/* Service-page 2-col intro: lead block + feature list */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.intro-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--plum-muted);
  margin: 0 0 1.25rem;
}
.intro-lead h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 1.25rem;
  letter-spacing: -0.005em;
}
.intro-lead h2 em {
  font-style: italic;
  color: var(--plum-muted);
}
.intro-lead p {
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--charcoal-soft);
  margin: 0;
}
.intro-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.intro-list li {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--charcoal);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.intro-list li::before {
  content: '';
  width: 14px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 0.85rem;
  flex-shrink: 0;
}
.intro-list li:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.22);
}
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===================================================================== */
/* ACCENT FONT UTILITIES                                                  */
/* ===================================================================== */

/* Inline italic Playfair accent — for emphasized words inside body copy */
.accent-italic {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--plum-muted);
}

/* Script accent — small Great Vibes flourish for eyebrows and signoffs */
.accent-script-mini {
  font-family: var(--script);
  font-size: 1.4em;
  font-weight: 400;
  color: var(--gold-deep);
  letter-spacing: 0;
  text-transform: none;
  margin-right: 0.25em;
  position: relative;
  top: 0.05em;
}

/* Eyebrow with script flourish prefix */
.intro-eyebrow .accent-script-mini,
.eyebrow .accent-script-mini {
  font-size: 1.6em;
  margin-right: 0.4em;
}

/* Body text rhythm — slight tracking + better leading on Cardo */
.intro-lead p,
.intro-list li,
.welcome-text {
  font-feature-settings: "liga" 1, "kern" 1;
}

/* Section-title em treatment — italic Playfair plum */
.section-title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--plum-muted);
}

/* ===== SERVICES PAGE — design pass ===== */
/* Grid: 2 columns desktop, 1 column mobile */
.services-grid-2 {
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .services-grid-2 { grid-template-columns: 1fr; gap: 1rem; }
}

/* Tighter section rhythm */
.services-page-enhanced .section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.services-page-enhanced .flourish { display: none; }

/* Photo-led service cards — image on top, text below, no SVG icons */
.service-card--photo {
  background: var(--cream);
  border: none;
  border-radius: 4px;
  padding: 0;
  box-shadow: 0 14px 36px rgba(74, 40, 72, 0.12);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card--photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(74, 40, 72, 0.20);
}
.service-photo {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--plum-deep);
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-card--photo:hover .service-photo img {
  transform: scale(1.04);
}
.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 40, 72, 0.22), transparent 50%);
  pointer-events: none;
}
.service-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--plum-deep);
  margin-bottom: 0.75rem;
}
.service-body p {
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  flex: 1;
}
.service-body .service-link {
  color: var(--plum);
  font-weight: 600;
}
.service-body .service-link:hover {
  color: var(--gold-deep);
  gap: 0.7rem;
}

/* Section backgrounds — richer, deeper, not beige-on-beige */
.services-page-enhanced section.bg-cream {
  background:
    radial-gradient(ellipse at 5% 0%, rgba(91, 58, 107, 0.22), transparent 55%),
    radial-gradient(ellipse at 95% 100%, rgba(201, 168, 76, 0.16), transparent 55%),
    radial-gradient(ellipse at 50% 60%, rgba(232, 213, 204, 0.18), transparent 65%),
    linear-gradient(180deg, #ede0e3 0%, #e5d4d8 100%);
  color: var(--charcoal);
}
.services-page-enhanced section.bg-sage-wash {
  background:
    radial-gradient(ellipse at 100% 5%, rgba(91, 58, 107, 0.20), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(61, 92, 58, 0.20), transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.08), transparent 60%),
    linear-gradient(180deg, #d8dccd 0%, #c5d0b5 100%);
  color: var(--charcoal);
}

/* ===== TESTIMONIAL PHOTO BAND ===== */
.testimonial-band {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  text-align: center;
}
.testimonial-band-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(46, 26, 45, 0.55), rgba(46, 26, 45, 0.85)),
    linear-gradient(to bottom, rgba(46, 26, 45, 0.5), rgba(46, 26, 45, 0.75));
  pointer-events: none;
}
.testimonial-band-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.testimonial-band-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.95;
  margin-bottom: 1.25rem;
}
.testimonial-band-line {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ivory);
  margin: 0;
}
.testimonial-band-line .accent-script {
  color: var(--gold);
  font-size: 1.15em;
  margin-left: 0.1em;
}
@media (max-width: 720px) {
  .testimonial-band { min-height: 280px; padding: 3rem 1.25rem; }
}

/* ===== ABOUT PAGE — restructured story sections ===== */
.about-story .two-col {
  align-items: start;
  gap: 3.5rem;
}
.about-story-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 25px 50px rgba(43, 39, 36, 0.12);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 140px);
}
@media (max-width: 860px) {
  .about-story-img { position: static; max-height: none; aspect-ratio: 4 / 5; }
}
.about-story .two-col--reverse {
  direction: rtl;
}
.about-story .two-col--reverse > * {
  direction: ltr;
}
.about-story-band {
  position: relative;
  line-height: 0;
}
.about-story-band img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.about-story-band::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 100px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}
@media (max-width: 900px) {
  .about-story .two-col,
  .about-story .two-col--reverse {
    direction: ltr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-story-img { aspect-ratio: 4 / 3; }
  .about-story-band img { height: 280px; }
}

/* ===== ABOUT — atmospheric photo band with overlay quote ===== */
.about-story-band { position: relative; }
.about-band-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(46, 26, 45, 0.45), rgba(46, 26, 45, 0.78)),
    linear-gradient(to bottom, rgba(46, 26, 45, 0.55) 0%, rgba(46, 26, 45, 0.70) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  z-index: 2;
}
.about-band-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.5vw, 2.05rem);
  line-height: 1.4;
  color: var(--ivory);
  max-width: 780px;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.005em;
}
.about-band-attr {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

/* ===== EDITORIAL CARDS — replace SVG icons with numbered typography ===== */
.editorial-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.editorial-card {
  padding: 2.5rem 2rem;
  background: var(--cream);
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--plum), var(--gold-deep), var(--sage-deep)) 1;
  position: relative;
  box-shadow: 0 8px 24px rgba(74, 40, 72, 0.06);
}
.editorial-card .editorial-num {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.editorial-card h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--plum-deep);
  margin-bottom: 0.85rem;
}
.editorial-card p {
  font-family: var(--sans);
  color: var(--charcoal);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* Dark variant for plum section */
.editorial-card--dark {
  background: rgba(250, 247, 242, 0.06);
  backdrop-filter: blur(4px);
  border-top-color: var(--gold);
  border-image: linear-gradient(90deg, var(--plum-light), var(--gold), var(--sage-muted)) 1;
}
.editorial-card--dark h3 { color: var(--ivory); }
.editorial-card--dark p { color: rgba(250, 247, 242, 0.85); }
.editorial-card--dark .editorial-num { color: var(--gold); }

/* Plum-deep section for My Approach */
.bg-plum-deep {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(123, 94, 167, 0.18), transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(201, 168, 76, 0.12), transparent 60%),
    var(--plum-deep);
  color: var(--ivory);
}
.section-title--light { color: var(--ivory); }
.section-subtitle--light { color: rgba(250, 247, 242, 0.82); }
.section-tag--light { color: var(--gold); }
.section-tag--light .section-tag-line { background: var(--gold); }

/* ===== ABOUT TEAM CARDS — real photos plus monogram fallback ===== */
.team-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.team-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(74, 40, 72, 0.10);
  display: flex;
  flex-direction: column;
}
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--plum-deep);
  position: relative;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-photo--monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201, 168, 76, 0.25), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(138, 154, 123, 0.20), transparent 60%),
    var(--plum-deep);
}
.team-monogram {
  font-family: var(--display);
  font-style: italic;
  font-size: 8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.team-card h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--plum-deep);
  margin: 1.5rem 1.75rem 0.25rem;
}
.team-role {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 1.75rem 1rem;
}
.team-card p {
  font-family: var(--sans);
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0 1.75rem 1.75rem;
}

/* Welcome intro — editorial two-col with sticky heading + body */
.welcome-intro { padding-top: 6rem; padding-bottom: 6rem; }
.welcome-intro-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .welcome-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.welcome-intro-aside { padding-top: 0.5rem; }
.welcome-intro-aside .eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.25rem;
}
.welcome-intro-h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--plum-deep);
  margin: 0 0 1.5rem;
}
.welcome-intro-h2 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--plum-muted);
}
.welcome-intro-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
}
.welcome-intro-body p {
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--charcoal-soft);
  margin: 0 0 1.5rem;
}
.welcome-intro-body p:last-child { margin-bottom: 0; }
.welcome-intro-close {
  font-family: var(--display) !important;
  font-style: italic;
  font-size: 1.4rem !important;
  font-weight: 500;
  line-height: 1.5 !important;
  color: var(--plum-deep) !important;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(74, 40, 72, 0.12);
}

/* Detail cards — clean stat-style logistics blocks, no icons */
.detail-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
.detail-card {
  background: var(--cream);
  border: 1px solid rgba(74, 40, 72, 0.08);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
}
.detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--gold);
}
.detail-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.85rem;
}
.detail-title {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--plum-deep);
  margin: 0 0 1rem;
  line-height: 1.15;
}
.detail-unit {
  display: block;
  font-size: 1rem;
  font-style: italic;
  color: var(--plum-muted);
  font-weight: 400;
  margin-top: 0.15rem;
}
.detail-body {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}

/* Signal list — "Is this you?" style with gold rule on left, no SaaS checkmarks */
.signal-list {
  max-width: 920px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2.25rem;
}
@media (max-width: 760px) {
  .signal-list { grid-template-columns: 1fr; }
}
.signal-list li {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  padding: 0.85rem 0 0.85rem 1.5rem;
  border-left: 2px solid var(--gold);
  position: relative;
}
.signal-list li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 1.3rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.signal-list-feature {
  max-width: 920px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 2rem;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--plum-deep);
  background: rgba(201, 168, 76, 0.08);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.signal-list-feature em {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold-deep);
}

/* Dark prose — body paragraphs on bg-plum-deep sections */
.dark-prose {
  max-width: 820px;
  margin: 0 auto;
}
.dark-prose p {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(250, 247, 242, 0.88);
  margin: 0 0 1.25rem;
}
.dark-prose p:last-child { margin-bottom: 0; }
.dark-prose em { color: var(--gold); font-style: italic; }
.dark-prose strong { color: var(--ivory); font-weight: 500; }
.dark-prose-footer {
  max-width: 820px;
  margin: 2.5rem auto 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  color: rgba(250, 247, 242, 0.72);
}

/* Pullquote card — designed pull-quote on cream background (mid-page) */
.pullquote-card {
  background: var(--cream);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 3rem 2.5rem;
  text-align: center;
}
.pullquote-mark {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pullquote-body-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
  color: var(--plum-deep);
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  background: none;
}
.pullquote-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pullquote-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.pullquote-name {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* Chakra grid — 7 cards arranged 4 + 3 on plum-deep */
.chakra-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1080px) {
  .chakra-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .chakra-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .chakra-grid { grid-template-columns: 1fr; }
}
.chakra-card {
  padding: 1.5rem 1.4rem;
  background: rgba(250, 247, 242, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 4px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s;
}
.chakra-card:hover {
  background: rgba(250, 247, 242, 0.08);
  border-color: rgba(201, 168, 76, 0.35);
}
.chakra-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 0.35rem;
}
.chakra-card .chakra-location {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.chakra-card p:last-child {
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.82);
  margin: 0;
}

/* Typography-led team bios (no photos) — for Alisha and Kyla on About */
.team-bio-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (max-width: 900px) {
  .team-bio-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.team-bio {
  background: var(--cream);
  border: 1px solid rgba(74, 40, 72, 0.08);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 2.25rem 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 36px rgba(74, 40, 72, 0.06);
}
.team-bio-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(74, 40, 72, 0.08);
}
.team-bio-monogram {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201, 168, 76, 0.28), transparent 65%),
    var(--plum-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.team-bio-id { display: flex; flex-direction: column; gap: 0.2rem; }
.team-bio-name {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--plum-deep);
  margin: 0;
  line-height: 1.1;
}
.team-bio-credential {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum-muted);
  margin: 0;
}
.team-bio-license {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.15rem 0.55rem;
  background: var(--gold);
  color: var(--ivory);
  border-radius: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}
.team-bio-specialties {
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 0 0 1.5rem;
  padding: 0.85rem 1.1rem;
  background: rgba(201, 168, 76, 0.10);
  border-left: 2px solid var(--gold);
  border-radius: 0 2px 2px 0;
}
.team-bio-specialties-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.25rem;
}
.team-bio-body { flex: 1; }
.team-bio-body p {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0 0 1rem;
}
.team-bio-body p:last-child { margin-bottom: 0; }
.team-bio-availability {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--gold-deep);
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(74, 40, 72, 0.10);
}

/* About page closing quote — designed plum-deep card, not a floating cream block */
.closing-quote-section { padding: 5.5rem 1.5rem; }
.closing-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.closing-quote-mark {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.closing-quote-body {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.55;
  color: var(--ivory);
  margin: 0 0 2rem;
  padding: 0;
  border: none;
  background: none;
}
.closing-quote-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.closing-quote-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--gold);
}
.closing-quote-name {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== ABOUT — Approach list (different visual from 01/02/03 editorial cards) ===== */
.approach-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.approach-item {
  padding: 1.75rem 0 1.75rem 2.5rem;
  border-left: 2px solid var(--gold);
  position: relative;
}
.approach-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 2.25rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 26, 45, 0.6);
}
.approach-item h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.approach-item h3 em {
  font-style: italic;
  color: var(--gold);
}
.approach-item p {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.88);
  margin: 0;
}
@media (max-width: 720px) {
  .approach-item { padding-left: 1.75rem; }
  .approach-item::before { left: -6px; width: 10px; height: 10px; }
}

/* ===== FAQ PAGE ===== */
.faq-page .flourish { display: none; }
.faq-page .section { padding-top: 4rem; padding-bottom: 4rem; }
.faq-block {
  max-width: 880px;
  margin: 0 auto;
}
.faq-category-header {
  margin-bottom: 2.25rem;
  text-align: left;
}
.faq-category-header .eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}
.faq-category-header h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--plum-deep);
  line-height: 1.15;
  margin: 0;
}
.faq-category-header h2 em {
  font-style: italic;
  color: var(--plum-muted);
}
.faq-page .bg-sage-wash .faq-category-header h2,
.faq-page .bg-warm .faq-category-header h2 { color: var(--plum-deep); }

/* Accordion details/summary polish */
.faq-page details {
  border-left: 2px solid rgba(201, 168, 76, 0.35);
  padding: 1.1rem 1.25rem 1.1rem 1.5rem;
  margin-bottom: 0.75rem;
  background: rgba(250, 247, 242, 0.55);
  transition: border-color 0.3s, background 0.3s;
}
.faq-page details[open] {
  border-left-color: var(--gold);
  background: rgba(250, 247, 242, 0.85);
}
.faq-page details summary {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--plum-deep);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  line-height: 1.4;
}
.faq-page details summary::-webkit-details-marker { display: none; }
.faq-page details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-deep);
  transition: transform 0.3s, color 0.3s;
}
.faq-page details[open] summary::after { transform: rotate(45deg); color: var(--gold); }
.faq-page details p {
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-top: 0.85rem;
  margin-bottom: 0;
}
.faq-page details p strong { color: var(--plum-deep); }

/* FAQ photo band (nature scene with quote overlay) */
.faq-band {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  text-align: center;
}
.faq-band-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(46, 26, 45, 0.48), rgba(46, 26, 45, 0.82)),
    linear-gradient(to bottom, rgba(46, 26, 45, 0.55), rgba(46, 26, 45, 0.78));
  pointer-events: none;
}
.faq-band-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.faq-band-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}
.faq-band-line {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--ivory);
  margin: 0;
}
.faq-band-line .accent-script {
  color: var(--gold);
  font-size: 1.15em;
  margin-left: 0.1em;
}
@media (max-width: 720px) {
  .faq-band { min-height: 320px; padding: 3.5rem 1.25rem; }
}



/* Event card tag — small uppercase label above event title */
.event-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.7rem;
  background: var(--gold-glow);
  border-radius: 2px;
}
