@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ==============================================
   MUSKOKA DETAIL — LUXURY DESIGN SYSTEM
   ============================================== */
:root {
  --black:       #070708;
  --dark:        #111112;
  --dark-2:      #18181a;
  --dark-3:      #222224;
  --dark-4:      #2a2a2d;
  --gold:        #c0312e;
  --gold-light:  #d95f5c;
  --gold-dark:   #8c1c1c;
  --white:       #ffffff;
  --off-white:   #f4efe6;
  --text-light:  #c8c3bb;
  --text-muted:  #7a7672;
  --border:      rgba(192,49,46,0.18);
  --border-sub:  rgba(255,255,255,0.07);
  --nav-h:       72px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==============================================
   RESET & BASE
   ============================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ==============================================
   LAYOUT
   ============================================== */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

/* ==============================================
   TYPOGRAPHY UTILITIES
   ============================================== */
.overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.gold-line {
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 14px auto 28px;
}
.gold-line-left {
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 14px 0 28px;
}

/* ==============================================
   NAVBAR
   ============================================== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.45s var(--ease),
              box-shadow 0.45s var(--ease),
              backdrop-filter 0.45s;
}
.navbar.scrolled {
  background: rgba(7, 7, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.navbar-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.navbar-nav a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  padding: 8px 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 32px);
  height: 1px;
  background: var(--gold);
  transition: transform 0.25s var(--ease);
  transform-origin: center;
}
.navbar-nav a:hover,
.navbar-nav a.active { color: var(--white); }
.navbar-nav a:hover::after,
.navbar-nav a.active::after { transform: translateX(-50%) scaleX(1); }

.btn-book-nav {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  font-size: 11px !important;
  letter-spacing: 0.13em !important;
  margin-left: 10px;
  transition: background 0.2s !important;
}
.btn-book-nav::after { display: none !important; }
.btn-book-nav:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ==============================================
   HERO — FULL VIEWPORT
   ============================================== */
.hero-full {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: kenBurns 22s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.0) translateX(0); }
  to   { transform: scale(1.09) translateX(-1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(7,7,8,0.18) 0%,
    rgba(7,7,8,0.52) 55%,
    rgba(7,7,8,0.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 860px;
}
.hero-content .overline { margin-bottom: 20px; }
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6.5vw, 82px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-content p {
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(192,49,46,0.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 0.7; }
}

/* ==============================================
   PAGE HERO (shorter)
   ============================================== */
.hero-page {
  position: relative;
  width: 100%;
  height: 46vh;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--nav-h);
}
.hero-page .hero-bg { animation: none; }
.hero-page .hero-content h1 {
  font-size: clamp(30px, 5vw, 62px);
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.25s, transform 0.2s;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 1px solid rgba(255,255,255,0.35);
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.25s, color 0.25s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ==============================================
   TRUST BAR
   ============================================== */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.trust-icon { font-size: 16px; color: var(--gold); }

/* ==============================================
   SECTION HEADERS
   ============================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 20px auto 0;
  line-height: 1.75;
  font-weight: 300;
}

/* ==============================================
   3D FLIP CARDS
   ============================================== */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.flip-card {
  height: 360px;
  perspective: 1100px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.72s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
/* FRONT */
.flip-front { background: var(--dark-3); }
.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.72s var(--ease);
}
.flip-card:hover .flip-front img,
.flip-card.flipped .flip-front img { transform: scale(1.06); }
.flip-front-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,8,0.92) 0%, rgba(7,7,8,0.12) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.flip-front-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
}
.flip-front-overlay .flip-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}
/* FRONT — icon variant (no photo) */
.flip-front-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--dark-3);
  position: relative;
}
.flip-front-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(192,49,46,0.10) 0%, transparent 65%);
}
.flip-front-icon .flip-icon-big {
  font-size: 56px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.flip-front-icon h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.flip-front-icon .flip-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
/* BACK */
.flip-back {
  background: var(--dark-3);
  border: 1px solid var(--border);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 26px;
}
.flip-back::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}
.flip-back h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.flip-back p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 20px;
  flex: 1;
}
.flip-back .flip-price-big {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
}
.flip-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 12px 22px;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
  align-self: flex-start;
  border: none;
  cursor: pointer;
}
.flip-back-btn:hover { background: var(--gold-light); }

/* ==============================================
   SEE ALL SERVICES CARD
   ============================================== */
.see-all-card {
  display: block;
  height: 360px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
  text-decoration: none;
}
.see-all-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.see-all-card:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.see-all-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 32px 28px;
}
.see-all-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  transition: transform 0.25s var(--ease);
}
.see-all-card:hover .see-all-arrow {
  transform: translate(4px, -4px);
}
.see-all-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.see-all-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.see-all-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 200px;
}

/* ==============================================
   FILTER TABS
   ============================================== */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
}
.filter-tab {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 16px 22px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.filter-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.filter-tab:hover { color: rgba(255,255,255,0.7); }
.filter-tab.active { color: var(--gold); }
.filter-tab.active::after { transform: scaleX(1); }

/* ==============================================
   PROCESS STEPS
   ============================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.process-step {
  background: var(--dark-2);
  padding: 48px 28px;
  text-align: center;
  transition: background 0.3s;
}
.process-step:hover { background: var(--dark-3); }
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 10px;
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==============================================
   GALLERY STRIP (legacy, kept for other pages)
   ============================================== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }

/* ==============================================
   BEFORE / AFTER SLIDERS
   ============================================== */
.ba-section {
  background: var(--dark);
  padding: 0;
}
.ba-header {
  text-align: center;
  padding: 80px 24px 52px;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.ba-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
/* Before = bottom layer, always full width */
.ba-before {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* After = top layer, clipped to left portion */
.ba-after {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}
.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
/* Divider line */
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.9);
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
  pointer-events: none;
}
/* Drag handle circle */
.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Before / After labels */
.ba-label {
  position: absolute;
  bottom: 14px;
  z-index: 4;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(7,7,8,0.62);
  padding: 5px 12px;
  pointer-events: none;
}
.ba-label-after  { left: 14px; }
.ba-label-before { right: 14px; }
/* Subtle hover hint on the handle */
.ba-slider:hover .ba-handle-circle {
  background: var(--gold);
}
.ba-slider:hover .ba-handle-circle svg path {
  stroke: #fff;
}
@media (max-width: 768px) {
  .ba-grid { grid-template-columns: 1fr; }
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,7,8,0.38);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 24px;
  color: var(--gold);
}

/* ==============================================
   TESTIMONIALS
   ============================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
/* Google review header */
.google-review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.google-g-logo { flex-shrink: 0; }
.google-stars-row { display: flex; gap: 2px; }
.gstar { color: #fbbc05; font-size: 15px; }

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.72;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==============================================
   CTA BAND
   ============================================== */
.cta-band {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 88px 32px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-weight: 300;
}

/* ==============================================
   ABOUT PAGE
   ============================================== */
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.2vw, 36px);
  font-style: italic;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 52px;
}
.pull-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  color: var(--gold);
  opacity: 0.28;
  line-height: 0;
  position: absolute;
  top: 28px; left: 0;
}
.pull-quote::after {
  content: '\201D';
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  color: var(--gold);
  opacity: 0.28;
  line-height: 0;
  position: absolute;
  bottom: -18px; right: 0;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -18px; right: -18px;
  width: 100px; height: 100px;
  border: 1.5px solid var(--gold);
  opacity: 0.5;
  pointer-events: none;
}
.about-text .overline { margin-bottom: 10px; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.25;
}
.about-text p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.value-item {
  text-align: center;
  padding: 40px 22px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}
.value-item:hover {
  border-color: var(--gold);
  background: var(--dark-2);
}
.value-icon { font-size: 34px; margin-bottom: 14px; }
.value-icon-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(192,49,46,0.12);
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.value-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
}
.value-item p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==============================================
   CONTACT PAGE
   ============================================== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}
.contact-left {
  background: var(--dark-2);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.contact-right {
  background: var(--dark-3);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-phone-cta {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin: 16px 0 12px;
  display: block;
  transition: color 0.2s;
}
.contact-phone-cta:hover { color: var(--gold-light); }
.contact-email-cta {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
  display: block;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.contact-email-cta:hover { color: var(--gold); }
.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.ci-icon { font-size: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.ci-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(192,49,46,0.12);
  border: 1px solid var(--border);
  padding: 4px 8px;
  flex-shrink: 0;
  margin-top: 2px;
  white-space: nowrap;
}
.contact-hours-block { }
.contact-hours-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-muted); }
.hours-time { color: var(--white); font-weight: 500; }
.appt-note {
  margin-top: 20px;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 8px 16px;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto 52px;
  padding: 0 40px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand-row img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: contain;
}
.footer-brand-row span {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--white);
  font-weight: 600;
}
.footer-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
  font-weight: 300;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13.5px; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }

/* ==============================================
   SCROLL REVEAL ANIMATIONS
   ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ==============================================
   BOOKING PAGE
   ============================================== */
.book-page-hero {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: calc(var(--nav-h) + 56px) 24px 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.book-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.book-page-hero p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 300;
}
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  gap: 0;
}
.step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  transition: color 0.3s;
}
.step.active { color: var(--gold); }
.step.done   { color: rgba(255,255,255,0.5); }
.step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.step.active .step-num { background: var(--gold); color: var(--white); border-color: var(--gold); }
.step.done .step-num   { background: rgba(192,49,46,0.18); border-color: var(--gold); color: var(--gold); }
.step-line { width: 36px; height: 1px; background: var(--border); margin: 0 4px; flex-shrink: 0; }
.booking-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 48px 24px 100px;
}
.step-panel { display: none; }
.step-panel.active { display: block; }
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.step-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 36px;
}
.option-card {
  background: var(--dark-2);
  border: 2px solid var(--border);
  padding: 32px 22px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.option-card:hover { border-color: rgba(192,49,46,0.42); background: var(--dark-3); }
.option-card.selected { border-color: var(--gold); background: var(--dark-3); }
.option-card .icon { font-size: 38px; margin-bottom: 12px; }
.option-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 6px;
}
.option-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.service-card {
  background: var(--dark-2);
  border: 2px solid var(--border);
  padding: 22px 18px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.service-card:hover { border-color: rgba(192,49,46,0.42); background: var(--dark-3); }
.service-card.selected { border-color: var(--gold); background: var(--dark-3); }
.service-card .svc-icon { font-size: 28px; margin-bottom: 10px; }
.svc-icon-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(192,49,46,0.12);
  border: 1px solid var(--border);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.service-card h3 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.service-card .svc-price { font-size: 12px; color: var(--gold); font-weight: 600; }
.service-card .svc-tag {
  display: inline-block; font-size: 9px; font-weight: 700;
  background: var(--gold); color: var(--white);
  padding: 3px 8px; margin-bottom: 8px;
  letter-spacing: 0.07em; text-transform: uppercase;
}
.packages-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pkg-card {
  background: var(--dark-2);
  border: 2px solid var(--border);
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: border-color 0.25s, background 0.25s;
}
.pkg-card:hover { border-color: rgba(192,49,46,0.42); background: var(--dark-3); }
.pkg-card.selected { border-color: var(--gold); background: var(--dark-3); }
.pkg-card.popular { border-color: rgba(192,49,46,0.32); }
.pkg-left { flex: 1; }
.pkg-left h3 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.pkg-left p  { font-size: 12.5px; color: var(--text-muted); }
.pkg-right { text-align: right; flex-shrink: 0; margin-left: 16px; }
.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--gold);
}
.pkg-popular {
  font-size: 9px; font-weight: 700;
  background: var(--gold); color: var(--white);
  padding: 3px 8px; display: inline-block; margin-top: 5px;
  letter-spacing: 0.07em; text-transform: uppercase;
}
.pkg-radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0; margin-right: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.pkg-card.selected .pkg-radio { border-color: var(--gold); }
.pkg-radio-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); display: none; }
.pkg-card.selected .pkg-radio-dot { display: block; }
.contact-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 10px; font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.13em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 13px 15px;
  font-size: 14px; color: var(--white);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark-2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122,118,114,0.6); }
.summary-box {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 32px;
}
.summary-box h3 {
  font-size: 10px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13.5px;
}
.summary-row:last-child { border-bottom: none; padding-top: 16px; margin-top: 4px; }
.summary-row .label  { color: var(--text-muted); }
.summary-row .value  { color: var(--white); font-weight: 600; }
.summary-row.total .label { color: var(--white); font-size: 15px; font-weight: 700; }
.summary-row.total .value {
  font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 22px; font-weight: 700;
}
.step-nav {
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; margin-top: 8px;
}
.btn-back {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 13px 26px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-back:hover { border-color: var(--white); color: var(--white); }
.btn-next {
  background: var(--gold);
  border: none;
  color: var(--white);
  padding: 14px 36px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  flex: 1; max-width: 220px;
}
.btn-next:hover { background: var(--gold-light); }
.btn-next:disabled { opacity: 0.3; cursor: not-allowed; }
.btn-submit {
  background: var(--gold);
  border: none; color: var(--white);
  padding: 17px 40px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: background 0.2s; width: 100%;
}
.btn-submit:hover { background: var(--gold-light); }
.section-divider {
  display: flex; align-items: center; gap: 12px; margin: 24px 0 14px;
}
.section-divider span {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
}
.section-divider::before,
.section-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.success-screen { text-align: center; padding: 80px 24px; }
.success-screen .check { font-size: 68px; margin-bottom: 22px; }
.success-screen h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700; color: var(--gold); margin-bottom: 14px;
}
.success-screen p {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.72; max-width: 480px; margin: 0 auto 32px;
}
.success-screen .contact-info {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 24px 32px; display: inline-block; text-align: left;
}
.success-screen .contact-info p { margin: 0; font-size: 13.5px; color: var(--text-muted); }
.success-screen .contact-info strong { color: var(--white); }
.location-mobile .in-house-only { display: none; }

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
  .contact-split { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 44px; }
  .about-split.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .navbar-nav {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(7,7,8,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 32px;
    gap: 0;
    border-bottom: 1px solid var(--border);
  }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { padding: 13px 4px; width: 100%; border-bottom: 1px solid var(--border); }
  .navbar-nav a::after { display: none; }
  .btn-book-nav { margin-left: 0 !important; margin-top: 18px; text-align: center; width: 100%; display: block; }
  .nav-toggle { display: flex; }
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
  .contact-left, .contact-right { padding: 56px 28px; }
  .flip-grid { grid-template-columns: repeat(2, 1fr); }
  .container, .container-wide { padding: 0 20px; }
  .about-split { padding: 0 20px; }
}
@media (max-width: 600px) {
  .option-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .flip-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap img { height: 320px; }
  .about-img-wrap::after { display: none; }
  .footer-grid { padding: 0 20px; }
  .footer-bottom { padding: 20px 20px 0; }
}
