/* ============================================================
   Confident Closet by Karina — Main Stylesheet
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────── */
:root {
  --brown:          #8b6f47;
  --brown-dark:     #5c4a2a;
  --brown-light:    #a68b5b;
  --tan:            #d4b896;
  --tan-light:      #f0e4da;
  --green:          #003730;
  --green-mid:      #004d40;
  --green-light:    #e8f0ec;
  --cream:          #f8f3ef;
  --charcoal:       #374151;
  --terracotta:     #9e7a67;

  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  --radius-sm:  0.5rem;
  --radius-md:  0.75rem;
  --radius-lg:  1rem;
  --radius-xl:  1.25rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);

  --border-tan:        rgba(212,184,150,.3);
  --text-placeholder:  rgba(44,44,44,.4);
  --gradient-dark-mixed: linear-gradient(135deg, #003730 0%, #9e7a67 100%);
  --gradient-dark-green: linear-gradient(135deg, #003730 0%, #004d40 100%);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ── Layout Utilities ───────────────────────────────────── */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.section { padding-block: 5rem; }
.section-sm { padding-block: 3.5rem; }

.section-cream       { background-color: var(--cream); }
.section-services    { background: linear-gradient(to bottom, var(--cream) 0%, #fff 100%); }
.section-tan         { background-color: var(--tan-light); }
.section-white       { background-color: #fff; }
.section-green       { background: var(--gradient-dark-mixed); color: var(--tan-light); }
.section-terracotta  { background: linear-gradient(135deg, var(--terracotta) 0%, #6B3C2B 100%); color: #fff; }
.section-terracotta h2 { color: var(--cream); }
.section-terracotta .label { color: rgba(255,255,255,.8); }
.section-terracotta .subheading { color: rgba(255,255,255,.8); }
.section-terracotta .gift-card-price { color: var(--cream); font-weight: 700; }
.section-terracotta .gift-card-footer { color: rgba(255,255,255,.7); }
.section-terracotta .gift-card-item { background-color: rgba(255,255,255,.15); border-color: rgba(255,255,255,.2); }
.section-terracotta .gift-card-name { color: #fff; }
.section-terracotta .gift-card-desc { color: rgba(255,255,255,.75); }
.section-terracotta .gift-card-icon { background-color: rgba(255,255,255,.2); color: #fff; }

/* ── Grid Helpers ───────────────────────────────────────── */
.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: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Typography ─────────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.875rem;
}
.label-light { color: var(--tan); background-color: rgba(255,255,255,.15); }

h1, .h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.45vw, 4.36rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--green);
}
h2, .h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.65vw, 2.92rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--green);
}
h3, .h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.subheading {
  font-size: 1.0625rem;
  color: rgba(44,44,44,.65);
  line-height: 1.7;
  max-width: 38rem;
}
.text-center { text-align: center; }
.text-center .subheading { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color .2s, color .2s, border-color .2s, opacity .2s;
  white-space: nowrap;
}
.btn-terracotta {
  background-color: var(--terracotta);
  color: #fff;
}
.btn-terracotta:hover { background-color: #8a6858; }
.btn-primary {
  background-color: var(--green);
  color: #fff;
}
.btn-primary:hover { background-color: var(--terracotta); }

.btn-secondary {
  background-color: var(--brown);
  color: #fff;
}
.btn-secondary:hover { background-color: var(--brown-dark); }

.btn-outline {
  border: 2px solid var(--green);
  color: var(--green);
  padding: 0.8rem 2rem;
}
.btn-outline:hover { background-color: var(--green); color: #fff; }

.btn-outline-light {
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  padding: 0.8rem 2rem;
}
.btn-outline-light:hover { background-color: rgba(255,255,255,.25); }

.btn-cta-white {
  background-color: #fff;
  color: var(--green);
  font-weight: 600;
}
.btn-cta-white:hover { background-color: var(--terracotta); color: #fff; }

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn-full { width: 100%; }

.btn:disabled { opacity: .6; pointer-events: none; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background-color: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-tan);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-body { padding: 1.5rem; }

/* ── Icon Images (PNG replacements for Why Choose / Diff) ── */
.why-choose-icon-img, .diff-icon-img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  flex-shrink: 0;
}
.diff-icon-img { margin-bottom: 0.25rem; }

/* ── Icon Circle ────────────────────────────────────────── */
.icon-circle {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle-green { background-color: var(--green); color: #fff; }
.icon-circle-brown { background-color: var(--brown); color: #fff; }
.icon-circle-tan   { background-color: var(--tan-light); color: var(--brown-dark); }
.icon-circle-white { background-color: rgba(255,255,255,.15); color: #fff; }

/* ── Form Elements ──────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(44,44,44,.7);
}

/* bordered style (contact form) */
.input-underline {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 2px solid rgba(212,184,150,.5);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--charcoal);
  transition: border-color .2s;
}
.input-underline::placeholder { color: var(--text-placeholder); }
.input-underline:focus { outline: none; border-color: var(--terracotta); }

/* rounded style (inquiry forms) */
.input-rounded {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212,184,150,.5);
  background-color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--charcoal);
  transition: border-color .2s, box-shadow .2s;
}
.input-rounded::placeholder { color: var(--text-placeholder); }
.input-rounded:focus {
  outline: none;
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(139,111,71,.15);
}
textarea.input-rounded, textarea.input-underline { resize: vertical; min-height: 6rem; }
select.input-rounded, select.input-underline { appearance: none; cursor: pointer; }

.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* status messages */
.form-msg {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  display: none;
}
.form-msg.visible { display: block; }
.form-msg-success { background-color: var(--green-light); color: var(--green); }
.form-msg-error   { background-color: #fef2f2; color: #b91c1c; }

/* honeypot */
.hp-field { display: none !important; }

/* ── Stars ──────────────────────────────────────────────── */
.stars { display: flex; gap: 0.2rem; color: #f59e0b; font-size: 1.25rem; }

/* ── Divider label ──────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header h2 { font-style: normal; margin-bottom: 0.75rem; }
.section-header.center .subheading { margin-inline: auto; }

/* ── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
}
.badge-brown { background-color: rgba(139,111,71,.12); color: var(--brown-dark); }
.badge-green { background-color: var(--green); color: #fff; }
.badge-tan   { background-color: var(--tan-light); color: var(--brown-dark); }
.badge-pill  {
  background-color: #fff;
  color: var(--brown);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 50;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  transition: transform 0.3s ease, visibility 0s linear;
  visibility: visible;
}
.navbar-hidden { transform: translateY(-100%); visibility: hidden; transition: transform 0.3s ease, visibility 0s linear 0.3s; }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
}
.navbar-logo img { height: 4.375rem; width: auto; }
.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.navbar-links a {
  font-size: 0.875rem;
  color: var(--green);
  font-weight: 500;
  transition: color .15s;
}
.navbar-links a:hover { color: var(--green-mid); }

.navbar-actions { display: flex; align-items: center; gap: 1rem; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.25rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--charcoal);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,.06);
  background-color: #fff;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: rgba(44,44,44,.7);
  border-bottom: 1px solid rgba(212,184,150,.15);
  transition: color .15s;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--charcoal); }
.mobile-nav .btn { margin-top: 1rem; text-align: center; }

@media (min-width: 768px) {
  .navbar-links { display: flex; }
  .hamburger { display: none; }
}

/* page main gets top padding to clear fixed navbar */
main { padding-top: 5.5rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(90vh - 5.5rem);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
}
.hero-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.hero-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.hero-info-list li {
  font-size: 1rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-info-list li svg {
  flex-shrink: 0;
  color: var(--terracotta);
}
.hero h1 { margin-bottom: 1.5rem; }
.hero .subheading { margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 1023px) { .hero-image { display: none; } }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-choose-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-tan);
  transition: box-shadow .2s;
}
.why-choose-card:hover { box-shadow: var(--shadow-md); }
.why-choose-card h3 {
  margin-bottom: 0.25rem;
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 1.2rem;
  color: var(--green);
}
.why-choose-card p  { font-size: 0.9rem; color: rgba(44,44,44,.65); line-height: 1.65; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-tan);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.service-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-price-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: var(--terracotta);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
}
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.service-card-body h3 {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 1.3rem;
  color: var(--green);
}
.service-card-body p  { font-size: 0.875rem; color: rgba(44,44,44,.65); line-height: 1.65; flex: 1; }
.service-features { display: flex; flex-direction: column; gap: 0.4rem; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(44,44,44,.7);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--terracotta);
}

/* ============================================================
   FEATURED PACKAGE
   ============================================================ */
.featured-package {
  background-color: var(--cream);
}
.featured-package-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
  background: var(--gradient-dark-mixed);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 1024px) {
  .featured-package-inner { grid-template-columns: 1fr 1fr; }
}
.featured-package .label-light { color: var(--tan); }
.featured-package h2 { color: var(--cream); font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 1rem; }
.featured-package .subheading { color: rgba(245,239,230,.8); max-width: 34rem; }
.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0;
  margin-bottom: 2rem;
}
.package-price-current {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--cream);
}
.package-price-original {
  font-size: 1.1rem;
  color: rgba(245,239,230,.45);
  text-decoration: line-through;
}
.package-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.package-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(245,239,230,.85);
}
.package-feature::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--terracotta);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.featured-package-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.featured-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   SPECIAL SERVICES
   ============================================================ */
.special-service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  background-color: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-tan);
  box-shadow: var(--shadow-sm);
}
.special-service-header { display: flex; align-items: flex-start; gap: 1rem; }
.special-service-icon { width: 3.5rem; height: 3.5rem; object-fit: contain; flex-shrink: 0; }
.special-service-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.25rem; }
.special-service-desc { font-size: 0.875rem; color: rgba(44,44,44,.65); }
.special-service-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-tan);
}
.special-service-price { font-size: 1.25rem; font-weight: 700; color: var(--green); }
.special-service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(44,44,44,.7);
}
.feature-pill-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--radius-full);
  background-color: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-tan);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}
.step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  background-color: var(--green);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
.step-icon { width: 3rem; height: 3rem; object-fit: contain; }
.step-card h3 { font-family: var(--font-serif); font-style: normal; font-size: 1.1rem; color: var(--green); }
.step-card p  { font-size: 0.875rem; color: rgba(44,44,44,.65); line-height: 1.65; }
.how-it-works-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   DIFFERENTIATORS
   ============================================================ */
.differentiators {
  background: var(--gradient-dark-mixed);
  color: #fff;
}
.diff-card {
  padding: 1.75rem;
  background-color: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.diff-card h3 {
  font-family: var(--font-serif);
  color: var(--cream);
  font-size: 1.05rem;
}
.diff-card p  { font-size: 0.875rem; color: rgba(245,239,230,.75); line-height: 1.65; }
.diff-icon svg { width: 1.75rem; height: 1.75rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-inner { grid-template-columns: 1fr 1fr; }
}
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-text .label { margin-bottom: 0.5rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p   { color: rgba(44,44,44,.7); line-height: 1.75; margin-bottom: 1.5rem; }
.about-info { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.about-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background-color: var(--cream);
  border-radius: var(--radius-md);
}
.about-info-item strong { font-size: 0.75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--brown); display: block; margin-bottom: 0.15rem; }
.about-info-item span   { font-size: 0.875rem; color: rgba(44,44,44,.75); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background-color: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,184,150,.15);
  box-shadow: var(--shadow-sm);
}
.testimonial-quote {
  font-size: 0.9rem;
  color: rgba(44,44,44,.75);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212,184,150,.15);
}
.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 52rem; margin-inline: auto; }

.faq-item { border-radius: var(--radius-lg); overflow: hidden; }

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--cream);
  border: 1px solid var(--border-tan);
  text-align: left;
  border-radius: var(--radius-lg);
  transition: background-color .15s;
}
.faq-button:hover { background-color: rgba(0,55,48,.06); }
.faq-button.open  { border-radius: var(--radius-lg) var(--radius-lg) 0 0; background-color: rgba(0,55,48,.06); }

.faq-q-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-full);
  background-color: var(--terracotta);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-question { flex: 1; font-size: 0.9375rem; font-weight: 500; color: var(--charcoal); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-button.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background-color: rgba(0,55,48,.05);
  border: 0 solid var(--border-tan);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.faq-answer.open { max-height: 1000px; }
.faq-answer-inner {
  padding: 1rem 1.5rem 1.25rem 4.125rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(44,44,44,.75);
}

/* ============================================================
   GIFT CARDS
   ============================================================ */
.gift-cards-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .gift-cards-inner { grid-template-columns: 1fr 1fr; }
}
.gift-cards-text h2  { margin-bottom: 1.5rem; }
.gift-cards-text > p { color: rgba(44,44,44,.7); line-height: 1.75; margin-bottom: 2rem; }
.section-terracotta .gift-cards-text > p { color: rgba(255,255,255,.85); }
.gift-card-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.25rem; }
.gift-card-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background-color: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,184,150,.25);
}
.gift-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background-color: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gift-card-info { flex: 1; }
.gift-card-name  { font-size: 0.9rem; font-weight: 600; }
.gift-card-desc  { font-size: 0.8rem; color: rgba(44,44,44,.6); }
.gift-card-price { font-size: 1rem; font-weight: 700; color: var(--brown-dark); margin-right: 0.75rem; }
.gift-card-footer { font-size: 0.8rem; color: rgba(44,44,44,.55); }
.gift-cards-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gift-cards-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   BOOK SESSION
   ============================================================ */
.book-session-inner {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .book-session-inner { grid-template-columns: repeat(2, 1fr); }
}
.book-card {
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-tan);
}
.book-card h3 { font-size: 1rem; margin-bottom: 1.25rem; }
.book-hours { display: flex; flex-direction: column; gap: 0.5rem; }
.book-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(212,184,150,.15);
  color: rgba(44,44,44,.75);
}
.book-location-info { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: rgba(44,44,44,.75); }
.book-location-name { font-weight: 600; color: var(--charcoal); }
.book-badge { margin-bottom: 1rem; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-inner {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-inner { grid-template-columns: 5fr 7fr; }
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info > p { color: rgba(44,44,44,.65); line-height: 1.75; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(44,44,44,.75);
}
.contact-response {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background-color: var(--tan-light);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  color: rgba(44,44,44,.65);
}
.contact-form-card {
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 30px rgba(0,0,0,.10);
}
.contact-form-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--green);
  color: var(--tan-light);
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-logo { height: 1.75rem; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(245,239,230,.65); line-height: 1.7; max-width: 22rem; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background-color: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s;
}
.footer-social a:hover { background-color: rgba(255,255,255,.2); }
.footer-social svg { width: 1rem; height: 1rem; }

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tan);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(245,239,230,.65);
  transition: color .15s;
}
.footer-links a:hover { color: var(--tan-light); }

.footer-contact { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(245,239,230,.65);
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 0.15rem; color: rgba(245,239,230,.5); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(245,239,230,.45);
}

/* ============================================================
   INQUIRY / SUBPAGE LAYOUTS
   ============================================================ */
.inquiry-page {
  max-width: 40rem;
  margin-inline: auto;
  padding-block: 4rem;
}
.inquiry-page h1 { margin-bottom: 1rem; }
.inquiry-page .intro { color: rgba(44,44,44,.7); line-height: 1.75; margin-bottom: 0.5rem; }
.inquiry-card {
  margin-top: 2.5rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-tan);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
