/* =========================================
   THE VILLAGE BEAUTY — Complete Stylesheet v2.0
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F5F0EB;
  --cream-dark: #EDE4DA;
  --beige:      #E2D9CF;
  --gold:       #C9A96E;
  --gold-light: #DFC28F;
  --charcoal:   #1C1C1C;
  --mid:        #5A5247;
  --light-text: #9B8F85;
  --white:      #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
  --nav-h: 72px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--charcoal); line-height: 1.6; overflow-x: hidden; max-width: 100%; touch-action: pan-y; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* Page transition overlay */
.page-transition {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 9999; pointer-events: none; opacity: 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-sans);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; border: 1.5px solid transparent;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: #b8944f; border-color: #b8944f; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-ghost-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost-dark:hover { background: var(--charcoal); color: var(--cream); }
.btn-nav { background: var(--gold); color: var(--white); border-color: var(--gold); padding: 10px 22px; font-size: 0.75rem; }
.btn-nav:hover { background: #b8944f; border-color: #b8944f; }
.btn-white { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-sm { padding: 10px 22px; font-size: 0.72rem; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }
h2 em, h1 em { font-style: italic; color: var(--gold); }

.section-label {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-label.light { color: var(--gold-light); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-sub { color: var(--mid); margin-top: 16px; font-size: 1rem; }

/* Scroll-to-top */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px;
  background: var(--gold); color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 50;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-2px); }
.scroll-top svg { width: 18px; height: 18px; }

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  justify-content: space-between; padding: 0 40px;
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(245,240,235,0.97); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
body.inner-page #navbar {
  background: rgba(245,240,235,0.97); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; gap: 1px; color: var(--white); transition: color 0.4s; }
#navbar.scrolled .nav-logo, body.inner-page .nav-logo { color: var(--charcoal); }
.logo-the { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.25em; font-weight: 400; }
.logo-village { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; letter-spacing: 0.05em; }
.logo-beauty { font-family: var(--font-sans); font-size: 0.55rem; letter-spacing: 0.3em; font-weight: 300; }
.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
#navbar.scrolled .nav-links a, body.inner-page .nav-links a { color: var(--mid); }
#navbar.scrolled .nav-links a:hover, body.inner-page .nav-links a:hover { color: var(--charcoal); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: var(--transition); }
#navbar.scrolled .hamburger span, body.inner-page .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 28px; }
.mobile-menu a { font-family: var(--font-serif); font-size: 2rem; color: var(--charcoal); }
.mobile-menu .btn { font-family: var(--font-sans); font-size: 0.8rem; }

/* =========================================
   HERO (Home)
   ========================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8,6,4,0.88) 0%, rgba(8,6,4,0.55) 55%, rgba(8,6,4,0.10) 100%),
    linear-gradient(to top, rgba(8,6,4,0.70) 0%, transparent 40%),
    url('./images/Reception/_DSC1113.jpg') center 40%/cover no-repeat;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; color: var(--white); padding: 0 10vw 9vh; max-width: 680px; }
.hero-rule { width: 36px; height: 1px; background: var(--gold); margin-bottom: 20px; transform-origin: left; }
.hero-eyebrow { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(4rem, 10vw, 8rem); font-weight: 300; line-height: 0.96; margin-bottom: 28px; color: var(--white); letter-spacing: -0.01em; }
.hero-title em { font-style: italic; color: var(--gold-light); display: block; }
.hero-sub { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; right: 48px; display: flex; flex-direction: column;
  align-items: center; gap: 12px; color: rgba(255,255,255,0.4); font-size: 0.6rem;
  letter-spacing: 0.22em; text-transform: uppercase; z-index: 1; writing-mode: vertical-rl;
}
.scroll-line { width: 1px; height: 52px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.9; } }

/* =========================================
   PAGE HERO (Inner pages)
   ========================================= */
.page-hero {
  position: relative; height: 55vh; min-height: 420px;
  display: flex; align-items: center; overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--charcoal);
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,6,4,0.82) 0%, rgba(28,20,16,0.55) 100%);
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; color: var(--white); padding: 0 10vw; max-width: 780px; }
.page-hero-rule { width: 36px; height: 1px; background: var(--gold); margin-bottom: 20px; transform-origin: left; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--gold-light); }
.page-hero-eyebrow { font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; display: block; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 300; color: var(--white); }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-sub { margin-top: 20px; color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 520px; line-height: 1.7; }

/* =========================================
   MARQUEE
   ========================================= */
.marquee-wrap { background: var(--charcoal); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 28s linear infinite; }
.marquee-track span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); padding: 0 20px; }
.marquee-track .dot { color: var(--gold); padding: 0 4px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================
   INTRO / STATS
   ========================================= */
.intro { padding: 120px 0; background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-text h2 { margin-bottom: 20px; }
.intro-text p { color: var(--mid); margin-bottom: 32px; font-size: 1.05rem; line-height: 1.75; }
.intro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--beige); border: 1px solid var(--beige); }
.stat { background: var(--cream); padding: 40px 32px; display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light-text); }

/* =========================================
   SERVICE OVERVIEW CARDS (Home)
   ========================================= */
.services-overview { padding: 120px 0; background: var(--cream-dark); }
.services-overview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--beige); border: 1px solid var(--beige);
}
.service-ov-card {
  background: var(--cream); padding: 48px 40px; display: flex;
  flex-direction: column; gap: 16px; transition: background var(--transition);
  position: relative; overflow: hidden;
}
.service-ov-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-ov-card:hover { background: var(--white); }
.service-ov-card:hover::after { transform: scaleX(1); }
.service-ov-icon { width: 44px; height: 44px; color: var(--gold); margin-bottom: 4px; }
.service-ov-icon svg { width: 100%; height: 100%; }
.service-ov-card h3 { font-size: 1.4rem; margin: 0; }
.service-ov-card p { color: var(--mid); font-size: 0.93rem; line-height: 1.7; flex: 1; }
.service-ov-link {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.25s, color 0.25s; margin-top: auto;
}
.service-ov-link:hover { gap: 12px; color: var(--charcoal); }

/* =========================================
   SPECIALISTS GRID
   ========================================= */
.services { padding: 120px 0; background: var(--cream-dark); }
.specialists-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--beige); border: 1px solid var(--beige);
}
.specialist-card { background: var(--cream); padding: 48px 44px; display: flex; flex-direction: column; gap: 20px; transition: background var(--transition); }
.specialist-card:hover { background: var(--white); }
.specialist-header { display: flex; align-items: center; gap: 16px; }
.specialist-logo {
  width: 52px; height: 52px; border-radius: 50%; background: var(--charcoal);
  color: var(--gold); font-family: var(--font-serif); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.specialist-header > div:nth-child(2) { flex: 1; }
.specialist-header h3 { font-size: 1.25rem; margin: 0; }
.specialist-handle { font-size: 0.72rem; color: var(--light-text); }
.specialist-handle a { color: var(--gold); transition: color 0.2s; }
.specialist-handle a:hover { color: var(--charcoal); }
.specialist-book {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold); padding: 8px 16px;
  white-space: nowrap; transition: all 0.25s; flex-shrink: 0;
}
.specialist-book:hover { background: var(--gold); color: var(--white); }
.specialist-desc { color: var(--mid); font-size: 0.95rem; line-height: 1.7; font-style: italic; }
.specialist-services { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.specialist-services li {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--cream-dark); padding: 5px 12px; color: var(--mid); border: 1px solid var(--beige);
}
.specialist-card--product { background: #fdf8f2; border-left: 3px solid var(--gold); position: relative; }
.specialist-card--product::before {
  content: 'SHOP ONLINE & IN SALON'; position: absolute; top: 20px; right: 24px;
  font-size: 0.58rem; letter-spacing: 0.16em; color: var(--gold); font-family: var(--font-sans);
}
.specialist-card--product:hover { background: #fff9f3; }

/* =========================================
   ABOUT SECTION
   ========================================= */
.about { padding: 0; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.about-image { position: relative; background: var(--charcoal); min-height: 600px; overflow: hidden; }
.about-img-inner { position: absolute; inset: 0; overflow: hidden; }
.about-img-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-badge {
  position: absolute; bottom: 40px; right: -20px; background: var(--gold);
  color: var(--white); padding: 20px 32px; display: flex; flex-direction: column; gap: 2px; z-index: 2;
}
.badge-num { font-family: var(--font-serif); font-size: 1.1rem; }
.badge-sub { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; }
.about-content { padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.about-content h2 { margin-bottom: 24px; }
.about-content p { color: var(--mid); line-height: 1.8; margin-bottom: 16px; font-size: 1.05rem; }
.about-values { margin: 32px 0 40px; display: flex; flex-direction: column; gap: 14px; }
.value { display: flex; align-items: center; gap: 14px; font-size: 0.9rem; color: var(--mid); }
.value-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* =========================================
   GALLERY
   ========================================= */
.gallery { padding: 120px 0; background: var(--cream-dark); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px; gap: 3px; margin-bottom: 40px;
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.gallery-item { overflow: hidden; }
.gallery-img { width: 100%; height: 100%; position: relative; overflow: hidden; cursor: pointer; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-img:hover img { transform: scale(1.06); }
.gallery-img:hover .gallery-overlay { opacity: 1; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(28,28,28,0.52);
  display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity 0.3s;
}
.gallery-overlay span { font-family: var(--font-serif); color: var(--white); font-size: 1.1rem; font-style: italic; }
.gallery-placeholder-content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.gallery-placeholder-content svg { width: 60px; height: 60px; opacity: 0.35; }
.gallery-cta { text-align: center; }

/* Gallery Page */
.gallery-page { padding: 80px 0 120px; }
.gallery-filters { display: flex; justify-content: center; gap: 8px; margin-bottom: 56px; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 10px 22px; border: 1px solid var(--beige);
  background: transparent; color: var(--mid); cursor: pointer; transition: all 0.25s;
}
.filter-btn:hover, .filter-btn.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.gallery-masonry { columns: 3; column-gap: 4px; }
.gallery-masonry-item {
  break-inside: avoid; margin-bottom: 4px; position: relative;
  overflow: hidden; cursor: pointer; display: block;
}
.gallery-masonry-item .gal-inner { position: relative; overflow: hidden; }
.gallery-masonry-item .gal-img { width: 100%; height: auto; display: block; transition: transform 0.55s ease; }
.gallery-masonry-item:hover .gal-img { transform: scale(1.04); }
.gallery-masonry-item .gallery-overlay { opacity: 0; }
.gallery-masonry-item:hover .gallery-overlay { opacity: 1; }

/* =========================================
   REVIEWS
   ========================================= */
.reviews { padding: 120px 0; background: var(--cream); }
.stars-row { display: flex; align-items: center; gap: 4px; justify-content: center; margin-top: 16px; color: var(--gold); }
.stars-row svg { width: 16px; height: 16px; }
.stars-row span { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--light-text); margin-left: 8px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--cream-dark); padding: 36px; border: 1px solid var(--beige); display: flex; flex-direction: column; gap: 16px; transition: transform 0.3s, box-shadow 0.3s; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.review-card--featured { background: var(--white); border-color: var(--gold); }
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }
.review-card p { color: var(--mid); font-size: 0.95rem; line-height: 1.75; flex: 1; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 500; flex-shrink: 0; }
.reviewer-name { display: block; font-size: 0.85rem; font-weight: 500; }
.reviewer-sub { display: block; font-size: 0.7rem; color: var(--light-text); margin-top: 2px; }

/* =========================================
   BOOKING BANNER
   ========================================= */
.booking-banner {
  background:
    linear-gradient(135deg, rgba(28,28,28,0.90) 0%, rgba(28,28,28,0.72) 100%),
    url('./images/Team%20photos/_DSC0998.jpg') center 20%/cover no-repeat;
  padding: 100px 0;
}
.booking-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.booking-text h2 { color: var(--white); margin-top: 8px; }
.booking-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.65); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: flex; flex-direction: column; gap: 2px; color: var(--white); margin-bottom: 20px; }
.footer-logo span:nth-child(1) { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.3em; font-weight: 300; }
.footer-logo span:nth-child(2) { font-family: var(--font-serif); font-size: 1.4rem; letter-spacing: 0.05em; }
.footer-logo span:nth-child(3) { font-family: var(--font-sans); font-size: 0.55rem; letter-spacing: 0.35em; font-weight: 300; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-social { margin-top: 24px; display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }
.footer-links h4, .footer-contact h4 { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; font-weight: 500; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact address p { font-size: 0.875rem; line-height: 1.8; }
.footer-booking-cta { margin-top: 24px; }
.footer-bottom { padding: 24px 32px; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; opacity: 0.4; }

/* =========================================
   SERVICES PAGE
   ========================================= */
.service-categories { padding: 80px 0 120px; }
.service-category { padding: 80px 0; border-bottom: 1px solid var(--beige); }
.service-category:last-child { border-bottom: none; }
.service-category-grid { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
.service-category-meta { position: sticky; top: calc(var(--nav-h) + 40px); }
.service-category-num { font-family: var(--font-serif); font-size: 4rem; font-weight: 300; color: var(--beige); line-height: 1; margin-bottom: 8px; }
.service-category h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.service-category-desc { color: var(--mid); font-size: 0.93rem; line-height: 1.75; margin-bottom: 24px; }
.service-category-specialist {
  margin-top: 28px; padding: 20px; background: var(--cream-dark);
  border: 1px solid var(--beige); border-left: 3px solid var(--gold);
}
.service-category-specialist .sp-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light-text); display: block; margin-bottom: 6px; }
.service-category-specialist .sp-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; display: block; margin-bottom: 12px; color: var(--charcoal); }
.service-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--beige); border: 1px solid var(--beige); }
.service-item { background: var(--cream); padding: 32px 36px; display: flex; flex-direction: column; gap: 8px; transition: background 0.25s; }
.service-item:hover { background: var(--white); }
.service-item-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; }
.service-item-desc { font-size: 0.88rem; color: var(--mid); line-height: 1.65; }
.service-item-meta { display: flex; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.service-item-price { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--gold); }
.service-item-duration { font-size: 0.7rem; color: var(--light-text); letter-spacing: 0.06em; }
.pricing-note { text-align: center; margin-top: 48px; font-size: 0.8rem; color: var(--light-text); letter-spacing: 0.06em; }

/* ---- Service Accordion (within service categories) ---- */
.service-accordion { display: flex; flex-direction: column; gap: 1px; background: var(--beige); border: 1px solid var(--beige); }
.service-acc-trigger {
  width: 100%; background: var(--cream); border: none; padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  text-align: left; font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal);
  transition: background 0.2s; gap: 12px;
}
.service-acc-trigger:hover { background: var(--white); }
.service-acc-trigger.open { background: var(--cream-dark); color: var(--charcoal); }
.service-acc-chevron { width: 14px; height: 14px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.service-acc-trigger.open .service-acc-chevron { transform: rotate(180deg); }
.service-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; background: var(--white); }
.service-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 13px 24px; border-bottom: 1px solid var(--beige); transition: background 0.2s;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: var(--cream); }
.service-row-name { font-size: 0.9rem; color: var(--charcoal); line-height: 1.4; }
.service-row-meta { display: flex; gap: 16px; align-items: center; flex-shrink: 0; white-space: nowrap; }
.service-row-duration { font-size: 0.72rem; color: var(--light-text); }
.service-row-price { font-size: 0.8rem; color: var(--gold); font-weight: 500; min-width: 36px; text-align: right; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-story { padding: 100px 0; background: var(--cream); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-story-text h2 { margin-bottom: 24px; }
.about-story-text p { color: var(--mid); line-height: 1.85; font-size: 1.05rem; margin-bottom: 20px; }
.about-story-img { position: relative; }
.about-story-img-wrap { overflow: hidden; }
.about-story-img-wrap img { width: 100%; height: 520px; object-fit: cover; object-position: center top; }
.about-story-accent {
  position: absolute; bottom: -28px; left: -28px; width: 170px; height: 170px;
  background: var(--gold); color: var(--white); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px; text-align: center; padding: 24px; z-index: 2;
}
.about-story-accent strong { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 300; line-height: 1; }
.about-story-accent span { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; }

.about-values-section { padding: 100px 0; background: var(--cream-dark); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--beige); border: 1px solid var(--beige); margin-top: 64px; }
.value-card { background: var(--cream); padding: 48px 36px; display: flex; flex-direction: column; gap: 16px; transition: background 0.25s; }
.value-card:hover { background: var(--white); }
.value-card-num { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 300; color: var(--beige); line-height: 1; }
.value-card h3 { font-size: 1.2rem; }
.value-card p { color: var(--mid); font-size: 0.88rem; line-height: 1.75; }

.about-team-section { padding: 100px 0; background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.team-card { padding: 40px 32px; background: var(--cream-dark); border: 1px solid var(--beige); transition: transform 0.3s, box-shadow 0.3s, background 0.25s; text-align: center; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); background: var(--white); }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--charcoal); color: var(--gold); font-family: var(--font-serif); font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; overflow: hidden; flex-shrink: 0; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.team-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.team-card-role { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px; }
.team-card p { color: var(--mid); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.team-card-actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.team-card-ig { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light-text); padding: 8px 14px; border: 1px solid var(--beige); transition: all 0.25s; }
.team-card-ig:hover { color: var(--gold); border-color: var(--gold); }

.about-space-section { padding: 100px 0; background: var(--cream-dark); }
.space-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 64px; }
.space-item { height: 320px; overflow: hidden; position: relative; cursor: pointer; }
.space-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 0.9rem; letter-spacing: 0.1em; color: rgba(0,0,0,0.2); transition: transform 0.5s ease; }
.space-item:hover .space-placeholder { transform: scale(1.05); }
.space-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.space-item:hover img { transform: scale(1.05); }
.space-item .gallery-overlay { opacity: 0; }
.space-item:hover .gallery-overlay { opacity: 1; }

/* FAQ */
.faq-section { padding: 100px 0; background: var(--cream); }
.faq-list { max-width: 800px; margin: 64px auto 0; }
.faq-item { border-bottom: 1px solid var(--beige); }
.faq-question {
  width: 100%; background: none; border: none; padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; font-family: var(--font-serif);
  font-size: 1.15rem; color: var(--charcoal); gap: 20px;
}
.faq-icon {
  width: 28px; height: 28px; border: 1px solid var(--beige); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); transition: transform 0.35s, background 0.25s, border-color 0.25s;
  font-size: 1.1rem; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); border-color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding-bottom: 28px; color: var(--mid); font-size: 0.95rem; line-height: 1.8; }

/* =========================================
   BOOK PAGE
   ========================================= */
.book-intro { padding: 80px 0; background: var(--cream); text-align: center; }
.book-intro h2 { margin-bottom: 16px; }
.book-intro p { color: var(--mid); max-width: 580px; margin: 0 auto 40px; font-size: 1.05rem; line-height: 1.75; }
.booking-specialists { padding: 0 0 100px; background: var(--cream); }
.booking-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.booking-card {
  background: var(--cream-dark); border: 1px solid var(--beige); padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.25s;
}
.booking-card:hover { background: var(--white); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.booking-card-header { display: flex; align-items: flex-start; gap: 16px; }
.booking-card-logo { width: 52px; height: 52px; border-radius: 50%; background: var(--charcoal); color: var(--gold); font-family: var(--font-serif); font-size: 1.05rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.booking-card-title { flex: 1; }
.booking-card-title h3 { font-size: 1.25rem; margin-bottom: 4px; }
.booking-card-title span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.booking-card p { color: var(--mid); font-size: 0.92rem; line-height: 1.7; }
.booking-card-services { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.booking-card-services li { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; background: var(--cream); padding: 4px 10px; color: var(--mid); border: 1px solid var(--beige); }
.booking-card .btn-primary { align-self: flex-start; margin-top: 8px; }

.book-policy { padding: 80px 0; background: var(--cream-dark); }
.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 56px; }
.policy-item { display: flex; flex-direction: column; gap: 12px; }
.policy-icon { width: 40px; height: 40px; color: var(--gold); }
.policy-icon svg { width: 100%; height: 100%; }
.policy-item h4 { font-size: 1.1rem; font-family: var(--font-serif); }
.policy-item p { color: var(--mid); font-size: 0.9rem; line-height: 1.75; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-section { padding: 100px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 40px; }
.contact-detail { display: flex; gap: 20px; margin-bottom: 36px; align-items: flex-start; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--cream-dark); border: 1px solid var(--beige); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-text h4 { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light-text); margin-bottom: 6px; font-family: var(--font-sans); font-weight: 500; }
.contact-detail-text p, .contact-detail-text a { font-size: 0.97rem; color: var(--charcoal); line-height: 1.7; }
.contact-detail-text a:hover { color: var(--gold); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--beige); }
.hours-table td { padding: 10px 0; font-size: 0.9rem; color: var(--mid); }
.hours-table td:last-child { text-align: right; color: var(--charcoal); }
.contact-map { width: 100%; aspect-ratio: 4/3; background: var(--cream-dark); border: 1px solid var(--beige); overflow: hidden; position: relative; }
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }
.map-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--light-text); text-align: center; padding: 24px; }
.map-placeholder svg { width: 40px; height: 40px; color: var(--gold); }
.map-placeholder p { font-size: 0.85rem; }
.map-placeholder a { display: inline-block; margin-top: 4px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.contact-social-section { padding: 80px 0; background: var(--cream-dark); text-align: center; }
.social-links { display: flex; justify-content: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.social-link { display: flex; align-items: center; gap: 10px; padding: 14px 28px; border: 1px solid var(--beige); color: var(--charcoal); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.25s; }
.social-link:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.social-link svg { width: 18px; height: 18px; }

/* =========================================
   RESPONSIVE
   ========================================= */

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .about-content { padding: 80px 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-category-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-category-meta { position: static; }
}

/* ---- 900px ---- */
@media (max-width: 900px) {
  .services-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .specialists-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .g-tall { grid-row: span 1; }
  .g-wide { grid-column: span 1; }
  .gallery-img { height: 220px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .space-grid { grid-template-columns: repeat(2, 1fr); }
  .policy-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-items { grid-template-columns: 1fr; }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  /* Nav */
  #navbar { padding: 0 24px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  /* Specialist cards — main fix for right-side cut-off */
  .specialist-card { padding: 28px 20px; }
  .specialist-card--product::before { display: none; }
  .specialist-logo { width: 44px; height: 44px; font-size: 0.95rem; }
  .specialist-header h3 { font-size: 1.1rem; }
  .specialist-book { padding: 7px 13px; font-size: 0.65rem; }

  /* Service overview cards */
  .service-ov-card { padding: 32px 24px; }

  /* Service items */
  .service-item { padding: 24px 20px; }

  /* Service accordion */
  .service-acc-trigger { padding: 14px 16px; }
  .service-row { padding: 12px 16px; }
  .service-row-meta { gap: 10px; }

  /* Service category */
  .service-category { padding: 56px 0; }
  .service-category-grid { gap: 24px; }
  .service-category-num { font-size: 3rem; }
  .service-category-specialist { padding: 16px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-image { min-height: 380px; }
  .about-badge { right: 16px; bottom: -20px; }
  .about-content { padding: 60px 28px; }
  .about-story { padding: 64px 0; }
  .about-values-section { padding: 64px 0; }
  .about-team-section { padding: 64px 0; }
  .about-space-section { padding: 64px 0; }
  .about-story-accent { width: 140px; height: 140px; bottom: -20px; left: -16px; }
  .about-story-img-wrap img { height: 380px; }
  .space-item { height: 220px; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }

  /* Grids → 1 col */
  .services-overview-grid { grid-template-columns: 1fr; }
  .specialists-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-masonry { columns: 2; column-gap: 3px; }

  /* Team / booking cards */
  .team-card { padding: 28px 20px; }
  .booking-card { padding: 24px 20px; }
  .value-card { padding: 32px 24px; }

  /* Page hero */
  .page-hero { height: 45vh; min-height: 340px; }
  .page-hero-content { padding: 0 24px; }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 3.2rem); }
  .page-hero-sub { font-size: 0.9rem; }

  /* Hero */
  .hero { align-items: flex-end; }
  .hero-bg {
    background:
      linear-gradient(to bottom, rgba(8,6,4,0.35) 0%, rgba(8,6,4,0.55) 50%, rgba(8,6,4,0.90) 100%),
      url('./images/Reception/_DSC1113.jpg') center 40%/cover no-repeat;
  }
  .hero-content { padding: 0 24px 72px; max-width: 100%; }
  .hero-title { font-size: clamp(3.4rem, 14vw, 5rem); }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-scroll { right: 20px; bottom: 28px; }

  /* Section paddings */
  .faq-section { padding: 64px 0; }
  .book-intro { padding: 56px 0; }
  .booking-specialists { padding: 0 0 64px; }
  .book-policy { padding: 64px 0; }
  .contact-section { padding: 64px 0; }
  .contact-social-section { padding: 64px 0; }
  .booking-banner { padding: 72px 0; }
  .booking-inner { flex-direction: column; text-align: center; }
  .booking-actions { justify-content: center; flex-direction: column; align-items: center; }
  .booking-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Footer */
  .footer { padding: 56px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px 24px; }

  /* Social links */
  .social-link { padding: 12px 16px; font-size: 0.7rem; }
  .social-links { gap: 8px; }

  /* FAQ */
  .faq-question { font-size: 1.05rem; }
}

/* ---- 540px ---- */
@media (max-width: 540px) {
  .container { padding: 0 16px; }

  /* Section paddings */
  .intro, .services-overview, .gallery, .reviews, .services { padding: 64px 0; }
  .about-content { padding: 44px 20px; }
  .section-header { margin-bottom: 28px; }
  .service-category { padding: 40px 0; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .gallery-img { height: 200px; }

  /* Hide decorative overflowing elements */
  .about-story-accent { display: none; }

  /* Specialist header — wrap on tiny screens */
  .specialist-header { flex-wrap: wrap; gap: 10px; }
  .specialist-book { order: 3; margin-left: auto; }

  /* Service accordion — stack price below name */
  .service-row { flex-direction: column; align-items: flex-start; gap: 3px; }
  .service-row-meta { white-space: normal; flex-direction: row; gap: 12px; }
  .service-row-name { font-size: 0.85rem; }
  .service-acc-trigger { padding: 13px 14px; font-size: 0.64rem; letter-spacing: 0.14em; }
  .service-row { padding: 11px 14px; }

  /* Stats */
  .stat { padding: 28px 20px; }
  .stat-num { font-size: 2.4rem; }

  /* Page hero */
  .page-hero h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .page-hero-sub { font-size: 0.85rem; margin-top: 12px; }
  .breadcrumb { font-size: 0.6rem; margin-bottom: 14px; }

  /* About story */
  .about-story-img-wrap img { height: 260px; }
  .space-grid { grid-template-columns: 1fr; }
  .space-item { height: 200px; }

  /* Team */
  .team-card { padding: 24px 16px; }
  .team-avatar { width: 80px; height: 80px; }

  /* Contact */
  .contact-detail { gap: 14px; }
  .contact-detail-icon { width: 36px; height: 36px; flex-shrink: 0; }
  .contact-detail-icon svg { width: 16px; height: 16px; }

  /* FAQ */
  .faq-question { font-size: 0.98rem; padding: 22px 0; }
  .faq-answer-inner { font-size: 0.9rem; }

  /* Footer */
  .footer { padding: 44px 0 0; }
  .footer-bottom { padding: 18px 16px; }

  /* Scroll top */
  .scroll-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }

  /* Service overview cards */
  .service-ov-card { padding: 28px 20px; }

  /* Review cards */
  .review-card { padding: 24px 20px; }

  /* Booking banner */
  .booking-banner { padding: 56px 0; }
  .booking-text h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* Mobile menu */
  .mobile-menu a { font-size: 1.7rem; }
}
