/* =========================================================
   [Your Business Name] — Master Stylesheet
   Edit the CSS variables below to change colors site-wide.
   ========================================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── Color & Type Tokens ── */
:root {
  --navy:        #1c3a5e;
  --navy-dark:   #122540;
  --navy-mid:    #254f82;
  --forest:      #1e3d2a;
  --forest-mid:  #2d5c3e;
  --forest-light:#3d7a52;
  --plum:        #3a1f5c;
  --plum-mid:    #52307a;
  --gold:        #c9a142;
  --gold-light:  #e0b85a;
  --brown:       #7d5533;
  --brown-mid:   #a0713f;
  --brown-light: #c49060;
  --cream:       #f5f0e8;
  --cream-dark:  #ede6d6;
  --warm-white:  #faf7f2;
  --text-dark:   #2a2118;
  --text-mid:    #4a3c2e;
  --text-light:  #6e5c48;

  --heading-font: 'Cormorant Garamond', Georgia, serif;
  --body-font:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm:  0 2px 8px rgba(28,58,94,0.08);
  --shadow-md:  0 4px 20px rgba(28,58,94,0.12);
  --shadow-lg:  0 8px 40px rgba(28,58,94,0.18);
  --shadow-card:0 2px 12px rgba(44,30,12,0.10);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill:50px;

  --grad-hero:  linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 35%, var(--forest) 70%, var(--forest-mid) 100%);
  --grad-strip: linear-gradient(120deg, var(--forest) 0%, var(--navy) 60%, var(--plum) 100%);
  --grad-card:  linear-gradient(160deg, var(--cream) 0%, var(--warm-white) 100%);
  --grad-gold:  linear-gradient(90deg, var(--brown) 0%, var(--gold) 100%);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.section-title { color: var(--text-dark); }
.section-title--light { color: var(--cream); }
.lead {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,161,66,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.5);
}
.btn--outline:hover {
  background: rgba(245,240,232,0.1);
  border-color: var(--cream);
}
.btn--dark {
  background: var(--navy-dark);
  color: var(--cream);
  border-color: var(--navy-dark);
}
.btn--dark:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.nav--scrolled {
  background: rgba(18,37,64,0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav__logo {
  font-family: var(--heading-font);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo span {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--body-font);
  font-weight: 700;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.85);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__links .btn { margin-left: 0.5rem; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  display: block;
  transition: all 0.3s ease;
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
}

/* ── Section Layout ── */
.section {
  padding: 6rem 2rem;
}
.section--dark {
  background: var(--navy-dark);
  color: var(--cream);
}
.section--forest {
  background: var(--forest);
  color: var(--cream);
}
.section--cream {
  background: var(--cream);
}
.section--warm {
  background: var(--warm-white);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.container--narrow {
  max-width: 760px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p {
  margin-top: 1rem;
  color: var(--text-mid);
}

/* ── Botanical Divider ── */
.botanical-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  overflow: hidden;
}
.botanical-divider svg {
  width: 100%;
  max-width: 700px;
  height: auto;
}
.botanical-divider--light svg path,
.botanical-divider--light svg line,
.botanical-divider--light svg ellipse,
.botanical-divider--light svg circle {
  stroke: var(--cream);
}
.botanical-divider--light svg ellipse[fill],
.botanical-divider--light svg circle[fill] {
  fill: var(--cream);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.hero__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__art svg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: 62%;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero__title {
  color: var(--cream);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.82);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245,240,232,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: float 2.5s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.5), transparent);
}
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

/* ── Intro / Philosophy ── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.intro__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.intro__visual svg {
  width: 100%;
  max-width: 360px;
}
.intro__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 90px; height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-dark);
  line-height: 1.3;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--grad-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__art {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-card__art--human   { background: linear-gradient(135deg, var(--navy) 0%, var(--plum) 100%); }
.service-card__art--pet     { background: linear-gradient(135deg, var(--forest) 0%, var(--navy-mid) 100%); }
.service-card__art--store   { background: linear-gradient(135deg, var(--brown) 0%, var(--forest) 100%); }
.service-card__art svg {
  width: 110px;
  height: 110px;
  opacity: 0.82;
}
.service-card__body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.service-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.5rem; }
.service-card p { color: var(--text-mid); font-size: 0.95rem; flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 0.7rem; color: var(--forest); }

/* ── How It Works ── */
.steps { position: relative; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: steps;
  position: relative;
  z-index: 2;
}
.step {
  counter-increment: steps;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(245,240,232,0.07);
  border-radius: var(--radius-md);
  border: 1px solid rgba(245,240,232,0.12);
  position: relative;
}
.step::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h4 {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.step p { color: rgba(245,240,232,0.7); font-size: 0.9rem; }
.steps__watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.steps__watermark svg {
  width: 70%;
  max-width: 600px;
  opacity: 0.04;
}

/* ── About Strip ── */
.about-strip {
  background: var(--grad-strip);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.about-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.about-strip__text h2 { color: var(--cream); margin-bottom: 1rem; }
.about-strip__text p { color: rgba(245,240,232,0.8); max-width: 580px; }
.about-strip__art {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 35%;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.about-strip__art svg {
  height: 100%;
  width: auto;
  opacity: 0.08;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--heading-font);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}
.testimonial-card p { color: var(--text-mid); font-style: italic; margin-bottom: 1rem; }
.testimonial-card cite {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-style: normal;
}
.testimonials-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-light);
  font-size: 0.85rem;
  font-style: italic;
}

/* ── Storefront Banner ── */
.storefront-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--forest) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.storefront-banner h3 { color: var(--cream); font-size: 1.9rem; margin-bottom: 0.5rem; }
.storefront-banner p { color: rgba(245,240,232,0.8); margin-bottom: 1.5rem; }
.storefront-banner__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.storefront-banner__art svg {
  width: 100%;
  height: 100%;
  opacity: 0.07;
}
.notify-form {
  display: flex;
  gap: 1rem;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.notify-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(245,240,232,0.3);
  background: rgba(245,240,232,0.12);
  color: var(--cream);
  font-family: var(--body-font);
  font-size: 0.9rem;
}
.notify-form input::placeholder { color: rgba(245,240,232,0.5); }
.notify-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245,240,232,0.18);
}

/* ── About Page Layout ── */
.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.about-sidebar {
  position: sticky;
  top: 7rem;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--cream-dark), var(--cream));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(125,85,51,0.15);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.credential-list { display: flex; flex-direction: column; gap: 0.75rem; }
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.credential-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-content h3 { color: var(--forest); margin: 2.5rem 0 1rem; font-size: 1.4rem; }
.pull-quote {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 2rem 2rem 2rem 2.5rem;
  margin: 2.5rem 0;
  font-family: var(--heading-font);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.5;
  position: relative;
  overflow: hidden;
}
.pull-quote__art {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  pointer-events: none;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pull-quote__art svg { height: 110%; width: auto; opacity: 0.1; }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.approach-item {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.approach-item h4 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; }
.approach-item p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }

/* ── Services Page ── */
.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.service-section--reverse { direction: rtl; }
.service-section--reverse > * { direction: ltr; }
.service-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-visual--human  { background: linear-gradient(145deg, var(--navy), var(--plum)); }
.service-visual--pet    { background: linear-gradient(145deg, var(--forest), var(--navy-mid)); }
.service-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-visual__label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(18,37,64,0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
}
.service-text h2 { margin-bottom: 1rem; }
.service-text p { color: var(--text-mid); margin-bottom: 1rem; }
.service-text .feature-list { margin-top: 1.5rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.7rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.feature-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ── Membership Tiers ── */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}
.tier-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.tier-card--featured {
  border-color: var(--gold);
  background: var(--navy-dark);
  color: var(--cream);
  transform: scale(1.03);
}
.tier-card--featured h3, .tier-card--featured p { color: var(--cream); }
.tier-card:hover { transform: translateY(-4px) scale(1.01); }
.tier-card--featured:hover { transform: translateY(-4px) scale(1.03); }
.tier-card__badge {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 1rem;
}
.tier-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.tier-card p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.5rem; }
.tier-card ul { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.tier-card ul li {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.tier-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.tier-card--featured ul li::before { color: var(--gold-light); }

/* ── FAQ Accordion ── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  color: var(--text-dark);
  transition: background 0.2s;
}
.faq-item__q:hover { background: var(--cream); }
.faq-item__q span { font-size: 1.4rem; color: var(--gold); transition: transform 0.3s; }
.faq-item__q[aria-expanded="true"] span { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item__a.open { max-height: 600px; }
.faq-item__a p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-mid);
  font-size: 0.93rem;
}

/* ── Booking / Multi-step Form ── */
.booking-hero {
  background: var(--grad-hero);
  padding: 9rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-hero__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.booking-hero__art svg {
  width: 100%;
  height: 100%;
  opacity: 0.08;
}
.booking-hero h1 { color: var(--cream); position: relative; z-index: 2; }
.booking-hero p  { color: rgba(245,240,232,0.8); position: relative; z-index: 2; margin-top: 0.75rem; }
.booking-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem 0 2rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--cream-dark);
  background: white;
  font-family: var(--body-font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-mid);
  transition: all 0.25s;
}
.tab-btn.active {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--cream);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.progress-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.progress-bar__step {
  flex: 1;
  height: 4px;
  background: var(--cream-dark);
  border-radius: 2px;
  transition: background 0.4s ease;
}
.progress-bar__step.done    { background: var(--gold); }
.progress-bar__step.active  { background: var(--navy); }
.step-header {
  text-align: center;
  margin-bottom: 2rem;
}
.step-header h2 { font-size: 1.8rem; margin-bottom: 0.4rem; }
.step-header p { color: var(--text-light); font-size: 0.9rem; }
.type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.type-option {
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  background: var(--warm-white);
}
.type-option:hover { border-color: var(--navy-mid); background: var(--cream); }
.type-option.selected {
  border-color: var(--navy);
  background: rgba(28,58,94,0.05);
}
.type-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.type-option__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.type-option h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.type-option p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(28,58,94,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: flex; gap: 1rem; }
.form-row .form-group { flex: 1; }
.disclaimer-box {
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  max-height: 320px;
  overflow-y: auto;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.disclaimer-box h4 { color: var(--text-dark); margin-bottom: 1rem; font-size: 1rem; }
.disclaimer-box ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.8rem; }
.agree-section { display: flex; flex-direction: column; gap: 1rem; }
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--navy);
  margin-top: 2px;
  flex-shrink: 0;
}
.sig-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}
.scheduling-placeholder {
  text-align: center;
  padding: 2.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.scheduling-placeholder p { color: var(--text-mid); margin-bottom: 1.5rem; }
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
}
.form-msg {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}
.form-msg--success { background: #e6f4ea; color: #1a5c2a; border: 1px solid #8ec49d; }
.form-msg--error   { background: #fdecea; color: #8c1a0e; border: 1px solid #f5a9a3; }

/* ── Contact Page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { color: var(--text-mid); margin-bottom: 2rem; }
.contact-blocks  { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.contact-block__icon {
  width: 44px; height: 44px;
  background: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-block__text h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.25rem; }
.contact-block__text p  { color: var(--text-dark); font-size: 0.95rem; margin: 0; }
.contact-notice {
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { margin-bottom: 1.5rem; }

/* ── Page Hero ── */
.page-hero {
  background: var(--grad-hero);
  padding: 9rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-hero__art svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  opacity: 0.06;
}
.page-hero h1 { color: var(--cream); position: relative; z-index: 2; }
.page-hero p  { color: rgba(245,240,232,0.8); position: relative; z-index: 2; margin-top: 0.75rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--grad-hero);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(245,240,232,0.8); margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner__art svg { width: 80%; opacity: 0.05; }
.cta-banner > * { position: relative; z-index: 2; }

/* ── Disclaimer Box (Footer) ── */
.disclaimer-footer {
  background: var(--cream-dark);
  padding: 2.5rem 2rem;
  text-align: center;
}
.disclaimer-footer p {
  font-size: 0.78rem;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  color: rgba(245,240,232,0.8);
  padding: 4rem 2rem 2rem;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand p { font-size: 0.88rem; margin-top: 0.75rem; color: rgba(245,240,232,0.6); max-width: 240px; }
.footer__col h4 {
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.7);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--gold); }
.footer__bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,240,232,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(245,240,232,0.45); }

/* ── Quick Links (Contact page) ── */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.quick-link-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.quick-link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quick-link-card__icon { font-size: 2rem; margin-bottom: 0.6rem; display: block; }
.quick-link-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.3rem; }
.quick-link-card p { color: var(--text-light); font-size: 0.82rem; margin: 0; }

/* ── Utility ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.honeypot { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__art svg { max-width: 80%; opacity: 0.06; }
  .intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro__visual { order: -1; }
  .about-layout { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .service-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-section--reverse { direction: ltr; }
  .approach-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .type-selector { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about-strip__inner { grid-template-columns: 1fr; }
  .about-strip__art { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 1.25rem; }
  .hero { padding-top: 7rem; }
  .hero__art { display: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .tier-card--featured { transform: none; }
  .tier-card--featured:hover { transform: translateY(-4px); }
  .storefront-banner { padding: 2rem 1.5rem; }
  .about-photo { aspect-ratio: 1/1; }
}
