﻿:root {
  --green-deep: #4c5640;
  --green-main: #7f8865;
  --green-soft: #a6b18a;
  --cream-soft: #f5efe4;
  --cream: #f9f4ea;
  --text-dark: #32352b;
  --text-main: #fdfdf8;
  --text-muted: #d9ddcf;
  --card-bg-dark: rgba(45, 52, 36, 0.95);
  --card-bg-soft: rgba(255, 255, 255, 0.9);
  --border-soft: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* BASIC RESET & GLOBALS */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--green-main);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;   /* 🔒 no horizontal scroll */
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.page {
  background-attachment: fixed;
}

/* HEADER & NAV */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(90deg, rgba(71, 81, 56, 0.97), rgba(127, 136, 101, 0.97));
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

/* Brand (logo + text link) */

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand-name {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
}

.brand-tagline {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.brand:hover .brand-logo {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.brand:hover .brand-text {
  transform: translateX(2px);
  opacity: 0.95;
}

@media (prefers-reduced-motion: reduce) {
  .brand,
  .brand-logo,
  .brand-text {
    transition: none;
  }
}

/* Nav */

.main-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-main);
  opacity: 0.85;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: #f7f1e6;
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.active {
  opacity: 1;
  font-weight: 600;
}

/* Mobile nav */

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
}

/* HERO (HOME) */

.hero {
  position: relative;
  padding-top: 5.5rem;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: radial-gradient(circle at top left, #a6b18a 0%, #4c5640 60%, #383f2f 100%);
  color: var(--text-main);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 55%);
  mix-blend-mode: soft-light;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
  padding-block: 3.5rem;
}

.hero-copy {
  max-width: 600px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 0.6rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 3.3rem);
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 0.75rem;
}

.hero-sub {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(14px);
  animation: heroCTAFade 0.7s ease forwards;
  animation-delay: 0.5s; /* 500ms delay */
}

@keyframes heroCTAFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero gallery under text */

.hero-gallery {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1.4rem;
}

.gallery-item {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  height: 230px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

/* Hero aside */

.hero-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.owner-card {
  flex: 1;
  border-radius: 1.6rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 60%), rgba(66, 73, 54, 0.96);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
}

.owner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HERO BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn.primary {
  background: #f7f1e6;
  color: #424737;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.24);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.btn.ghost {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn.offers-btn {
  background: linear-gradient(135deg, #7f8865, #6e7758);
  color: #ffffff;
  border: none;
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.btn.offers-btn:hover,
.btn.offers-btn:focus {
  transform: translateY(-2px);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  filter: brightness(1.05);
}

.explore-btn {
  width: 100%;
  background: transparent;
  border: 2px solid #f7f1e6;
  color: #f7f1e6;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #f7f1e6;
  color: #424737;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(247, 241, 230, 0.25);
}

/* SECTION HEADERS */

.section-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.section-header h1,
.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 0;
  animation: fadeUp 0.8s ease both;
}

.section-header p {
  margin: 0.5rem 0 0;
  color: #4a4f3b;
  font-weight: 500;
}

.section-header::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 0.9rem;
  background: #b3bda2;
  border-radius: 999px;
}

.section-header.center {
  text-align: center;
}

.section-header.center::after {
  margin-inline: auto;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ABOUT */

.about {
  background: radial-gradient(circle at top, #ffffff 0%, #f5efe4 40%, #e7dece 100%);
  color: var(--text-dark);
}

.about-layout {
  display: grid;
  gap: 2.75rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
}

.about-text p {
  margin: 0 0 1.1rem;
  line-height: 1.9;
  color: #5b5f4b;
}

.about-image-card {
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(50, 53, 43, 0.1);
  background: #faf6ef;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TREATMENTS SECTION ON HOME */

.treatments {
  background: radial-gradient(circle at top, #8f9a77 0%, #5a6247 40%, #484f3a 100%);
  color: var(--text-main);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  margin-bottom: 3rem;
}

.treatment-card {
  background: rgba(25, 31, 21, 0.9);
  border-radius: 1.2rem;
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(35, 42, 30, 0.93);
}

.treatment-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.treatment-card p {
  margin: 0 0 0.8rem;
  color: #e2e5d9;
  font-size: 0.92rem;
}

.treatment-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.treatment-card li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.treatment-card li::before {
  content: "\25B9";
  position: absolute;
  left: 0;
  color: #f7f1e6;
  font-size: 0.8rem;
}

.small-print {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* PRICES PAGE */

.prices-page {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, #ffffff 0%, #f5efe4 40%, #e7dece 100%);
  color: var(--text-dark);
  padding-top: 4.5rem;
}

.prices-page::before,
.gallery-page::before,
.testimonials-page::before,
.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(
      circle at top center,
      rgba(166, 177, 138, 0.55),
      rgba(166, 177, 138, 0) 55%
    ),
    radial-gradient(
      circle at bottom center,
      rgba(127, 136, 101, 0.45),
      rgba(127, 136, 101, 0) 65%
    );
}

.price-note {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #5b5f4b;
}

.price-note.bottom {
  margin-top: 2.5rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem;
}

.price-card {
  background: radial-gradient(circle at top left, #ffffff 0%, #faf6ef 55%, #f0e6d8 100%);
  border-radius: 1.4rem;
  padding: 1.8rem 1.9rem 1.6rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(50, 53, 43, 0.14);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
  border-color: rgba(123, 134, 100, 0.7);
  background: radial-gradient(circle at top left, #ffffff 0%, #fdf7ee 45%, #efe3d3 100%);
}

.price-card h3 {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  margin: 0 0 0.9rem;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) auto auto;
  column-gap: 0.75rem;
  align-items: baseline;
  padding: 0.28rem 0;
  border-bottom: 1px dashed rgba(50, 53, 43, 0.15);
  font-size: 0.9rem;
}

.price-row:last-of-type {
  border-bottom: none;
}

.price-name {
  color: #3e4332;
}

.price-meta {
  color: #8b8f7a;
  font-size: 0.84rem;
  text-align: right;
}

.price-value {
  font-weight: 600;
  text-align: right;
  color: #333729;
}

.price-footnote {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: #777c65;
}

.price-cta {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

/* Remove excessive gap between intro and cards */
.prices-page .section + .section {
  padding-top: 0;
}

/* Opening hours inside price card */
.price-card .hours li span:first-child {
  color: #4a4f3b !important;
  font-weight: 500;
}

/* GALLERY PAGE */

.gallery-page {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, #ffffff 0%, #f5efe4 40%, #e7dece 100%);
  color: var(--text-dark);
  padding-top: 4.5rem;
}

.gallery-page .section + .section {
  padding-top: 0;
}

.gallery-hero {
  padding-top: 5rem !important;
  padding-bottom: 0;
}

.gallery-hero .section-header {
  margin-bottom: 0.5rem;
}

.gallery-main {
  padding-top: 0;
  margin-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 7rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(50, 53, 43, 0.15);
  background: #faf6ef;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

/* CONTACT PAGE */

.contact-page {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, #ffffff 0%, #f5efe4 40%, #e7dece 100%);
  color: var(--text-dark);
  padding-top: 4.5rem;
}

.contact-hero {
  background: radial-gradient(
    circle at top center,
    rgba(166, 177, 138, 0.55),
    rgba(127, 136, 101, 0.15) 60%,
    transparent 100%
  );
}

.contact {
  background: #303629;
  color: var(--text-main);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.75rem;
  align-items: center;
}

.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin: 0 0 0.9rem;
}

.contact-info p {
  margin: 0 0 0.6rem;
}

.contact-phone a,
.contact-info a {
  color: #f7f1e6;
  text-decoration: none;
}

.contact-phone a:hover,
.contact-info a:hover {
  text-decoration: underline;
}

.hours {
  margin: 1.4rem 0 1.1rem;
}

.hours h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 0.5rem;
}

.hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.15rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.hours li span:first-child {
  color: var(--text-muted);
}

.social {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
}

.social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.social svg {
  width: 16px;
  height: 16px;
  fill: var(--text-main);
}

.contact-image {
  border-radius: 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  height: 420px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Make ghost buttons visible on Contact page */

.contact-page .btn.ghost {
  color: var(--green-deep);
  border-color: rgba(76, 86, 64, 0.7);
  background: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.contact-page .btn.ghost:hover {
  background: rgba(76, 86, 64, 0.08);
  border-color: rgba(76, 86, 64, 0.9);
}

/* TESTIMONIALS / REVIEWS PAGE */

.testimonials-page {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, #fdf8ee 0%, #f5efe4 38%, #e8dfcf 100%);
  color: var(--text-dark);
  padding-top: 4.5rem;
}

.testimonials-hero {
  padding-top: 4rem;
  padding-bottom: 2.75rem;
}

.testimonials-hero .container {
  max-width: 960px;
  text-align: center;
}

.testimonials-hero .section-header {
  margin-bottom: 1.75rem;
}

.testimonials-hero .section-header h1 {
  font-size: clamp(2.2rem, 3vw, 2.6rem);
}

.testimonials-hero .section-header p {
  max-width: 640px;
  margin-inline: auto;
}

/* Google rating badge (final refined version) */

.google-reviews-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  margin: 0 auto 1.5rem auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  max-width: max-content;
}

.google-icon-circle {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #4285f4;
}

.google-rating-text {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--green-deep);
}

.google-rating-score {
  font-weight: 700;
}

.google-rating-stars {
  letter-spacing: 0.06em;
}

.google-rating-label {
  opacity: 0.85;
  font-size: 0.8rem;
}

/* Hero CTAs */

.reviews-hero-cta,
.reviews-footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.reviews-hero-cta {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.reviews-footer-cta {
  margin-top: 2.5rem;
}

/* Make ghost buttons clearly visible on pale background */

.testimonials-page .reviews-hero-cta .btn.ghost,
.testimonials-page .reviews-footer-cta .btn.ghost {
  background: rgba(255, 255, 255, 0.9);
  color: #3f4434;
  border-color: rgba(76, 86, 64, 0.65);
  font-weight: 600;
}

.testimonials-page .reviews-hero-cta .btn.ghost:hover,
.testimonials-page .reviews-footer-cta .btn.ghost:hover {
  background: rgba(76, 86, 64, 0.06);
  border-color: rgba(76, 86, 64, 0.9);
}

/* Reviews grid */

.testimonials-list {
  padding-top: 1.75rem;
  padding-bottom: 4.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  background: rgba(250, 246, 239, 0.98);
  border-radius: 1.4rem;
  padding: 1.6rem 1.8rem 1.7rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(50, 53, 43, 0.12);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(166, 177, 138, 0.22), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
  border-color: rgba(123, 134, 100, 0.7);
  background: rgba(252, 248, 240, 0.98);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a4f3b;
}

.testimonial-name {
  margin: 0;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777c65;
}

.testimonial-name .review-source {
  font-size: 0.78rem;
  opacity: 0.75;
  margin-left: 0.4rem;
}

/* CLIENT FEEDBACK SUBTITLES */

.testimonials-page .section-header p,
.testimonials-page .testimonial-subtitle,
.testimonials-page .client-feedback {
  color: #4a4f3b;
  font-weight: 500;
}

/* FOOTER */

.site-footer {
  padding: 1.5rem 0 2rem;
  background: #22251c;
}

.footer-inner {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FLOATING BOOK BUTTON */

.floating-book {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 9000;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7f1e6, #e8dcc3);
  color: #3f4434;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.floating-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

@media (max-width: 480px) {
  .floating-book {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.78rem;
  }
}

/* LOADER */

.loader-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #8f9a77 0%, #4c5640 40%, #303629 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-inner {
  text-align: center;
  color: var(--text-main);
  max-width: 260px;
  padding: 1.8rem 2rem;
  border-radius: 1.6rem;
  background: rgba(22, 26, 19, 0.85);
  border: 1px solid rgba(247, 241, 230, 0.3);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
  animation: loader-fade-in 0.5s ease-out;
}

.loader-logo-circle {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 6px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(48, 54, 41, 0.9);
}

.loader-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.loader-title {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin: 0 0 0.15rem;
}

.loader-sub {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.62rem;
  margin: 0 0 0.7rem;
  opacity: 0.85;
}

.loader-tagline {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.loader-spinner {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(247, 241, 230, 0.28);
  border-top-color: #f7f1e6;
  margin: 0 auto;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body.loaded .loader-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* LIGHTBOX (GALLERY) */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 1rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  animation: lightbox-pop 0.25s ease;
}

@keyframes lightbox-pop {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  user-select: none;
  font-weight: 300;
}

/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SCROLL TO TOP BUTTON */

.scroll-top {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 9000;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(247, 241, 230, 0.8);
  background: rgba(22, 26, 19, 0.95);
  color: #f7f1e6;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-4px);
}

.scroll-top:hover {
  transform: translateY(-6px);
}

@media (max-width: 480px) {
  .scroll-top {
    left: 1rem;
    bottom: 1rem;
  }
}

/* CHRISTMAS SNOW OVERLAY */

.snow-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9500;
}

.snowflake {
  position: absolute;
  top: -12px;
  border-radius: 50%;
  background: radial-gradient(
    circle at top left,
    #ffffff 0%,
    #ffffff 40%,
    rgba(255, 255, 255, 0.85) 65%,
    rgba(255, 255, 255, 0.6) 100%
  );
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.9),
    0 0 14px rgba(255, 255, 255, 0.5);
  animation-name: snow-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes snow-fall {
  0% {
    transform: translate3d(0, -10px, 0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate3d(-30px, 110vh, 0);
    opacity: 0;
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .hero-aside {
    max-width: 420px;
    margin-inline: auto;
  }

  .about-layout,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-image {
    order: -1;
    height: 320px;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    height: 200px;
  }

  .hero-gallery .gallery-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    background: rgba(71, 81, 56, 0.96);
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    padding: 0.75rem 1.25rem 1.15rem;
    background: rgba(37, 44, 31, 0.97);
    flex-direction: column;
    gap: 0.9rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .main-nav a {
    font-size: 0.85rem;
  }

  .main-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-block: 2.75rem;
  }

  .section {
    padding: 4rem 0;
  }

  .testimonials-hero {
    padding-top: 3.25rem;
    padding-bottom: 2.25rem;
  }

  .testimonials-list {
    padding-top: 1.5rem;
    padding-bottom: 3.5rem;
  }

  .testimonial-card {
    padding: 1.5rem 1.4rem 1.6rem;
  }
}

@media (max-width: 520px) {
  .about-text p {
    font-size: 0.95rem;
  }

  .hours li {
    font-size: 0.82rem;
  }

  .contact-image {
    height: 260px;
  }
}

/* MISC ACCESSIBILITY & UTILITIES */

section {
  scroll-margin-top: 90px;
}

:focus-visible {
  outline: 2px solid #a6b18a;
  outline-offset: 3px;
}

.trust-line {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #76805f;
  letter-spacing: 0.04em;
}

.price-card p,
.testimonial-text {
  line-height: 1.75;
}

/* Nudge contact page up to hide tiny seam under header */
.contact-page {
  margin-top: -5px;
}

/* GLOBAL mobile tightening */
@media (max-width: 720px) {
  .container {
    width: min(100% - 1.5rem, 1120px); /* a bit less side padding on small screens */
  }

  .section {
    padding: 3.25rem 0;               /* slightly smaller vertical padding */
  }

  .header-inner {
    padding-block: 0.6rem;
  }
}

/* tiny screens */
@media (max-width: 480px) {
  .section {
    padding: 2.75rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-block: 2.25rem;
  }
}

@media (max-width: 720px) {
  .treatments-grid,
  .price-grid,
  .gallery-grid,
  .testimonials-grid,
  .menu-images {
    grid-template-columns: minmax(0, 1fr); /* one column on mobile */
  }
}

.floating-book {
  right: 1.25rem;
}

.scroll-top {
  left: 1.25rem;
}

.snow-overlay {
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 720px) {
  .treatments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .treatment-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .treatment-card {
    padding: 1.2rem 1.3rem;
  }

  .treatment-card h3 {
    font-size: 1.05rem;
  }
}