/* ============================================================
   SUN LOUNGE WINTON — Main Stylesheet
   style.css
   
   Table of Contents:
   1.  CSS Custom Properties (Design Tokens)
   2.  Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Navigation
   6.  Hero Section
   7.  Trust Bar
   8.  Three Pillars
   9.  Services Section
   10. Occasions Strip
   11. Reviews / Testimonials
   12. Booking CTA Banner
   13. Hours & Map
   14. Instagram Strip
   15. Contact Page
   16. FAQ Accordion
   17. Footer
   18. Buttons & Form Elements
   19. Animations & Scroll Reveals
   20. Mobile Booking Bar (sticky)
   21. Responsive Breakpoints
   ============================================================ */


/* ─── 1. CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  /* Palette */
  --espresso:    #1C1410;
  --espresso-90: rgba(28, 20, 16, 0.9);
  --bronze:      #B8733A;
  --bronze-20:   rgba(184, 115, 58, 0.2);
  --bronze-08:   rgba(184, 115, 58, 0.08);
  --gold:        #C9963F;
  --amber:       #E8B96A;
  --cream:       #FAF5ED;
  --linen:       #EEE3D0;
  --linen-60:    rgba(238, 227, 208, 0.6);
  --muted:       #7A6A55;
  --ink:         #2C1F14;
  --white:       #ffffff;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --s-xs:  8px;
  --s-sm:  16px;
  --s-md:  24px;
  --s-lg:  48px;
  --s-xl:  72px;
  --s-2xl: 120px;

  /* Layout */
  --max-w:       1120px;
  --nav-h:       72px;
  --radius:      8px;
  --radius-lg:   16px;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --t-fast:      180ms;
  --t-mid:       320ms;
  --t-slow:      500ms;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(28, 20, 16, 0.08);
  --shadow-md:   0 8px 32px rgba(28, 20, 16, 0.12);
  --shadow-lg:   0 20px 60px rgba(28, 20, 16, 0.18);
}


/* ─── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

ul, ol {
  list-style: none;
}


/* ─── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--espresso);
}

h1 { font-size: clamp(40px, 6.5vw, 76px); font-weight: 300; }
h2 { font-size: clamp(28px, 4vw, 46px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: clamp(16px, 1.8vw, 20px); }

.label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.label--light { color: var(--amber); }

p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink);
  max-width: 68ch;
}

.text-muted { color: var(--muted); }
.text-cream  { color: var(--cream); }
.text-amber  { color: var(--amber); }
.text-bronze { color: var(--bronze); }

em { font-style: italic; color: var(--bronze); }


/* ─── 4. LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.section {
  padding: var(--s-xl) 0;
}

.section--dark {
  background: var(--espresso);
}

.section--linen {
  background: var(--linen);
}

.section__header {
  margin-bottom: var(--s-lg);
}

.section__header .label {
  display: block;
  margin-bottom: var(--s-sm);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: var(--s-md) 0;
  opacity: 0.55;
}


/* ─── 5. NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}

/* Nav becomes solid when scrolled */
.nav.nav--scrolled {
  background: var(--espresso-90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

/* Logo */
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.nav__logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 245, 237, 0.45);
  margin-top: 2px;
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 245, 237, 0.65);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__link:hover {
  color: var(--amber);
  background: rgba(255, 255, 255, 0.05);
}

.nav__link.active {
  color: var(--amber);
}

/* Nav CTA */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bronze);
  color: var(--cream);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  margin-left: 12px;
  transition: background var(--t-fast), transform var(--t-fast);
}

.nav__cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

/* Hamburger (mobile) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--t-mid) var(--ease), opacity var(--t-fast);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--espresso);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--s-md) var(--s-lg) var(--s-lg);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-mid) var(--ease), opacity var(--t-mid) var(--ease);
}

.nav__drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__drawer-link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(250, 245, 237, 0.7);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--t-fast);
}

.nav__drawer-link:hover { color: var(--amber); }

.nav__drawer-cta {
  display: block;
  margin-top: var(--s-md);
  background: var(--bronze);
  color: var(--cream);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ─── 6. HERO SECTION ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--espresso);
}

/* Hero background — gradient with placeholder for real photo */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    /* Warm radial glow top-right */
    radial-gradient(ellipse 60% 50% at 75% 20%, rgba(200, 150, 63, 0.22) 0%, transparent 60%),
    /* Deep gradient base */
    linear-gradient(160deg, #2C1A0E 0%, #1C1410 45%, #0E0A07 100%);
  z-index: 0;
}

/* Subtle grain texture overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

/* Decorative large circle */
.hero__orb {
  position: absolute;
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(55vw, 700px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(200, 150, 63, 0.12);
  box-shadow:
    inset 0 0 120px rgba(200, 150, 63, 0.06),
    0 0 80px rgba(200, 150, 63, 0.04);
  z-index: 1;
}

.hero__orb::before {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(200, 150, 63, 0.08);
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-lg);
  padding-bottom: var(--s-xl);
  padding-top: calc(var(--nav-h) + var(--s-xl));
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--s-md);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--bronze);
  opacity: 0.7;
}

.hero__h1 {
  color: var(--cream);
  margin-bottom: var(--s-sm);
  max-width: 11ch;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.35s forwards;
}

.hero__h1 em {
  color: var(--amber);
  display: block;
}

.hero__sub {
  font-size: 15px;
  color: rgba(250, 245, 237, 0.55);
  margin-bottom: var(--s-lg);
  max-width: 38ch;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.65s forwards;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--s-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.2s forwards;
}

.hero__scroll span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 245, 237, 0.3);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(200,150,63,0.6), transparent);
  animation: scrollPulse 2s ease-in-out 1.5s infinite;
}


/* ─── 7. TRUST BAR ─────────────────────────────────────────── */
.trust-bar {
  background: var(--espresso);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: var(--s-md) 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item__icon {
  font-size: 18px;
  flex-shrink: 0;
}

.trust-item__text {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(250, 245, 237, 0.65);
  letter-spacing: 0.02em;
}

.trust-item__text strong {
  color: var(--amber);
  font-weight: 600;
  display: block;
  font-size: 13px;
}

.trust-bar__sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
}


/* ─── 8. THREE PILLARS ──────────────────────────────────────── */
.pillars {
  padding: var(--s-xl) 0;
  background: var(--cream);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--linen);
  border: 1px solid var(--linen);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pillar {
  background: var(--cream);
  padding: var(--s-lg) var(--s-md);
  text-align: center;
  transition: background var(--t-mid);
}

.pillar:hover {
  background: var(--linen);
}

.pillar__icon {
  font-size: 28px;
  margin-bottom: var(--s-sm);
  display: block;
}

.pillar__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 12px;
}

.pillar__body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 28ch;
  margin: 0 auto;
}


/* ─── 9. SERVICES SECTION ───────────────────────────────────── */
.services {
  padding: var(--s-xl) 0;
  background: var(--linen);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
  margin-top: var(--s-lg);
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--s-lg) var(--s-md);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--bronze);
  opacity: 0.6;
  margin-bottom: var(--s-sm);
}

.service-card__icon {
  font-size: 32px;
  margin-bottom: var(--s-sm);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--espresso);
  margin-bottom: 12px;
}

.service-card__body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  flex-grow: 1;
  max-width: none;
}

.service-card__price {
  display: inline-block;
  margin-top: var(--s-md);
  margin-bottom: var(--s-md);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--espresso);
}

.service-card__price span {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: auto;
  transition: gap var(--t-fast);
}

.service-card__link:hover { gap: 14px; }


/* ─── 10. OCCASIONS STRIP ──────────────────────────────────── */
.occasions {
  padding: var(--s-lg) 0;
  background: var(--espresso);
  overflow: hidden;
}

.occasions__inner {
  display: flex;
  align-items: center;
  gap: var(--s-xl);
  flex-wrap: wrap;
  justify-content: center;
}

.occasion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform var(--t-mid);
}

.occasion-item:hover { transform: translateY(-3px); }

.occasion-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200, 150, 63, 0.12);
  border: 1px solid rgba(200, 150, 63, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background var(--t-mid), border-color var(--t-mid);
}

.occasion-item:hover .occasion-item__icon {
  background: rgba(200, 150, 63, 0.22);
  border-color: rgba(200, 150, 63, 0.5);
}

.occasion-item__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 245, 237, 0.55);
}


/* ─── 11. REVIEWS / TESTIMONIALS ───────────────────────────── */
.reviews {
  padding: var(--s-xl) 0;
  background: var(--cream);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
  margin-top: var(--s-lg);
}

.review-card {
  background: var(--cream);
  border: 1px solid var(--linen);
  border-left: 3px solid var(--bronze);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--s-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  transition: border-left-color var(--t-mid), box-shadow var(--t-mid);
}

.review-card:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.review-card__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--espresso);
  line-height: 1.6;
  flex-grow: 1;
  max-width: none;
}

.review-card__author {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.reviews__cta {
  text-align: center;
  margin-top: var(--s-lg);
}

.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--linen);
  border-radius: 40px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: var(--s-sm);
}

.reviews__badge span { color: var(--gold); }


/* ─── 12. BOOKING CTA BANNER ────────────────────────────────── */
.book-banner {
  padding: var(--s-xl) 0;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}

.book-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,63,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.book-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-lg);
  position: relative;
  z-index: 1;
}

.book-banner__text h2 {
  color: var(--cream);
  margin-bottom: 12px;
}

.book-banner__text h2 em { color: var(--amber); }

.book-banner__text p {
  color: rgba(250, 245, 237, 0.55);
  font-size: 15px;
  max-width: 42ch;
}

.book-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s-sm);
  flex-shrink: 0;
}

.book-banner__tel {
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
  color: var(--amber);
}


/* ─── 13. HOURS & MAP ───────────────────────────────────────── */
.location {
  padding: var(--s-xl) 0;
  background: var(--linen);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-lg);
  align-items: start;
}

.location__info {}

.location__address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--s-lg);
}

.location__address-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
}

.location__address-line .icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.hours-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 10px 0;
  color: var(--ink);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--espresso);
}

.hours-table .today {
  color: var(--bronze);
  font-weight: 600;
}

.hours-table .today td:last-child {
  color: var(--bronze);
}

/* Map embed */
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  background: var(--espresso);
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

.location__map-overlay {
  position: absolute;
  bottom: var(--s-sm);
  left: var(--s-sm);
  right: var(--s-sm);
  pointer-events: none;
}

.location__map-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 40px;
  pointer-events: all;
  transition: background var(--t-fast);
}

.location__map-chip:hover { background: var(--bronze); }


/* ─── 14. INSTAGRAM STRIP ───────────────────────────────────── */
.instagram {
  padding: var(--s-xl) 0;
  background: var(--cream);
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: var(--s-lg);
}

.instagram__cell {
  aspect-ratio: 1;
  background: var(--linen);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--muted);
  transition: transform var(--t-mid), opacity var(--t-mid);
  opacity: 0.7;
}

.instagram__cell:hover { opacity: 1; transform: scale(1.03); }

.instagram__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.instagram__handle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--s-lg);
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.instagram__handle a {
  color: var(--bronze);
  font-weight: 600;
  transition: color var(--t-fast);
}

.instagram__handle a:hover { color: var(--gold); }


/* ─── 15. CONTACT PAGE ──────────────────────────────────────── */
.contact-page {
  padding-top: calc(var(--nav-h) + var(--s-xl));
  padding-bottom: var(--s-2xl);
  background: var(--cream);
  min-height: 100vh;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-xl);
  align-items: start;
}

.contact__sidebar {}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: var(--s-md);
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bronze-08);
  border: 1px solid var(--bronze-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact__detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 3px;
}

.contact__detail-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
}

.contact__detail-value a {
  color: var(--bronze);
  transition: color var(--t-fast);
}

.contact__detail-value a:hover { color: var(--gold); }

/* Contact Form */
.contact__form-wrap {
  background: var(--espresso);
  border-radius: var(--radius-lg);
  padding: var(--s-lg);
}

.contact__form-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 6px;
}

.contact__form-sub {
  font-size: 13.5px;
  color: rgba(250,245,237,0.45);
  margin-bottom: var(--s-lg);
  max-width: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-sm);
}

.form-group {
  margin-bottom: var(--s-sm);
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,245,237,0.4);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250,245,237,0.25);
}

.form-group select {
  color: rgba(250,245,237,0.7);
}

.form-group select option {
  background: var(--espresso);
  color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bronze);
  background: rgba(255,255,255,0.07);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 12px;
  color: rgba(250,245,237,0.3);
  margin-top: var(--s-sm);
  max-width: none;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: var(--s-lg);
}

.form-success.show { display: block; }

.form-success__icon {
  font-size: 40px;
  margin-bottom: var(--s-sm);
}

.form-success__title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 10px;
}

.form-success__body {
  font-size: 14px;
  color: rgba(250,245,237,0.55);
  max-width: none;
}


/* ─── 16. FAQ ACCORDION ─────────────────────────────────────── */
.faq {
  padding: var(--s-xl) 0;
  background: var(--linen);
}

.faq__list {
  max-width: 720px;
  margin-top: var(--s-lg);
}

.faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq__item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-md) 0;
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--espresso);
  text-align: left;
  gap: var(--s-sm);
  cursor: pointer;
  transition: color var(--t-fast);
}

.faq__trigger:hover { color: var(--bronze); }

.faq__trigger.open { color: var(--bronze); }

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--bronze-20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-mid), transform var(--t-mid);
  color: var(--bronze);
  font-size: 14px;
}

.faq__trigger.open .faq__icon {
  background: var(--bronze);
  color: var(--cream);
  transform: rotate(45deg);
}

.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-out),
              padding var(--t-mid) var(--ease);
}

.faq__panel.open {
  max-height: 400px;
}

.faq__panel-inner {
  padding-bottom: var(--s-md);
}

.faq__panel-inner p {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 56ch;
}


/* ─── 17. FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  padding: var(--s-xl) 0 var(--s-lg);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--s-xl);
  margin-bottom: var(--s-xl);
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
  color: var(--amber);
  margin-bottom: 6px;
}

.footer__brand-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,245,237,0.3);
  margin-bottom: var(--s-md);
}

.footer__tagline {
  font-size: 13.5px;
  color: rgba(250,245,237,0.4);
  line-height: 1.7;
  max-width: 28ch;
}

.footer__socials {
  display: flex;
  gap: var(--s-xs);
  margin-top: var(--s-md);
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(250,245,237,0.5);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.footer__social:hover {
  border-color: var(--bronze);
  color: var(--amber);
  background: rgba(184,115,58,0.12);
}

.footer__col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 13.5px;
  color: rgba(250,245,237,0.5);
  transition: color var(--t-fast);
}

.footer__link:hover { color: var(--amber); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(250,245,237,0.5);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer__contact-item a {
  color: rgba(250,245,237,0.5);
  transition: color var(--t-fast);
}

.footer__contact-item a:hover { color: var(--amber); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-md);
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: var(--s-sm);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 12px;
  color: rgba(250,245,237,0.25);
  max-width: none;
}

.footer__legal {
  display: flex;
  gap: var(--s-md);
}

.footer__legal a {
  font-size: 12px;
  color: rgba(250,245,237,0.25);
  transition: color var(--t-fast);
}

.footer__legal a:hover { color: var(--amber); }


/* ─── 18. BUTTONS & FORM ELEMENTS ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: transform var(--t-fast), background var(--t-fast),
              border-color var(--t-fast), color var(--t-fast),
              box-shadow var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Primary — solid bronze */
.btn--primary {
  background: var(--bronze);
  color: var(--cream);
  font-size: 13px;
  padding: 14px 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn--primary:hover {
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(184,115,58,0.3);
}

/* Secondary — outline */
.btn--secondary {
  background: transparent;
  color: rgba(250,245,237,0.7);
  border: 1px solid rgba(250,245,237,0.2);
  font-size: 13px;
  padding: 13px 26px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn--secondary:hover {
  border-color: rgba(250,245,237,0.5);
  color: var(--cream);
}

/* Ghost (dark background) */
.btn--ghost {
  background: transparent;
  color: var(--bronze);
  border: 1px solid var(--bronze);
  font-size: 13px;
  padding: 13px 26px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn--ghost:hover {
  background: var(--bronze);
  color: var(--cream);
}

/* Submit button */
.btn--submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--s-sm);
  background: var(--bronze);
  color: var(--cream);
}

.btn--submit:hover {
  background: var(--gold);
}

.btn--submit.loading {
  opacity: 0.7;
  pointer-events: none;
}


/* ─── 19. ANIMATIONS & SCROLL REVEALS ──────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* Scroll reveal utility classes */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.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; }


/* ─── 20. MOBILE BOOKING BAR ────────────────────────────────── */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--espresso);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--s-sm) var(--s-md);
  gap: var(--s-xs);
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-book-bar .btn--primary {
  flex: 1;
  justify-content: center;
  padding: 15px;
}

.mobile-book-bar .btn--ghost {
  padding: 14px 18px;
}


/* ─── 21. RESPONSIVE BREAKPOINTS ────────────────────────────── */

/* Tablet — ≤900px */
@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__hamburger { display: flex; }
  .nav__drawer    { display: block; }

  .mobile-book-bar { display: flex; }

  body { padding-bottom: 72px; }

  .pillars__grid,
  .services__grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .book-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .book-banner__actions {
    align-items: flex-start;
  }

  .location__grid { grid-template-columns: 1fr; }

  .instagram__grid { grid-template-columns: repeat(3, 1fr); }

  .contact__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-lg); }
  .footer__grid > *:first-child { grid-column: 1 / -1; }
}

/* Mobile — ≤600px */
@media (max-width: 600px) {
  :root {
    --s-lg:  32px;
    --s-xl:  56px;
  }

  .container { padding: 0 var(--s-md); }

  .hero__content { padding-bottom: var(--s-xl); }

  h1 { font-size: clamp(36px, 10vw, 52px); }

  .trust-bar__inner { flex-direction: column; gap: var(--s-md); align-items: flex-start; }
  .trust-bar__sep   { display: none; }
  .trust-bar { padding: var(--s-md); }

  .pillars__grid { grid-template-columns: 1fr; }

  .services__grid { grid-template-columns: 1fr; }

  .occasions__inner { gap: var(--s-lg); }

  .grid-3,
  .grid-2,
  .form-row { grid-template-columns: 1fr; }

  .reviews__grid { grid-template-columns: 1fr; }

  .instagram__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

.hero__bg {
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  /* Keep the gradient on top for text readability */
  background-blend-mode: multiply;
}