/* =====================================================================
   BRIAN DELIA PHOTOGRAPHY — Luxury Editorial Design System
   Vanilla CSS · Ivory + Champagne Gold + Espresso
   Sections: 1 Tokens · 2 Reset · 3 Typography · 4 Layout · 5 Buttons
   6 Topbar · 7 Header/Nav · 8 Hero · 9 Sections · 10 Gallery
   11 Cards/Tilt · 12 Reviews · 13 Awards/Stats · 14 CTA · 15 Form
   16 Footer · 17 Mobile sticky bar · 18 Motion utils · 19 Misc
   20 Responsive · 21 Reduced motion
   ===================================================================== */

/* ----------------------------- 1. TOKENS ---------------------------- */
:root {
  /* Palette (derived from the logo: black serif on ivory + gold awards) */
  --ivory:      #FBF8F3;
  --alabaster:  #F2ECE2;
  --sand:       #EBE3D6;
  --gold:       #C6A15B;
  --gold-soft:  #D8BC86;
  --brass:      #A07C3B;
  --ink:        #1E1B17;
  --ink-soft:   #35302A;
  --taupe:      #7C7264;
  --umber:      #221E1A;
  --umber-2:    #2C2723;
  --cream:      #F4EFE7;
  --cream-dim:  #C9C0B2;

  /* Semantic */
  --bg: var(--ivory);
  --surface: #ffffff;
  --text: var(--ink);
  --muted: var(--taupe);
  --line: rgba(30,27,23,.12);
  --line-strong: rgba(30,27,23,.22);

  /* Type */
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Fluid sizing */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.25rem, 1.15rem + 0.5vw, 1.6rem);
  --step-2:  clamp(1.75rem, 1.5rem + 1.2vw, 2.6rem);
  --step-3:  clamp(2.4rem, 1.9rem + 2.4vw, 4rem);
  --step-4:  clamp(3rem, 2.1rem + 4.2vw, 6.2rem);

  /* Spacing */
  --space-section: clamp(4.5rem, 3rem + 6vw, 9rem);
  --container: 1240px;
  --container-narrow: 820px;
  --gutter: clamp(1.15rem, 0.6rem + 2.5vw, 3rem);

  /* Radii */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-pill: 999px;

  /* Shadows (multi-layer) */
  --sh-1: 0 1px 2px rgba(30,27,23,.06), 0 2px 8px rgba(30,27,23,.05);
  --sh-2: 0 4px 14px rgba(30,27,23,.08), 0 18px 44px -22px rgba(30,27,23,.35);
  --sh-3: 0 10px 30px rgba(30,27,23,.10), 0 40px 80px -30px rgba(30,27,23,.45);
  --sh-gold: 0 10px 30px -12px rgba(160,124,59,.55);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: 240ms;

  /* Z-index scale */
  --z-base: 1;
  --z-float: 10;
  --z-header: 40;
  --z-overlay: 60;
  --z-sticky: 55;
  --z-top: 90;
}

/* ------------------------------ 2. RESET ---------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--gold); color: #fff; }

/* --------------------------- 3. TYPOGRAPHY -------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: .005em;
  color: var(--ink);
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { max-width: 68ch; }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
  opacity: .7;
}
.eyebrow.centered { justify-content: center; }
.serif-accent { font-family: var(--font-display); font-style: italic; color: var(--brass); }
.lead { font-size: var(--step-1); line-height: 1.5; color: var(--ink-soft); font-weight: 300; }
.muted { color: var(--muted); }

/* ---------------------------- 4. LAYOUT ----------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--space-section); position: relative; }
.section.tight { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: .6rem 0 1rem; }
.split { display: grid; gap: clamp(2rem, 1rem + 5vw, 5rem); align-items: center; }
@media (min-width: 900px) { .split.cols-2 { grid-template-columns: 1fr 1fr; } .split.wide-left { grid-template-columns: 1.15fr .85fr; } }
.stack-sm > * + * { margin-top: 1rem; }
.stack-md > * + * { margin-top: 1.6rem; }
.text-center { text-align: center; }
.divider-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); border: 0; }

.bg-alabaster { background: var(--alabaster); }
.bg-sand { background: linear-gradient(180deg, var(--alabaster), var(--ivory)); }
.bg-dark { background: var(--umber); color: var(--cream); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--cream); }
.bg-dark .muted { color: var(--cream-dim); }
.bg-dark .eyebrow { color: var(--gold-soft); }

/* ---------------------------- 5. BUTTONS ---------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95em 1.9em;
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--r-pill);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
  box-shadow: var(--sh-gold);
  isolation: isolate;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--brass);
  transform: translateY(101%);
  transition: transform 420ms var(--ease-out);
}
.btn:hover { box-shadow: 0 16px 34px -14px rgba(160,124,59,.7); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: scale(.98); }

.btn-outline {
  --btn-fg: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  box-shadow: none;
  color: var(--btn-fg);
}
.btn-outline::after { background: var(--ink); }
.btn-outline:hover { color: #fff; border-color: var(--ink); box-shadow: var(--sh-2); }

.btn-ghost-light {
  --btn-fg: var(--cream);
  background: transparent;
  border: 1px solid rgba(244,239,231,.35);
  box-shadow: none;
}
.btn-ghost-light::after { background: var(--gold); }
.btn-ghost-light:hover { color: #fff; border-color: var(--gold); }

.btn.small { padding: .7em 1.4em; }
.btn-icon svg { width: 18px; height: 18px; }

.text-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--step--1); font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size 360ms var(--ease-out), color var(--dur) var(--ease);
}
.text-link svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); }
.text-link:hover { background-size: 100% 1px; color: var(--ink); }
.text-link:hover svg { transform: translateX(4px); }
.bg-dark .text-link { color: var(--gold-soft); }
.bg-dark .text-link:hover { color: var(--cream); }

/* ---------------------------- 6. TOPBAR ----------------------------- */
.topbar {
  background: var(--umber);
  color: var(--cream-dim);
  font-size: .78rem;
  letter-spacing: .04em;
  position: relative; z-index: var(--z-header);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; padding-block: .3rem; }
.topbar a { display: inline-flex; align-items: center; gap: .45rem; transition: color var(--dur) var(--ease); }
.topbar a:hover { color: var(--gold-soft); }
.topbar__left { display: flex; gap: 1.6rem; }
.topbar__right { display: flex; align-items: center; gap: 1.3rem; }
.topbar .rating { display: inline-flex; align-items: center; gap: .4rem; color: var(--gold-soft); }
.topbar .rating svg { width: 14px; height: 14px; fill: var(--gold); }
.topbar__socials { display: flex; gap: .9rem; }
.topbar__socials svg { width: 15px; height: 15px; fill: currentColor; }
.topbar .sep { width: 1px; height: 16px; background: rgba(244,239,231,.2); }
@media (max-width: 720px) {
  .topbar__left { gap: 1rem; }
  .topbar__left .tb-email, .topbar .sep-mobile-hide { display: none; }
  .topbar__inner { font-size: .72rem; }
}

/* -------------------------- 7. HEADER / NAV ------------------------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(251,248,243,.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(251,248,243,.94);
  box-shadow: var(--sh-1);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 84px; transition: min-height var(--dur) var(--ease); }
.site-header.scrolled .nav { min-height: 68px; }
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img { height: 46px; width: auto; transition: height var(--dur) var(--ease); }
.site-header.scrolled .brand img { height: 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text .name { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .02em; color: var(--ink); }
.brand__text .sub { font-size: .58rem; letter-spacing: .42em; text-transform: uppercase; color: var(--brass); margin-top: 3px; }

.nav__menu { display: none; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, .3rem + 1.4vw, 2rem); }
.nav__links a { position: relative; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 400; padding-block: .4rem; color: var(--ink-soft); transition: color var(--dur) var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 340ms var(--ease-out); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

/* dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: .35rem; background: none; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--ink-soft); }
.dropdown-toggle svg { width: 11px; height: 11px; transition: transform var(--dur) var(--ease); }
.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 210px; background: rgba(251,248,243,.98); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-2);
  padding: .6rem; opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.dropdown-menu a { display: block; padding: .6rem .8rem; border-radius: var(--r-sm); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--alabaster); color: var(--brass); }
.has-dropdown:hover .dropdown-menu, .has-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown:hover .dropdown-toggle svg, .has-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }

.nav__cta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav__phone { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; letter-spacing: .06em; color: var(--ink); }
.nav__phone svg { width: 16px; height: 16px; fill: var(--brass); }

/* hamburger */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-pill); align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: background 0ms 160ms; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--dur) var(--ease), top var(--dur) var(--ease); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: var(--umber); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  transform: translateY(-100%); transition: transform 520ms var(--ease-out);
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(1.7rem, 1.2rem + 3vw, 2.6rem); color: var(--cream); padding-block: .35rem; border-bottom: 1px solid rgba(244,239,231,.1); transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease); }
.mobile-menu a:hover { color: var(--gold-soft); padding-left: .6rem; }
.mobile-menu .mm-foot { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; font-size: .85rem; letter-spacing: .05em; color: var(--cream-dim); }
.mobile-menu .mm-foot a { font-family: var(--font-sans); font-size: .85rem; border: 0; color: var(--gold-soft); padding: 0; }
.mobile-menu .mm-socials { display: flex; gap: 1.1rem; }
.mobile-menu .mm-socials svg { width: 20px; height: 20px; fill: var(--cream-dim); }

/* ------------------------------ 8. HERO ----------------------------- */
.hero { position: relative; min-height: clamp(600px, 92vh, 940px); display: flex; align-items: flex-end; overflow: hidden; color: var(--cream); }
.hero__media { position: absolute; inset: -8% 0 0 0; z-index: 0; }
.hero__media img { width: 100%; height: 108%; object-fit: cover; will-change: transform; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(20,17,14,.42) 0%, rgba(20,17,14,.12) 32%, rgba(20,17,14,.30) 62%, rgba(20,17,14,.82) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3rem, 1rem + 6vw, 6rem); padding-top: 8rem; }
.hero__eyebrow { color: var(--gold-soft); }
.hero h1 { color: #fff; margin: 1.2rem 0 1.4rem; max-width: 15ch; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__sub { max-width: 52ch; font-size: var(--step-1); font-weight: 300; color: rgba(244,239,231,.9); }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__meta { position: absolute; right: var(--gutter); bottom: clamp(3rem, 1rem + 6vw, 6rem); z-index: 2; display: none; text-align: right; }
.hero__meta .big { font-family: var(--font-display); font-size: 3rem; color: #fff; line-height: 1; }
.hero__meta .lbl { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }
.scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; z-index: 3; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(244,239,231,.7); }
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--gold-soft), transparent); animation: cue 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (min-width: 1024px) { .hero__meta { display: block; } }

/* page hero (inner pages) */
.page-hero { position: relative; min-height: clamp(360px, 56vh, 560px); display: flex; align-items: center; overflow: hidden; color: var(--cream); text-align: center; }
.page-hero__media { position: absolute; inset: -8% 0 0 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 110%; object-fit: cover; will-change: transform; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,17,14,.5), rgba(20,17,14,.45) 40%, rgba(20,17,14,.72)); }
.page-hero__inner { position: relative; z-index: 2; width: 100%; padding-top: 3rem; }
.page-hero h1 { color: #fff; margin: 1rem 0 .8rem; text-shadow: 0 2px 24px rgba(0,0,0,.4); }
.page-hero h1 em { font-style: italic; color: var(--gold-soft); }
.page-hero p { margin-inline: auto; color: rgba(244,239,231,.9); font-weight: 300; }
.breadcrumb { display: flex; gap: .5rem; justify-content: center; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,239,231,.7); }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { color: var(--gold-soft); }

/* --------------------------- 9. SECTIONS misc ----------------------- */
.decor-amp { position: absolute; font-family: var(--font-display); font-style: italic; color: var(--gold); opacity: .07; font-size: clamp(12rem, 30vw, 30rem); line-height: 1; pointer-events: none; z-index: 0; user-select: none; }
.grain::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E"); }
.section > .container { position: relative; z-index: 2; }

/* --------------------------- 10. GALLERY ---------------------------- */
.gallery-masonry { columns: 3 260px; column-gap: 18px; }
.gallery-masonry .frame { margin-bottom: 18px; break-inside: avoid; }
.frame { position: relative; overflow: hidden; border-radius: var(--r-md); box-shadow: var(--sh-1); background: var(--sand); display: block; }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-out); will-change: transform; }
.frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,17,14,.55)); opacity: 0; transition: opacity var(--dur) var(--ease); }
.frame .frame__cap { position: absolute; left: 1rem; bottom: .9rem; z-index: 2; color: #fff; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; transform: translateY(8px); opacity: 0; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.frame:hover img { transform: scale(1.06); }
.frame:hover::after { opacity: 1; }
.frame:hover .frame__cap { transform: translateY(0); opacity: 1; }

.gallery-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-grid .frame { aspect-ratio: 3/4; }
.gallery-grid .frame.wide { grid-column: span 2; aspect-ratio: 3/2; }
.gallery-grid .frame.tall { grid-row: span 2; aspect-ratio: 3/5; }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-grid .frame.wide { grid-column: auto; } }

/* editorial strip (scrolling marquee of photos) */
.marquee { overflow: hidden; position: relative; padding-block: 1rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 16px; width: max-content; animation: marquee 44s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee .frame { width: clamp(200px, 26vw, 320px); aspect-ratio: 3/4; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------- 11. CARDS + TILT --------------------------- */
.tilt-grid { display: grid; gap: clamp(1rem, .5rem + 1.5vw, 1.8rem); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.svc-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.8rem;
  color: #fff; box-shadow: var(--sh-2); transform-style: preserve-3d; transition: box-shadow var(--dur) var(--ease);
}
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 800ms var(--ease-out); }
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,17,14,.1) 30%, rgba(20,17,14,.82)); }
.svc-card > * { position: relative; z-index: 2; transform: translateZ(30px); }
.svc-card .num { position: absolute; top: 1.4rem; right: 1.6rem; font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-soft); z-index: 2; }
.svc-card h3 { color: #fff; font-size: var(--step-1); margin-bottom: .5rem; }
.svc-card p { color: rgba(244,239,231,.82); font-size: .92rem; font-weight: 300; }
.svc-card .text-link { margin-top: 1.1rem; color: var(--gold-soft); }
.svc-card:hover { box-shadow: var(--sh-3); }
.svc-card:hover img { transform: scale(1.08); }

.feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem, 1rem + 2vw, 2.4rem); box-shadow: var(--sh-1); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.feature-card .ic { width: 52px; height: 52px; border-radius: var(--r-pill); display: grid; place-items: center; background: var(--alabaster); color: var(--brass); margin-bottom: 1.2rem; }
.feature-card .ic svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.feature-card h3 { font-size: var(--step-1); margin-bottom: .6rem; }
.feature-card p { font-size: .95rem; color: var(--muted); }

/* glass panel */
.glass { background: rgba(255,255,255,.62); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.7); box-shadow: var(--sh-2); }
.bg-dark .glass { background: rgba(255,255,255,.06); border-color: rgba(244,239,231,.14); }

/* ---------------------------- 12. REVIEWS --------------------------- */
.review-tabs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.4rem; }
.review-tab { padding: .6em 1.4em; border-radius: var(--r-pill); border: 1px solid var(--line-strong); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); background: transparent; transition: all var(--dur) var(--ease); }
.review-tab:hover { border-color: var(--brass); color: var(--brass); }
.review-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.bg-dark .review-tab { border-color: rgba(244,239,231,.2); color: var(--cream-dim); }
.bg-dark .review-tab.active { background: var(--gold); color: #fff; border-color: var(--gold); }

.review-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.review-card { border-radius: var(--r-lg); padding: 2rem 1.9rem; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-1); position: relative; display: flex; flex-direction: column; gap: 1rem; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.review-card[hidden] { display: none; }
.review-card .stars { display: flex; gap: 3px; color: var(--gold); }
.review-card .stars svg { width: 17px; height: 17px; fill: currentColor; }
.review-card blockquote { font-family: var(--font-display); font-size: 1.32rem; line-height: 1.5; color: var(--ink-soft); font-style: italic; }
.review-card .quote-mark { font-family: var(--font-display); font-size: 3.4rem; line-height: .5; color: var(--gold); opacity: .5; height: 1.2rem; }
.review-card .who { display: flex; align-items: center; gap: .9rem; margin-top: auto; }
.review-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--alabaster); color: var(--brass); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.2rem; flex-shrink: 0; }
.review-card .who .nm { font-weight: 500; letter-spacing: .04em; font-size: .95rem; color: var(--ink); }
.review-card .who .vn { font-size: .78rem; color: var(--muted); }
.review-card .cat-chip { position: absolute; top: 1.4rem; right: 1.4rem; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); background: var(--alabaster); padding: .3em .7em; border-radius: var(--r-pill); }

.google-badge { display: inline-flex; align-items: center; gap: .7rem; padding: .7rem 1.2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); box-shadow: var(--sh-1); }
.google-badge .g { width: 22px; height: 22px; }
.google-badge .score { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); line-height: 1; }
.google-badge .stars { display: flex; gap: 1px; color: var(--gold); }
.google-badge .stars svg { width: 14px; height: 14px; fill: currentColor; }
.google-badge .cnt { font-size: .74rem; color: var(--muted); letter-spacing: .04em; }

/* ----------------------- 13. AWARDS + STATS ------------------------- */
.award-wall { display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 1rem + 3vw, 3.2rem); align-items: center; justify-content: center; }
.award-wall img { height: clamp(72px, 8vw, 104px); width: auto; opacity: .9; filter: saturate(.9); transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.award-wall img:hover { transform: translateY(-4px) scale(1.04); opacity: 1; }

.stats { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat .num { font-family: var(--font-display); font-size: clamp(2.6rem, 1.8rem + 3vw, 4rem); line-height: 1; color: var(--ink); }
.bg-dark .stat .num { color: var(--gold-soft); }
.stat .lbl { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .6rem; }
.stat + .stat { position: relative; }

/* ------------------------------ 14. CTA ----------------------------- */
.cta-band { position: relative; overflow: hidden; text-align: center; color: var(--cream); }
.cta-band .cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,17,14,.72), rgba(20,17,14,.82)); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band h2 em { font-style: italic; color: var(--gold-soft); }
.cta-band p { color: rgba(244,239,231,.85); margin-inline: auto; }
.cta-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ----------------------------- 15. FORM ----------------------------- */
.inquiry { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-3); background: var(--surface); }
.inquiry-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 940px) { .inquiry-grid { grid-template-columns: .85fr 1.15fr; } }
.inquiry__aside { background: var(--umber); color: var(--cream); padding: clamp(2rem, 1.4rem + 2.5vw, 3.4rem); position: relative; overflow: hidden; }
.inquiry__aside .eyebrow { color: var(--gold-soft); }
.inquiry__aside h3 { color: #fff; margin: 1rem 0; }
.inquiry__aside .contact-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.inquiry__aside .contact-list li { display: flex; gap: .9rem; align-items: flex-start; font-size: .92rem; color: var(--cream-dim); }
.inquiry__aside .contact-list svg { width: 20px; height: 20px; stroke: var(--gold-soft); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.inquiry__aside .contact-list a:hover { color: var(--gold-soft); }
.inquiry__form { padding: clamp(1.8rem, 1.2rem + 2.5vw, 3.2rem); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.field label .req { color: var(--brass); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); font-size: .96rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.16); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; gap: 1.3rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem; }
@media (max-width: 560px) { .checks { grid-template-columns: 1fr; } }
.check { display: flex; align-items: center; gap: .6rem; padding: .6rem .8rem; border: 1px solid var(--line); border-radius: var(--r-sm); font-size: .82rem; cursor: pointer; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.check:hover { border-color: var(--brass); }
.check input { width: 16px; height: 16px; accent-color: var(--gold); }
.check:has(input:checked) { border-color: var(--gold); background: rgba(198,161,91,.08); }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 1rem; }
.form-status { margin-top: 1rem; padding: .9rem 1rem; border-radius: var(--r-sm); font-size: .9rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(122,159,110,.14); color: #4d6b3f; border: 1px solid rgba(122,159,110,.4); }
.form-status.err { background: rgba(179,84,84,.12); color: #9e4a4a; border: 1px solid rgba(179,84,84,.4); }

/* ---------------------------- 16. FOOTER ---------------------------- */
.site-footer { background: var(--umber); color: var(--cream-dim); position: relative; overflow: hidden; }
.footer-strip { display: flex; overflow: hidden; }
.footer-strip img { width: 20%; height: 130px; object-fit: cover; filter: grayscale(.3) brightness(.85); transition: filter var(--dur) var(--ease); }
.footer-strip img:hover { filter: none; }
@media (max-width: 640px) { .footer-strip img { width: 33.33%; height: 100px; } .footer-strip img:nth-child(n+4) { display: none; } }
.footer-main { padding-block: clamp(3rem, 2rem + 3vw, 5rem); }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand .fname { font-family: var(--font-display); font-size: 1.9rem; color: var(--cream); }
.footer-brand .fsub { font-size: .62rem; letter-spacing: .4em; text-transform: uppercase; color: var(--gold-soft); margin-top: .3rem; }
.footer-brand p { font-size: .9rem; margin-top: 1.2rem; color: var(--cream-dim); max-width: 34ch; }
.footer-socials { display: flex; gap: .9rem; margin-top: 1.4rem; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(244,239,231,.18); display: grid; place-items: center; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-socials svg { width: 17px; height: 17px; fill: var(--cream); }
.footer-col h4 { color: var(--cream); font-family: var(--font-sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a, .footer-col li { font-size: .9rem; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col .contact-ln { display: flex; gap: .6rem; align-items: flex-start; }
.footer-col .contact-ln svg { width: 16px; height: 16px; stroke: var(--gold-soft); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(244,239,231,.12); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; font-size: .8rem; }
.footer-bottom a { color: var(--gold-soft); }
.footer-bottom a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.footer-credit { color: var(--cream-dim); }

/* ---------------------- 17. MOBILE STICKY BAR ----------------------- */
.mobile-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky); display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(244,239,231,.16); box-shadow: 0 -6px 24px rgba(0,0,0,.2); }
.mobile-actions a { display: flex; align-items: center; justify-content: center; gap: .55rem; min-height: 58px; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; color: #fff; }
.mobile-actions .ma-call { background: var(--ink); }
.mobile-actions .ma-wa { background: #1FA855; }
.mobile-actions svg { width: 20px; height: 20px; fill: currentColor; }
.mobile-actions .ma-call svg { animation: ring 3.4s var(--ease) infinite; }
@keyframes ring { 0%,88%,100% { transform: rotate(0); } 90% { transform: rotate(-12deg); } 94% { transform: rotate(12deg); } }
@media (max-width: 860px) { .mobile-actions { display: grid; } body { padding-bottom: 58px; } }

/* back to top */
.to-top { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: var(--z-float); width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-2); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all var(--dur) var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brass); }
.to-top svg { width: 18px; height: 18px; fill: currentColor; }
@media (max-width: 860px) { .to-top { bottom: 70px; } }

/* --------------------- 18. MOTION / REVEAL UTILS -------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal-fade { opacity: 0; transition: opacity 900ms var(--ease); }
.reveal-fade.in { opacity: 1; }
.reveal-scale { opacity: 0; transform: scale(1.04); transition: opacity 900ms var(--ease-out), transform 1200ms var(--ease-out); }
.reveal-scale.in { opacity: 1; transform: scale(1); }

.float-slow { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* line reveal for hero headline */
.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: block; transform: translateY(110%); transition: transform 900ms var(--ease-out); }
.hero.loaded .line-mask > span { transform: translateY(0); }
.hero.loaded .line-mask:nth-child(2) > span { transition-delay: .12s; }

/* --------------------------- 19. MISC ------------------------------- */
.pill-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill-list li { padding: .45em 1em; border: 1px solid var(--line-strong); border-radius: var(--r-pill); font-size: .78rem; letter-spacing: .06em; color: var(--ink-soft); }
.bg-dark .pill-list li { border-color: rgba(244,239,231,.2); color: var(--cream-dim); }

.number-tag { font-family: var(--font-display); font-size: 1rem; color: var(--brass); letter-spacing: .1em; }

/* pricing */
.price-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.price-card { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); padding: 2.2rem; box-shadow: var(--sh-1); display: flex; flex-direction: column; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); position: relative; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.price-card.featured { border-color: var(--gold); box-shadow: var(--sh-gold); }
.price-card .tier { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); }
.price-card .amt { font-family: var(--font-display); font-size: 2.8rem; margin: .8rem 0 .2rem; color: var(--ink); }
.price-card .amt small { font-size: 1rem; color: var(--muted); }
.price-card ul { margin: 1.4rem 0; display: flex; flex-direction: column; gap: .75rem; }
.price-card li { display: flex; gap: .6rem; font-size: .92rem; color: var(--ink-soft); }
.price-card li svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.price-card .btn { margin-top: auto; }
.badge-top { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; padding: .4em 1em; border-radius: var(--r-pill); }

/* faq accordion */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.4rem 0; font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }
.faq-q .pm { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--brass); transition: transform var(--dur) var(--ease); }
.faq-q .pm::before { top: 50%; left: 0; width: 22px; height: 2px; transform: translateY(-50%); }
.faq-q .pm::after { left: 50%; top: 0; width: 2px; height: 22px; transform: translateX(-50%); }
.faq-item.open .pm::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 420ms var(--ease); }
.faq-a p { padding: 0 0 1.5rem; color: var(--muted); }

/* team */
.team-grid { display: grid; gap: 1.8rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.team-card { text-align: center; }
.team-card .frame { aspect-ratio: 4/5; border-radius: var(--r-lg); margin-bottom: 1.1rem; }
.team-card h3 { font-size: var(--step-1); }
.team-card .role { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); margin-top: .3rem; }

/* venue cards */
.venue-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.venue-card { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--sh-1); display: flex; align-items: flex-end; }
.venue-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease-out); }
.venue-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,17,14,.8)); }
.venue-card .v-meta { position: relative; z-index: 2; padding: 1.4rem; color: #fff; }
.venue-card .v-meta h3 { color: #fff; font-size: 1.5rem; }
.venue-card .v-meta span { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); }
.venue-card:hover img { transform: scale(1.07); }

/* video facade */
.video-facade { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--sh-3); cursor: pointer; background: var(--umber); }
.video-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease-out); }
.video-facade::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,14,.2), rgba(20,17,14,.5)); transition: opacity var(--dur) var(--ease); }
.video-facade .play { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; }
.video-facade .play span { width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.5); display: grid; place-items: center; transition: transform var(--dur) var(--ease), background var(--dur) var(--ease); }
.video-facade .play span::before { content: ""; margin-left: 5px; border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent #fff; }
.video-facade:hover .play span { transform: scale(1.1); background: var(--gold); }
.video-facade:hover img { transform: scale(1.05); }
.video-facade .lbl { position: absolute; left: 1.4rem; bottom: 1.2rem; z-index: 2; color: #fff; }
.video-facade .lbl span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }
.video-facade .lbl h3 { color: #fff; font-size: 1.5rem; }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --------------------------- 20. RESPONSIVE ------------------------- */
@media (max-width: 1080px) {
  .nav__links, .nav__phone, .has-dropdown { display: none; }
  .nav__menu { display: block; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 520px) {
  .gallery-masonry { columns: 2 150px; column-gap: 12px; }
  .gallery-masonry .frame { margin-bottom: 12px; }
  .hero__actions .btn { width: 100%; }
}

/* ------------------------ 21. REDUCED MOTION ------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-fade, .reveal-scale { opacity: 1 !important; transform: none !important; }
  .line-mask > span { transform: none !important; }
  .marquee__track { animation: none !important; }
  .hero__media img, .page-hero__media img { transform: none !important; }
}
