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

:root {
  --cream:   #f5f0e8;
  --cream2:  #ede8de;
  --dark:    #1a1a14;
  --dark2:   #2a2a1e;
  --olive:   #6b6b4a;
  --gold:    #c8a96e;
  --gold-lt: #e8d5a8;
  --text:    #2c2c1e;
  --text-lt: #6b6b5a;
  --white:   #ffffff;
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Jost', 'Helvetica Neue', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);

  /* ── Type scale — change these to resize everything at once ── */
  --fs-h1:   clamp(6.4rem, 18vw, 16rem);
  --fs-h2:   clamp(3rem, 4vw, 3.8rem);
  --fs-h3:   clamp(1.5rem, 2.5vw, 2.2rem);
  --fs-body: 1.6rem;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream2);
  overflow-x: hidden;
}

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--cream2); }
html::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: default;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─────────────────────────────────────────────
   HEADING HIERARCHY
───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: var(--fs-h1); line-height: 1; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p  { font-size: var(--fs-body); line-height: 1.5; }
h4 {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}
h5 {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
}
h6 {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─────────────────────────────────────────────
   CUSTOM SCROLLBAR
───────────────────────────────────────────── */
.custom-scrollbar-track {
  position: fixed;
  right: 0; top: 0;
  width: 6px; height: 100vh;
  background: rgba(168, 156, 120, 0.15);
  z-index: 9999;
}
.custom-scrollbar-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: background 0.2s;
  min-height: 40px;
}
.custom-scrollbar-track:hover .custom-scrollbar-thumb { background: #b8945a; }

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, padding 0.4s;
}
nav:not(.scrolled) .nav-logo { color: var(--white); }
nav:not(.scrolled) .nav-links a { color: var(--white); }
nav:not(.scrolled) .nav-links a:hover { color: rgba(255,255,255,0.7); }
nav:not(.scrolled) .nav-cta {
  background: var(--white) !important;
  color: var(--dark) !important;
}
nav:not(.scrolled) .nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}
nav:not(.scrolled) .nav-hamburger span { background: var(--white); }

nav.scrolled {
  background: rgba(245, 240, 232, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 48px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.25s ease;
}
.nav-logo img.logo-swapping { opacity: 0; }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease-out-expo);
}
.nav-links a:hover::after { right: 0; }
.nav-links a:hover { color: var(--olive); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--dark);
  color: var(--cream) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--dark) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ─────────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
}
.mobile-menu-cta {
  margin-top: 16px;
  padding: 14px 40px;
  background: var(--dark);
  color: var(--cream) !important;
  font-family: var(--ff-sans) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─────────────────────────────────────────────
   HERO — SWIPE OPEN REVEAL
───────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-curtain {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 10;
  pointer-events: none;
}
.hero-curtain-left,
.hero-curtain-right {
  flex: 1;
  background: var(--cream);
  transition: transform 1.2s var(--ease-in-out-quart) 0.3s;
  will-change: transform;
}
.hero-curtain-left  { transform-origin: left center; }
.hero-curtain-right { transform-origin: right center; }
body.hero-open .hero-curtain-left  { transform: translateX(-101%); }
body.hero-open .hero-curtain-right { transform: translateX(101%); }

.hero-bg {
  position: absolute;
  left: 0; right: 0;
  top: -15%; height: 130%;
  background: url('../assets/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.06) translateY(0px);
  transition: transform 2s var(--ease-out-expo) 0.5s;
  will-change: transform;
}
body.hero-open .hero-bg { transform: scale(1) translateY(var(--parallax-y, 0px)); }

.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(20, 18, 10, 0.45) 0%,
    rgba(20, 18, 10, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
  max-width: 1200px;
}

.hero-eyebrow {
  font-family: var(--ff-sans);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-expo) 1.4s, transform 0.8s var(--ease-out-expo) 1.4s;
}
body.hero-open .hero-eyebrow { opacity: 1; transform: translateY(0); }

.hero-title {
  font-family: var(--ff-serif);
  font-weight: 400;
  color: var(--white);
  line-height: 0.95;
  margin: 20px 0 28px;
}
.hero-title-word {
  display: block;
  overflow: hidden;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}
.hero-title-word span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-out-expo);
}
.hero-title-word:nth-child(1) span { transition-delay: 1.5s; }
.hero-title-word:nth-child(2) span { transition-delay: 1.65s; }
body.hero-open .hero-title-word span { transform: translateY(0); }
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: 2rem;
  font-family: var(--ff-sans);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 5rem auto 40px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-expo) 1.9s, transform 0.8s var(--ease-out-expo) 1.9s;
}
body.hero-open .hero-sub { opacity: 1; transform: translateY(0); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s var(--ease-out-expo) 2.1s,
    transform 0.8s var(--ease-out-expo) 2.1s,
    background 0.3s,
    border-color 0.3s;
}
body.hero-open .hero-cta { opacity: 1; transform: translateY(0); }
.hero-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.hero-cta-arrow {
  width: 20px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s;
}
.hero-cta-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.hero-cta:hover .hero-cta-arrow { width: 30px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out-expo) 2.4s;
}
body.hero-open .hero-scroll-hint { opacity: 1; }
.hero-scroll-hint span {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-scroll-line {
  width: 2px; height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold-lt);
  animation: scrollLine 1.8s var(--ease-in-out-quart) infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
#aboutUs {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 96px);
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 30px;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  z-index: 2;
  transform: translateX(0);
  transition: transform 1.2s var(--ease-in-out-quart) 0.2s;
  transform-origin: right center;
}
.about-image-wrap.revealed::before {
  transform: translateX(101%);
}
.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 120px; height: 120px;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo) 1.2s;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}
.about-image-wrap.revealed .about-image-badge {
  opacity: 1;
}
.about-image-badge span {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  font-style: italic;
}

.about-heading {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 28px;
}
.about-heading em { font-style: italic; color: var(--olive); }
.about-body {
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-lt);
  max-width: 420px;
  margin-bottom: 36px;
}
.about-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin-bottom: 36px;
}
.about-stats { display: flex; gap: 40px; }
.about-stat-num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}
.about-stat-label {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-lt);
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   MARQUEE RIBBON
───────────────────────────────────────────── */
.marquee-section {
  background: var(--dark);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  flex-shrink: 0;
}
.marquee-item span {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   QUOTE SECTION
───────────────────────────────────────────── */
.quote-section {
  padding: clamp(80px, 10vw, 120px) clamp(24px, 8vw, 120px);
  background: var(--cream2);
  text-align: center;
}
.quote-mark {
  font-family: var(--ff-serif);
  font-size: 7rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 20px;
}
.quote-text {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  max-width: 960px;
  margin: 0 auto 24px;
}
.quote-word {
  display: inline;
  color: rgba(26, 26, 20, 0.15);
  transition: color 0.25s ease;
}
.quote-word.lit {
  color: var(--dark);
}
.quote-attr {
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─────────────────────────────────────────────
   SHARED SECTION COMPONENTS
───────────────────────────────────────────── */
.section-header { margin-bottom: clamp(48px, 6vw, 80px); }
.section-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  max-width: 900px;
}
.section-sub {
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-lt);
  max-width: 680px;
  margin-top: 20px;
}

/* ─────────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────────── */
#ourServices {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 96px);
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.09);
  background: #f4f1f1;
  min-width: 0;
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.service-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  border-radius: 30px 30px 0 0;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(to top, rgba(20,18,10,0.8) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
}
.overlay-inner {
  margin-top: 20px;
}
.service-card-tag {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.service-card-name {
  font-family: var(--ff-serif);
  font-size: clamp(1.32rem, 1.3vw, 1.6rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.overlay-price {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 12px;
  margin-top: 15px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.service-card-desc {
  font-size: clamp(1.02rem, 1.1vw, 1.4rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 0.25s linear, opacity 0.2s var(--ease-out-expo), transform 0.25s var(--ease-out-expo);
}
.service-card:hover .service-card-desc { max-height: 130px; opacity: 1; transform: translateY(0); }
.service-card-body {
  padding: 28px 28px 0;
  flex: 1;
}
.service-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 4px;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.service-price-row:first-child { border-top: none; }
.price-name {
  flex: 1;
  min-width: 140px;
  overflow: hidden;
  white-space: nowrap;
  font-size: clamp(0.96rem, 0.95vw, 1.4rem);
  font-weight: 400;
  color: var(--text-lt);
}

.price-amt { margin-left: auto; }
.price-amt {
  flex-shrink: 0;
  font-family: var(--ff-serif);
  font-size: clamp(0.9rem, 0.85vw, 1.15rem);
  font-weight: 400;
  color: var(--dark);
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  padding: 3px 14px;
  white-space: nowrap;
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: 1rem;
  padding: 20px 28px 28px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
}
.service-card-cta::after {
  content: '';
  position: absolute;
  bottom: 24px; left: 28px; right: calc(100% - 28px);
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease-out-expo);
}
.service-card:hover .service-card-cta::after { right: 28px; }

/* ─────────────────────────────────────────────
   BENEFITS SECTION
───────────────────────────────────────────── */
#resultAndBenefit {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 96px);
  background: var(--dark2);
}
#resultAndBenefit .section-label { color: var(--gold); }
#resultAndBenefit .section-heading { color: var(--white); }

.benefits-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.benefit-tab {
  flex: 1;
  text-align: center;
  padding: 14px 32px;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.3s, border-color 0.3s;
}
.benefit-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.benefit-tab:hover { color: rgba(255,255,255,0.75); }

.benefit-panel {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.benefit-panel.active {
  display: grid;
  animation: panelFadeIn 0.45s var(--ease-out-expo);
}
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.benefit-item {
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s, background 0.3s;
}
.benefit-item:hover {
  border-color: rgba(200, 169, 110, 0.3);
  background: rgba(200, 169, 110, 0.04);
}
.benefit-num {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
}
.benefit-title {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.benefit-desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

/* ─────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────── */
#Gallery {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 96px);
  background: var(--cream);
}
.gallery-waterfall {
  display: flex;
  gap: 20px;
  height: 80vh;
  overflow: hidden;
  margin-top: 64px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.gallery-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.gallery-item {
  overflow: hidden;
  margin-bottom: 20px;
  cursor: default;
  position: relative;
  flex-shrink: 0;
  border-radius: 12px;
}
.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.gallery-col--1 .gallery-item:nth-child(1) img,
.gallery-col--1 .gallery-item:nth-child(5) img { aspect-ratio: 3/4; }
.gallery-col--1 .gallery-item:nth-child(2) img,
.gallery-col--1 .gallery-item:nth-child(6) img { aspect-ratio: 4/3; }
.gallery-col--1 .gallery-item:nth-child(3) img,
.gallery-col--1 .gallery-item:nth-child(7) img { aspect-ratio: 2/3; }
.gallery-col--1 .gallery-item:nth-child(4) img,
.gallery-col--1 .gallery-item:nth-child(8) img { aspect-ratio: 1/1; }

.gallery-col--2 .gallery-item:nth-child(1) img,
.gallery-col--2 .gallery-item:nth-child(5) img { aspect-ratio: 1/1; }
.gallery-col--2 .gallery-item:nth-child(2) img,
.gallery-col--2 .gallery-item:nth-child(6) img { aspect-ratio: 2/3; }
.gallery-col--2 .gallery-item:nth-child(3) img,
.gallery-col--2 .gallery-item:nth-child(7) img { aspect-ratio: 4/3; }
.gallery-col--2 .gallery-item:nth-child(4) img,
.gallery-col--2 .gallery-item:nth-child(8) img { aspect-ratio: 3/4; }

.gallery-col--3 .gallery-item:nth-child(1) img,
.gallery-col--3 .gallery-item:nth-child(5) img { aspect-ratio: 4/5; }
.gallery-col--3 .gallery-item:nth-child(2) img,
.gallery-col--3 .gallery-item:nth-child(6) img { aspect-ratio: 3/4; }
.gallery-col--3 .gallery-item:nth-child(3) img,
.gallery-col--3 .gallery-item:nth-child(7) img { aspect-ratio: 1/1; }
.gallery-col--3 .gallery-item:nth-child(4) img,
.gallery-col--3 .gallery-item:nth-child(8) img { aspect-ratio: 2/3; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,18,10,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-plus { display: none; }
.gallery-item:hover .gallery-plus { opacity: 1; transform: scale(1); }

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.testimonials-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream2);
  overflow: hidden;
}
.testimonials-header {
  padding: 0 clamp(24px, 6vw, 96px);
  margin-bottom: 60px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}
.testimonial-card {
  flex-shrink: 0;
  width: 340px;
  padding: 36px;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-star  { width: 14px; height: 14px; fill: var(--gold); }
.testimonial-text {
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-lt);
  margin-bottom: 20px;
  flex: 1;
}
.testimonial-author {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
}

/* ─────────────────────────────────────────────
   BOOKING SECTION
───────────────────────────────────────────── */
.booking-section {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 96px);
  background: url('../assets/images/booking-bg.webp') center/cover no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 10, 0.3);
}
.booking-text,
.booking-methods { position: relative; z-index: 1; }
.booking-text .section-label  { color: var(--gold); }
.booking-text .section-heading { color: var(--white); max-width: 600px; }
.booking-text .section-sub     { color: rgba(255,255,255,0.7); }
.booking-hours {
  color: #fff;
  font-weight: 300;
  margin-top: 24px;
  line-height: 1.7;
}
.booking-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.booking-method {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5vw;
  cursor: pointer;
  transition: border-color 0.3s;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
}
.booking-method::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #405E38;
  mix-blend-mode: multiply;
  opacity: 0.25;
  filter: blur(3px);
  border-radius: 1.5vw;
}
.booking-method > * { position: relative; z-index: 1; }
.booking-method:hover { border-color: var(--gold); }
.booking-method-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.booking-method-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 96px) 40px;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  height: 100px;
  width: auto;
  display: block;
}
.footer-brand-name {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 81px; height: 81px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.3s, color 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.footer-contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ─────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }


.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

.stagger-children > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 2.2s var(--ease-out-expo), transform 2.2s var(--ease-out-expo);
}
.stagger-children.revealed > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.36s; }
.stagger-children.revealed > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.72s; }
.stagger-children.revealed > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 1.08s; }
.stagger-children.revealed > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 1.44s; }
.stagger-children.revealed > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 1.80s; }

/* ─────────────────────────────────────────────
   RESPONSIVE — 1024px
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .benefit-panel.active { grid-template-columns: 1fr 1fr; }
  .gallery-waterfall { height: 70vh; }
  .gallery-item { margin-bottom: 14px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 768px
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  #aboutUs {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px;
  }
  .about-image-wrap { aspect-ratio: 4/3; max-height: 400px; }
  .about-image-badge { width: 90px; height: 90px; bottom: 16px; right: 16px; }
  .about-body { max-width: 100%; }
  .footer-brand-desc { max-width: 100%; }

  .services-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-card-img { aspect-ratio: 21/18; }
  .service-card-desc { max-height: 160px; opacity: 1; transform: translateY(0); font-size: 1.4rem; }
  .service-card-name { font-size: 1.6rem; }
  .price-name { font-size: 1.2rem; }
  .price-amt { font-size: 0.95rem; }

  .benefit-panel.active { grid-template-columns: 1fr; }
  .benefits-tabs { flex-direction: column; border-bottom: none; }
  .benefit-tab { padding: 14px 20px; text-align: left; border-bottom: none; border-left: 2px solid transparent; margin-bottom: 0; }
  .benefit-tab.active { border-left-color: var(--gold); border-bottom-color: transparent; }

  .gallery-waterfall { height: 60vh; }
  .gallery-item { margin-bottom: 10px; }

  .booking-section { grid-template-columns: 1fr; gap: 48px; }
  .booking-methods { grid-template-columns: 1fr 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .quote-section { padding: 60px 24px; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 480px
───────────────────────────────────────────── */
@media (max-width: 768px) {
  .gallery-col--3 { display: none; }
}

@media (max-width: 480px) {
  .booking-methods { grid-template-columns: 1fr; }
  .gallery-waterfall { height: 50vh; }
  .hero-scroll-hint { display: none; }
  .hero-content { padding-top: 80px; padding-bottom: 32px; }
  .service-card-desc { font-size: 1.15rem; max-height: 180px; }
}
