/* NV Studio — style.css
   Direction: Luxe Bloom Artistry
   Palette: Warm Cream · Brushed Gold · Near-Black Charcoal
   Type: Cormorant Garamond (display) · DM Sans (body)
   ─────────────────────────────────────────────────── */


/* ── 1. Design Tokens ─────────────────────────────── */
:root {
  /* Palette — Warm Luxury */
  --cream:       #FAFAF8;   /* page background */
  --cream-alt:   #F5F3EE;   /* alternate section bg */
  --near-black:  #1C1916;   /* primary text + dark sections */
  --warm-gray:   #6B6560;   /* secondary text */
  --muted:       #9C9590;   /* captions */
  --gold:        #C9A96E;   /* accent — brushed gold */
  --gold-dark:   #A88848;   /* gold hover */
  --gold-light:  #E8D5A3;   /* step numbers, decorative */
  --hairline:    #E2DDD6;   /* borders, dividers */
  --white:       #FFFFFF;

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

  /* Layout */
  --nav-h:  72px;
  --r:      2px;
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:    0.28s;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--cream);
  color: var(--near-black);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Touch action optimizations */
.btn,
.hamburger,
.lang-btn,
.mobile-menu__link,
.map-directions,
.footer__nav a,
.footer__instagram,
.info-link {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}


/* ── 3. Container ─────────────────────────────────── */
.container {
  width: min(92%, 1200px);
  margin-inline: auto;
}


/* ── 4. Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9em 2.4em;
  border: 1px solid transparent;
  border-radius: var(--r);
  transition:
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
  min-height: 44px;
}

.btn--solid,
.btn--pill {
  background: var(--near-black);
  color: var(--cream);
  border-color: var(--near-black);
}

.btn--solid:hover,
.btn--pill:hover {
  background: #2E2B28;
}

.btn--solid:active,
.btn--pill:active {
  transform: scale(0.98);
}

.btn--ghost {
  background: transparent;
  color: var(--near-black);
  border-color: var(--near-black);
}

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

.btn-label--mobile  { display: none; }
.btn-label--desktop { display: inline; }


/* ── 5. Language Toggle ───────────────────────────── */
.lang-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--near-black);
}

.lang-sep {
  color: var(--hairline);
}


/* ── 6. Navbar ────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition:
    background 0.3s ease,
    border-bottom 0.3s ease;
}

.navbar.scrolled {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}

.navbar__inner {
  width: min(92%, 1200px);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

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

.navbar__logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--r);
}

.navbar__wordmark-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--near-black);
  letter-spacing: 0.04em;
}

.navbar__nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.2s;
}

.navbar__link.active {
  color: var(--near-black);
}

.navbar__link:hover {
  color: var(--near-black);
}

.navbar__actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-right: -10px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--near-black);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.hamburger.open span:first-child {
  transform: rotate(45deg) translate(3.5px, 4px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:last-child {
  transform: rotate(-45deg) translate(3.5px, -4px);
}


/* ── 7. Mobile Menu ───────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--cream);
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 40px;
  flex: 1;
}

.mobile-menu__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--near-black);
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  display: block;
  transition: color 0.15s;
}

.mobile-menu__link:active,
.mobile-menu__link:hover {
  color: var(--gold);
}

.mobile-menu__cta {
  margin-top: 28px;
  width: 100%;
  justify-content: center;
  min-height: 52px;
}

.lang-toggle--mobile {
  margin-top: 24px;
}

body.menu-open {
  overflow: hidden;
}


/* ── 8. Mobile Sticky Book Bar ────────────────────── */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  background: var(--near-black);
  padding: 12px 24px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.mobile-book-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background 0.2s;
}

.mobile-book-bar a:hover {
  background: var(--gold-dark);
}


/* ── 9. Hero ──────────────────────────────────────── */
.hero {
  background: var(--cream);
  padding-top: var(--nav-h);
  min-height: auto;
}

.hero__inner {
  width: min(92%, 1200px);
  margin: 0 auto;
  padding: 64px 32px 56px;
  display: flex;
  flex-direction: column;
}

.hero__image {
  display: none;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__eyebrow::before {
  content: '\2014';
  color: var(--gold);
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--near-black);
  letter-spacing: -0.01em;
}

.hero__heading em {
  font-style: italic;
  font-weight: 300;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 520px;
  margin-top: 28px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero__ctas .btn {
  min-height: 48px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--hairline);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--near-black);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Suppress legacy decorative elements */
.hero__blob,
.hero__vertical,
.hero__rule {
  display: none !important;
}


/* ── 10. Marquee ──────────────────────────────────── */
.marquee {
  background: var(--near-black);
  overflow: hidden;
  padding: 16px 0;
}

.marquee__inner {
  display: flex;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  flex-shrink: 0;
  animation: marqueeScroll 38s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 24px;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__sep {
  color: var(--gold);
  margin: 0 4px;
  font-size: 10px;
}


/* ── 11. Section Headers ──────────────────────────── */
.section-header {
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '\2014';
  color: var(--gold);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--near-black);
  margin-top: 8px;
}

.section-heading em {
  font-style: italic;
}

.section-intro {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 600px;
  margin-top: 20px;
}


/* ── 12. Services ─────────────────────────────────── */
.services {
  background: var(--white);
  padding: 120px 0;
}

.services__categories,
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.services__category {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.services__category.visible {
  opacity: 1;
  transform: translateY(0);
}

.services__category[data-delay="1"] {
  transition-delay: 0.12s;
}

.services__category[data-delay="2"] {
  transition-delay: 0.24s;
}

.services__category-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding-bottom: 20px;
  border-bottom: 2px solid var(--near-black);
  margin-bottom: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.15s;
}

.price-row:hover {
  background: rgba(201, 169, 110, 0.09);
}

.price-row__name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--near-black);
  font-weight: 400;
}

.price-row__value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--near-black);
}

.services__note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 48px;
  text-align: center;
  letter-spacing: 0.04em;
}


/* ── 13. About ────────────────────────────────────── */
.about {
  background: var(--cream-alt);
  padding: 120px 0;
}

.about__grid {
  display: block;
}

.about__image {
  display: none;
}

.about__text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  row-gap: 4px;
  align-items: start;
}

.about__text .section-label {
  grid-column: 1;
  grid-row: 1;
}

.about__text .section-heading {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-bottom: 0;
}

.about__text > p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__text > p:nth-of-type(1) {
  grid-column: 2;
  grid-row: 1 / 3;
  margin-top: 0;
}

.about__text > p:nth-of-type(2) {
  grid-column: 2;
  grid-row: 3;
}

/* Steps (inside about) */
.steps-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--hairline);
}

.step-item {
  padding: 36px 28px;
  background: transparent;
  border-right: 1px solid var(--hairline);
}

.step-item:last-child {
  border-right: none;
}

.step-item__num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 200;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.step-item__title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--near-black);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-item__desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.65;
}


/* ── 14. Gallery Preview ──────────────────────────── */
.gallery-preview {
  background: var(--cream-alt);
  padding: 104px 0;
}

.gallery-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.gallery-preview__link {
  display:         inline-flex;
  align-items:     center;
  gap:             6px;
  font-family:     var(--font-body);
  font-size:       0.68rem;
  font-weight:     500;
  letter-spacing:  0.14em;
  text-transform:  uppercase;
  color:           var(--near-black);
  border:          1px solid var(--near-black);
  border-radius:   var(--r);
  padding:         0.65em 1.4em;
  white-space:     nowrap;
  flex-shrink:     0;
  transition:      background 0.22s ease, color 0.22s ease;
}

.gallery-preview__link:hover {
  background: var(--near-black);
  color:      var(--cream);
}

.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.gallery-preview__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}

.gallery-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-preview__item:hover img {
  transform: scale(1.04);
}

.gallery-preview__item:active img {
  opacity: 0.85;
  transform: scale(0.98);
}


/* ── 15. Contact ──────────────────────────────────── */
.contact {
  background: var(--cream-alt);
  padding: 120px 0;
}

.contact__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--r) var(--r) 0 0;
}

.info-block {
  padding: 40px 36px;
  border-right: 1px solid var(--hairline);
}

.info-block:last-child {
  border-right: none;
}

.info-block p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 6px;
}

.info-block__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--near-black);
  margin-bottom: 18px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--warm-gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
  gap: 16px;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li:last-child span:last-child {
  color: var(--muted);
  font-style: italic;
}

.info-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--near-black);
  line-height: 1.75;
  transition: color 0.2s;
  display: block;
}

.info-link:hover {
  color: var(--gold);
}

.contact__form-wrap {
  display: flex;
  flex-direction: column;
}

.map-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-top: none;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.map-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28, 25, 22, 0.84);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 18px 24px;
}

.map-label__name {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-label__address {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(250, 250, 248, 0.55);
  margin-top: 4px;
}

.map-directions {
  display:         inline-flex;
  align-items:     center;
  gap:             6px;
  margin-top:      20px;
  font-family:     var(--font-body);
  font-size:       0.68rem;
  font-weight:     500;
  letter-spacing:  0.14em;
  text-transform:  uppercase;
  color:           var(--near-black);
  border:          1px solid var(--hairline);
  border-radius:   2px;
  padding:         0.7em 1.4em;
  transition:      background 0.2s, color 0.2s, border-color 0.2s;
  align-self:      flex-start;
}

.map-directions:hover {
  background:    var(--near-black);
  color:         var(--cream);
  border-color:  var(--near-black);
}


/* ── 16. Footer ───────────────────────────────────── */
.footer {
  background: var(--near-black);
  color: var(--cream);
  padding: 80px 0 40px;
  padding-bottom: max(40px, env(safe-area-inset-bottom));
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 48px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(250, 250, 248, 0.45);
  margin-top: 8px;
}

.footer__nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer__nav a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.45);
  transition: color 0.2s;
  padding: 6px 0;
  display: inline-block;
}

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

.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

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

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.45);
}

.footer__instagram {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.45);
  transition: color 0.2s;
}

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


/* ── 17. Fade-up Scroll Reveal ────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── 18. Responsive — max 900px ───────────────────── */
@media (max-width: 900px) {
  :root { --nav-h: 60px; }

  .navbar {
    background: rgba(250, 250, 248, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hairline);
  }

  .navbar__inner {
    padding: 0 20px;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__actions .btn--pill,
  .navbar__actions .lang-toggle {
    display: none;
  }

  .navbar__actions {
    gap: 0;
  }

  .hamburger {
    display: flex;
  }

  .btn-label--desktop { display: none; }
  .btn-label--mobile  { display: inline; }

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

  /* Hero */
  .hero { min-height: auto; }

  .hero__inner {
    padding: 40px 24px 44px;
  }

  .hero__eyebrow {
    font-size: 0.6rem;
    margin-bottom: 18px;
    letter-spacing: 0.18em;
  }

  .hero__heading {
    font-size: clamp(36px, 9.5vw, 52px);
    line-height: 1.06;
  }

  .hero__sub {
    font-size: 0.86rem;
    line-height: 1.65;
    margin-top: 18px;
    max-width: 100%;
  }

  .hero__ctas {
    margin-top: 28px;
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .hero__ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 0.85em 8px;
    font-size: 0.65rem;
    letter-spacing: 0.13em;
    min-height: 50px;
  }

  /* Stats — 3-col grid with hairline dividers */
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 36px;
    padding-top: 0;
    border-top: none;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 8px;
    border-top: 1px solid var(--hairline);
  }

  .stat-item:not(:last-child) {
    border-right: 1px solid var(--hairline);
  }

  .stat-num { font-size: 30px; }

  .stat-label {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
    margin-top: 5px;
  }

  /* Services */
  .services { padding: 72px 0; }

  .services__categories,
  .services__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* About */
  .about { padding: 72px 0; }

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

  .about__text .section-label,
  .about__text .section-heading,
  .about__text > p:nth-of-type(1),
  .about__text > p:nth-of-type(2) {
    grid-column: 1;
    grid-row: auto;
  }

  .about__text > p:nth-of-type(1) { margin-top: 20px; }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
  }

  .step-item {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    padding: 24px 20px;
  }

  .step-item:nth-child(odd) {
    border-right: 1px solid var(--hairline);
  }

  .step-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Gallery preview */
  .gallery-preview { padding: 72px 0; }

  .gallery-preview__grid-wrap {
    position:  relative;
    overflow:  hidden;
  }

  .gallery-preview__grid-wrap::after {
    content:    '';
    position:   absolute;
    top:        0;
    right:      0;
    bottom:     4px;
    width:      64px;
    background: linear-gradient(to right, transparent, var(--cream-alt));
    pointer-events: none;
    z-index:    1;
  }

  .gallery-preview__grid {
    grid-template-columns: repeat(6, 38vw);
    overflow-x:            auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width:       none;
    padding-bottom:        4px;
  }

  .gallery-preview__grid::-webkit-scrollbar { display: none; }

  /* Contact */
  .contact { padding: 72px 0; }

  .contact__info {
    grid-template-columns: 1fr;
    border-radius: var(--r);
  }

  .info-block {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    padding: 28px 24px;
  }

  .info-block:last-child { border-bottom: none; }

  .map-wrap {
    border-top: 1px solid var(--hairline);
    margin-top: 24px;
    border-radius: var(--r);
  }

  .map-wrap iframe { height: 300px; }

  /* Footer */
  .footer { padding: 56px 0 32px; }

  .footer__top {
    flex-direction: column;
    gap: 24px;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Section headers */
  .section-header { margin-bottom: 36px; }
}


/* ── 19. Responsive — max 600px ───────────────────── */
@media (max-width: 600px) {
  .services,
  .about,
  .gallery-preview,
  .contact {
    padding: 60px 0;
  }

  .hero__heading { font-size: clamp(28px, 8vw, 38px); }

  .hero__stats { gap: 16px; }

  .stat-num { font-size: 24px; }

  .section-heading { font-size: clamp(26px, 7vw, 34px); }

  .gallery-preview__grid {
    grid-template-columns: repeat(6, 44vw);
  }

  .gallery-preview__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-block { padding: 22px 18px; }
}


/* ── 20. Responsive — max 430px ───────────────────── */
@media (max-width: 430px) {
  :root { --nav-h: 56px; }

  .services,
  .about,
  .gallery-preview,
  .contact {
    padding: 52px 0;
  }

  .hero__inner { padding: 32px 20px 28px; }

  .hero__heading { font-size: 28px; }

  .hero__stats { gap: 10px; }

  .stat-num { font-size: 22px; }

  .stat-label { font-size: 0.55rem; }

  .section-heading { font-size: 24px; }

  .steps-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .step-item {
    border-right: none !important;
    border-bottom: 1px solid var(--hairline);
    padding: 18px 0;
  }

  .step-item:last-child { border-bottom: none; }

  .step-item__num { font-size: 36px; }

  .map-wrap iframe { height: 300px; }

  .section-header { margin-bottom: 28px; }

  .btn { min-height: 44px; }

  /* iOS input zoom prevention */
  input,
  select,
  textarea {
    font-size: 1rem !important;
  }
}


/* ── 21. Reduced Motion ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .marquee__track {
    animation: none;
  }
}


/* ═══════════════════════════════════════════════════
   PRODUCTS — Premium bento product showcase
   Palette tokens only · editorial · gold as accent
   ═══════════════════════════════════════════════════ */

/* ── Section shell ────────────────────────────────── */
.products {
  background: var(--cream);
  padding: 120px 0;
}

.products__header {
  text-align: center;
  margin-bottom: 48px;
}

/* center the globally-styled label inside this section */
.products__header .section-label {
  justify-content: center;
}

.products__intro {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 640px;
  margin: 24px auto 0;
}


/* ── Brand trust strip ────────────────────────────── */
.products__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 44px;
  margin-bottom: 52px;
  padding: 26px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.products__brand {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--warm-gray);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}

.products__brand:hover {
  color: var(--gold-dark);
}


/* ── Category filters ─────────────────────────────── */
.products__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.prod-filter {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gray);
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.7em 1.5em;
  min-height: 40px;
  transition:
    color var(--dur) var(--ease),
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.prod-filter:hover {
  color: var(--near-black);
  border-color: var(--gold);
}

.prod-filter.is-active {
  color: var(--near-black);
  background: var(--gold);
  border-color: var(--gold);
}

.prod-filter:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}


/* ── Bento grid ───────────────────────────────────── */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  grid-auto-flow: dense;
  gap: 16px;
}

/* keep every tile square by default */
.products__grid .product-card {
  aspect-ratio: 1 / 1;
}


/* ── Product card ─────────────────────────────────── */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid var(--hairline);
  background: var(--cream-alt);
  cursor: pointer;
  opacity: 1;
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease),
    box-shadow var(--dur) var(--ease);
}

.product-card:hover {
  box-shadow: 0 14px 40px -18px rgba(28, 25, 22, 0.45);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.product-card:hover img,
.product-card:focus-within img {
  transform: scale(1.05);
}

.product-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Feature & wide spans (the cinematic shots) */
.product-card--feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.product-card--wide {
  grid-column: span 2;
  aspect-ratio: auto;
}


/* ── Overlay scrim + caption ──────────────────────── */
.product-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 18px 18px 16px;
  background: linear-gradient(
    to top,
    rgba(28, 25, 22, 0.82) 0%,
    rgba(28, 25, 22, 0.5) 42%,
    rgba(28, 25, 22, 0) 100%
  );
  transition: background var(--dur) var(--ease);
}

.product-card:hover .product-card__overlay,
.product-card:focus-within .product-card__overlay {
  background: linear-gradient(
    to top,
    rgba(28, 25, 22, 0.92) 0%,
    rgba(28, 25, 22, 0.6) 50%,
    rgba(28, 25, 22, 0) 100%
  );
}

.product-card__brand {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  transition: transform var(--dur) var(--ease);
}

.product-card__tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.7);
  opacity: 0;
  max-height: 0;
  transform: translateY(4px);
  transition:
    opacity var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    max-height var(--dur) var(--ease);
}

.product-card:hover .product-card__tag,
.product-card:focus-within .product-card__tag {
  opacity: 1;
  max-height: 1.4em;
  transform: translateY(0);
}

/* feature cards earn a slightly larger display name */
.product-card--feature .product-card__name {
  font-size: 1.7rem;
}


/* ── Badge (premium seal) ─────────────────────────── */
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--near-black);
  background: var(--gold);
  padding: 5px 10px;
  border-radius: var(--r);
  box-shadow: 0 2px 10px -4px rgba(28, 25, 22, 0.5);
}


/* ── Empty state ──────────────────────────────────── */
.products__empty {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
  padding: 64px 0;
}

.products__empty[hidden] {
  display: none;
}


/* ── Reveal + filter state (JS contract) ──────────── */
.products__grid.is-reveal .product-card:not(.visible) {
  opacity: 0;
  transform: translateY(18px);
}

.product-card.visible {
  opacity: 1;
  transform: none;
}

.product-card.is-hidden {
  display: none !important;
}


/* ═══════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════ */
.product-lightbox[hidden] {
  display: none;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}

.product-lightbox.is-open {
  opacity: 1;
}

.product-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.product-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  transform: scale(0.96);
  transition: transform 0.32s var(--ease);
}

.product-lightbox.is-open .product-lightbox__dialog {
  transform: scale(1);
}

.product-lightbox__figure {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr);
  align-items: center;
  gap: 40px;
  width: 100%;
}

.product-lightbox__img {
  width: 100%;
  max-height: 80vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: 4px;
  justify-self: center;
}

.product-lightbox__caption {
  text-align: left;
}

.product-lightbox__brand {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.product-lightbox__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.product-lightbox__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(250, 250, 248, 0.72);
  max-width: 42ch;
}

/* Controls */
.product-lightbox__close {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--cream);
  background: transparent;
  border-radius: 50%;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.product-lightbox__close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.product-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--cream);
  background: rgba(28, 25, 22, 0.55);
  border: 1px solid rgba(201, 169, 110, 0.45);
  border-radius: 50%;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.product-lightbox__nav:hover {
  background: var(--gold);
  color: var(--near-black);
  border-color: var(--gold);
}

.product-lightbox__nav--prev {
  left: -16px;
}

.product-lightbox__nav--next {
  right: -16px;
}

.product-lightbox__close:focus-visible,
.product-lightbox__nav:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Body scroll lock */
body.lightbox-open {
  overflow: hidden;
}


/* ── Products responsive ──────────────────────────── */
@media (max-width: 900px) {
  .products {
    padding: 80px 0;
  }

  /* Two columns; feature & wide become full-width banners so the bento
     never leaves the odd holes that row-spanning tiles caused. Let
     aspect-ratio drive height instead of 1fr auto-rows. */
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .product-card--feature,
  .product-card--wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .products__grid .product-card--feature { aspect-ratio: 16 / 10; }
  .products__grid .product-card--wide    { aspect-ratio: 16 / 9; }

  .product-lightbox__figure {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
  }

  .product-lightbox__caption {
    text-align: center;
    max-width: 520px;
  }

  .product-lightbox__desc {
    max-width: none;
  }

  .product-lightbox__nav--prev {
    left: 4px;
  }

  .product-lightbox__nav--next {
    right: 4px;
  }
}

@media (max-width: 560px) {
  .products {
    padding: 64px 0;
  }

  .products__intro {
    font-size: 0.95rem;
  }

  .products__brands {
    gap: 12px 22px;
  }

  /* Filters: one tidy swipeable row instead of wrapping to 2–3 lines */
  .products__filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .products__filters::-webkit-scrollbar {
    display: none;
  }

  .prod-filter {
    flex: 0 0 auto;
    scroll-snap-align: center;
    font-size: 0.64rem;
    padding: 0.65em 1.25em;
  }

  .products__grid {
    gap: 10px;
  }

  /* Phone: a taller hero, a slightly shorter wide banner */
  .products__grid .product-card--feature { aspect-ratio: 5 / 6; }
  .products__grid .product-card--wide    { aspect-ratio: 3 / 2; }

  .product-card__overlay {
    padding: 14px 14px 13px;
  }

  .product-card__name {
    font-size: 1.1rem;
  }

  .product-card--feature .product-card__name {
    font-size: 1.4rem;
  }

  /* Lightbox: bigger image, comfortable controls */
  .product-lightbox {
    padding: 16px 12px;
  }

  .product-lightbox__img {
    max-height: 64vh;
  }

  .product-lightbox__close {
    top: 6px;
    right: 6px;
    width: 44px;
    height: 44px;
  }

  .product-lightbox__nav {
    width: 44px;
    height: 44px;
  }

  .product-lightbox__nav--prev { left: 6px; }
  .product-lightbox__nav--next { right: 6px; }
}


/* ── Touch devices: no hover, so reveal full card info statically ─── */
@media (hover: none) and (pointer: coarse) {
  /* Deeper scrim + category tag always shown (there's no hover to trigger it) */
  .product-card__overlay {
    background: linear-gradient(
      to top,
      rgba(28, 25, 22, 0.9) 0%,
      rgba(28, 25, 22, 0.55) 52%,
      rgba(28, 25, 22, 0) 100%
    );
  }

  .product-card__tag {
    opacity: 1;
    max-height: 1.4em;
    transform: none;
  }

  /* Snappier transitions + a tactile press in place of hover */
  .product-card {
    transition:
      opacity 0.5s var(--ease),
      transform 0.25s var(--ease),
      box-shadow var(--dur) var(--ease);
  }

  .product-card:active {
    transform: scale(0.97);
  }

  /* No hover zoom on touch (avoids a stuck-zoom after tap) */
  .product-card:focus-within img {
    transform: none;
  }

  /* Clear pressed feedback on filter chips */
  .prod-filter:active {
    color: var(--near-black);
    border-color: var(--gold);
  }
}


/* ── Products reduced-motion ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card img,
  .product-card__name,
  .product-card__tag,
  .product-lightbox,
  .product-lightbox__dialog {
    transition: none !important;
  }

  .products__grid.is-reveal .product-card:not(.visible) {
    opacity: 1;
    transform: none;
  }

  .product-card:hover img,
  .product-card:focus-within img {
    transform: none;
  }

  .product-lightbox__dialog {
    transform: none;
  }

  .product-lightbox.is-open .product-lightbox__dialog {
    transform: none;
  }
}


/* ════════════════════════════════════════════
   PRODUCTS — "We use, not sell" disclaimer
   (standalone /products page)
   ════════════════════════════════════════════ */
.products__disclaimer {
  max-width: 720px;
  margin: 0 auto 52px;
  padding: 26px 30px 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(232, 213, 163, 0.10), rgba(232, 213, 163, 0.02));
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--gold);
  border-radius: var(--r);
}

.products__disclaimer-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 12px;
}

.products__disclaimer-text {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--near-black);
  margin: 0 auto;
  max-width: 60ch;
}

@media (max-width: 640px) {
  .products__disclaimer {
    margin-bottom: 40px;
    padding: 22px 20px 24px;
  }

  .products__disclaimer-label {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .products__disclaimer-text {
    font-size: 1.05rem;
    line-height: 1.65;
  }
}
