/* ─── RESET & CUSTOM PROPERTIES ─────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black:      #080808;
  --near-black: #111111;
  --dark:       #1a1a1a;
  --charcoal:   #252525;
  --off-white:  #f4f1ea;
  --cream:      #ede8dc;
  --warm-white: #faf8f4;
  --gold:       #b89150;
  --gold-light: #cda96a;
  --gold-pale:  #e8d5aa;
  --gold-dark:  #8a6a30;
  --mid:        #5a5a5a;
  --light:      #999;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Barlow', sans-serif;
  --condensed:  'Barlow Condensed', sans-serif;
  --nav-h:      76px;
  --ease:       cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--warm-white); color: var(--black); font-family: var(--sans); font-weight: 300; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── UTILITY ────────────────────────────────────────────── */
.label { font-family: var(--condensed); font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 10px; }
.label::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.label-light { color: var(--gold-light); }
.label-light::before { background: var(--gold-light); }
.section-title { font-family: var(--serif); font-size: clamp(2.6rem, 4vw, 4rem); font-weight: 300; line-height: 1.05; color: var(--black); }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title-light { color: #fff; }
.section-title-light em { color: var(--gold-light); }
section { padding: 8rem 4rem; }

/* ─── NAVIGATION ─────────────────────────────────────────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 3.5rem; transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease); }
nav.scrolled { background: rgba(8,8,8,0.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(184,145,80,0.15); }
nav.solid { background: rgba(8,8,8,0.98); box-shadow: 0 1px 0 rgba(184,145,80,0.15); }
.nav-logo { font-family: var(--condensed); font-size: 19px; font-weight: 700; letter-spacing: 0.18em; color: #fff; flex-shrink: 0; }
.nav-logo em { font-style: normal; color: var(--gold); }
.nav-center { display: flex; gap: 2.8rem; list-style: none; }
.nav-center a { font-family: var(--condensed); font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.65); transition: color 0.25s; position: relative; padding-bottom: 4px; }
.nav-center a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease-out); }
.nav-center a:hover, .nav-center a.active { color: #fff; }
.nav-center a:hover::after, .nav-center a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-phone { font-family: var(--condensed); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); transition: color 0.25s; }
.nav-phone:hover { color: var(--gold-light); }
.nav-btn { font-family: var(--condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--black); background: var(--gold); padding: 11px 24px; transition: background 0.25s; margin-left: 0.5rem; }
.nav-btn:hover { background: var(--gold-light); }
.nav-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.12); }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(184,145,80,0.2); display: flex; align-items: center; justify-content: center; transition: border-color 0.25s, background 0.25s; }
.footer-social a:hover { border-color: var(--gold); background: rgba(184,145,80,0.08); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.45); transition: fill 0.25s; }
.footer-social a:hover svg { fill: var(--gold-light); }
.nav-social { display: flex; gap: 0.6rem; align-items: center; }
.nav-social a { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: border-color 0.25s; }
.nav-social a:hover { border-color: var(--gold); }
.nav-social svg { width: 13px; height: 13px; fill: rgba(255,255,255,0.5); transition: fill 0.25s; }
.nav-social a:hover svg { fill: var(--gold-light); }

/* ─── PAGE HERO BANNER (inner pages) ────────────────────── */
.page-hero { height: 52vh; min-height: 380px; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(160deg,#080808 0%,#1c1c1c 60%,#2a2218 100%); }
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.page-hero-content { position: relative; z-index: 2; padding: 0 4rem 4.5rem; }
.page-hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; }
.page-hero-eyebrow span { font-family: var(--condensed); font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.page-hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 300; color: #fff; line-height: 0.95; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee-band { background: var(--gold); overflow: hidden; padding: 13px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 28s linear infinite; }
.marquee-item { font-family: var(--condensed); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--black); padding: 0 2.5rem; }
.marquee-dot { color: rgba(0,0,0,0.3); padding: 0 0.5rem; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-gold { font-family: var(--condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--black); background: var(--gold); padding: 17px 40px; display: inline-block; transition: background 0.25s, transform 0.2s; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline-dark { font-family: var(--condensed); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--black); border: 1px solid rgba(0,0,0,0.25); padding: 17px 40px; display: inline-block; transition: border-color 0.25s, background 0.25s; }
.btn-outline-dark:hover { border-color: var(--gold-dark); background: var(--cream); }
.btn-outline { font-family: var(--condensed); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.25); padding: 17px 40px; display: inline-block; transition: border-color 0.25s, color 0.25s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.text-link { font-family: var(--condensed); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); border-bottom: 1px solid rgba(138,106,48,0.35); padding-bottom: 3px; transition: color 0.25s, border-color 0.25s; display: inline-block; }
.text-link:hover { color: var(--black); border-color: var(--black); }
.text-link-light { color: var(--gold-light); border-bottom-color: rgba(205,169,106,0.4); }
.text-link-light:hover { color: #fff; border-color: #fff; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--black); border-top: 1px solid rgba(184,145,80,0.12); padding: 4rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand {}
.footer-logo { font-family: var(--condensed); font-size: 20px; font-weight: 700; letter-spacing: 0.18em; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-tagline { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,0.3); font-weight: 300; line-height: 1.7; max-width: 220px; }
.footer-col-title { font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { margin-bottom: 0.8rem; }
.footer-contact-label { font-family: var(--condensed); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 2px; }
.footer-contact-val { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; }
.footer-contact-val a { color: inherit; transition: color 0.2s; }
.footer-contact-val a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,0.18); font-weight: 300; }
.footer-license { font-family: var(--condensed); font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(184,145,80,0.4); }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%,100%{opacity:.4}50%{opacity:1} }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── GOOGLE REVIEWS SHARED ──────────────────────────────── */
.reviews-summary { display: flex; align-items: center; justify-content: center; gap: 2rem; padding: 1.8rem 2.5rem; border: 1px solid #d5cfc2; max-width: 480px; margin: 0 auto 4rem; }
.reviews-badge { display: flex; align-items: center; gap: 10px; }
.reviews-badge svg { width: 28px; height: 28px; }
.reviews-score { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--black); line-height: 1; }
.reviews-meta { display: flex; flex-direction: column; gap: 4px; }
.reviews-stars-row { display: flex; gap: 3px; }
.star { width: 14px; height: 14px; background: #fbbc04; clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.reviews-count { font-family: var(--sans); font-size: 12px; color: var(--light); font-weight: 300; }
.reviews-divider { width: 1px; height: 48px; background: #d5cfc2; }
.reviews-google-label { font-family: var(--condensed); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); display: flex; flex-direction: column; gap: 4px; align-items: center; }
.reviews-google-label span { font-size: 15px; letter-spacing: 0; font-weight: 400; color: var(--mid); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: #d5cfc2; }
.tcard { background: var(--warm-white); padding: 2.5rem; display: flex; flex-direction: column; }
.tcard-header { display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; }
.tcard-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--condensed); font-size: 16px; font-weight: 600; color: var(--gold-dark); overflow: hidden; }
.tcard-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tcard-name { font-family: var(--condensed); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); }
.tcard-date { font-family: var(--sans); font-size: 11px; color: var(--light); font-weight: 300; margin-top: 2px; }
.tcard-stars-row { display: flex; gap: 3px; margin-bottom: 1.2rem; }
.tquote { font-family: var(--serif); font-size: 1.05rem; font-style: italic; font-weight: 400; line-height: 1.75; color: var(--charcoal); flex: 1; }
.tcard-g-icon { margin-top: 1.5rem; align-self: flex-end; opacity: 0.25; }
.tcard-g-icon svg { width: 18px; height: 18px; }
.reviews-loading { text-align: center; padding: 4rem 2rem; font-family: var(--sans); font-size: 14px; color: var(--light); font-weight: 300; grid-column: 1/-1; }
.reviews-loading .spinner { width: 32px; height: 32px; border: 2px solid #d5cfc2; border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 1rem; }
.reviews-error { text-align: center; padding: 3rem 2rem; grid-column: 1/-1; font-family: var(--sans); font-size: 14px; color: var(--mid); font-weight: 300; }

/* ─── CONTACT FORM SHARED ────────────────────────────────── */
.booking-form { display: flex; flex-direction: column; gap: 1rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-family: var(--condensed); font-size: 9px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.fg input, .fg select, .fg textarea { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-bottom: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); padding: 13px 14px; font-family: var(--sans); font-size: 14px; font-weight: 300; outline: none; transition: border-color 0.25s, background 0.25s; -webkit-appearance: none; border-radius: 0; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.2); }
.fg input:focus, .fg select:focus, .fg textarea:focus { background: rgba(255,255,255,0.07); border-color: rgba(184,145,80,0.5); border-bottom-color: var(--gold); }
.fg select option { background: #222; color: #fff; }
.fg textarea { height: 120px; resize: none; }
.form-btn { font-family: var(--condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; background: var(--gold); color: var(--black); border: none; padding: 17px; cursor: pointer; transition: background 0.25s; width: 100%; }
.form-btn:hover { background: var(--gold-light); }
.form-note { font-family: var(--sans); font-size: 11.5px; color: rgba(255,255,255,0.2); text-align: center; font-weight: 300; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 2rem; }
  section { padding: 6rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── HAMBURGER MENU ─────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s;
  letter-spacing: 0.05em;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold-light); }
.mobile-menu-cta {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  padding: 14px 36px;
  font-size: 13px !important;
}
.mobile-menu-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}
.mobile-menu-social a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184,145,80,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
}
.mobile-menu-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-center, .nav-phone, .nav-social, .nav-divider { display: none; }
  .nav-btn { display: none; }
  .hamburger { display: flex; }
  section { padding: 5rem 1.5rem; }
  .page-hero-content { padding: 0 1.5rem 3rem; }
  .frow { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .masonry { columns: 1; }
}
}
