/* ===========================================
   LASER ELITE — styles.css
   Luxury Spa Aesthetic · Light Backgrounds Only
   =========================================== */

/* Ensure [hidden] always wins over any display property in class rules */
[hidden] { display: none !important; }

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

:root {
  --bg-warm:      #fefcfb;
  --bg-champagne: #fdf6ee;
  --gold:         #b7862a;
  --gold-light:   #d4a84b;
  --gold-dark:    #8f6520;
  --rose-gold:    #c4945a;
  --charcoal:     #2d2417;
  --muted:        #7c6a56;
  --sage:         #6b8f71;
  --border:       #e8ddd1;
  --border-light: #f2ece4;
  --radius-sm:    2px;
  --radius-card:  6px;
  --shadow-sm:    0 2px 12px rgba(45,36,23,.06);
  --shadow-md:    0 6px 32px rgba(45,36,23,.10);
  --shadow-lg:    0 16px 60px rgba(45,36,23,.12);
  --transition:   .25s ease;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background-color: var(--bg-warm);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ---- UTILITIES ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-white    { background-color: var(--bg-warm); }
.section-champagne { background-color: var(--bg-champagne); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  line-height: 1;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 1.5px solid var(--gold);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 20px rgba(183,134,42,.25);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--gold);
  color: #fff;
}

/* ---- FOCUS VISIBLE ---- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ===========================================
   HEADER
   =========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-warm);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(45,36,23,.10);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-shrink: 0;
}
.logo-laser {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--charcoal);
  letter-spacing: .02em;
}
.logo-divider {
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 3px;
  flex-shrink: 0;
  align-self: center;
}
.logo-elite {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
}
.logo-location {
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .06em;
  margin-left: 4px;
}

/* Nav */
.main-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.header-cta { margin-left: 16px; }

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-nav .nav-link {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav .mobile-cta { margin-top: 16px; text-align: center; }
.mobile-nav.open { display: flex; }

/* ===========================================
   HERO
   =========================================== */
.hero {
  background: var(--bg-warm);
  padding: 80px 0 72px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero-heading em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

/* Pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.pill {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  background: var(--bg-champagne);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  white-space: nowrap;
}
.pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(183,134,42,.05);
}

.hero-cta { margin-bottom: 36px; }

/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8125rem;
  font-weight: 400;
  color: var(--muted);
}
.trust-icon {
  color: var(--sage);
  font-size: 1rem;
  line-height: 1;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-warm);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-card);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.badge-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.badge-text {
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .04em;
}

/* ===========================================
   SECTION COMMON
   =========================================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

section {
  padding: 96px 0;
}

/* ===========================================
   SERVICES
   =========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-warm);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 4px;
}
.service-name {
  font-family: var(--font-heading);
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
}
.service-desc {
  font-size: .9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.service-link {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  transition: letter-spacing var(--transition);
}
.service-link:hover { letter-spacing: .15em; }

/* ===========================================
   RESULTS
   =========================================== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.result-card {
  background: var(--bg-champagne);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 3px solid var(--gold);
}

.result-treatment {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.result-stat-wrap {
  display: flex;
  gap: 24px;
}
.result-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.3;
}

.result-bar-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: -8px;
}
.result-bar {
  height: 4px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.result-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
}

.result-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.result-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .8125rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 8px;
}

/* ===========================================
   BOOKING
   =========================================== */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* Calendar */
.calendar-wrap {
  background: var(--bg-warm);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.calendar {
  margin-bottom: 0;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-nav-btn {
  font-size: 1.125rem;
  color: var(--gold);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background var(--transition), color var(--transition);
  line-height: 1;
}
.cal-nav-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.cal-month-label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--charcoal);
}

.calendar-legend {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 400;
  color: var(--muted);
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-available { background: var(--gold); }
.legend-booked    { background: var(--border); }
.legend-today     { background: transparent; border: 2px solid var(--gold); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.cal-weekdays div {
  text-align: center;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.date-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 400;
  color: var(--charcoal);
  background: transparent;
  border: 1.5px solid transparent;
  cursor: default;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  position: relative;
}

.date-cell .date-num {
  line-height: 1;
  font-size: .9375rem;
}
.date-cell .date-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: transparent;
}

/* Past dates */
.date-past {
  color: #ccc4ba;
  cursor: not-allowed;
}
.date-past .date-dot { display: none; }

/* Empty cells (before month start) */
.date-empty {
  background: transparent;
}

/* Today */
.date-today {
  border-color: var(--gold);
  font-weight: 700;
  color: var(--gold);
}

/* Available */
.date-available {
  cursor: pointer;
}
.date-available .date-dot {
  background: var(--gold);
}
.date-available:hover {
  background: rgba(183,134,42,.10);
  border-color: var(--gold);
}

/* Selected */
.date-selected {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}
.date-selected .date-dot {
  background: rgba(255,255,255,.6) !important;
}

/* Booked/no slots */
.date-booked {
  color: #b8ae9f;
}
.date-booked .date-dot { display: none; }

/* Time Slots */
.time-slots-wrap {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.time-slots-heading {
  font-size: .9375rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 14px;
}
.time-slots-heading strong { color: var(--charcoal); }

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slot-btn {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 9px 20px;
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.slot-btn:hover {
  background: rgba(183,134,42,.08);
}
.slot-btn.slot-selected {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 3px 12px rgba(183,134,42,.25);
}

/* Booking Aside */
.booking-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-note {
  background: var(--bg-warm);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.booking-note-icon { margin-bottom: 12px; }
.booking-note-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.booking-note-text {
  font-size: .9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}
.booking-phone {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
}

.guarantee-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 400;
  color: var(--charcoal);
}
.g-check {
  color: var(--sage);
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1;
}

/* Booking Form */
.booking-form-wrap {
  margin-top: 40px;
  background: var(--bg-warm);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--gold);
  animation: slideDown .35s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-header {
  margin-bottom: 32px;
}
.form-heading {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-selected-slot {
  font-size: .9375rem;
  font-weight: 400;
  color: var(--muted);
  padding: 10px 16px;
  background: rgba(183,134,42,.07);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group .optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}
.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bfb5a8; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(183,134,42,.10);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237c6a56'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

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

.field-error {
  font-size: .8125rem;
  color: #c0392b;
  min-height: 18px;
  display: block;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}
.form-disclaimer {
  font-size: .8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.form-submit { flex-shrink: 0; }

/* Success */
.booking-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.success-message {
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.success-sub {
  font-size: .9375rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-champagne);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 3px solid var(--gold);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1rem;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.65;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.testimonial-name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--charcoal);
}
.testimonial-loc {
  font-size: .8125rem;
  font-weight: 300;
  color: var(--muted);
}

/* ===========================================
   LOCATION
   =========================================== */
.location-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

.location-card {
  background: var(--bg-warm);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--gold);
}

.location-pin {
  margin-bottom: 20px;
}
.location-address {
  margin-bottom: 16px;
}
.address-line { line-height: 1.8; font-size: .9375rem; color: var(--charcoal); }
.address-name { font-weight: 700; font-size: 1.0625rem; }
.location-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.loc-detail {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.loc-label {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.loc-value {
  font-size: .9375rem;
  color: var(--charcoal);
}
.loc-closed { color: var(--muted); }
a.loc-value { color: var(--gold); }
a.loc-value:hover { text-decoration: underline; }

.appt-only {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.loc-cta { width: 100%; text-align: center; }

/* Map placeholder */
.location-map-placeholder {
  height: 360px;
  background: var(--bg-warm);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.map-inner {
  width: 100%;
  height: 100%;
  position: relative;
  background: #f7f1e8;
}
.map-street-lines {
  position: absolute;
  inset: 0;
}
.map-h-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: rgba(183,134,42,.12);
}
.map-h-line:nth-child(1) { top: 33%; }
.map-h-line:nth-child(2) { top: 67%; }
.map-v-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(183,134,42,.12);
}
.map-v-line:nth-child(3) { left: 40%; }
.map-v-line:nth-child(4) { left: 70%; }

.map-pin-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.map-pin-pulse {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(183,134,42,.12);
  animation: pulse 2s ease-in-out infinite;
}
.map-pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(183,134,42,.25);
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.4); opacity: .2; }
}
.map-pin-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  text-align: center;
  line-height: 1.4;
  margin-top: 8px;
}
.map-pin-label small {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 300;
  color: var(--muted);
}

/* ===========================================
   FAQ
   =========================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: .9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background: var(--bg-warm);
  border-top: 2px solid var(--gold);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-desc {
  font-size: .875rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-link {
  font-size: .8125rem;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--gold); }

.footer-copy {
  font-size: .8125rem;
  font-weight: 300;
  color: #b8ae9f;
}

/* ===========================================
   LEGAL MODAL
   =========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,36,23,.35);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal {
  background: var(--bg-warm);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  animation: slideUp .25s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
}
.modal-close {
  font-size: 1.5rem;
  color: var(--muted);
  padding: 4px 8px;
  transition: color var(--transition);
  line-height: 1;
}
.modal-close:hover { color: var(--charcoal); }

.modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  font-size: .9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}
.modal-body h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 20px 0 8px;
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { margin-bottom: 12px; }
.modal-body ul { margin: 8px 0 12px 20px; }
.modal-body li { margin-bottom: 4px; }

/* ===========================================
   SCROLL REVEAL
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay  { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-wrap { order: -1; }
  .hero-img { height: 360px; }
  .hero-badge { bottom: -16px; left: 16px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .booking-layout { grid-template-columns: 1fr; }
  .booking-aside { flex-direction: row; flex-wrap: wrap; }
  .booking-note { flex: 1; min-width: 200px; }

  .location-layout { grid-template-columns: 1fr; }
  .location-map-placeholder { height: 240px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .main-nav, .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }

  .hero { padding: 56px 0 48px; }
  .hero-heading { font-size: clamp(2rem, 7vw, 2.75rem); }

  .services-grid { grid-template-columns: 1fr; }
  .results-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: flex-start; }

  .booking-form-wrap { padding: 24px 20px; }
  .calendar-wrap { padding: 20px 16px; }

  .cal-weekdays div { font-size: .6rem; }
  .date-cell { font-size: .8125rem; }
  .date-cell .date-num { font-size: .8125rem; }

  .section-heading { font-size: clamp(1.625rem, 5vw, 2.25rem); }

  .trust-row { gap: 12px; }
  .trust-item { font-size: .75rem; }

  .booking-aside { flex-direction: column; }

  .footer-links { gap: 16px; }
}

@media (max-width: 480px) {
  .hero-pills { gap: 6px; }
  .pill { font-size: .625rem; padding: 5px 10px; }

  .hero-badge { position: static; margin-top: 16px; display: inline-flex; gap: 8px; align-items: center; }

  .header-inner { gap: 16px; }
  .logo-location { display: none; }
}
