/* =========================================================
   Flourish Wellness Center of Virginia Beach
   Editorial functional medicine — gut, mold, autoimmunity
   ========================================================= */

:root {
  /* Color */
  --cream: #FAF6F0;
  --cream-deep: #F2EAD9;
  --cream-warm: #F5EBDD;
  --sage: #7A8E7A;
  --sage-light: #A8B5A0;
  --sage-pale: #D9E0D2;
  --sage-dark: #4F6450;
  --rose: #C9A4A4;
  --rose-light: #E8D2D2;
  --rose-pale: #F5E5E5;
  --rose-deep: #A87878;
  --gold: #B8946E;
  --gold-light: #D9BFA0;
  --gold-pale: #EFE0CC;
  --ink: #2D2826;
  --ink-soft: #5A4F4A;
  --muted: #897E78;
  --line: #E5DACB;
  --line-soft: #F0E8DC;
  --white: #FFFFFF;

  /* Type */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --display-xl: clamp(3rem, 8vw, 6rem);
  --display-lg: clamp(2.5rem, 6vw, 4.5rem);
  --display-md: clamp(2rem, 4.5vw, 3.25rem);
  --display-sm: clamp(1.5rem, 2.8vw, 2rem);

  /* Layout */
  --max: 1240px;
  --max-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Effects */
  --radius: 4px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(45, 40, 38, 0.04);
  --shadow: 0 12px 40px rgba(45, 40, 38, 0.08);
  --shadow-lg: 0 24px 60px rgba(45, 40, 38, 0.12);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--rose-deep); }

/* =========================================================
   Typography
   ========================================================= */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.015em;
}
h1 { font-size: var(--display-xl); }
h2 { font-size: var(--display-lg); }
h3 { font-size: var(--display-sm); font-weight: 500; line-height: 1.2; }
h4 { font-size: 1.3rem; font-weight: 500; line-height: 1.3; }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
}

p { margin-bottom: 1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 400;
}

.display-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.signature {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  margin-top: 1rem;
  display: inline-block;
}
.signature::before { content: '— '; }

/* =========================================================
   Layout primitives
   ========================================================= */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(5rem, 9vw, 8rem) 0; position: relative; }
.section--cream { background: var(--cream-deep); }
.section--sage {
  background: var(--sage-dark);
  color: var(--cream);
}
.section--sage h1, .section--sage h2, .section--sage h3, .section--sage h4 { color: var(--cream); }
.section--sage p { color: rgba(250, 246, 240, 0.85); }
.section--sage .eyebrow { color: var(--gold-light); }
.section--sage .eyebrow::before { background: var(--gold-light); }

.section--ink {
  background: var(--ink);
  color: var(--cream);
}
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--cream); }
.section--ink p { color: rgba(250, 246, 240, 0.8); }

.center { text-align: center; }

/* =========================================================
   Decorative dividers
   ========================================================= */

.divider {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.divider-center {
  margin: 1.5rem auto;
}
.divider-ornate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  color: var(--gold);
}
.divider-ornate::before,
.divider-ornate::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
}

/* =========================================================
   Header / Navigation
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  gap: 2rem;
}

.brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.005em;
  line-height: 1.05;
  flex-shrink: 0;
}
.brand span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}
.brand:hover { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.nav-phone svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.nav-cta {
  background: var(--sage);
  color: var(--cream) !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.88rem !important;
  transition: all var(--transition-fast);
}
.nav-cta:hover {
  background: var(--sage-dark);
  color: var(--cream) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: var(--transition);
}

@media (max-width: 920px) {
  .nav-phone { display: none; }
}
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.5rem var(--gutter);
    border-bottom: 1px solid var(--line);
    gap: 1.25rem;
    align-items: flex-start;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta { width: 100%; text-align: center; }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}
.btn svg { width: 14px; height: 14px; transition: transform var(--transition-fast); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--sage);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--sage-dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-rose {
  background: var(--rose-deep);
  color: var(--white);
}
.btn-rose:hover {
  background: var(--rose-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  filter: brightness(0.95);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 240, 0.5);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--sage-dark);
  border-color: var(--cream);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink);
  padding: 0;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.4rem;
}
.btn-link:hover {
  color: var(--gold);
  background: transparent;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  top: 5%;
  right: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-pale) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.hero-content { position: relative; }

.hero h1 {
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.trust-row span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}
.trust-row span:not(:last-child)::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 1rem;
}

/* Hero image with editorial frame */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(135deg, rgba(122, 142, 122, 0.15), rgba(201, 164, 164, 0.2)),
    url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?auto=format&fit=crop&w=900&q=85');
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: 30px;
  right: -20px;
  bottom: -20px;
  left: 30px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 1;
}
.hero-visual::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 90px;
  height: 90px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23B8946E' stroke-width='0.6' opacity='0.6'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3Ccircle cx='50' cy='50' r='30'/%3E%3Ccircle cx='50' cy='50' r='20'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
}

.hero-badge {
  position: absolute;
  bottom: -30px;
  left: -20px;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 240px;
}
.hero-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose-deep);
}
.hero-badge-text {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--ink-soft);
}
.hero-badge-text strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.1rem;
}
@media (max-width: 920px) {
  .hero-badge { left: 0; bottom: -20px; }
}

/* =========================================================
   Section Heads
   ========================================================= */

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}
.section-head .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 1.25rem; }
.section-head p {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto;
}

/* Editorial section head with line markers */
.section-head--bordered {
  position: relative;
  padding-top: 2rem;
}
.section-head--bordered::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: var(--gold);
}

/* =========================================================
   Pillars (3-up service preview)
   ========================================================= */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  border: 1px solid var(--line-soft);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pillar-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.pillar-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(45, 40, 38, 0.15) 100%);
}
.pillar-image--gut {
  background-image:
    linear-gradient(135deg, rgba(122, 142, 122, 0.2), rgba(184, 148, 110, 0.3)),
    url('https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=600&q=80');
}
.pillar-image--mold {
  background-image:
    linear-gradient(135deg, rgba(168, 181, 160, 0.2), rgba(122, 142, 122, 0.3)),
    url('https://images.unsplash.com/photo-1518495973542-4542c06a5843?auto=format&fit=crop&w=600&q=80');
}
.pillar-image--auto {
  background-image:
    linear-gradient(135deg, rgba(201, 164, 164, 0.2), rgba(184, 148, 110, 0.3)),
    url('https://images.unsplash.com/photo-1471864190281-a93a3070b6de?auto=format&fit=crop&w=600&q=80');
}

.pillar-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  z-index: 2;
}
.pillar-icon svg { width: 22px; height: 22px; }

.pillar-body {
  padding: 2rem 2rem 2.25rem;
}
.pillar-number {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.pillar h3 {
  margin-bottom: 0.85rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
}
.pillar p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* =========================================================
   Bio / About block
   ========================================================= */

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 920px) {
  .bio-grid { grid-template-columns: 1fr; }
}
.bio-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.bio-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(135deg, rgba(184, 148, 110, 0.15), rgba(201, 164, 164, 0.2)),
    url('https://images.unsplash.com/photo-1594824476967-48c8b964273f?auto=format&fit=crop&w=800&q=85');
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.bio-visual::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: 30px;
  right: 30px;
  background: var(--rose-pale);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.bio-quote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.5;
}

/* =========================================================
   Process / Steps
   ========================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.step {
  text-align: left;
  position: relative;
  padding: 0 1.5rem;
  border-left: 1px solid var(--line);
}
.step:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 720px) {
  .step { border-left: 0; padding: 1.5rem 0; border-top: 1px solid var(--line); }
  .step:first-child { border-top: 0; padding-top: 0; }
}
.step-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.step h4 {
  margin-bottom: 0.6rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
}
.step p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* =========================================================
   Differentiators / "What sets us apart"
   ========================================================= */

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.diff {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
  text-align: center;
}
.diff:last-child { border-right: 0; }
.diff-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.diff-num em {
  font-style: italic;
  color: var(--rose-deep);
  font-size: 0.65em;
}
.diff-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 720px) {
  .diff { border-right: 0; border-bottom: 1px solid var(--line); }
  .diff:last-child { border-bottom: 0; }
}

/* =========================================================
   Pull Quote
   ========================================================= */

.pullquote {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}
.pullquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.pullquote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1.5rem;
  position: relative;
}
.pullquote-attr {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   Service blocks (services page)
   ========================================================= */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 0; }
.service-block.reverse .service-text { order: 2; }
.service-block.reverse .service-image-wrap { order: 1; }

@media (max-width: 920px) {
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block.reverse .service-text { order: 1; }
  .service-block.reverse .service-image-wrap { order: 2; }
}

.service-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
}
.service-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.service-image--gut {
  background-image:
    linear-gradient(135deg, rgba(122, 142, 122, 0.15), rgba(184, 148, 110, 0.2)),
    url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=900&q=85');
}
.service-image--mold {
  background-image:
    linear-gradient(135deg, rgba(168, 181, 160, 0.2), rgba(122, 142, 122, 0.25)),
    url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?auto=format&fit=crop&w=900&q=85');
}
.service-image--auto {
  background-image:
    linear-gradient(135deg, rgba(201, 164, 164, 0.2), rgba(184, 148, 110, 0.25)),
    url('https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?auto=format&fit=crop&w=900&q=85');
}
.service-image--initial {
  background-image:
    linear-gradient(135deg, rgba(122, 142, 122, 0.15), rgba(201, 164, 164, 0.2)),
    url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=900&q=85');
}
.service-image--discovery {
  background-image:
    linear-gradient(135deg, rgba(184, 148, 110, 0.2), rgba(168, 181, 160, 0.2)),
    url('https://images.unsplash.com/photo-1556228720-195a672e8a03?auto=format&fit=crop&w=900&q=85');
}
.service-image--followup {
  background-image:
    linear-gradient(135deg, rgba(201, 164, 164, 0.15), rgba(122, 142, 122, 0.2)),
    url('https://images.unsplash.com/photo-1502691876148-a84978e59af8?auto=format&fit=crop&w=900&q=85');
}

.service-meta {
  display: flex;
  gap: 2.5rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-meta div {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 0.4rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.service-text h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.service-text ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.service-text ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.service-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  max-width: 800px;
  margin: 4rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.005em;
}
.faq-item summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  padding-top: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* =========================================================
   CTA Banner
   ========================================================= */

.cta-banner {
  background: var(--sage-dark);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  text-align: center;
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 164, 0.25) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 148, 110, 0.15) 0%, transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(250, 246, 240, 0.85);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
}

/* =========================================================
   Chat widget CTA (instead of forms)
   ========================================================= */

.chat-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.chat-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--rose-pale);
  opacity: 0.5;
  z-index: 0;
}
.chat-cta > * { position: relative; z-index: 1; }
.chat-cta-icon {
  width: 72px;
  height: 72px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--sage-dark);
}
.chat-cta-icon svg { width: 32px; height: 32px; }
.chat-cta h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.chat-cta p {
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}
.chat-cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--rose-deep);
  animation: bobR 2.5s ease-in-out infinite;
}
@keyframes bobR {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* =========================================================
   Info block (replaces sidebar form)
   ========================================================= */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line-soft);
  transition: all var(--transition);
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.info-card-icon svg { width: 20px; height: 20px; }
.info-card h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.info-card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0; }
.info-card a { font-family: var(--serif); font-size: 1.2rem; color: var(--sage-dark); display: block; margin-top: 0.4rem; }

.hours-list {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list strong {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
}

.emergency-callout {
  background: var(--rose-pale);
  border-left: 3px solid var(--rose-deep);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  margin-top: 2rem;
}
.emergency-callout h4 {
  color: var(--rose-deep);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.emergency-callout p { font-size: 0.92rem; margin-bottom: 0; }

/* =========================================================
   Page Hero (sub-pages)
   ========================================================= */

.page-hero {
  text-align: center;
  padding: clamp(5rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.page-hero > * { position: relative; }
.page-hero h1 {
  margin: 1rem 0 1.5rem;
  font-weight: 400;
}
.page-hero p { max-width: 640px; margin: 0 auto; }
.page-hero .eyebrow { justify-content: center; }

/* =========================================================
   Legal pages
   ========================================================= */

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6rem) var(--gutter);
}
.legal h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.legal .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  font-family: var(--serif);
  font-style: italic;
}
.legal h2 {
  margin: 3rem 0 1.25rem;
  font-size: 1.85rem;
  color: var(--ink);
  font-weight: 500;
  font-family: var(--serif);
}
.legal h3 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.1rem;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal p, .legal ul, .legal ol { margin-bottom: 1rem; }
.legal ul, .legal ol { padding-left: 1.5rem; }
.legal li { margin-bottom: 0.5rem; color: var(--ink-soft); line-height: 1.6; }
.legal strong { color: var(--ink); }

.legal .callout {
  background: var(--cream-deep);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  margin: 2rem 0;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 148, 110, 0.08) 0%, transparent 60%);
}

.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--rose-light); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--cream);
  line-height: 1.05;
}
.footer-brand span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.25rem;
}
.footer-tag {
  font-size: 0.95rem;
  color: rgba(250, 246, 240, 0.7);
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.5;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; font-size: 0.92rem; }
.footer-col p { font-size: 0.92rem; color: rgba(250, 246, 240, 0.7); line-height: 1.6; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.55);
  position: relative;
}
.footer-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(250, 246, 240, 0.45);
  line-height: 1.6;
  position: relative;
}

/* =========================================================
   Animations
   ========================================================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Utilities
   ========================================================= */

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip:focus { left: 0; }

/* Chat widget bottom-right hint */
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(122, 142, 122, 0.5); }
  70% { box-shadow: 0 0 0 20px rgba(122, 142, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(122, 142, 122, 0); }
}
