/* ═══════════════════════════════════════════════
   1 HOUR IN HEAVEN — Dark Luxury Spa
   Design: Deep noir + warm gold, Cormorant serif
   ═══════════════════════════════════════════════ */

:root {
  --bg-0:   #09070A;
  --bg-1:   #0D0B07;
  --bg-2:   #131009;
  --bg-3:   #1A160F;
  --bg-4:   #221D15;
  --bg-5:   #2B2419;

  --gold:       #C9A84C;
  --gold-hi:    #E4C87A;
  --gold-lo:    #8A6C2A;
  --gold-mist:  rgba(201,168,76,.1);
  --gold-faint: rgba(201,168,76,.05);

  --t0: #F5EADA;
  --t1: #E4D3B8;
  --t2: #B0A090;
  --t3: #6E6256;
  --t4: #3D3630;

  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Raleway', 'Helvetica Neue', sans-serif;

  --sp: clamp(60px, 8vw, 100px);
  --ease: cubic-bezier(.22,.68,0,1.2);
}

/* ───────────── RESET ───────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--t1);
  font-family: var(--font-b);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ───────────── BUTTONS ───────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--bg-0);
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background .28s ease, color .28s ease, border-color .28s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-0);
  transform: translateX(-101%);
  transition: transform .32s ease;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { color: var(--gold); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--t2);
  font-family: var(--font-b);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .09em;
  padding: 14px 24px;
  border: 1px solid rgba(201,168,76,.22);
  cursor: pointer;
  transition: border-color .25s, color .25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-hi); }

/* ───────────── FADE ANIMATION ───────────── */
.fade-watch {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-watch.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background .3s ease, box-shadow .3s ease;
}
.navbar.scrolled {
  background: rgba(9,7,10,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201,168,76,.12);
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 36px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t2);
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--gold-hi); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.btn-nav-book {
  background: var(--gold);
  color: var(--bg-0);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 9px 18px;
  transition: background .22s;
}
.btn-nav-book:hover { background: var(--gold-hi); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .73rem;
  color: var(--t2);
  letter-spacing: .05em;
  transition: color .2s;
}
.nav-phone svg { color: var(--gold); flex-shrink: 0; }
.nav-phone:hover { color: var(--gold-hi); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero backgrounds */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-glow-warm {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 65%;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(160,80,8,.38) 0%,
    rgba(100,50,5,.18) 35%,
    transparent 70%);
}
.hero-glow-accent {
  position: absolute;
  top: 25%; right: 18%;
  width: 35%; height: 40%;
  background: radial-gradient(ellipse,
    rgba(201,168,76,.07) 0%,
    transparent 65%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(9,7,10,.6) 100%);
}
.hero-texture {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Hero layout */
.hero-layout {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 36px;
  width: 100%;
  padding-top: 72px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 64px;
}

/* Hero content */
.hero-content { max-width: 580px; }

.hero-pre {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: heroUp .9s ease .1s both;
}
.pre-rule {
  display: block;
  height: 1px; width: 36px;
  background: var(--gold);
  opacity: .5;
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(5rem, 10.5vw, 9.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: .9;
  letter-spacing: -.015em;
  color: var(--t0);
  margin-bottom: 26px;
  animation: heroUp .9s ease .25s both;
}

.hero-ornament {
  margin-bottom: 26px;
  animation: heroUp .9s ease .35s both;
}

.hero-desc {
  font-size: .93rem;
  color: var(--t2);
  line-height: 1.85;
  max-width: 430px;
  margin-bottom: 40px;
  animation: heroUp .9s ease .45s both;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroUp .9s ease .6s both;
}

/* Hero emblem */
.hero-emblem {
  justify-self: center;
  animation: heroFade 1.2s ease .5s both;
}
.emblem-ring-outer {
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.18);
  padding: 14px;
  background: radial-gradient(circle, rgba(201,168,76,.04) 0%, transparent 70%);
  position: relative;
}
.emblem-ring-outer::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.07);
}
.emblem-ring-middle {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.14);
  padding: 4px;
}
.emblem-ring-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.emblem-body { text-align: center; padding: 20px; }
.emblem-svg { width: 64px; height: 72px; margin: 0 auto 14px; }
.emblem-name1 {
  font-family: var(--font-d);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold-hi);
  line-height: 1;
}
.emblem-name2 {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 300;
  color: var(--t2);
  margin-bottom: 10px;
}
.emblem-sub {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--t3);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   FEATURES STRIP
═══════════════════════════════════════════════ */
.features-strip {
  background: var(--bg-2);
  border-top:    1px solid rgba(201,168,76,.09);
  border-bottom: 1px solid rgba(201,168,76,.09);
  padding: 38px 0;
}
.features-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  justify-content: center;
}
.feature-icon-wrap { width: 46px; height: 46px; flex-shrink: 0; }
.feature-icon-wrap svg { width: 100%; height: 100%; }
.feature-copy h4 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-hi);
  white-space: nowrap;
  margin-bottom: 1px;
}
.feature-copy p {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t3);
  white-space: nowrap;
}
.feature-sep {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,.22), transparent);
}

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services-section {
  background: var(--bg-1);
  padding: var(--sp) 0;
}
.services-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 36px;
}
.sec-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 56px;
}
.sec-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  font-weight: 300;
  color: var(--gold-hi);
  letter-spacing: .14em;
  white-space: nowrap;
}

/* 3-col grid: service | pricing | service */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 290px 1fr;
  border: 1px solid rgba(201,168,76,.1);
}

/* Service cards */
.svc-card {
  padding: 48px 40px;
  background: var(--bg-2);
  border-right: 1px solid rgba(201,168,76,.1);
}
.svc-wood {
  background: var(--bg-3);
  border-right: none;
  border-left: 1px solid rgba(201,168,76,.1);
}
.svc-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.svc-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: var(--gold-mist);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.svc-icon svg { width: 100%; height: 100%; }
.svc-card h3 {
  font-family: var(--font-d);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gold-hi);
  letter-spacing: .03em;
}
.svc-desc {
  font-size: .86rem;
  color: var(--t2);
  line-height: 1.85;
  margin-bottom: 26px;
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.svc-list li {
  display: flex;
  align-items: baseline;
  gap: 11px;
  font-size: .84rem;
  color: var(--t2);
}
.svc-bullet {
  color: var(--gold);
  font-size: .58rem;
  flex-shrink: 0;
}

/* Pricing card */
.pricing-card {
  background: var(--bg-3);
  padding: 44px 28px;
  display: flex;
  flex-direction: column;
}
.pricing-eyebrow {
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--gold);
  text-transform: uppercase;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(201,168,76,.12);
  margin-bottom: 8px;
}
.pricing-list {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pricing-row {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(201,168,76,.06);
}
.pricing-row:last-child { border-bottom: none; }
.p-name {
  font-size: .8rem;
  color: var(--t2);
  flex-shrink: 0;
  white-space: nowrap;
}
.p-dots {
  flex: 1;
  height: 1px;
  margin: 0 10px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(201,168,76,.22) 0, rgba(201,168,76,.22) 2px,
    transparent 2px, transparent 7px
  );
}
.p-price {
  font-family: var(--font-d);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--gold-hi);
  flex-shrink: 0;
}
.p-featured .p-name { color: var(--t0); font-weight: 500; }
.p-featured .p-price { color: var(--gold-hi); }
.p-rule {
  height: 1px;
  background: rgba(201,168,76,.14);
  margin: 4px 0;
}
.p-addon .p-name { font-style: italic; }

/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.gallery-section {
  background: var(--bg-0);
  padding: var(--sp) 0;
}
.gallery-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 36px;
}
.gallery-intro {
  text-align: center;
  max-width: 560px;
  margin: -32px auto 48px;
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--t2);
  line-height: 1.7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.12);
  background: var(--bg-2);
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease), filter .6s ease;
  filter: saturate(.92) brightness(.94);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0);
  transition: box-shadow .4s ease;
  pointer-events: none;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) brightness(1.02);
}
.gallery-item:hover::after {
  box-shadow: inset 0 0 0 1px rgba(201,168,76,.4);
}

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-wrap { padding: 0 20px; }
}
@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials-section {
  position: relative;
  background: var(--bg-1);
  padding: var(--sp) 0;
  overflow: hidden;
}
.testi-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(201,168,76,.06) 0%, transparent 60%);
  pointer-events: none;
}
.testi-wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 36px;
}
.testi-intro {
  text-align: center;
  max-width: 560px;
  margin: -32px auto 52px;
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--t2);
  line-height: 1.7;
}

/* Featured testimonial */
.testi-featured {
  position: relative;
  background: var(--bg-3);
  border: 1px solid rgba(201,168,76,.16);
  padding: 52px 56px 46px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}
.testi-quote-mark {
  position: absolute;
  top: 8px; left: 28px;
  font-family: var(--font-d);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: .16;
  pointer-events: none;
}
.testi-featured-stars {
  font-size: 1rem;
  letter-spacing: .25em;
  color: var(--gold);
  margin-bottom: 12px;
}
.testi-featured-tag {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-lo);
  margin-bottom: 22px;
}
.testi-featured-text {
  font-family: var(--font-d);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--t0);
  line-height: 1.55;
  margin-bottom: 26px;
}
.testi-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testi-author-name {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold-hi);
}
.testi-author-svc {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t3);
}

/* Testimonial grid */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 52px;
}
.testi-card {
  background: var(--bg-2);
  border: 1px solid rgba(201,168,76,.1);
  padding: 34px 34px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .3s ease;
}
.testi-card:hover {
  border-color: rgba(201,168,76,.28);
  transform: translateY(-3px);
}
.testi-card-stars {
  font-size: .82rem;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 14px;
}
.testi-card-topic {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold-hi);
  margin-bottom: 14px;
}
.testi-card-text {
  font-size: .88rem;
  color: var(--t2);
  line-height: 1.8;
  margin-bottom: 22px;
  flex: 1;
}
.testi-card .testi-author {
  border-top: 1px solid rgba(201,168,76,.1);
  padding-top: 16px;
}

/* Ratings strip */
.testi-ratings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--bg-3);
  border-top: 1px solid rgba(201,168,76,.14);
  border-bottom: 1px solid rgba(201,168,76,.14);
  padding: 30px 40px;
  margin-bottom: 56px;
}
.ratings-score {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ratings-stars {
  font-size: 1.1rem;
  letter-spacing: .22em;
  color: var(--gold);
}
.ratings-number {
  font-size: .84rem;
  color: var(--t2);
  letter-spacing: .04em;
}
.ratings-number strong {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-hi);
  margin-right: 4px;
}
.ratings-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
}
.ratings-point {
  position: relative;
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--t1);
  padding-left: 22px;
}
.ratings-point::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .72rem;
}

/* Trust section */
.testi-trust {
  text-align: center;
  margin-bottom: 56px;
}
.trust-head {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 300;
  color: var(--gold-hi);
  letter-spacing: .03em;
  margin-bottom: 30px;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid rgba(201,168,76,.1);
  padding: 18px 22px;
  font-size: .86rem;
  color: var(--t2);
  text-align: left;
  line-height: 1.5;
}
.trust-bullet {
  color: var(--gold);
  font-size: .62rem;
  flex-shrink: 0;
}

/* Testimonials CTA */
.testi-cta {
  text-align: center;
}
.testi-cta-head {
  font-family: var(--font-d);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--t0);
  margin-bottom: 10px;
}
.testi-cta-sub {
  font-size: .9rem;
  color: var(--t2);
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .testi-wrap { padding: 0 24px; }
  .testi-featured { padding: 40px 28px 36px; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-ratings { padding: 26px 28px; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   BOOKING CTA
═══════════════════════════════════════════════ */
.booking-section {
  position: relative;
  padding: var(--sp) 0;
  background: var(--bg-2);
  overflow: hidden;
}
.booking-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 45% 50%,
    rgba(201,168,76,.07) 0%, transparent 65%);
  pointer-events: none;
}
.booking-wrap {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.booking-pre {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.booking-title {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--t0);
  line-height: 1.1;
  margin-bottom: 20px;
}
.booking-orn { margin-bottom: 24px; }
.booking-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: var(--t2);
  background: var(--gold-faint);
  border: 1px solid rgba(201,168,76,.12);
  padding: 14px 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.booking-notice svg { flex-shrink: 0; margin-top: 2px; }
.booking-notice strong { color: var(--gold-hi); font-weight: 600; }
.btn-book-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg-0);
  font-family: var(--font-b);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 16px 38px;
  transition: background .25s, color .25s;
}
.btn-book-cta:hover { background: var(--gold-hi); }

/* Info tiles */
.booking-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-tile {
  background: var(--bg-3);
  border: 1px solid rgba(201,168,76,.1);
  padding: 28px 30px;
}
.tile-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.payment-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.pay-method {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--t1);
}
.pay-icon {
  width: 44px; height: 44px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pay-cashapp { background: #00D64B; }
.pay-apple   { background: #1a1a1a; border: 1px solid rgba(255,255,255,.08); }
.hours-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hours-copy {}
.hours-open {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}
.hours-24 {
  font-family: var(--font-d);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-hi);
  line-height: 1;
}
.hours-sub {
  font-size: .68rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--t3);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(201,168,76,.1);
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 36px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
.footer-logo-row {
  margin-bottom: 18px;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-brand-name {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-hi);
}
.footer-brand-sub {
  font-size: .68rem;
  color: var(--t3);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: .84rem;
  color: var(--t3);
  line-height: 1.8;
  max-width: 280px;
}
.footer-col-head {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.fcontact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .83rem;
  color: var(--t2);
  margin-bottom: 14px;
  line-height: 1.55;
}
.fcontact-item svg { flex-shrink: 0; margin-top: 2px; }
.fcontact-item a { transition: color .2s; }
.fcontact-item a:hover { color: var(--gold-hi); }
.social-row {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  transition: border-color .22s, color .22s, background .22s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-faint);
}
.social-btn svg { width: 17px; height: 17px; }
.footer-bar {
  border-top: 1px solid rgba(201,168,76,.07);
  padding: 18px 36px;
}
.footer-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bar-inner p {
  font-size: .72rem;
  color: var(--t4);
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET ≤1024px
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { gap: 18px; }
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-bottom: 60px;
  }
  .hero-content { max-width: 100%; }
  .hero-pre { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-emblem { display: none; }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-wood {
    grid-column: 2;
    grid-row: 1;
    border-left: 1px solid rgba(201,168,76,.1);
  }
  .pricing-card {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(201,168,76,.1);
  }
  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤768px
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Mobile nav overlay */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(9,7,10,.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    backdrop-filter: blur(16px);
    z-index: 190;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; letter-spacing: .18em; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .hero-layout { padding-left: 24px; padding-right: 24px; }
  .hero-title { font-size: clamp(3.8rem, 14vw, 6rem); }

  /* Features: 2x2 grid */
  .features-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
  }
  .feature-sep { display: none; }
  .feature-item { padding: 0; justify-content: flex-start; }

  /* Services: single col */
  .services-grid { grid-template-columns: 1fr; }
  .svc-card {
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,.1);
  }
  .svc-wood {
    grid-column: auto; grid-row: auto;
    border-left: none;
    border-bottom: 1px solid rgba(201,168,76,.1);
  }
  .pricing-card { grid-column: auto; }

  .booking-wrap { padding-left: 24px; padding-right: 24px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bar { padding: 18px 24px; }
  .footer-bar-inner { flex-direction: column; gap: 6px; text-align: center; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL ≤480px
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .nav-container { padding: 0 20px; }
  .services-wrap { padding: 0 20px; }
  .svc-card { padding: 32px 22px; }
  .pricing-card { padding: 32px 22px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .payment-row { flex-direction: column; gap: 14px; }
}
