/* ==========================================================================
   LuxeAura Event Rentals & Services — Brand Stylesheet
   Emerald · Imperial Purple · Metallic Gold · Cream · Champagne
   ========================================================================== */

:root {
  /* Brand palette */
  --emerald: #0E5848;
  --emerald-deep: #062F29;
  --emerald-darker: #04211C;
  --purple: #3A1D4F;
  --purple-deep: #23103A;
  --gold: #D4AF37;
  --gold-warm: #C9A227;
  --gold-soft: #E6C56E;
  --cream: #F7F4EC;
  --cream-warm: #F1EBDD;
  --champagne: #E8DECD;
  --ivory: #FBF8F1;
  --charcoal: #252321;
  --charcoal-soft: #4a4640;

  /* Semantic roles */
  --color-bg: var(--ivory);
  --color-surface: var(--cream);
  --color-surface-2: #FDFBF5;
  --color-surface-offset: var(--champagne);
  --color-surface-deep: var(--emerald-deep);
  --color-surface-darker: var(--emerald-darker);
  --color-border: rgba(212,175,55,0.35);
  --color-border-soft: rgba(37,35,33,0.10);
  --color-divider: rgba(212,175,55,0.25);

  --color-text: var(--charcoal);
  --color-text-muted: var(--charcoal-soft);
  --color-text-faint: rgba(37,35,33,0.55);
  --color-text-inverse: var(--cream);
  --color-text-inverse-muted: rgba(247,244,236,0.72);

  --color-primary: var(--emerald);
  --color-primary-hover: #0A4638;
  --color-accent: var(--purple);
  --color-accent-hover: #4a2660;
  --color-gold: var(--gold);

  /* Type scale (fluid) */
  --text-xs:    clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:    clamp(0.875rem, 0.82rem + 0.3vw, 1rem);
  --text-base:  clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:    clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl:    clamp(1.5rem, 1.25rem + 1.2vw, 2.25rem);
  --text-2xl:   clamp(2rem, 1.4rem + 2.2vw, 3.25rem);
  --text-3xl:   clamp(2.5rem, 1.5rem + 3.5vw, 4.5rem);
  --text-hero:  clamp(2.75rem, 1.2rem + 5.5vw, 6rem);

  /* Spacing */
  --space-1: .25rem;  --space-2: .5rem;   --space-3: .75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;

  /* Radius (kept subtle — luxury feels sharp/refined, not rounded) */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-full: 9999px;

  /* Motion */
  --transition-interactive: 300ms cubic-bezier(.16,1,.3,1);
  --ease-luxury: cubic-bezier(.22,1,.36,1);

  /* Shadows (warm, tone-matched) */
  --shadow-sm: 0 1px 2px rgba(35,25,15,.06);
  --shadow-md: 0 6px 24px rgba(35,25,15,.08);
  --shadow-lg: 0 18px 48px rgba(35,25,15,.14);
  --shadow-gold: 0 4px 20px rgba(212,175,55,.22);

  /* Layout */
  --content-narrow: 720px;
  --content-default: 1080px;
  --content-wide: 1320px;
  --page-gutter: clamp(1.25rem, 4vw, 3rem);

  /* Fonts */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-serif:   "Cormorant Garamond", Georgia, serif;
  --font-body:    "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-script:  "Great Vibes", "Playfair Display", cursive;
}

/* ---------- Global type ---------- */
body { font-family: var(--font-body); font-weight: 400; letter-spacing: .005em; }

h1,h2,h3 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.005em; color: var(--color-text); }
h4,h5,h6 { font-family: var(--font-body); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}
.eyebrow.on-dark { color: var(--gold); }
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}

.script { font-family: var(--font-script); font-weight: 400; letter-spacing: 0; }

.serif { font-family: var(--font-serif); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--content-wide); margin-inline: auto; padding-inline: var(--page-gutter); }
.container-default { max-width: var(--content-default); margin-inline: auto; padding-inline: var(--page-gutter); }
.container-narrow  { max-width: var(--content-narrow);  margin-inline: auto; padding-inline: var(--page-gutter); }

section { padding-block: clamp(4rem, 8vw, 8rem); }

.section-tight { padding-block: clamp(3rem, 5vw, 5rem); }

/* Backgrounds */
.bg-cream    { background: var(--cream); }
.bg-champagne{ background: linear-gradient(180deg, var(--cream), var(--champagne)); }
.bg-ivory    { background: var(--ivory); }
.bg-emerald  { background: var(--emerald-deep); color: var(--cream); }
.bg-emerald.dark { background: var(--emerald-darker); }
.bg-emerald h1,.bg-emerald h2,.bg-emerald h3,.bg-emerald h4 { color: var(--cream); }
.bg-emerald p { color: var(--color-text-inverse-muted); }
.bg-marble {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(212,175,55,.08), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(58,29,79,.06), transparent 55%),
    var(--cream);
}

/* ---------- Announcement bar ---------- */
/* ---------- Premium top bar ---------- */
.top-bar {
  background: var(--emerald-darker);
  color: var(--cream);
  border-bottom: 1px solid rgba(212,175,55,.4);
}
.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.top-bar-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}
.top-bar-dot {
  color: var(--gold);
  margin: 0 .6em;
  font-size: .8em;
}
.top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--emerald-darker);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-decoration: none;
  border-radius: 4px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.top-bar-phone:hover {
  transform: translateY(-1px);
  background: #d4b45a;
  box-shadow: 0 4px 14px rgba(212,175,55,.35);
}
.top-bar-phone svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 720px) {
  .top-bar-inner {
    padding: 10px 16px;
    gap: 12px;
    justify-content: center;
  }
  .top-bar-tagline {
    font-size: 12px;
    letter-spacing: .24em;
  }
  .top-bar-phone {
    font-size: 13px;
    padding: 7px 14px;
  }
}

/* ---------- Legacy .announce (kept for compatibility) ---------- */
.announce {
  background: var(--emerald-darker);
  color: var(--cream);
  font-size: var(--text-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(212,175,55,.35);
}
.announce .star { color: var(--gold); margin: 0 .75rem; }

/* ---------- Header ---------- */
/* Two-row luxury header: logo on top (centerpiece), nav below */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,241,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border-soft);
  transition: box-shadow .4s var(--ease-luxury), background .4s var(--ease-luxury), padding .4s var(--ease-luxury);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 22px var(--page-gutter) 18px;
  max-width: var(--content-wide);
  margin: 0 auto;
  transition: padding .35s var(--ease-luxury);
}
.header.scrolled .header-top { padding: 10px var(--page-gutter) 8px; }

.header-crown {
  display: block;
  height: 180px;
  width: 180px;
  object-fit: contain;
  object-position: center;
  transition: height .35s var(--ease-luxury), width .35s var(--ease-luxury), opacity .35s ease;
}
.header.scrolled .header-crown { height: 78px; width: 78px; }

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease-luxury);
}
.brand-logo:hover { transform: translateY(-2px); }
.brand-logo .logo-wordmark {
  display: block;
  height: 180px;
  width: auto;
  max-width: min(420px, 80vw);
  object-fit: contain;
  filter: drop-shadow(0 3px 12px rgba(35,25,15,.10));
  transition: height .4s var(--ease-luxury), filter .4s var(--ease-luxury);
}
.brand-logo:hover .logo-wordmark { filter: drop-shadow(0 6px 20px rgba(35,25,15,.16)); }
.header.scrolled .brand-logo .logo-wordmark { height: 72px; max-width: 220px; }
.brand-logo .logo-monogram {
  display: none;
  height: 88px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(35,25,15,.08));
  transition: height .4s var(--ease-luxury);
}
.header.scrolled .brand-logo .logo-monogram { height: 66px; }

.header-top-right {
  display: flex;
  align-items: center;
  gap: .875rem;
}

/* Bottom nav row — refined, spacious, gold hairline dividers */
.header-nav-row {
  border-top: 1px solid var(--color-border-soft);
  background: linear-gradient(180deg, transparent, rgba(212,175,55,.03));
}
.header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px var(--page-gutter);
  max-width: var(--content-wide);
  margin: 0 auto;
  gap: 1rem;
}

.nav {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: center;
  justify-content: center;
}
.nav a {
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .4s var(--ease-luxury);
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--emerald); }

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}
@media (max-width: 780px) {
  .header-crown { display: none; }
  .header-top { padding: 12px var(--page-gutter); }
  .brand-logo .logo-wordmark { display: none; }
  .brand-logo .logo-monogram { display: block; height: 66px; }
  .header.scrolled .brand-logo .logo-monogram { height: 52px; }
  .header-nav-row { display: none; }
}
@media (min-width: 781px) and (max-width: 1024px) {
  .brand-logo .logo-wordmark { height: 130px; max-width: 320px; }
  .header.scrolled .brand-logo .logo-wordmark { height: 56px; max-width: 180px; }
  .header-crown { height: 130px; width: 130px; }
}
@media (min-width: 1025px) and (max-width: 1180px) {
  .header-crown { height: 150px; width: 150px; }
}
.social-icons { display: flex; gap: .75rem; }
.social-icons a {
  width: 36px; height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--emerald);
}
.social-icons a:hover { background: var(--emerald); color: var(--cream); border-color: var(--emerald); }
.social-icons svg { width: 15px; height: 15px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--emerald);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .625rem;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: var(--cream);
  border-color: var(--emerald);
}
.btn-primary:hover { background: var(--emerald-deep); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(212,175,55,.55);
}
.btn-ghost:hover { background: rgba(212,175,55,.12); border-color: var(--gold); }
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border: 1px solid var(--emerald);
}
.btn-outline:hover { background: var(--emerald); color: var(--cream); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-warm));
  color: var(--emerald-deep);
  border-color: var(--gold-warm);
}
.btn-gold:hover { box-shadow: var(--shadow-gold); filter: brightness(1.05); }
.btn-sm { padding: 10px 20px; font-size: 10px; }

/* ---------- Decorative pieces ---------- */
.gold-star {
  width: 22px; height: 22px;
  color: var(--gold);
  display: inline-block;
}
.gold-star svg { width: 100%; height: 100%; }
.gold-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 2.5rem auto;
  color: var(--gold);
  max-width: 220px;
}
.gold-divider .line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .8;
}
.arc-decor {
  color: var(--gold);
  opacity: .8;
  margin: 0 auto var(--space-4);
  width: 200px;
  max-width: 60%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--emerald-darker);
  color: var(--cream);
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease-luxury) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(4,33,28,.78) 0%, rgba(4,33,28,.5) 45%, rgba(35,16,58,.5) 100%);
  z-index: -1;
}
.hero-inner {
  padding: clamp(5rem, 10vw, 8rem) var(--page-gutter);
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.hero .eyebrow { color: var(--gold); justify-content: center; }
.hero h1 {
  font-size: var(--text-hero);
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--cream);
  margin: 1.5rem 0 1.5rem;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, .9rem + .8vw, 1.5rem);
  color: rgba(247,244,236,.88);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-style: italic;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
  margin-top: 3rem;
  color: var(--gold);
  font-size: var(--text-xs); letter-spacing: .28em; text-transform: uppercase;
  opacity: .9;
}
.hero-badges span { display: inline-flex; align-items: center; gap: .5rem; }

/* ---------- Section headings ---------- */
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 {
  font-size: var(--text-3xl);
  font-family: var(--font-display);
  font-weight: 400;
  color: inherit;
  margin: 1rem 0 1.25rem;
  line-height: 1.05;
}
.section-head h2 em { font-family: var(--font-serif); font-style: italic; color: var(--purple); }
.bg-emerald .section-head h2 em { color: var(--gold); }
.section-head p {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-style: italic;
  margin-inline: auto;
  max-width: 640px;
}
.bg-emerald .section-head p { color: var(--color-text-inverse-muted); }

/* ---------- Brand intro ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.intro-copy .eyebrow { margin-bottom: 1rem; }
.intro-copy h2 { font-size: var(--text-2xl); margin: 1rem 0 1.5rem; }
.intro-copy p { color: var(--color-text-muted); margin-bottom: 1.25rem; }
.intro-copy .signature { font-family: var(--font-script); font-size: 2rem; color: var(--purple); line-height: 1; margin-top: 1rem; }
.intro-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--champagne);
  box-shadow: var(--shadow-lg);
}
.intro-media::before {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(212,175,55,.5);
  pointer-events: none;
  z-index: 2;
}
.intro-media img { width: 100%; height: 100%; object-fit: cover; }
.intro-monogram {
  position: absolute;
  right: -30px; bottom: -30px;
  width: 130px; height: 130px;
  opacity: .12;
  color: var(--gold);
}

/* ---------- Category grid ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .cat-grid { grid-template-columns: 1fr; }
}
.cat-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream-warm);
  cursor: pointer;
  isolation: isolate;
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-luxury);
}
.cat-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,33,28,0) 40%, rgba(4,33,28,.85) 100%);
  z-index: 1;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card .cat-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem;
  z-index: 2;
  color: var(--cream);
}
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--cream);
  margin-bottom: .35rem;
}
.cat-card p {
  font-size: var(--text-xs);
  letter-spacing: .05em;
  color: rgba(247,244,236,.75);
  margin-bottom: .75rem;
}
.cat-card .cat-link {
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600;
}
.cat-card .cat-link::after { content: "→"; transition: transform .3s var(--ease-luxury); }
.cat-card:hover .cat-link::after { transform: translateX(4px); }

/* Category placeholder for items without image */
.cat-card.placeholder {
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,.18), transparent 65%),
    linear-gradient(180deg, var(--emerald), var(--emerald-deep));
  display: grid; place-items: end;
}
.cat-card.placeholder::after {
  background: linear-gradient(180deg, rgba(4,33,28,0) 20%, rgba(4,33,28,.55) 100%);
}
.cat-card.placeholder .cat-ornament {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--gold);
  opacity: .28;
}
.cat-card.placeholder .cat-ornament svg { width: 68%; height: 68%; }

/* ---------- Signature collections ---------- */
.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1100px) {
  .collections { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .collections { grid-template-columns: 1fr; }
}
.collection-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--color-border-soft);
  transition: transform .5s var(--ease-luxury), box-shadow .5s var(--ease-luxury);
}
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.collection-media {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--champagne);
}
.collection-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-luxury); }
.collection-card:hover .collection-media img { transform: scale(1.05); }
.collection-body { padding: 1.75rem 1.75rem 2rem; }
.collection-body .eyebrow { margin-bottom: .75rem; }
.collection-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: .5rem;
  color: var(--emerald-deep);
}
.collection-body p {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}
.collection-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs); letter-spacing: .16em; text-transform: uppercase;
}
.collection-meta .price { color: var(--purple); font-weight: 600; }
.collection-meta a { color: var(--emerald); font-weight: 600; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-item {
  padding: 2rem 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  transition: border-color .4s var(--ease-luxury), transform .4s var(--ease-luxury);
  position: relative;
}
.service-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.service-item .icon {
  color: var(--gold);
  width: 40px; height: 40px;
  margin-bottom: 1rem;
}
.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: .5rem;
  color: var(--emerald-deep);
}
.service-item p {
  font-size: .9375rem;
  color: var(--color-text-muted);
}

/* ---------- Experience steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
@media (max-width: 1100px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }
.step {
  text-align: center;
  padding: 2rem 1.25rem;
  border-left: 1px solid var(--color-divider);
}
.step:first-child { border-left: none; }
.step .num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  font-style: italic;
}
.bg-emerald .step .num { color: var(--gold); }
.step h3 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  color: inherit;
  font-weight: 600;
}
.step p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: inherit;
  opacity: .8;
}
@media (max-width: 720px) {
  .step { border-left: none; border-top: 1px solid rgba(212,175,55,.25); }
  .step:first-child { border-top: none; }
}

/* ---------- Gallery ---------- */
.gallery-filter {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: .5rem; margin-bottom: 2.5rem;
}
.gallery-filter button {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  font-weight: 500;
}
.gallery-filter button:hover { color: var(--emerald); border-color: var(--emerald); }
.gallery-filter button.active { background: var(--emerald); color: var(--cream); border-color: var(--emerald); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  background: var(--champagne);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-luxury); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(4,33,28,.5));
  opacity: 0; transition: opacity .4s var(--ease-luxury);
}
.gallery-item:hover::after { opacity: 1; }
/* Uniform grid — all items the same size, no gaps. Ignore legacy span classes. */
.gallery-item.tall,
.gallery-item.wide,
.gallery-item.large { grid-row: span 1; grid-column: span 1; }
/* Hidden filtered items don't leave visual holes */
.gallery-item[hidden] { display: none; }
@media (max-width: 1100px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; } }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; } }

/* ---------- Instagram section ---------- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 2rem;
}
.instagram-grid a {
  aspect-ratio: 1; overflow: hidden;
  position: relative;
  background: var(--champagne);
  border-radius: var(--radius-sm);
}
.instagram-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-luxury); }
.instagram-grid a::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(4,33,28,.4);
  opacity: 0; transition: opacity .3s;
  display: grid; place-items: center;
}
.instagram-grid a:hover::after { opacity: 1; }
.instagram-grid a:hover img { transform: scale(1.08); }
@media (max-width: 900px) { .instagram-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1100px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  padding: 2.5rem 2rem;
  background: rgba(247,244,236,.05);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: var(--radius-md);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -20px; left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
}
.testimonial p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.testimonial .attr {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.testimonial .attr .role { display: block; color: rgba(247,244,236,.6); font-weight: 400; margin-top: .25rem; }

/* ---------- Partners CTA ---------- */
.partners {
  text-align: center;
}
.partners .logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem 3.5rem;
  margin: 2rem auto 3rem;
  max-width: 900px;
  color: var(--color-text-muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  opacity: .75;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) var(--page-gutter);
  text-align: center;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-image: var(--cta-image);
}
.final-cta::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(4,33,28,.55), rgba(35,16,58,.45));
}

/* Text shadows on final-cta so text stays readable against brighter background */
.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  text-shadow:
    0 2px 10px rgba(0,0,0,.7),
    0 1px 3px rgba(0,0,0,.8),
    0 0 20px rgba(0,0,0,.5);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--cream);
  max-width: 800px;
  margin: 1.5rem auto 1.5rem;
  line-height: 1.05;
}
.final-cta h2 em { font-style: italic; color: var(--gold); }
.final-cta p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(247,244,236,.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.final-cta .ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--emerald-darker);
  color: var(--cream);
  padding: clamp(4rem, 6vw, 6rem) var(--page-gutter) 2rem;
}
.footer-inner { max-width: var(--content-wide); margin-inline: auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212,175,55,.25);
}
.footer h4 {
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer p, .footer li a { font-size: .9375rem; color: rgba(247,244,236,.72); line-height: 1.8; }
.footer li { list-style: none; }
.footer li a:hover { color: var(--gold); }
/* Cream business-card behind the LA monogram — luxury "stationery on velvet" feel */
.footer-logo-card {
  display: inline-block;
  padding: 22px 30px 20px;
  background: linear-gradient(180deg, #FBF8F1 0%, #F3ECDA 100%);
  border: 1px solid rgba(212,175,55,.5);
  border-radius: 4px;
  box-shadow:
    0 14px 40px rgba(0,0,0,.5),
    0 4px 12px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.5);
  position: relative;
  margin-bottom: 1.75rem;
}
.footer-logo-card::before {
  /* Inner gold hairline for stationery detail */
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 2px;
  pointer-events: none;
}
.footer .brand-block .logo-wordmark {
  height: 128px;
  width: auto;
  max-width: 220px;
  display: block;
  position: relative;
  z-index: 1;
}
.footer .brand-block p { 
  max-width: 340px; 
  margin-bottom: 1.5rem; 
  font-family: var(--font-display); 
  font-style: normal; 
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(247,244,236,.92);
  letter-spacing: .01em;
}
.footer .social-icons a { border-color: rgba(212,175,55,.4); color: var(--gold); }
.footer .social-icons a:hover { background: var(--gold); color: var(--emerald-darker); border-color: var(--gold); }

.footer .newsletter {
  padding: 1.5rem;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--radius-md);
}
.footer .newsletter p { color: rgba(247,244,236,.78); font-size: .9375rem; margin-bottom: 1rem; }
.footer .newsletter form { display: grid; gap: .5rem; }
.footer .newsletter input {
  padding: 12px 14px;
  background: rgba(247,244,236,.06);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--cream);
  font-size: .9375rem;
  border-radius: var(--radius-sm);
}
.footer .newsletter input::placeholder { color: rgba(247,244,236,.5); }
.footer .newsletter button {
  padding: 12px;
  background: var(--gold);
  color: var(--emerald-darker);
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.footer .newsletter button:hover { background: var(--gold-soft); }

.footer-signature {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--gold);
  padding: 2rem 0 1.5rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(212,175,55,.15);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 12px;
  color: rgba(247,244,236,.55);
  letter-spacing: .1em;
}
.footer-bottom ul { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--emerald-darker), var(--emerald-deep));
  color: var(--cream);
  padding: clamp(6rem, 10vw, 9rem) var(--page-gutter) clamp(4rem, 7vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--gold); justify-content: center; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--cream);
  margin: 1.25rem 0 1rem;
  font-weight: 400;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(247,244,236,.82);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Rental catalog (rentals page) ---------- */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}
.filters {
  position: sticky; top: 100px;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
}
.filters h4 { color: var(--emerald); font-size: 11px; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--color-divider); }
.filters .filter-group { margin-bottom: 1.5rem; }
.filters label { display: flex; align-items: center; gap: .5rem; font-size: .9375rem; padding: .25rem 0; color: var(--color-text-muted); cursor: pointer; }
.filters label:hover { color: var(--emerald); }
.filters input[type="checkbox"] { accent-color: var(--emerald); width: 16px; height: 16px; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .catalog-grid { grid-template-columns: 1fr; }
}
.item-card {
  background: var(--cream);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .4s var(--ease-luxury), transform .4s var(--ease-luxury);
}
.item-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.item-media {
  aspect-ratio: 4/5;
  background: var(--champagne);
  position: relative;
  overflow: hidden;
}
.item-media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; background: var(--cream); }
.item-media.placeholder {
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,.15), transparent 65%),
    linear-gradient(180deg, var(--cream), var(--champagne));
  display: grid; place-items: center;
  color: var(--gold);
}
.item-media.placeholder svg { width: 70%; height: 70%; opacity: .35; }
.item-body { padding: 1.25rem; }
.item-body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--emerald-deep);
  margin-bottom: .25rem;
}
.item-body .meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8125rem;
  color: var(--color-text-muted);
  margin-bottom: .875rem;
  letter-spacing: .04em;
}
.item-body .price { color: var(--purple); font-weight: 600; }
.item-body button {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--emerald);
  color: var(--emerald);
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase; font-weight: 600;
  border-radius: var(--radius-sm);
}
.item-body button:hover { background: var(--emerald); color: var(--cream); }

/* ---------- Multi-step form ---------- */
.quote-form {
  max-width: 780px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--color-border-soft);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
}
.quote-form::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid rgba(212,175,55,.35);
  pointer-events: none;
  border-radius: var(--radius-sm);
}
.form-steps-nav {
  display: flex; justify-content: center; gap: .5rem;
  margin-bottom: 2.5rem;
}
.form-steps-nav .step-dot {
  display: flex; align-items: center; gap: .5rem;
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--color-text-faint);
  font-weight: 600;
}
.form-steps-nav .step-dot .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--color-text-faint);
  font-weight: 500;
}
.form-steps-nav .step-dot.active .num { background: var(--emerald); color: var(--cream); border-color: var(--emerald); }
.form-steps-nav .step-dot.active { color: var(--emerald); }
.form-steps-nav .connector { width: 24px; height: 1px; background: var(--color-divider); align-self: center; }

.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeIn .4s var(--ease-luxury); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.form-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: .375rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border-soft);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(14,88,72,.12);
}
.field textarea { min-height: 100px; resize: vertical; }

.checkbox-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .5rem 1rem;
  margin: .5rem 0 1rem;
}
.checkbox-item {
  display: flex; align-items: center; gap: .5rem;
  padding: 10px 12px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  cursor: pointer;
  background: var(--ivory);
}
.checkbox-item:hover { border-color: var(--emerald); }
.checkbox-item input { accent-color: var(--emerald); }

.form-controls {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-divider);
  gap: 1rem;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq {
  border-bottom: 1px solid var(--color-divider);
}
.faq summary {
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--emerald-deep);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  list-style: none;
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
  font-family: var(--font-display);
  transition: transform .3s var(--ease-luxury);
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p {
  padding: 0 0 1.5rem;
  color: var(--color-text-muted);
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--emerald-deep);
  margin: 1rem 0 1.5rem;
}
.contact-info .info-row {
  display: flex; gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-divider);
}
.contact-info .info-row .icon {
  color: var(--gold);
  width: 28px; height: 28px;
  flex-shrink: 0;
}
.contact-info .info-row .label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: .25rem;
}
.contact-info .info-row .value {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--emerald-deep);
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }
.mb-8 { margin-bottom: 2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.stack-lg > * + * { margin-top: 1.5rem; }

/* ---------- Reveal animation ---------- */
/* Only hide/animate when JS has flagged the doc — otherwise content stays visible */
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease-luxury), transform .9s var(--ease-luxury); }
.js-ready .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Responsive breakpoints ---------- */
@media (max-width: 960px) {
  .intro-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .brand-block { grid-column: 1 / -1; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  /* Mobile: single-row header with monogram, hamburger */
  .nav {
    position: fixed;
    inset: 100px 0 auto 0;
    background: var(--emerald-darker);
    flex-direction: column;
    padding: 2rem;
    align-items: stretch;
    gap: 1.25rem;
    transform: translateY(-120%);
    transition: transform .4s var(--ease-luxury);
    max-height: calc(100dvh - 100px);
    overflow: auto;
    z-index: 55;
  }
  .nav.open { transform: translateY(0); }
  .nav a { color: var(--cream); font-size: 14px; padding: 8px 0; border-bottom: 1px solid rgba(212,175,55,.15); }
  .nav a::after { display: none; }
  .nav a[aria-current="page"] { color: var(--gold); }
  .nav-toggle { display: inline-flex; }
  .hero-badges { gap: 1rem; font-size: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .hero-ctas .btn { flex: 1 1 auto; }
  section { padding-block: 3.5rem; }
}

/* ============================================================
   CINEMATIC REBRAND — video hero, marquee, experiences, motion
   ============================================================ */

/* --- BRIGHTER SECTION VARIANT --- */
.bg-ivory-bright {
  background: linear-gradient(180deg, #FBF8F1 0%, #F7F1E4 100%);
  padding: 6rem 0;
}

/* --- CINEMATIC VIDEO HERO (CLEAN, READABLE) --- */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 !important;
  background: #0f0a08;
}
.hero-cinematic::after {
  display: none !important;
}
.hero-cinematic .hero-media {
  display: none !important;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.15) saturate(1.15) contrast(1.05);
  transform: scale(1.02);
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.02) translateX(0); }
  100% { transform: scale(1.08) translateX(-1.5%); }
}

/* Lighter scrim — lets the video decorations show through while keeping text readable via text-shadow below */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(15,10,8,.15) 0%, rgba(15,10,8,.42) 100%),
    linear-gradient(180deg, rgba(15,10,8,.25) 0%, rgba(15,10,8,.15) 40%, rgba(15,10,8,.45) 100%);
}

/* Strong text shadows to keep hero text sharp against brighter video */
.hero-cinematic .hero-inner .eyebrow,
.hero-cinematic .hero-inner .hero-brand-title,
.hero-cinematic .hero-inner .hero-script-tag,
.hero-cinematic .hero-inner .lede,
.hero-cinematic .hero-inner h1,
.hero-cinematic .hero-inner p {
  text-shadow:
    0 2px 12px rgba(0,0,0,.75),
    0 1px 3px rgba(0,0,0,.85),
    0 0 25px rgba(0,0,0,.5);
}

.hero-cinematic .hero-inner {
  position: relative !important;
  z-index: 3 !important;
  text-align: center;
  padding: 5rem 1.5rem !important;
  max-width: 820px !important;
  width: 100%;
  margin: 0 auto;
  color: #F7F1E4;
}

/* Eyebrow (top small caps) */
.eyebrow-light {
  color: #D7B364 !important;
  margin-bottom: 1.5rem;
}
.eyebrow-light::before,
.eyebrow-light::after {
  background: rgba(215, 179, 100, 0.5) !important;
}

/* The one-word LuxeAura brand title — elegant serif, cream, high-contrast */
.hero-brand-title {
  font-family: "Playfair Display", "Cormorant Garamond", "Noto Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  line-height: 1;
  margin: 0.5rem 0 0.75rem;
  letter-spacing: 0.01em;
  color: #F7F1E4;
  text-shadow:
    0 4px 22px rgba(0,0,0,.6),
    0 2px 8px rgba(0,0,0,.75);
}
.brand-luxe, .brand-aura {
  color: inherit;
}

/* Gold script tagline */
.hero-script-tag {
  font-family: "Alex Brush", "Great Vibes", cursive;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #E8C878;
  margin: 0.75rem 0 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  line-height: 1.1;
}

/* Body copy — cream, legible, with text-shadow */
.hero-cinematic .lede {
  color: #F7F1E4 !important;
  max-width: 620px;
  margin: 0 auto 2.25rem;
  font-size: 1.15rem;
  font-family: "Noto Serif Display", "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.65;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

.btn-ghost-light {
  color: #F7F1E4 !important;
  border: 1px solid rgba(247, 241, 228, 0.6) !important;
  background: transparent !important;
}
.btn-ghost-light:hover {
  background: rgba(215, 179, 100, 0.15) !important;
  border-color: #D7B364 !important;
  color: #D7B364 !important;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(251, 248, 241, 0.75);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  font-weight: 600;
  transition: color .3s ease;
}
.hero-scroll-cue:hover { color: #D7B364; }
.hero-scroll-cue .scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(215, 179, 100, 0.85));
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0.2); transform-origin: top; opacity: 0.4; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.2); transform-origin: bottom; opacity: 0.4; }
}
.btn-ghost-light {
  color: #FBF8F1 !important;
  border-color: rgba(251, 248, 241, 0.6) !important;
}
.btn-ghost-light:hover {
  background: rgba(251, 248, 241, 0.12) !important;
  border-color: #D7B364 !important;
  color: #D7B364 !important;
}

/* --- MARQUEE --- */
.brand-marquee {
  background: #1a5f4a;
  color: #F4ECD8;
  padding: 1.15rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(215,179,100,.3);
  border-bottom: 1px solid rgba(215,179,100,.3);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  color: #F4ECD8;
  flex-shrink: 0;
}
.marquee-track .m-dot {
  color: #D7B364;
  font-size: 0.7rem;
  letter-spacing: 0;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- SIGNATURE EXPERIENCES --- */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.exp-card {
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(26, 95, 74, 0.15), 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
              box-shadow 0.5s ease;
  border: 1px solid rgba(215, 179, 100, 0.2);
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -20px rgba(26, 95, 74, 0.28), 0 8px 24px rgba(0,0,0,0.06);
}
.exp-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.exp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.exp-card:hover .exp-media img { transform: scale(1.06); }
.exp-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: #b08d3f;
  color: #FFF;
  padding: 0.4rem 0.85rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.exp-badge-signature {
  background: #1a5f4a;
}
.exp-body {
  padding: 2rem 2rem 2.25rem;
}
.exp-body h3 {
  font-family: "Playfair Display", "Noto Serif Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #1a5f4a;
  margin: 0.35rem 0 1rem;
  letter-spacing: -0.005em;
}
.exp-body p {
  color: #4a3f39;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.exp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.exp-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  font-family: "Noto Serif Display", "Playfair Display", Georgia, serif;
  font-style: italic;
  color: #3b2e2a;
  font-size: 0.98rem;
  line-height: 1.5;
}
.exp-features li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #b08d3f;
  font-size: 0.55rem;
  top: 0.5rem;
}
.eyebrow-gold {
  color: #b08d3f !important;
}
.eyebrow-gold::before,
.eyebrow-gold::after {
  background: rgba(176, 141, 63, 0.5) !important;
}
.btn-sm {
  padding: 0.75rem 1.75rem !important;
  font-size: 0.8rem !important;
}

/* --- ANIMATED STATS STRIP --- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
  padding: 2.5rem 2rem;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid rgba(215, 179, 100, 0.25);
  box-shadow: 0 12px 40px -12px rgba(26, 95, 74, 0.12);
}
.stat {
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(215, 179, 100, 0.6), transparent);
}
.stat-num {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #1a5f4a;
  line-height: 1;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
.stat-suffix {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #b08d3f;
  vertical-align: top;
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: #7a716a;
  text-transform: uppercase;
  margin-top: 0.65rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(3)::before,
  .stat:nth-child(4)::before { display: none; }
    .marquee-track span { font-size: 0.7rem; letter-spacing: 0.3em; }
  .brand-marquee { padding: 0.9rem 0; }
}
@media (max-width: 600px) {
  .stats-strip { grid-template-columns: 1fr 1fr; padding: 1.5rem 1rem; }
  .exp-body { padding: 1.5rem; }
  .hero-cinematic .hero-inner { padding: 4rem 1.25rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; }
  .marquee-track { animation-play-state: paused; }
  .hero-scroll-cue .scroll-line { animation: none; }
}

/* Hero panel responsive tuning */
@media (max-width: 768px) {
        .hero-cinematic .lede {
    font-size: 0.95rem;
  }
  .hero-cinematic .hero-inner {
    padding: 3rem 1rem;
  }
  .hero-scroll-cue { display: none; }
}
@media (max-width: 480px) {
        .hero-script-tag { font-size: 1.6rem; }
}

/* Slight darker scrim near scroll cue so its gold pops */
.hero-scroll-cue {
  color: rgba(244, 236, 216, 0.85) !important;
}


/* --- Responsive tuning for cinematic hero (v3) --- */
@media (max-width: 768px) {
  .hero-brand-title {
    font-size: clamp(3.5rem, 15vw, 6.5rem);
  }
  .hero-script-tag {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .hero-cinematic .lede {
    font-size: 1rem;
  }
  .hero-cinematic .hero-inner {
    padding: 3rem 1.25rem !important;
  }
  .hero-scroll-cue { display: none; }
}
@media (max-width: 480px) {
  .hero-brand-title {
    font-size: 3.5rem;
  }
  .hero-script-tag {
    font-size: 1.3rem;
  }
}

/* ---------- Floating mobile call button (bottom-right on mobile) ---------- */
.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--gold);
  color: var(--emerald-darker);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0,0,0,.28), 0 2px 6px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 3px 8px rgba(0,0,0,.2);
}
.floating-call svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .floating-call { display: inline-flex; }
}

/* ---------- Phone number CTA styling site-wide ---------- */
a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  transition: color .18s ease;
}
a[href^="tel:"]:hover {
  color: var(--gold);
}

/* Phone-highlight class for prominent numbers */
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--gold);
  color: var(--emerald-darker) !important;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .06em;
  text-decoration: none;
  border-radius: 4px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.14);
}
.phone-cta:hover {
  transform: translateY(-2px);
  background: #d4b45a;
  box-shadow: 0 6px 18px rgba(212,175,55,.4);
}
.phone-cta svg { width: 18px; height: 18px; }

/* ---------- Premium footer contact block ---------- */
.footer-contact {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  color: #fff !important;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
  line-height: 1.4;
}
.footer-contact a:hover {
  color: var(--gold) !important;
  transform: translateX(3px);
}
.footer-contact a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}
.footer-phone {
  font-size: 1.125rem !important;
}
.footer-email {
  font-size: 0.95rem !important;
  word-break: break-word;
}
.footer-service-area {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold) !important;
  font-family: var(--font-sans);
}

/* ============================================================
   PREMIUM CONTACT PAGE
   ============================================================ */

/* ---- CTA Strip at top of contact page ---- */
.contact-cta-strip {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  border-bottom: 1px solid var(--color-border-soft);
}
.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.contact-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: #fff;
  border: 2px solid var(--color-border-soft);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.contact-cta-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(0,0,0,.12), 0 0 0 1px rgba(176,141,63,.15);
}
.contact-cta-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  transition: background .3s ease;
}
.contact-cta-card:hover .contact-cta-icon {
  background: var(--gold);
  color: var(--emerald-darker);
}
.contact-cta-icon svg { width: 26px; height: 26px; }

.contact-cta-label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: .75rem;
}
.contact-cta-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--emerald-deep);
  line-height: 1.1;
  margin-bottom: .5rem;
}
.contact-cta-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Special "Request A Quote" gold accent card */
.contact-cta-card-gold {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  border-color: var(--emerald-deep);
  color: #fff;
}
.contact-cta-card-gold .contact-cta-label {
  color: rgba(255,255,255,.75);
}
.contact-cta-card-gold .contact-cta-value {
  color: #fff;
}
.contact-cta-card-gold .contact-cta-sub {
  color: rgba(255,255,255,.85);
}
.contact-cta-card-gold .contact-cta-icon {
  background: var(--gold);
  color: var(--emerald-darker);
}
.contact-cta-card-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,95,74,.35);
  border-color: var(--gold);
}
.contact-cta-card-gold:hover .contact-cta-icon {
  background: #fff;
}

@media (max-width: 900px) {
  .contact-cta-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-cta-card { padding: 1.75rem 1.25rem; }
  .contact-cta-value { font-size: 1.5rem; }
}

/* ---- Premium contact info sidebar ---- */
.contact-info-premium {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.contact-info-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--emerald-deep);
  margin: .75rem 0 .5rem;
  font-weight: 600;
}
.contact-info-intro {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  border-top: 1px solid var(--color-border-soft);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--color-border-soft);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease;
}
.contact-info-item:not(.contact-info-item-static):hover {
  transform: translateX(4px);
}
.contact-info-item:not(.contact-info-item-static):hover .contact-info-icon {
  background: var(--gold);
  color: var(--emerald-darker);
  border-color: var(--gold);
}
.contact-info-item:not(.contact-info-item-static):hover .contact-info-value {
  color: var(--gold);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--emerald);
  border: 1px solid var(--color-border-soft);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-body { flex: 1; min-width: 0; }
.contact-info-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .35rem;
}
.contact-info-value {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--emerald-deep);
  line-height: 1.35;
  transition: color .2s ease;
  word-break: break-word;
}
.contact-info-value-email { font-size: 1rem; }
.contact-info-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: .25rem;
}

/* ---- Social buttons ---- */
.contact-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border-soft);
}
.contact-social-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: transparent;
  color: var(--emerald-deep);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  text-decoration: none;
  border: 2px solid var(--emerald);
  border-radius: 6px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.contact-social-btn:hover {
  background: var(--emerald);
  color: #fff;
  transform: translateY(-1px);
}
.contact-social-btn svg { width: 18px; height: 18px; }

@media (max-width: 700px) {
  .contact-info-premium { padding: 1.75rem 1.5rem; }
  .contact-info-heading { font-size: 1.5rem; }
  .contact-info-value { font-size: 1.05rem; }
  .contact-info-value-email { font-size: .95rem; }
}

/* ============================================================
   PREMIUM SITEWIDE POLISH
   ============================================================ */

/* Bump base body size for readability (all ages) */
body { font-size: 17px; line-height: 1.65; }

/* Item card in rentals catalog — premium polish */
.item-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.item-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(0,0,0,.1), 0 0 0 1px rgba(176,141,63,.15);
}
.item-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--emerald-deep);
  letter-spacing: .005em;
}
.item-body .meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
}
.item-body .price {
  color: var(--gold);
  font-weight: 700;
}

/* Category card polish */
.cat-card {
  transition: transform .35s ease, box-shadow .35s ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.18), 0 0 0 1px rgba(176,141,63,.2);
}
.cat-card img {
  transition: transform .6s ease;
}
.cat-card:hover img {
  transform: scale(1.05);
}

/* Service item polish */
.service-item {
  padding: 2.25rem 1.75rem;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.service-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.service-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--emerald-deep);
  letter-spacing: .005em;
}
.service-item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* Collection card polish */
.collection-card {
  transition: transform .35s ease, box-shadow .35s ease;
}
.collection-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--emerald-deep);
  margin-bottom: .5rem;
}
.collection-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* Section headings — bolder and more premium */
.section-head h2 {
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.15;
}
.section-head p {
  font-size: 17px;
  line-height: 1.65;
}

/* Buttons — more premium feel */
.btn-primary {
  font-weight: 700;
  letter-spacing: .06em;
  padding: 14px 32px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,95,74,.3);
}
.btn-gold {
  font-weight: 700;
  letter-spacing: .06em;
  padding: 14px 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(176,141,63,.4);
}

/* Faq details — larger, more readable */
.faq summary {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
}
.faq p {
  font-size: 16px;
  line-height: 1.65;
  padding: 0 1.5rem 1.5rem;
}

/* Page hero headings — more dramatic */
.page-hero h1 {
  font-weight: 600;
  letter-spacing: -.01em;
}
.page-hero p {
  font-size: 18px;
  line-height: 1.6;
}

/* Ensure eyebrows are consistent and bold */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Mobile refinements */
@media (max-width: 700px) {
  body { font-size: 16px; }
  .service-item { padding: 1.75rem 1.5rem; }
  .service-item h3 { font-size: 1.1rem; }
  .collection-card h3 { font-size: 1.25rem; }
}

/* ============================================================
   FINAL GRID ALIGNMENT — LOCK IN CONSISTENT COLUMNS
   ============================================================ */

/* Our Values (6 items on About page) — 3 columns fits 6 perfectly as 3x2 */
.bg-emerald .services-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1000px) {
  .bg-emerald .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .bg-emerald .services-grid { grid-template-columns: 1fr; }
}

/* Form rows — align inputs in pairs, not auto-fit */
.form-row {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr !important; }
}

/* Checkbox grid on contact form */
.checkbox-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 700px) {
  .checkbox-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .checkbox-grid { grid-template-columns: 1fr !important; }
}

/* Category cards on homepage — enforce equal height */
.cat-card {
  aspect-ratio: 4/5 !important;
}

/* Rentals catalog — item cards equal height regardless of description length */
.item-card {
  display: flex;
  flex-direction: column;
}
.item-card .item-media {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream);
}
.item-card .item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background: var(--cream);
}
.item-card .item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
}

/* Collection cards — equal-height alignment */
.collection-card {
  display: flex;
  flex-direction: column;
}
.collection-card .collection-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.collection-card .collection-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-card .collection-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.collection-card .collection-meta {
  margin-top: auto;
}

/* Service item — equal height */
.service-item {
  display: flex;
  flex-direction: column;
}
.service-item p {
  flex: 1;
}

/* ============================================================
   PREMIUM FAQ PAGE
   ============================================================ */

.faq-hero { background: linear-gradient(180deg, var(--emerald-deep) 0%, var(--emerald-darker) 100%); padding-block: 5rem 4rem; }

.faq-section { padding: 4rem 0 5rem; }

.faq-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .faq-groups { grid-template-columns: 1fr; gap: 1.5rem; }
}

.faq-group {
  background: #fff;
  border: 1px solid var(--color-border-soft);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-group:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.08), 0 0 0 1px rgba(176,141,63,.15);
  border-color: rgba(176,141,63,.3);
}

.faq-group-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gold);
}
.faq-group-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,95,74,.25);
}
.faq-group-icon svg { width: 26px; height: 26px; }

.faq-group-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.faq-group-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--emerald-deep);
  margin: 0;
  line-height: 1.2;
}

.faq-group .faq {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border-soft);
  border-radius: 0;
  margin: 0;
  padding: 0;
  transition: none;
}
.faq-group .faq:last-child { border-bottom: none; }
.faq-group .faq:hover { transform: none; box-shadow: none; }

.faq-group .faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  transition: color .2s ease;
}
.faq-group .faq summary::-webkit-details-marker { display: none; }
.faq-group .faq summary::marker { display: none; }
.faq-group .faq summary:hover { color: var(--gold); }
.faq-group .faq summary:hover .faq-icon { background: var(--gold); }

.faq-group .faq .faq-q {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--emerald-deep);
  line-height: 1.4;
  flex: 1;
  transition: color .2s ease;
}
.faq-group .faq summary:hover .faq-q { color: var(--gold); }

.faq-group .faq .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--color-border-soft);
  position: relative;
  flex-shrink: 0;
  transition: transform .3s ease, background .2s ease, border-color .2s ease;
}
.faq-group .faq .faq-icon::before,
.faq-group .faq .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--emerald-deep);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background .2s ease, opacity .3s ease;
}
.faq-group .faq .faq-icon::before { width: 12px; height: 2px; }
.faq-group .faq .faq-icon::after { width: 2px; height: 12px; }
.faq-group .faq[open] .faq-icon { background: var(--emerald); border-color: var(--emerald); transform: rotate(180deg); }
.faq-group .faq[open] .faq-icon::before,
.faq-group .faq[open] .faq-icon::after { background: #fff; }
.faq-group .faq[open] .faq-icon::after { opacity: 0; }

.faq-group .faq p {
  padding: 0 0 1.15rem;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* Still have questions banner */
.faq-help-banner {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  border-radius: 20px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,95,74,.25);
}
.faq-help-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(176,141,63,.15) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(176,141,63,.1) 0%, transparent 60%);
  pointer-events: none;
}
.faq-help-content {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.faq-help-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  margin: 1rem 0 .75rem;
  line-height: 1.15;
}
.faq-help-banner h2 em { color: var(--gold); font-style: normal; }
.faq-help-banner p {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.faq-help-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.faq-help-banner .btn-primary {
  background: var(--gold);
  color: var(--emerald-darker);
  border-color: var(--gold);
}
.faq-help-banner .btn-primary:hover {
  background: #c9a24a;
  border-color: #c9a24a;
  color: var(--emerald-darker);
}
.faq-help-banner .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.faq-help-banner .btn-outline:hover {
  background: #fff;
  color: var(--emerald-deep);
  border-color: #fff;
}

@media (max-width: 700px) {
  .faq-group { padding: 1.5rem; }
  .faq-group-header { gap: .75rem; }
  .faq-group-icon { width: 48px; height: 48px; }
  .faq-group-header h2 { font-size: 1.2rem; }
  .faq-help-banner { padding: 2.5rem 1.5rem; }
  .faq-help-actions .btn { width: 100%; }
}

/* ============================================================
   PREMIUM GALLERY SHOWCASE (redesigned)
   ============================================================ */
.gallery-hero { background: linear-gradient(180deg, var(--emerald-deep) 0%, var(--emerald-darker) 100%); padding-block: 5rem 4rem; }
.gallery-section { padding: 3rem 0 5rem; }

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
}
.gallery-filter button {
  background: transparent;
  border: 1.5px solid var(--color-border-soft);
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  cursor: pointer;
  transition: all .3s ease;
}
.gallery-filter button:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.gallery-filter button.active {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}

/* Showcase grid — uniform square tiles for a clean editorial look */
.gallery-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 900px) {
  .gallery-showcase { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 600px) {
  .gallery-showcase { grid-template-columns: 1fr; }
}

.gs-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cream);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .4s var(--ease-luxury), box-shadow .4s ease;
  aspect-ratio: 1/1;
}
.gs-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  transition: transform .8s var(--ease-luxury);
  display: block;
  background: var(--cream);
}
.gs-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.15), 0 0 0 1px rgba(176,141,63,.2);
}
.gs-item:hover img { transform: scale(1.05); }

/* Feature/hero variant — taller */
.gs-item.gs-hero {
  grid-row: span 2;
  aspect-ratio: 1/2.1;
}
@media (max-width: 900px) {
  .gs-item.gs-hero { grid-row: auto; aspect-ratio: 1/1; }
}

/* Wide variant — spans 2 columns */
.gs-item.gs-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
@media (max-width: 600px) {
  .gs-item.gs-wide { grid-column: span 1; aspect-ratio: 1/1; }
}

/* Caption overlay */
.gs-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(35,25,15,.85) 100%);
  color: #fff;
  transform: translateY(35%);
  transition: transform .4s var(--ease-luxury);
  pointer-events: none;
}
.gs-item:hover figcaption {
  transform: translateY(0);
}
.gs-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.gs-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

/* Filter hidden state */
.gs-item.filtered-out {
  display: none;
}

/* Gallery footer CTA */
.gallery-footer-cta {
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(26,95,74,.25);
  position: relative;
  overflow: hidden;
}
.gallery-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(176,141,63,.15) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(176,141,63,.1) 0%, transparent 60%);
  pointer-events: none;
}
.gallery-footer-cta > * { position: relative; }
.gallery-footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin: 1rem 0 .75rem;
  color: #fff;
  line-height: 1.15;
}
.gallery-footer-cta h2 em { color: var(--gold); font-style: normal; }
.gallery-footer-cta p {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.gallery-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery-footer-cta .btn-primary {
  background: var(--gold);
  color: var(--emerald-darker);
  border-color: var(--gold);
}
.gallery-footer-cta .btn-primary:hover {
  background: #c9a24a;
  border-color: #c9a24a;
}
.gallery-footer-cta .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.gallery-footer-cta .btn-outline:hover {
  background: #fff;
  color: var(--emerald-deep);
}

@media (max-width: 700px) {
  .gallery-footer-cta { padding: 2.5rem 1.5rem; }
  .gallery-cta-actions .btn { width: 100%; }
}

/* ==================== EDITORIAL GALLERY (premium) ==================== */
.gallery-editorial {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 3rem;
}

/* Chapter header */
.ed-chapter { display: flex; flex-direction: column; gap: 2.5rem; }
.ed-chapter-head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 2rem;
  row-gap: 1rem;
  align-items: end;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(176, 141, 63, 0.25);
  margin-bottom: 1rem;
}
.ed-chapter-num {
  grid-row: 1 / 3;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--gold, #b08d3f);
  letter-spacing: -0.02em;
  font-style: italic;
  opacity: 0.9;
}
.ed-chapter-title-block { display: flex; flex-direction: column; gap: 0.5rem; }
.ed-chapter-eyebrow {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold, #b08d3f);
  font-weight: 500;
}
.ed-chapter-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--emerald, #1a5f4a);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.ed-chapter-title em {
  font-family: 'Great Vibes', var(--font-display, 'Playfair Display'), serif;
  font-weight: 400;
  font-style: italic;
  color: var(--gold, #b08d3f);
  font-size: 1.2em;
  line-height: 0.9;
  padding-left: 0.15em;
}
.ed-chapter-intro {
  grid-column: 2 / 3;
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink, #3b2e2a);
  opacity: 0.75;
  max-width: 640px;
  margin: 0;
}

/* Grids */
.ed-grid {
  display: grid;
  gap: 1.5rem;
}
.ed-grid-hero-3 { grid-template-columns: 2fr 1fr 1fr; }
.ed-grid-hero-3 .ed-hero { grid-row: span 2; }
.ed-grid-2-hero { grid-template-columns: 2fr 1fr; }
.ed-grid-3 { grid-template-columns: repeat(3, 1fr); }
.ed-grid-4 { grid-template-columns: repeat(4, 1fr); }
.ed-grid-hero-wide { grid-template-columns: 1fr; }

/* Items */
.ed-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(180deg, #FBFAF6 0%, #F4ECD8 100%);
  aspect-ratio: 4/5;
  box-shadow: 0 1px 3px rgba(59, 46, 42, 0.06);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
}
.ed-item.ed-hero { aspect-ratio: 4/5.5; }
.ed-item.ed-wide { aspect-ratio: 16/10; }
.ed-item.ed-fullhero { aspect-ratio: 21/9; }
.ed-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 1rem;
}
.ed-item.ed-wide img,
.ed-item.ed-fullhero img { object-fit: cover; padding: 0; }
.ed-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(59, 46, 42, 0.18), 0 8px 20px -8px rgba(26, 95, 74, 0.08);
}
.ed-item:hover img { transform: scale(1.03); }

/* Caption */
.ed-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 25, 20, 0.85) 100%);
  color: var(--cream, #F4ECD8);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: translateY(60%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s;
}
.ed-item:hover figcaption,
.ed-item:focus-within figcaption {
  transform: translateY(0);
  opacity: 1;
}
.ed-eyebrow {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light, #d4b877);
  font-weight: 500;
}
.ed-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.005em;
}

/* Chapter divider */
.ed-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
}
.ed-divider-line {
  height: 1px;
  width: 100px;
  background: linear-gradient(90deg, transparent 0%, var(--gold, #b08d3f) 50%, transparent 100%);
  opacity: 0.5;
}
.ed-divider-star {
  color: var(--gold, #b08d3f);
  font-size: 1rem;
  opacity: 0.75;
  letter-spacing: 0;
}

/* Filtered out state */
.ed-item.filtered-out { display: none; }
.ed-chapter.filtered-out { display: none; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .ed-grid-hero-3 { grid-template-columns: 1fr 1fr; }
  .ed-grid-hero-3 .ed-hero { grid-column: 1 / -1; grid-row: auto; }
  .ed-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .ed-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .gallery-editorial { gap: 4rem; }
  .ed-chapter { gap: 1.75rem; }
  .ed-chapter-head { grid-template-columns: auto 1fr; column-gap: 1.25rem; padding-bottom: 1.25rem; }
  .ed-chapter-num { font-size: 3.5rem; }
  .ed-chapter-title { font-size: 1.6rem; }
  .ed-chapter-intro { grid-column: 1 / -1; font-size: 0.95rem; }
  .ed-grid { gap: 1rem; }
  .ed-grid-hero-3,
  .ed-grid-2-hero,
  .ed-grid-4,
  .ed-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .ed-grid-hero-3 .ed-hero,
  .ed-grid-2-hero .ed-wide { grid-column: 1 / -1; }
  .ed-item { aspect-ratio: 3/4; }
  .ed-item.ed-hero,
  .ed-item.ed-wide { aspect-ratio: 16/10; }
  .ed-item.ed-fullhero { aspect-ratio: 4/3; }
  .ed-item figcaption { transform: translateY(0); opacity: 1; padding: 1.25rem 1rem 1rem; }
  .ed-title { font-size: 1.05rem; }
  .ed-divider-line { width: 60px; }
}

/* ---- Filter chip refinements ---- */
.gallery-filter {
  margin-block: 2rem 1rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  display: inline-flex;
  gap: 0.25rem;
}
.gallery-filter button {
  border: none;
  background: transparent;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink, #3b2e2a);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.gallery-filter button:hover { opacity: 1; background: rgba(176, 141, 63, 0.08); color: var(--emerald, #1a5f4a); border: none; }
.gallery-filter button.active {
  background: linear-gradient(135deg, var(--emerald, #1a5f4a) 0%, var(--emerald-deep, #144a39) 100%);
  color: var(--cream, #F4ECD8);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(26, 95, 74, 0.22);
  border: none;
}
@media (max-width: 720px) {
  .gallery-filter { flex-wrap: wrap; justify-content: center; }
  .gallery-filter button { padding: 0.5rem 0.85rem; font-size: 0.7rem; }
}

/* ==================== FOLLOW THE AURA — premium CTA card ==================== */
.ig-cta-section {
  background: linear-gradient(180deg, #F4ECD8 0%, #FBFAF6 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.ig-cta-section::before,
.ig-cta-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 141, 63, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ig-cta-section::before { top: -250px; left: -250px; }
.ig-cta-section::after { bottom: -250px; right: -250px; }

.ig-cta-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #FBFAF6 100%);
  border: 1px solid rgba(176, 141, 63, 0.25);
  border-radius: 6px;
  text-align: center;
  box-shadow:
    0 30px 60px -20px rgba(59, 46, 42, 0.12),
    0 10px 30px -12px rgba(26, 95, 74, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}
.ig-cta-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(176, 141, 63, 0.18);
  border-radius: 4px;
  pointer-events: none;
}
.ig-cta-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald, #1a5f4a) 0%, var(--emerald-deep, #144a39) 100%);
  color: var(--gold-light, #d4b877);
  box-shadow: 0 8px 20px -6px rgba(26, 95, 74, 0.35);
}
.ig-cta-emblem svg { width: 30px; height: 30px; }
.ig-cta-eyebrow {
  color: var(--gold, #b08d3f);
  justify-content: center;
  margin-bottom: 1rem;
}
.ig-cta-heading {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--emerald, #1a5f4a);
  margin: 0 0 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.ig-cta-heading em {
  font-family: 'Great Vibes', var(--font-display, 'Playfair Display'), serif;
  font-weight: 400;
  font-style: italic;
  color: var(--gold, #b08d3f);
  font-size: 1.2em;
}
.ig-cta-tag {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink, #3b2e2a);
  opacity: 0.75;
  max-width: 500px;
  margin: 0 auto 2rem;
}
.ig-cta-actions {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ig-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .ig-cta-section { padding: 4rem 1rem; }
  .ig-cta-card { padding: 3rem 1.5rem; }
  .ig-cta-actions { flex-direction: column; width: 100%; }
  .ig-cta-btn { width: 100%; }
}
