/* ── Variables ── */
:root {
  --cream: #fefbf4;
  --brown: #453024;
  --green: #728a62;
  --slate: #61717a;
  --terracotta: #bb6e42;
  --gold: #c9a84c;
  --white: #ffffff;
  --light-bg: #f5f0e8;
  --border: #e2d8c8;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border: 2px solid var(--terracotta);
}
.btn-primary:hover {
  background: #a55e35;
  border-color: #a55e35;
  text-decoration: none;
}
.btn-light {
  background: var(--white);
  color: var(--brown);
  border: 2px solid var(--white);
}
.btn-light:hover {
  background: transparent;
  color: var(--white);
  text-decoration: none;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(254, 251, 244, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(69,48,36,0.07);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 68px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--brown);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--terracotta); text-decoration: none; }
.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 3px;
}
.nav-cta:hover { background: #a55e35; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--brown);
  cursor: pointer;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  background: url('images/treatment.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,18,10,0.55) 0%, rgba(30,18,10,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 0 24px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-sub {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero-content h1 span {
  display: block;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 8px;
}
.hero-tagline {
  font-size: 18px;
  font-style: italic;
  font-family: var(--font-head);
  opacity: 0.9;
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

/* ── ABOUT ── */
#about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-text p {
  margin-bottom: 16px;
  color: #5a4535;
  font-size: 15px;
}
.about-images {
  display: flex;
}
.about-img-main {
  width: 100%;
  height: 450px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

/* ── SERVICES ── */
#services {
  padding: 100px 0;
  background: var(--cream);
}
.section-title {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(69,48,36,0.1);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 36px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.hicaps-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: #6b5547;
  line-height: 1.6;
}
.interior-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.interior-photos img {
  border-radius: 6px;
  height: 280px;
  width: 100%;
  object-fit: cover;
}

/* ── PRICING ── */
#pricing {
  padding: 100px 0;
  background: var(--white);
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}
.tab-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--brown);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.tab-content {
  display: none;
  max-width: 640px;
  margin: 0 auto;
}
.tab-content.active { display: block; }
.tab-note {
  text-align: center;
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  font-style: italic;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table tr {
  border-bottom: 1px solid var(--border);
}
.price-table tr:last-child { border-bottom: none; }
.price-table td {
  padding: 14px 12px;
  font-size: 15px;
}
.price-table td:nth-child(2) {
  color: var(--slate);
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
}
.price-table td:last-child {
  text-align: right;
  font-weight: 500;
  font-size: 16px;
  color: var(--terracotta);
  white-space: nowrap;
}
.rebate-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--slate);
  text-align: center;
  font-style: italic;
}

/* ── GIFT VOUCHERS ── */
#vouchers {
  background: var(--green);
  padding: 56px 0;
}
.vouchers-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.voucher-text h3 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.voucher-text p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

/* ── HOURS & LOCATION ── */
#hours {
  padding: 100px 0;
  background: var(--cream);
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hours-table-wrap h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.hours-table td:first-child { color: var(--slate); }
.hours-table td:last-child { text-align: right; font-weight: 500; }
.address-block p {
  margin-bottom: 10px;
  font-size: 15px;
}
.address-block a { color: var(--terracotta); }
.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; }

/* ── CONTACT ── */
#contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-text h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-text p {
  font-size: 15px;
  color: #5a4535;
  margin-bottom: 24px;
}
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-details a { font-size: 15px; font-weight: 500; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
}
.form-group textarea { resize: vertical; }

/* ── FOOTER ── */
footer {
  background: var(--brown);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-info p { font-size: 14px; margin-bottom: 6px; }
.footer-info a { color: rgba(255,255,255,0.7); }
.footer-info a:hover { color: var(--white); }
.footer-copy {
  font-size: 12px;
  opacity: 0.5;
  margin-top: 8px;
}

/* ── GOOGLE BADGE (hero) ── */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 36px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 9px 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.google-badge:hover {
  background: rgba(255,255,255,0.2);
  text-decoration: none;
}
.google-g {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.google-badge-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.google-badge-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.google-badge-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
.google-badge-score {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.google-badge-stars {
  font-size: 12px;
  color: #FBBC05;
  letter-spacing: 1px;
}
.google-badge-count {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
}

/* ── GOOGLE BADGE LIGHT VARIANT ── */
.google-badge--light {
  background: var(--white);
  border-color: var(--border);
  backdrop-filter: none;
  cursor: default;
  margin-top: 0;
  margin-bottom: 32px;
}
.google-badge--light:hover { background: var(--white); }
.google-badge--light .google-badge-label { color: var(--slate); }
.google-badge--light .google-badge-score { color: var(--brown); }
.google-badge--light .google-badge-count { color: var(--slate); }

/* ── REVIEWS SECTION ── */
#reviews {
  padding: 100px 0;
  background: var(--light-bg);
}
.reviews-header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
}
.review-guide {
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.04em;
}
.review-stars {
  font-size: 14px;
  color: #FBBC05;
  letter-spacing: 1px;
}
.review-text {
  font-size: 14px;
  color: #5a4535;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.review-time {
  font-size: 12px;
  color: var(--slate);
  margin-top: auto;
}

/* ── SLIDER ── */
.slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider-viewport {
  overflow: hidden;
  flex: 1;
}
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slider-track .review-card {
  flex: 0 0 calc(33.333% - 14px);
}
.slider-btn {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 18px;
  color: var(--brown);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.slider-btn:hover:not(:disabled) {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active {
  background: var(--terracotta);
  transform: scale(1.3);
}

/* ── MAP COLUMN (hours section) ── */
.map-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map-column .google-badge--light {
  margin-bottom: 0;
  width: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid,
  .hours-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vouchers-inner { flex-direction: column; text-align: center; }
  .about-img-main { height: auto; }
  .slider-track .review-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 90px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--border); padding: 16px 24px 24px; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .interior-photos { grid-template-columns: 1fr; }
  .about-images { grid-template-columns: 1fr; }
  .tabs { gap: 6px; }
  .tab-btn { font-size: 12px; padding: 8px 14px; }
  .hero-content h1 { font-size: 48px; }
  .slider-track .review-card { flex: 0 0 100%; }
  .slider-btn { width: 36px; height: 36px; font-size: 15px; }
  #about, #services, #pricing, #reviews, #hours, #contact { padding: 64px 0; }
}
