/* ============================================================
   THE LOVING SOUL - styles.css
   Brand: Gold #92642B · Purple #711C9F
   Fonts: Cormorant Garamond (headings) · Lato (body)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:          #92642B;
  --gold-light:    #b8894e;
  --gold-pale:     #f7f0e6;
  --purple:        #711C9F;
  --purple-light:  #9b4cc8;
  --purple-pale:   #f5eeff;
  --cream:         #fdf8f2;
  --dark:          #2b1f14;
  --mid:           #5a4633;
  --muted:         #7a6a59;
  --white:         #ffffff;
  --border:        #e4d8c8;

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

  --radius:        10px;
  --radius-lg:     18px;
  --shadow:        0 4px 24px rgba(113, 28, 159, 0.08);
  --shadow-gold:   0 4px 20px rgba(146, 100, 43, 0.18);
  --transition:    0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
}

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

a {
  color: var(--purple);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

ul {
  list-style: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.03em; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 5rem;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-intro {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

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

.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-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-pale);
  border-color: var(--gold-pale);
}
.btn-outline-gold:hover {
  background: rgba(247, 240, 230, 0.1);
  color: var(--white);
}

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

.btn-nav {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  padding: 0.55rem 1.3rem;
  font-size: 0.8rem;
}
.btn-nav:hover {
  background: var(--gold-light);
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.78rem;
}

.btn-full {
  width: 100%;
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.logo-link {
  flex-shrink: 0;
}

.logo {
  height: 64px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--purple);
  background: var(--purple-pale);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      135deg,
      rgba(113,28,159,0.72) 0%,
      rgba(146,100,43,0.58) 100%
    ),
    none;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: 5rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--gold);
  color: var(--white);
  padding-block: 1.1rem;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-icon {
  font-size: 0.7rem;
  opacity: 0.7;
}

/* ---------- CARD GRID ---------- */
.card-grid {
  display: grid;
  gap: 1.75rem;
}

.modalities-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(113, 28, 159, 0.12);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.65rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple);
}

.card-link:hover {
  color: var(--gold);
}

/* ---------- CTA SECTION ---------- */
.section-cta {
  background: linear-gradient(135deg, var(--purple) 0%, #4a1068 100%);
  color: var(--white);
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.cta-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

.link-gold {
  color: var(--gold-light);
  font-weight: 700;
}

.link-gold:hover {
  color: var(--gold-pale);
}

/* ---------- PACKAGES ---------- */
.packages {
  background: var(--gold-pale);
}

.packages-grid {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.package-card {
  position: relative;
  padding-top: 2.5rem;
}

.package-card.highlight {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-pale), #fff);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.packages-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- GIFT CARDS ---------- */
.gift-cards {
  background: var(--purple-pale);
}

.gift-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gift-text .section-eyebrow { color: var(--purple); }

.gift-text h2 {
  margin-bottom: 1rem;
}

.gift-text p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.gift-visual {
  display: flex;
  justify-content: center;
}

.gift-card-mock {
  background: linear-gradient(135deg, var(--purple) 0%, var(--gold) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 12px 40px rgba(113,28,159,0.25);
  text-align: center;
}

.gift-card-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gift-card-tagline {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.gift-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--purple);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.testimonial-card p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.testimonial-card cite {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.review-cta {
  text-align: center;
}

/* ---------- PRODUCTS PROMO ---------- */
.products-promo {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.products-promo .section-eyebrow { color: rgba(255,255,255,0.8); }

.products-inner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.products-inner p {
  color: rgba(255,255,255,0.9);
  max-width: 540px;
  margin-bottom: 1.5rem;
}

.products-inner .btn-primary {
  background: var(--white);
  color: var(--gold);
  border-color: var(--white);
}

.products-inner .btn-primary:hover {
  background: var(--gold-pale);
  color: var(--gold);
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--purple-pale) 0%, var(--gold-pale) 100%);
  padding-block: 4rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero .section-eyebrow {
  justify-content: center;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 560px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ---------- NOTICE BANNER ---------- */
.notice-banner {
  background: var(--gold-pale);
  border-bottom: 1px solid var(--border);
  padding-block: 0.9rem;
  font-size: 0.9rem;
  color: var(--mid);
  text-align: center;
}

.notice-banner a {
  color: var(--purple);
  font-weight: 700;
}

/* ---------- SERVICES PAGE ---------- */
.section-divider {
  height: 1px;
  background: var(--border);
  max-width: 900px;
  margin-inline: auto;
}

.service-intro {
  margin-bottom: 2.5rem;
}

.service-intro-text h2 {
  margin-bottom: 0.75rem;
}

.service-intro-text h4 {
  margin: 1.25rem 0 0.5rem;
  color: var(--gold);
}

.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.35rem 1rem;
  margin-bottom: 1rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.benefits-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.services-subheading {
  font-size: 1.3rem;
  color: var(--purple);
  margin-bottom: 0.35rem;
}

.services-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.services-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.93rem;
}

.services-table thead {
  background: var(--purple);
  color: var(--white);
}

.services-table th {
  padding: 0.8rem 1rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--dark);
}

.services-table tr:last-child td {
  border-bottom: none;
}

.services-table tr:nth-child(even) td {
  background: var(--gold-pale);
}

.services-table td:nth-child(3),
.services-table td:nth-child(4) {
  white-space: nowrap;
  color: var(--muted);
}

.services-table td:nth-child(4) {
  font-weight: 700;
  color: var(--gold);
}

.aromatherapy-note {
  background: var(--purple-pale);
  border-left: 4px solid var(--purple);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  color: var(--mid);
  margin: 1.25rem 0;
}

/* ---------- ABOUT PAGE ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  width: 100%;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--muted);
}

.about-sign {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-top: 1.5rem;
}

.credentials-section {
  background: var(--cream);
}

.credentials-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.credential-card .card-icon {
  font-size: 2rem;
}

.values-section {
  background: var(--purple-pale);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.value-item h3 {
  font-size: 1.3rem;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--muted);
}

/* ---------- CONTACT PAGE ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.contact-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-block h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-block p {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-block a {
  color: var(--purple);
  font-weight: 700;
}

.contact-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form-wrap h2 {
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid);
}

.required {
  color: var(--purple);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(113,28,159,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-check label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  color: var(--muted);
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
  flex-shrink: 0;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 0;
  margin-top: -0.5rem;
}

/* Map */
.map-section {
  line-height: 0;
  border-top: 1px solid var(--border);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-block: 4rem;
}

.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-address a {
  color: var(--gold-light);
}

.footer-address a:hover {
  color: var(--gold-pale);
}

.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-hours h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-hours p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.5rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .gift-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo {
    max-width: 380px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: 3.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 99;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
  }

  .main-nav li {
    border-bottom: 1px solid var(--border);
  }

  .main-nav li:last-child {
    border-bottom: none;
    padding-top: 0.5rem;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .site-header {
    position: relative;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-bar-inner {
    gap: 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 2.5rem;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-table th:nth-child(2),
  .services-table td:nth-child(2) {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .modalities-grid,
  .packages-grid,
  .credentials-grid,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-block: 3rem;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .logo {
    height: 50px;
  }
}


/* ============================================================
   HOMEPAGE REDESIGN — reference layout
   Scoped to .home-page / .home-* so inner pages remain intact.
   ============================================================ */

:root {
  --home-magenta: #a91458;
  --home-magenta-dark: #871046;
  --home-pink: #f7e9ef;
  --home-pink-soft: #fcf6f8;
  --home-charcoal: #40393b;
  --home-text: #5f5759;
  --home-line: #eadde3;
}

.home-page {
  background: var(--white);
}

.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: var(--font-heading);
}

.home-center {
  text-align: center;
}

.home-section-kicker,
.home-kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-magenta);
  margin-bottom: 0.75rem;
}

.home-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--home-text);
  font-size: 1.02rem;
}

/* Header refinement */
.site-header {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--home-line);
  box-shadow: 0 2px 12px rgba(66, 44, 52, 0.05);
}

.logo {
  height: 70px;
}

.main-nav a {
  color: #4f4749;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--home-magenta);
  background: var(--home-pink-soft);
}

.btn-nav {
  background: var(--home-gold);
  border-color: var(--home-gold);
  border-radius: 999px;
  padding: 0.6rem 1.35rem;
}

.btn-nav:hover {
  background: var(--home-gold-pale);
  border-color: var(--home-gold-dark-pale);
}

/* Hero */
.home-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(45,28,33,.76) 0%, rgba(45,28,33,.52) 38%, rgba(45,28,33,.12) 72%),
    url("../images/reflexology1.jpg") center 46%/cover no-repeat;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 50%, rgba(169,20,88,.14), transparent 38%),
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.12));
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 5.5rem;
  padding-bottom: 8.5rem;
}

.home-hero-copy {
  max-width: 720px;
}

.home-kicker {
  color: #f4c4d8;
}

.home-hero h1 {
  color: var(--white);
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  font-weight: 600;
  line-height: .96;
  margin-bottom: 1.3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.home-hero h1 span {
  color: #f03a87;
}

.home-hero-sub {
  max-width: 600px;
  color: rgba(255,255,255,.93);
  font-size: 1.14rem;
  line-height: 1.72;
  margin-bottom: 1.75rem;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 1.35rem;
}

.home-btn-primary {
  background: var(--home-magenta);
  color: var(--white);
  border-color: var(--home-magenta);
  border-radius: 999px;
  padding-inline: 1.8rem;
}

.home-btn-primary:hover {
  background: var(--home-magenta-dark);
  border-color: var(--home-magenta-dark);
  color: var(--white);
}

.home-btn-light {
  background: rgba(255,255,255,.94);
  color: var(--home-magenta);
  border-color: rgba(255,255,255,.94);
  border-radius: 999px;
  padding-inline: 1.8rem;
}

.home-btn-light:hover {
  background: var(--white);
  color: var(--home-magenta-dark);
}

.home-hero-tagline {
  font-family: var(--font-heading);
  color: rgba(255,255,255,.80);
  font-size: 1.08rem;
}

.home-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -76px;
  height: 150px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
}

/* Benefits */
.home-benefits {
  padding-top: 4.8rem;
  padding-bottom: 5.2rem;
  background: var(--white);
}

.home-benefits h2,
.home-services h2,
.home-proof h2 {
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  color: var(--home-charcoal);
  margin-bottom: 1rem;
}

.home-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}

.home-benefit {
  padding: .5rem 2rem 0;
  border-right: 1px solid var(--home-line);
}

.home-benefit:last-child {
  border-right: 0;
}

.home-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--home-pink);
  color: var(--home-magenta);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.home-benefit h3 {
  color: var(--home-charcoal);
  font-size: 1.2rem;
  margin-bottom: .45rem;
}

.home-benefit p {
  color: var(--home-text);
  font-size: .94rem;
  line-height: 1.6;
}

/* Services */
.home-services {
  background: linear-gradient(180deg, #fff 0%, var(--home-pink-soft) 100%);
  border-top: 1px solid #f3e9ed;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-top: 2.6rem;
}

.home-service-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 2rem 1.45rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--home-line);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(99,65,79,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(99,65,79,.13);
}

.home-service-icon {
  font-size: 2.1rem;
  margin-bottom: .9rem;
}

.home-service-card h3 {
  color: var(--home-charcoal);
  font-size: 1.45rem;
  margin-bottom: .6rem;
}

.home-service-card p {
  color: var(--home-text);
  font-size: .94rem;
  line-height: 1.65;
}

.home-service-card a {
  margin-top: auto;
  color: var(--home-magenta);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.home-book-panel {
  display: grid;
  grid-template-columns: 1.35fr auto;
  gap: 2rem;
  align-items: center;
  text-align: left;
  margin-top: 3rem;
  padding: 2rem 2.2rem;
  background: var(--home-pink);
  border-radius: 16px;
}

.home-book-copy h3 {
  font-size: 2rem;
  color: var(--home-charcoal);
  margin-bottom: .3rem;
}

.home-book-copy p {
  color: var(--home-text);
  margin-bottom: 0;
}

.home-book-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .65rem;
}

.home-record-link {
  color: var(--home-magenta);
  font-size: .84rem;
  font-weight: 700;
}

/* Proof section */
.home-proof {
  background: var(--white);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.home-proof blockquote {
  margin: 0;
  padding: 1.7rem;
  background: var(--home-pink-soft);
  border-left: 4px solid var(--home-magenta);
  border-radius: 12px;
  color: var(--home-text);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
}

.home-proof cite {
  display: block;
  margin-top: .8rem;
  color: var(--home-magenta);
  font-family: var(--font-body);
  font-size: .8rem;
  font-style: normal;
  font-weight: 700;
}

.home-proof-actions {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .home-benefit-grid,
  .home-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-benefit:nth-child(2) {
    border-right: 0;
  }

  .home-benefit:nth-child(-n+2) {
    margin-bottom: 2rem;
  }

  .home-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .logo {
    height: 54px;
  }

  .home-hero {
    min-height: 620px;
    background-position: 63% center;
  }

  .home-hero-inner {
    padding-top: 4rem;
    padding-bottom: 7rem;
  }

  .home-hero-copy {
    max-width: 92%;
  }

  .home-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-benefit-grid,
  .home-service-grid,
  .home-book-panel {
    grid-template-columns: 1fr;
  }

  .home-benefit {
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem !important;
  }

  .home-benefit:last-child {
    border-bottom: 0;
    margin-bottom: 0 !important;
  }

  .home-book-panel {
    text-align: center;
  }

  .home-book-actions {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .home-hero {
    min-height: 590px;
  }

  .home-hero-sub {
    font-size: 1rem;
  }

  .home-wave {
    bottom: -60px;
    height: 115px;
  }
}
