/* ============================================================
   BWholeistic Healing — Global Styles
   Palette: Cream · Eggshell · Gold #C8870A · Burgundy #51151e
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lato:wght@300;400;700;900&display=swap');

:root {
  /* Gold — rich amber, reads well on light backgrounds */
  --gold: #C8870A;
  --gold-bright: #E09900;   /* for use on dark areas */
  --gold-light: #e8a820;
  --gold-pale: #f7e8c8;     /* tinted cream backgrounds */
  --gold-dark: #9a6500;

  /* Burgundy — accent only */
  --burgundy: #51151e;
  --burgundy-light: #7a2234;
  --burgundy-dark: #330d13;

  /* Earth-tone light palette (primary) */
  --white: #ffffff;
  --cream: #fdf9f3;         /* page background */
  --eggshell: #f5ede0;      /* alternate sections */
  --sand: #ede0cc;          /* card borders, dividers */
  --tan: #d8c4a4;           /* subtle borders */

  /* Warm dark (footer / deep accent — used sparingly) */
  --dark: #241208;
  --dark-2: #2e1a0e;
  --dark-3: #3d2414;

  /* Text */
  --text-dark: #2c1810;     /* primary body text — warm dark brown */
  --text-mid: #6b4530;      /* secondary / muted text */
  --text-light: #fdf9f3;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', Arial, sans-serif;

  --nav-height: 80px;
  --transition: 0.3s ease;
  --shadow: 0 8px 32px rgba(44,24,16,0.12);
  --shadow-gold: 0 4px 24px rgba(200,135,10,0.2);
  --radius: 10px;
  --radius-lg: 18px;

  /* Compatibility aliases */
  --light: var(--cream);
  --light-2: var(--eggshell);
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Utility ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-burgundy { color: var(--burgundy); }
.text-white { color: var(--white); }
.italic { font-style: italic; }
.fw-bold { font-weight: 700; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 14px;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--burgundy));
  margin: 18px auto 36px;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--white); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); }

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--tan);
}
.btn-outline-dark:hover { background: var(--text-dark); color: var(--white); }

.btn-burgundy {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn-burgundy:hover { background: var(--burgundy-light); border-color: var(--burgundy-light); }

/* ── Image Placeholder ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--eggshell) 0%, var(--sand) 100%);
  border: 2px dashed var(--tan);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  min-height: 260px;
}
.img-placeholder svg { opacity: 0.4; }
.img-placeholder span { opacity: 0.6; }

/* ── Navigation — light/cream ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(253,249,243,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(44,24,16,0.1); }

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: var(--gold-pale);
}
.nav-links .btn {
  padding: 9px 22px;
  font-size: 0.85rem;
  color: var(--white);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Social Bar ── */
.social-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200,135,10,0.08);
  color: var(--gold);
  border: 1px solid rgba(200,135,10,0.2);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-size: 0.95rem;
}
.social-bar a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
/* On dark backgrounds */
.social-bar.on-dark a {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}
.social-bar.on-dark a:hover {
  background: var(--gold-bright);
  color: var(--dark);
  border-color: var(--gold-bright);
}
/* Legacy alias */
.social-bar.dark a {
  background: rgba(81,21,30,0.07);
  color: var(--burgundy);
  border-color: rgba(81,21,30,0.18);
}
.social-bar.dark a:hover {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

/* ── Footer — warm dark ── */
.footer {
  background: var(--dark);
  color: rgba(253,249,243,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; opacity: 0.7; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.92rem;
  color: rgba(253,249,243,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-bright); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(253,249,243,0.6);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--gold-bright); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(253,249,243,0.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gold-bright); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── Hero — warm light earth tones ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    rgba(253,249,243,0.97) 0%,
    rgba(245,237,224,0.92) 40%,
    rgba(237,224,204,0.6) 75%,
    rgba(200,135,10,0.12) 100%);
  z-index: 1;
}
.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--eggshell) 0%, var(--sand) 55%, var(--gold-pale) 100%);
  z-index: 0;
}
.hero-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 45%, rgba(200,135,10,0.14) 0%, transparent 55%),
              radial-gradient(ellipse at 25% 85%, rgba(81,21,30,0.07) 0%, transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.hero h1 {
  color: var(--text-dark);
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-lead {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 540px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--sand);
  border-radius: 50px;
  padding: 10px 20px;
  margin-top: 48px;
  font-size: 0.85rem;
  color: var(--text-mid);
  box-shadow: 0 2px 12px rgba(44,24,16,0.06);
}
.hero-badge strong { color: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-mid);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}
.hero-scroll-dot {
  width: 26px;
  height: 42px;
  border: 2px solid var(--tan);
  border-radius: 13px;
  position: relative;
}
.hero-scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,100% { opacity: 1; top: 6px; }
  50% { opacity: 0; top: 22px; }
}

/* ── Page Header (inner pages) ── */
.page-header {
  background: linear-gradient(135deg, var(--eggshell) 0%, var(--sand) 60%, var(--gold-pale) 100%);
  padding: calc(var(--nav-height) + 60px) 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--tan);
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 40%, rgba(200,135,10,0.1) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 80%, rgba(81,21,30,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.page-header h1 { color: var(--text-dark); margin-bottom: 14px; }
.page-header p { color: var(--text-mid); font-size: 1.1rem; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  opacity: 0.7;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(44,24,16,0.07);
  border: 1px solid var(--sand);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-body { padding: 32px; }
.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
}
.card h3 { margin-bottom: 12px; }
.card-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--sand);
}
.card-price small {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-family: var(--font-body);
}

/* ── Quote Block — warm gold gradient ── */
.quote-block {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--sand) 50%, rgba(200,135,10,0.12) 100%);
  border: 1px solid var(--tan);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(200,135,10,0.1);
}
.quote-block::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 12rem;
  color: rgba(200,135,10,0.1);
  line-height: 1;
}
.quote-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.quote-block cite {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ── Feature Strip — warm earth ── */
.feature-strip {
  background: var(--eggshell);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 60px 0;
}
.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.feature-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(200,135,10,0.1);
  border: 1px solid rgba(200,135,10,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.feature-item-text h4 {
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-item-text p { font-size: 0.88rem; color: var(--text-mid); margin: 0; }

/* ── Specialty Tags ── */
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.tag {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--sand);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.tag:hover { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.tag.gold {
  background: var(--gold-pale);
  color: var(--gold-dark);
  border-color: rgba(200,135,10,0.25);
}
.tag.gold:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.tag.burg {
  background: rgba(81,21,30,0.06);
  color: var(--burgundy);
  border-color: rgba(81,21,30,0.2);
}
.tag.burg:hover { background: var(--burgundy); color: var(--white); }

/* ── Table ── */
.healing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(44,24,16,0.08);
  border: 1px solid var(--sand);
  font-size: 0.92rem;
}
.healing-table thead th {
  background: var(--burgundy);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.healing-table tbody tr { border-bottom: 1px solid var(--sand); }
.healing-table tbody tr:nth-child(even) { background: var(--eggshell); }
.healing-table tbody tr:hover { background: var(--gold-pale); }
.healing-table td { padding: 18px 20px; vertical-align: top; color: var(--text-dark); }
.healing-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--burgundy);
  font-size: 1rem;
  white-space: nowrap;
}

/* ── Resources ── */
.resource-list a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--sand);
  margin-bottom: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-size: 0.92rem;
  color: var(--text-dark);
}
.resource-list a:hover { border-color: var(--gold); box-shadow: 0 2px 12px rgba(200,135,10,0.1); }
.resource-list a .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.hotline-item {
  padding: 14px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--gold-bright);
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.hotline-item strong { display: block; color: var(--gold-bright); margin-bottom: 4px; }
.hotline-item a { color: var(--gold-light); font-weight: 700; }

/* ── Contact Form ── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 4px 24px rgba(44,24,16,0.08);
  border: 1px solid var(--sand);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,135,10,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.82rem; color: var(--text-mid); margin-top: 14px; }
.form-honeypot { display: none; }

/* ── Notice Box ── */
.notice-box {
  background: rgba(81,21,30,0.04);
  border: 1px solid rgba(81,21,30,0.15);
  border-left: 4px solid var(--burgundy);
  border-radius: var(--radius);
  padding: 24px 28px;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.7;
}
.notice-box h4 { color: var(--burgundy); margin-bottom: 10px; font-size: 1rem; }

/* ── Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.gap-lg { gap: 80px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.four-col  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ── Stat blocks ── */
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ── Mobile Menu ── */
.nav-mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(253,249,243,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  border-bottom: 1px solid var(--sand);
  box-shadow: 0 8px 32px rgba(44,24,16,0.1);
}
.nav-mobile.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav-mobile a {
  display: block;
  padding: 12px 16px;
  color: var(--text-mid);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-mobile a:hover, .nav-mobile a.active {
  background: var(--gold-pale);
  color: var(--gold);
}
.nav-mobile .btn { margin-top: 8px; width: 100%; text-align: center; color: var(--white); }
.nav-mobile .social-bar { margin-top: 18px; justify-content: center; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 28px 20px; }
  .quote-block { padding: 40px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .healing-table { font-size: 0.82rem; }
  .healing-table td, .healing-table thead th { padding: 12px 14px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .four-col { grid-template-columns: 1fr; }
}

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Alerts ── */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: 18px;
  display: none;
}
.alert.show { display: block; }
.alert-success {
  background: rgba(34,139,34,0.08);
  border: 1px solid rgba(34,139,34,0.25);
  color: #1a5e1a;
}
.alert-error {
  background: rgba(81,21,30,0.06);
  border: 1px solid rgba(81,21,30,0.2);
  color: var(--burgundy);
}
