/* ============================================================
   ALTRUISTIC TRANSFORMATIONS — ROSEMARIE BOYNTON
   Single-page website stylesheet
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --cream:        #FAF6F0;
  --cream-dark:   #F2EAE0;
  --blush:        #F0E5D8;
  --rose-pale:    #F7E8E5;
  --rose:         #E8C5BE;
  --white:        #FFFFFF;
  --gold:         #C8973D;
  --gold-dark:    #A67930;
  --gold-light:   #E0C080;
  --gold-pale:    #FAF3E3;
  --dark:         #241810;
  --dark-alt:     #2E2016;
  --text:         #4A3728;
  --text-light:   #7A6254;
  --sage:         #7A9478;

  --font-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:    'Lato', system-ui, -apple-system, sans-serif;

  --max-w:        1120px;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --transition:   0.35s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.12;
  color: var(--dark);
  font-weight: 500;
}

h1 { font-size: clamp(3rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
h4 { font-size: 1.3rem; font-weight: 600; }

em { font-style: italic; }

p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* Eyebrow label */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.eyebrow.light {
  color: var(--gold-light);
}

/* Section header block */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4.5rem;
}

.section-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-light);
}

/* Layout container */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 15px 38px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 151, 61, 0.28);
}

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

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-gold {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(224, 192, 128, 0.6);
}

.btn-gold:hover {
  background: rgba(224, 192, 128, 0.12);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up    { transform: translateY(32px); }
.fade-left  { transform: translateX(-32px); }
.fade-right { transform: translateX(32px); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44, 31, 18, 0.08);
  padding: 10px 0;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 62px;
  width: auto;
  transition: var(--transition);
}

.site-header.scrolled .nav-logo img {
  height: 50px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.main-nav a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.main-nav a:not(.nav-cta):hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 11px 26px !important;
  border-radius: 2px;
  letter-spacing: 0.12em !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 300;
  position: relative;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background: var(--rose-pale);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text {
  max-width: 520px;
}

.hero-text .eyebrow {
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.75rem;
  max-width: 400px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero image */
.hero-image {
  position: relative;
  animation: heroImageIn 1s var(--ease) 0.3s both;
}

@keyframes heroImageIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: none; }
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 6px 6px 100px 6px;
  box-shadow: 30px 30px 80px rgba(36, 24, 16, 0.18);
}

/* Hero bottom banner */
.hero-banner {
  position: relative;
  z-index: 1;
  background: var(--gold);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 16px 28px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-wrap: wrap;
  text-align: center;
}

.banner-dot {
  opacity: 0.5;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
  background: var(--rose-pale);
  padding: 80px 28px;
  border-bottom: 1px solid var(--rose);
}

.pillars-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pillar {
  text-align: center;
  padding: 0 1rem;
}

.pillar-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
}

.pillar h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 110px 0;
  background: var(--cream);
}

.services-category {
  margin-bottom: 4rem;
}

/* Services accordion */
.accordion-body {
  overflow: hidden;
  max-height: 3000px;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
  opacity: 1;
}

.acc-closed .accordion-body {
  max-height: 0;
  opacity: 0;
}

.accordion-arrow {
  float: right;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-top: -1px;
}

.category-label:hover {
  color: var(--gold);
}

/* Duration selector buttons */
.est-dur-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: 4px;
  transition: var(--transition);
}

.est-dur-row.selected { border-color: var(--gold); background: var(--gold-pale); }

.est-dur-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.est-dur-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 4px;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--transition);
  min-width: 72px;
}

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

.est-dur-btn.active {
  background: var(--gold);
  border-color: var(--gold);
}

.est-dur-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

.est-dur-btn.active .est-dur-label { color: rgba(255,255,255,0.8); }

.est-dur-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: 2px;
}

.est-dur-btn.active .est-dur-price { color: var(--white); }

.services-sub-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  display: block;
}

.category-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gold-light);
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: rgba(200, 151, 61, 0.3);
  box-shadow: 0 8px 40px rgba(200, 151, 61, 0.09);
  transform: translateY(-3px);
}

.service-card h4 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.94rem;
  color: var(--text-light);
  line-height: 1.72;
}

.service-featured {
  background: var(--gold-pale);
  border-color: rgba(200, 151, 61, 0.2) !important;
}

.service-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

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

/* Price list inside service cards */
.price-list {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rose);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--cream-dark);
}

.price-row:last-child { border-bottom: none; }
.price-row span:first-child { color: var(--text); }
.price-row span:last-child { font-weight: 700; color: var(--gold-dark); }

/* Section label dividers for menu tables */
.menu-section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-bottom: 1rem;
  margin: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--gold-light);
  display: block;
}

/* Two-column menu pricing layout */
.menu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.menu-block {
  background: var(--white);
  padding: 2rem 2.25rem;
  border-radius: 4px;
}

.menu-block-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rose);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--cream-dark);
}

.menu-item:last-child { border-bottom: none; }
.menu-item span:first-child { color: var(--text); }
.menu-item span:last-child {
  font-weight: 700;
  color: var(--gold-dark);
  min-width: 48px;
  text-align: right;
}

.services-footer {
  margin-top: 1.5rem;
  padding: 3.5rem;
  background: var(--rose-pale);
  border-radius: 4px;
  text-align: center;
  border: 1px solid var(--rose);
}

.services-footer p {
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  color: var(--text-light);
}

/* ============================================================
   SPECIALS NAV LINK
   ============================================================ */
.nav-specials-link {
  color: var(--gold) !important;
  font-style: italic;
}

/* ============================================================
   SPECIALS SECTION
   ============================================================ */
.specials-section {
  background: linear-gradient(135deg, #fdf0f3 0%, #fce8ec 50%, #f9e4e8 100%);
  padding: 100px 0;
  border-top: 1px solid #f0c8d0;
  border-bottom: 1px solid #f0c8d0;
  position: relative;
  overflow: hidden;
}

.specials-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(200,151,61,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.specials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.specials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.specials-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b5435a;
  margin-bottom: 0.75rem;
}

.specials-header h2 {
  color: #7a1e32;
  margin-bottom: 0.6rem;
}

.specials-subtitle {
  font-size: 1rem;
  color: #9a4458;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.specials-validity {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #b5435a;
  background: rgba(255,255,255,0.6);
  display: inline-block;
  padding: 0.4rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(181,67,90,0.25);
}

/* Special cards grid */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.special-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  padding: 2.25rem;
  border-radius: 6px;
  border: 1px solid rgba(181,67,90,0.15);
  text-align: center;
  position: relative;
}

.special-card-featured {
  background: #7a1e32;
  border-color: #7a1e32;
}

.special-card-featured h4,
.special-card-featured p,
.special-card-featured .special-combo-label {
  color: rgba(255,255,255,0.9) !important;
}

.special-best-value {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.special-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.special-card h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: #7a1e32;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.special-combo-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6) !important;
  margin-bottom: 0.75rem;
  display: block;
}

.special-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.special-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: #b5435a;
  line-height: 1;
}

.special-card-featured .special-price {
  color: var(--gold-light);
}

.special-reg {
  font-size: 0.8rem;
  color: #b5435a;
  opacity: 0.7;
  font-style: italic;
}

.special-card > p {
  font-size: 0.88rem;
  color: #9a4458;
  line-height: 1.6;
}

.special-includes {
  list-style: none;
  margin-top: 0.75rem;
  text-align: left;
}

.special-includes li {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.8);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.special-includes li::before {
  content: '♥';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-size: 0.7rem;
  top: 0.35rem;
}

/* Returning clients block */
.specials-returning {
  background: rgba(255,255,255,0.7);
  border-radius: 6px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(181,67,90,0.15);
}

.specials-returning h3 {
  font-size: 1.6rem;
  color: #7a1e32;
  margin-bottom: 0.5rem;
}

.specials-returning > p {
  color: #9a4458;
  font-style: italic;
  margin-bottom: 2rem;
}

.returning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.returning-card {
  padding: 1.5rem;
  background: #fdf0f3;
  border-radius: 4px;
  border: 1px solid rgba(181,67,90,0.2);
}

.returning-card p {
  font-size: 0.9rem;
  color: #9a4458;
  margin-bottom: 1rem;
}

.returning-discount {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: #7a1e32;
}

/* CTA */
.specials-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-specials-outline {
  display: inline-block;
  padding: 15px 38px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid #7a1e32;
  border-radius: 2px;
  color: #7a1e32;
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}

.btn-specials-outline:hover {
  background: #7a1e32;
  color: var(--white);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 760px) {
  .specials-grid { grid-template-columns: 1fr; }
  .returning-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SESSION ESTIMATOR
   ============================================================ */
.estimator-section {
  background: var(--white);
  padding: 110px 0;
  border-top: 1px solid var(--cream-dark);
}

.est-widget {
  background: var(--cream);
  border: 1px solid var(--rose);
  border-radius: 6px;
  overflow: hidden;
}

/* Tabs */
.est-tabs {
  display: flex;
  border-bottom: 1px solid var(--rose);
}

.est-tab {
  flex: 1;
  padding: 1.1rem 1rem;
  background: var(--white);
  border: none;
  border-right: 1px solid var(--rose);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.est-tab:last-child { border-right: none; }
.est-tab:hover { background: var(--rose-pale); color: var(--dark); }
.est-tab.active {
  background: var(--gold);
  color: var(--white);
}

/* Body layout */
.est-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  min-height: 420px;
}

/* Left column */
.est-left {
  padding: 2.5rem;
  border-right: 1px solid var(--rose);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.est-step {}

.est-step-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.est-optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-light);
  font-size: 0.8rem;
}

/* Base service radio rows */
.est-base-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.est-base-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.est-base-row:hover { border-color: var(--gold-light); }
.est-base-row.selected {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.est-base-row input[type=radio] {
  accent-color: var(--gold);
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.est-base-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.est-base-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.est-base-sub {
  font-size: 0.78rem;
  color: var(--text-light);
}

.est-base-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-dark);
  white-space: nowrap;
}

/* Add-on chips */
.est-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.est-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.est-cat-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--rose-pale);
  border-radius: 4px;
  border-left: 3px solid var(--rose);
}

.est-cat-note a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.est-chip-group-label {
  width: 100%;
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.5rem 0 0.25rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--cream-dark);
}

.est-chip-group-label:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.est-chip span {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.78rem;
}

.est-chip:hover { border-color: var(--gold-light); background: var(--gold-pale); }
.est-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.est-chip.active span { color: rgba(255,255,255,0.85); }

/* Waxing grouped checkboxes */
.est-wax-group {
  margin-bottom: 1.25rem;
}

.est-wax-group-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.est-wax-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1rem;
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 0.4rem;
  transition: var(--transition);
}

.est-wax-row:hover { border-color: var(--gold-light); }
.est-wax-row.checked { border-color: var(--gold); background: var(--gold-pale); }

.est-wax-row input[type=checkbox] {
  accent-color: var(--gold);
  width: 15px; height: 15px;
  flex-shrink: 0;
}

.est-wax-name { flex: 1; font-size: 0.9rem; color: var(--dark); }
.est-wax-price { font-weight: 700; font-size: 0.9rem; color: var(--gold-dark); }

/* Right summary column */
.est-right {
  padding: 2.5rem 1.75rem;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.est-summary-heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
}

.est-breakdown {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.est-empty {
  color: rgba(250,246,240,0.35);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
  margin: auto;
  padding: 2rem 0;
}

.est-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(250,246,240,0.08);
  font-size: 0.85rem;
}

.est-line span:first-child { color: rgba(250,246,240,0.75); }
.est-line span:last-child  { color: var(--gold-light); font-weight: 700; white-space:nowrap; margin-left:0.5rem; }
.est-line-base span:first-child { color: rgba(250,246,240,0.95); font-weight: 600; }
.est-contact-tag {
  font-size: 0.75rem;
  color: var(--gold-light) !important;
  font-style: italic;
}

.est-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(224,192,128,0.35);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.6);
}

.est-total-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-light) !important;
  letter-spacing: 0;
  text-transform: none;
}

.est-disclaimer {
  font-size: 0.72rem;
  color: rgba(250,246,240,0.3);
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 780px) {
  .est-body {
    grid-template-columns: 1fr;
  }
  .est-left {
    border-right: none;
    border-bottom: 1px solid var(--rose);
  }
  .est-right {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .est-left { padding: 1.5rem; }
  .est-right { padding: 1.5rem; }
}

/* ============================================================
   ONCOLOGY SECTION
   ============================================================ */
.oncology {
  background: var(--dark);
  padding: 110px 0;
  overflow: hidden;
}

.oncology-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

/* Oncology image column */
.oncology-image {
  position: relative;
}

.oncology-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 100px 6px 6px 6px;
  filter: brightness(0.88) contrast(1.04);
}

.oncology-quote {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  padding: 1.75rem 2.25rem;
  border-radius: 4px;
  max-width: 270px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.oncology-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.45;
  margin: 0;
}

/* Oncology content column */
.oncology-content h2 {
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.oncology-lead {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(224, 192, 128, 0.7);
  margin-bottom: 2rem;
  display: block;
}

.oncology-content > p {
  color: rgba(250, 246, 240, 0.78);
  font-size: 1.02rem;
  margin-bottom: 2.5rem;
}

.oncology-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.benefit {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.benefit-marker {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.65rem;
}

.benefit h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.benefit p {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
  padding: 110px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-content .eyebrow {
  margin-bottom: 0.85rem;
}

.about-content h2 {
  margin-bottom: 0.35rem;
}

.about-title-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 0.99rem;
}

.about-content em {
  color: var(--gold-dark);
}

.about-credentials-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--rose);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credential {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cred-label {
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  min-width: 110px;
  padding-top: 2px;
}

/* About image column */
.about-image {
  position: relative;
  margin-top: 2rem;
}

.about-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center 8%;
  border-radius: 6px 6px 80px 6px;
  box-shadow: -24px 24px 60px rgba(36, 24, 16, 0.1);
}

.about-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.9;
  text-align: center;
  box-shadow: 0 8px 24px rgba(200, 151, 61, 0.3);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--cream);
  padding: 110px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-cards-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
}

/* Gift certificate banner */
.gift-cert-banner {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--dark);
  padding: 2rem 2.25rem;
  border-radius: 4px;
  flex-wrap: wrap;
}

.gift-cert-icon {
  font-size: 2.25rem;
  flex-shrink: 0;
}

.gift-cert-text {
  flex: 1;
  min-width: 200px;
}

.gift-cert-text h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.gift-cert-text p {
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.65);
  line-height: 1.6;
  margin: 0;
}

.gift-cert-banner .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 540px) {
  .gift-cert-banner { flex-direction: column; text-align: center; }
  .gift-cert-banner .btn-primary { width: 100%; }
}

/* Locations block */
.locations {
  margin-top: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.locations-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1.5rem;
}

.location-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.location-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.75rem;
  border-radius: 4px;
  border: 1px solid var(--rose);
}

.location-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.location-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.location-card > div > p {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.location-address {
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--text-light) !important;
  line-height: 1.6 !important;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.contact-card:hover {
  border-color: rgba(200, 151, 61, 0.3);
  box-shadow: 0 8px 40px rgba(200, 151, 61, 0.09);
  transform: translateY(-3px);
}

.contact-card-info {
  cursor: default;
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}

.contact-card:hover .contact-icon {
  background: var(--rose-pale);
}

.contact-card h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.contact-value {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.96rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.contact-hint {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-alt);
  color: rgba(250, 246, 240, 0.65);
  padding: 64px 28px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 246, 240, 0.08);
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 54px;
  width: auto;
  mix-blend-mode: lighten;
  opacity: 0.85;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(250, 246, 240, 0.85);
  line-height: 1.3;
  margin: 0;
}

.footer-tagline-small {
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.5);
  margin: 0;
}

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

.footer-nav a {
  font-size: 0.83rem;
  color: rgba(250, 246, 240, 0.6);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

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

.footer-contact p {
  font-size: 0.83rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.footer-contact a {
  color: rgba(250, 246, 240, 0.6);
  transition: color var(--transition);
}

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

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  color: rgba(250, 246, 240, 0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-light);
  opacity: 0.8;
}

/* ============================================================
   RESPONSIVE — TABLET (≤960px)
   ============================================================ */
@media (max-width: 960px) {
  /* Nav */
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 250;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .main-nav a {
    font-size: 1rem;
  }

  .main-nav a::after { display: none; }

  .nav-cta {
    padding: 14px 40px !important;
    font-size: 0.9rem !important;
  }

  /* Hero */
  .hero-bg-accent { display: none; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 28px 60px;
    gap: 3rem;
  }

  .hero-image { order: -1; }

  .hero-image img {
    height: 420px;
    border-radius: 6px 6px 60px 6px;
    box-shadow: 0 20px 50px rgba(36, 24, 16, 0.15);
  }

  .hero-text { max-width: 100%; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }

  /* Pillars */
  .pillars-inner {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 2.5rem;
  }

  /* Oncology */
  .oncology-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .oncology-image img {
    height: 460px;
    border-radius: 6px;
  }

  .oncology-quote {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin-top: 1.25rem;
    box-shadow: none;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image { order: -1; }

  .about-image img {
    height: 420px;
    border-radius: 6px;
  }

  .about-badge {
    position: relative;
    bottom: auto;
    left: auto;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: none;
  }

  /* Contact */
  .contact-cards,
  .contact-cards-two,
  .location-cards { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤540px)
   ============================================================ */
@media (max-width: 540px) {
  .hero h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }

  .hero-image img { height: 320px; }
  .oncology-image img { height: 340px; }
  .about-image img { height: 340px; }

  .hero-banner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .banner-dot { display: none; }

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

  .services-footer { padding: 2.5rem 1.5rem; }

  .btn { padding: 14px 30px; }

  .section-inner { padding: 0 20px; }

  .footer-brand { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
