/* ============================================================
   EDWENÉLUXE - DESIGN SYSTEM v2
   Anti-AI: Editorial, Asymmetric, Typographic-Led
   ============================================================ */

/* ── PLATYPI (display serif) ──────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Platypi:ital,wght@0,300..800;1,300..800&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Palette */
  --bg:           #FAFAFA;
  --bg-warm:      #F0F3F1; /* slight green tint */
  --black:        #0F503C; /* Dark Green */
  --charcoal:     #0D3B2B; /* Even darker green */
  --mid:          #2A6955;
  --muted:        rgba(15, 80, 60, 0.6);
  --border:       rgba(15, 80, 60, 0.15);
  --border-light: rgba(255, 255, 255, 0.20);
  
  /* Primary Accents */
  --gold:         #B4DC19; /* Lime Green */
  --gold-dk:      #9CBE12;



  /* Typography */
  --serif: 'Platypi', Georgia, serif;
  --sans: 'Google Sans', 'Helvetica Neue', sans-serif;

  /* Fluid type scale */
  --t-xs: clamp(0.6875rem, 0.65rem + 0.2vw, 0.75rem);
  /* 11–12px */
  --t-sm: clamp(0.8125rem, 0.78rem + 0.17vw, 0.875rem);
  /* 13–14px */
  --t-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  /* 15–16px */
  --t-md: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  /* 16–18px */
  --t-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  /* 18–22px */
  --t-xl: clamp(1.25rem, 1.1rem + 0.9vw, 1.75rem);
  /* 20–28px */
  --t-2xl: clamp(1.5rem, 1.3rem + 1.2vw, 2.5rem);
  /* 24–40px */
  --t-3xl: clamp(2rem, 1.75rem + 2.5vw, 4rem);
  /* 32–64px */
  --t-hero: clamp(2.5rem, 1.5rem + 5vw, 7rem);
  /* 40–112px */

  /* Spacing (8-point) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-6: 3rem;
  --s-8: 4rem;
  --s-12: 6rem;
  --s-16: 8rem;
  --s-24: 12rem;

  /* Layout */
  --max: 1440px;
  --gutter: clamp(1.25rem, 4vw, 5rem);

  /* Radius scale - STRICT: 0 / 6px / pill only */
  --r-sm: 6px;
  --r-pill: 999px;

  /* Animation */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: #1E1919; /* True soft black for better reading contrast */
  font-family: var(--sans);
  font-size: var(--t-base);
  font-feature-settings: 'liga' 1, 'calt' 1;
  line-height: 1.6;
  overflow-x: hidden;
}


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

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

a[href^="mailto:"], 
a[href^="tel:"] {
  word-wrap: break-word;
  word-break: break-all;
}

button {
  background: none;
  border: none;
  font: inherit;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font: inherit;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}

/* ── CUSTOM CURSOR ──────────────────────────────────────────────── */
#cursor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

#cursor-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 2px solid var(--black);
  border-radius: 50%;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.3s var(--ease), border 0.3s var(--ease), transform 0.2s;
}

#cursor-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s;
  color: var(--black);
  pointer-events: none;
}

body.cursor-view #cursor-dot {
  width: 0;
  height: 0;
}

body.cursor-view #cursor-icon {
  opacity: 1;
}

body.cursor-link #cursor-dot {
  width: 64px;
  height: 64px;
  background: rgba(180, 220, 25, 0.15); /* translucent gold */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--gold);
}

/* ── PRELOADER ──────────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
}

.pre-logo {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--bg);
  text-transform: uppercase;
  opacity: 0;
}

.pre-logo em {
  font-style: italic;
  color: var(--gold);
}

.pre-track {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.pre-fill {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.pre-num {
  font-family: var(--sans);
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 500;
}

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────────── */
#ann-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 0.45rem var(--gutter);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(0);
  transition: transform 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

#ann-bar.hide {
  transform: translateY(-100%);
}

#ann-bar i {
  font-size: 13px;
}

/* ── NAVBAR ─────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #FAFAFA;
  box-shadow: 0 1px 0 var(--border);
  transition:
    background 0.5s var(--ease),
    backdrop-filter 0.5s var(--ease),
    padding 0.4s var(--ease),
    top 0.4s var(--ease),
    box-shadow 0.4s;
}

#nav.solid {
  background: #FAFAFA;
  box-shadow: 0 1px 0 var(--border);
  padding: 0.875rem var(--gutter);
}

#nav.bar-gone {
  top: 0;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  position: relative;
  z-index: 10;
  line-height: 1;
  transition: color 0.5s var(--ease);
}

.nav-logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--black);
  transition: color 0.5s var(--ease);
}

.nav-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: var(--t-xs);
  color: var(--muted);
  letter-spacing: 0.05em;
  text-align: center;
  transition: color 0.5s var(--ease);
}

.nav-meta strong {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 600;
  transition: color 0.5s var(--ease);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ── PILL BUTTON ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  background: var(--black);
  color: #FFFFFF;
  border: 1px solid transparent; /* Prevents layout shift for bordered buttons */
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-io);
  border-radius: inherit;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn:hover {
  color: #FFFFFF;
}

.btn>* {
  position: relative;
  z-index: 1;
}

.btn i {
  font-size: 15px;
  transition: transform 0.3s var(--ease-spring);
}

.btn:hover i {
  transform: translateX(3px) translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline::before {
  background: var(--gold);
}

.btn-outline:hover {
  color: var(--black);
  border-color: var(--gold);
}

/* ── GOLD BUTTON ────────────────────────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn-gold::before {
  background: var(--charcoal); /* Main color on hover */
}

.btn-gold:hover {
  color: var(--gold);
  border-color: var(--gold); /* Complementary color stroke */
}

/* ── HAMBURGER ──────────────────────────────────────────────────── */
.ham {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  position: relative;
  z-index: 1001;
}

.ham span {
  display: block;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.4s var(--ease-io), opacity 0.3s, width 0.4s var(--ease-io), background 0.5s var(--ease);
}

.ham span:nth-child(1) {
  width: 24px;
}

.ham span:nth-child(2) {
  width: 16px;
}

.ham.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  width: 22px;
}

.ham.open span:nth-child(2) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 22px;
}

/* ── NAV ON SCROLL (SOLID STATE) ────────────────────────────────── */
#nav.solid .nav-logo {
  color: #000;
}
#nav.solid .nav-logo em {
  color: var(--black);
}
#nav.solid .nav-meta {
  color: var(--muted);
}
#nav.solid .nav-meta strong {
  color: var(--black);
}
#nav.solid .ham span {
  background: var(--black);
}

#nav.menu-active {
  background: var(--black);
}

#nav.menu-active .nav-logo,
#nav.menu-active .nav-logo em,
#nav.menu-active .nav-meta,
#nav.menu-active .nav-meta strong {
  color: #fff;
}

#nav.menu-active .ham span {
  background: #fff;
}

#nav.menu-active .btn {
  background: var(--gold);
}

#nav.menu-active .btn::before {
  background: var(--black);
}

/* ── MENU OVERLAY ───────────────────────────────────────────────── */
#menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 800;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.85s var(--ease-io);
  pointer-events: none;
  overflow: hidden;
}

#menu.open {
  clip-path: inset(0 0 0% 0);
  pointer-events: all;
}

.menu-layout {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  padding: 8rem var(--gutter) 4rem;
  gap: 4rem;
  align-content: center;
}

.menu-nav {
  display: flex;
  flex-direction: column;
}

.menu-item {
  overflow: hidden;
}

.menu-item a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 6rem); /* Reduced size */
  font-weight: 400;
  color: rgba(250, 248, 244, 0.85);
  line-height: 1.05;
  letter-spacing: -0.02em;
  transform: translateY(110%);
  transition: color 0.3s;
  padding: 0.1em 0 0.25em; /* Added bottom padding to fix descender cut-off */
  margin-bottom: -0.15em; /* Offset the extra padding so items don't drift too far apart */
}

.menu-item a:hover,
.menu-item a.active {
  color: var(--gold);
}

.menu-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2.5rem;
  padding-bottom: 1rem;
}

.menu-tagline {
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-weight: 300;
  color: rgba(250, 248, 244, 0.12);
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.menu-tagline em {
  font-style: italic;
}

.menu-contacts {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.menu-contacts p {
  font-size: var(--t-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.menu-contacts a {
  display: block;
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  letter-spacing: normal;
  color: var(--bg);
  line-height: 1.5;
  transition: color 0.3s;
}

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

.menu-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s var(--ease);
}

#menu.open .menu-social {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.menu-social a {
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

.menu-social i {
  font-size: 16px;
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.about-hero {
  background: var(--bg);
}

.about-hero .hero-h1 {
  color: var(--charcoal);
}

.about-hero .hero-scroll {
  color: var(--charcoal);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.hero-img img,
.hero-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: var(--t-hero);
  font-weight: 400;
  line-height: 1.1; /* Increased from 0.95 */
  letter-spacing: -0.015em;
  color: #fff;
}

.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.lw {
  overflow: hidden;
  display: block;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}

/* line-wrapper */

.hero-scroll {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  right: auto;
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0;
  z-index: 2;
}

.hero-scroll i {
  font-size: 18px;
  animation: bounceD 2s ease-in-out infinite;
  writing-mode: horizontal-tb;
}

@keyframes bounceD {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ── SECTION SKELETON ───────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sec {
  padding: clamp(4rem, 9vw, 9rem) 0;
}

/* Eyebrow label */
.eyebrow {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Display heading */
.h-display {
  font-family: var(--serif);
  font-size: var(--t-3xl);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--black);
}

.h-display em {
  font-style: italic;
  font-weight: inherit;
}

/* Hairline divider */
.rule {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ═══ EXPERIENCE SECTION ════════════════════════════════════════════ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
  margin-top: 2rem;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .exp-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.exp-card {
  background-color: transparent;
  perspective: 1000px;
  text-align: left;
  border-right: 1px solid var(--border); /* Side stroke */
  border-bottom: 1px solid var(--border); /* Bottom stroke for mobile stacking */
  min-height: 400px; /* Taller box */
}

@media (min-width: 768px) {
  .exp-card {
    border-bottom: none; /* Desktop doesn't need bottom stroke on individual cards */
  }
  .exp-card:last-child {
    border-right: none; /* Remove right stroke on last item */
  }
}

.exp-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.exp-card:hover .exp-card-inner {
  transform: rotateY(180deg);
}

.exp-card-front, .exp-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 3.5rem 2rem; /* Adjusted padding to fit content gracefully */
  display: flex;
  flex-direction: column;
}

.exp-card-front {
  background-color: #fff;
}

.exp-card-back {
  background-color: var(--charcoal);
  transform: rotateY(180deg);
}

.exp-icon {
  font-size: 4rem; /* Bigger icons */
  color: var(--gold);
  margin-bottom: auto; /* Pushes everything below it to the bottom */
}

.exp-card-back .exp-icon {
  margin-bottom: 2rem; /* Give a bit less push on the back to accommodate text */
}

.exp-title {
  font-family: var(--sans); /* Usually sans-serif is better for uppercase, but let's stick to their typography */
  font-size: var(--t-md); /* Reduced slightly since uppercase takes up more space */
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.exp-card-back .exp-title {
  color: #fff;
  margin-bottom: 1rem;
}

.exp-card p {
  font-size: 1rem; /* Increased body font size */
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

/* ═══ OUR STORY SECTION ═════════════════════════════════════════════ */
.story-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .story-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.story-content {
  max-width: 500px;
}

.story-image {
  overflow: hidden;
  border-radius: var(--r-sm);
  position: relative;
  /* Start hidden for the clip-path wipe animation */
  clip-path: inset(100% 0 0 0); 
}

.story-image img {
  width: 100%;
  height: 120%; /* Extra height for parallax */
  object-fit: cover;
  aspect-ratio: 4/5;
  will-change: transform;
}

/* ── GALLERY ────────────────────────────────────────────────────── */
.gallery-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: var(--s-6);
}

/* Arrow buttons - flat, Phosphor icon, no circles */
.arr-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-spring);
}

.arr-btn i {
  font-size: 22px;
}

.arr-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.15);
}

.gallery-arrows {
  display: flex;
  gap: 0.5rem;
}

.gallery-scroll {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 1.25rem;
  cursor: grab;
  will-change: transform;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.gallery-track:active {
  cursor: grabbing;
}

.g-card {
  flex: 0 0 clamp(240px, 32vw, 440px);
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}

.g-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.g-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.8s var(--ease);
  display: block;
}

.g-card:hover .g-card-img img {
  transform: scale(1.10);
}

/* clip-path mask reveal - initial state */
.g-card-img {
  clip-path: inset(0 0 100% 0);
}

.g-card.revealed .g-card-img {
  clip-path: inset(0 0 0% 0);
  transition: clip-path 1.1s var(--ease);
}

.g-card-meta {
  padding: 1rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.g-tag {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.g-title {
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 500;
  color: var(--black);
  line-height: 1.25;
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 6rem;
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: 7rem;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-row {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  text-align: left;
  gap: 2rem;
}

.faq-q-text {
  font-family: var(--sans);
  font-size: var(--t-md); /* Reduced font size */
  font-weight: 300; /* Reduced font weight */
  color: var(--charcoal);
  line-height: 1.3;
  transition: color 0.3s;
  flex: 1;
}

.faq-row.open .faq-q-text {
  color: var(--gold-dk);
}

/* FAQ icon - flat Phosphor, no bubble */
.faq-icon {
  flex-shrink: 0;
  color: var(--black);
  transition: transform 0.4s var(--ease-io), color 0.3s;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.faq-row.open .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-a {
  height: 0;
  overflow: hidden;
}

.faq-a-inner {
  padding-bottom: 1.75rem;
  font-size: var(--t-md);
  color: var(--mid);
  line-height: 1.8;
}

/* ── MARQUEE ────────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 1rem 0;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
}

.marquee-run {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  animation: marqScroll 32s linear infinite;
}

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

@keyframes marqScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.marq-word {
  font-size: var(--t-xs);
  color: rgba(250, 248, 244, 0.4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.marq-sep {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── DARK CTA ───────────────────────────────────────────────────── */
.dark-cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.dark-cta-img {
  position: absolute;
  inset: 0;
}

.dark-cta-img img,
.dark-cta-img video {
  width: 100%;
  height: 125%;
  object-fit: cover;
  will-change: transform;
}

.dark-cta-scrim {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.72);
}

.dark-cta-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.dark-cta-h {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 7rem);
  font-weight: 500;
  color: var(--bg);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-6);
}

.dark-cta-h em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.cta-ln {
  display: block;
  overflow: hidden;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}

.cta-ln-i {
  display: block;
}

.dark-cta-sub {
  font-size: var(--t-md);
  color: #fff;
  max-width: 42ch;
  line-height: 1.75;
  margin-bottom: var(--s-6);
}

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testi-wrap {
  margin-top: var(--s-8);
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 1.5rem;
  padding-left: var(--gutter);
  transition: transform 0.75s var(--ease-io);
}

.t-card {
  flex: 0 0 clamp(280px, 46vw, 620px);
  padding: 2.5rem;
  background: var(--bg-warm);
  position: relative;
  transition: opacity 0.4s;
}

.t-card:not(.active) {
  opacity: 0.45;
}

/* Quote - Phosphor icon inline, no bubble */
.t-quote-icon {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.t-text {
  font-family: var(--sans);
  font-size: var(--t-xl);
  font-weight: 300;
  color: var(--black);
  line-height: 1.55;
  margin-bottom: 2rem;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.t-initial {
  font-family: var(--sans);
  font-size: var(--t-2xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}

.t-name {
  font-weight: 600;
  font-size: var(--t-sm);
}

.t-loc {
  font-size: var(--t-xs);
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.05em;
}

/* Controls */
.testi-ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--s-4);
  padding: 0 var(--gutter);
}

.testi-dots {
  display: flex;
  gap: 0.4rem;
}

.t-dot {
  height: 2px;
  width: 24px;
  background: rgba(13, 13, 13, 0.12);
  transition: background 0.3s, width 0.4s var(--ease-spring);
}

.t-dot.on {
  background: var(--gold);
  width: 44px;
}

/* ── RATING ─────────────────────────────────────────────────────── */
.rating-sec {
  background: var(--charcoal);
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
}

.rating-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(3rem, 5vw, 8rem);
  align-items: center;
}

.rating-num {
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--bg);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.rating-max {
  font-size: 0.35em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.rating-stars {
  display: flex;
  gap: 5px;
  margin-top: 0.75rem;
}

.rating-stars i {
  font-size: 18px;
  color: rgba(250, 248, 244, 0.15);
  transition: color 0.4s, transform 0.4s var(--ease-spring);
}

.rating-stars i.on {
  color: var(--gold);
  transform: scale(1.12);
}

.rating-copy {}

.rating-h {
  font-family: var(--serif);
  font-size: var(--t-2xl);
  font-weight: 400;
  color: var(--bg);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.rating-h em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.rating-sub {
  font-size: var(--t-md);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 36ch;
}

.rating-awards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.award-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

/* Icon inline - NO bubble */
.award-row i {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 2px;
}

.award-title {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  display: block;
  margin-bottom: 3px;
}

.award-desc {
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.new-footer {
  background: var(--charcoal);
  color: var(--bg);
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
}

.nf-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 6rem;
}

.nf-top-left {
  max-width: 400px;
}

.nf-top-left p {
  font-size: var(--t-md);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.nf-top-right {
  display: flex;
  gap: 6rem;
}

.nf-col h5 {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 1.25rem;
}

.nf-col ul li {
  margin-bottom: 0.75rem;
}

.nf-col ul li a {
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.nf-col ul li a:hover {
  color: var(--gold);
}

.nf-mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nf-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 2rem;
  color: var(--bg);
  font-size: var(--t-sm);
  transition: background 0.3s, transform 0.3s;
}

.nf-social-btn i {
  background: var(--bg);
  color: var(--charcoal);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nf-social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nf-cta-box {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3rem;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  margin-bottom: 1rem;
}

.nf-cta-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nf-cta-text {
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
}

.nf-cta-btn {
  background: var(--gold);
  color: var(--bg);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: var(--t-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s;
}

.nf-cta-btn:hover {
  transform: scale(1.05);
}

.nf-cta-btn i {
  background: var(--charcoal);
  color: var(--gold);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.nf-cta-sub {
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
}

.nf-cta-sub span {
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

.nf-huge-text {
  font-family: var(--serif);
  font-size: clamp(4rem, 16.8vw, 15rem);
  line-height: 0.9;
  color: var(--bg);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.nf-bottom {
  font-size: var(--t-xs);
  color: rgba(255, 255, 255, 0.4);
  padding-top: 1.5rem;
}

.nf-bottom p {
  margin: 0;
  padding: 0;
  text-align: left;
}

.nf-legal {
  display: flex;
  gap: 2rem;
}

.nf-legal a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.nf-legal a:hover {
  color: var(--bg);
}

/* ── ABOUT ──────────────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

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

.narrative-p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--black);
  max-width: 30ch;
  letter-spacing: -0.03em;
}

/* Framer Text Reveal Styles */
.framer-word-wrap {
  overflow: hidden;
  display: inline-flex;
  vertical-align: top;
  margin-right: 0.25em; /* Space between words */
}

.framer-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
}

.why-p {
  font-family: var(--sans);
  font-size: clamp(1.375rem, 2.5vw, 2.25rem);
  font-weight: 300;
  line-height: 1.6;
  max-width: 34ch;
}

.why-p .w {
  display: inline-block;
  color: rgba(13, 13, 13, 0.18);
  transition: color 0.5s;
}

.why-p .w.lit {
  color: var(--black);
}

.value-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.value-num {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 0.1rem;
  width: 2rem;
}

.value-h {
  font-family: var(--sans);
  font-size: var(--t-lg);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.value-body {
  font-size: var(--t-sm);
  color: var(--mid);
  line-height: 1.7;
}

/* ── CONTACT ────────────────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 6rem;
  align-items: start;
}

.contact-sticky {
  position: sticky;
  top: 7rem;
}

/* Contact info - icon inline, no bubble */
.c-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.c-info-row i {
  font-size: 18px;
  color: var(--gold);
  padding-top: 0.1rem;
  flex-shrink: 0;
}

.c-label {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}

.c-val {
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-weight: 300;
  color: var(--black);
  line-height: 1.4;
}

/* Form */
.form-card {
  background: var(--bg-warm);
  padding: 3rem;
}

.form-card h3 {
  font-family: var(--serif);
  font-size: var(--t-2xl);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.form-card h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dk);
}

.fg {
  position: relative;
  margin-bottom: 1.75rem;
}

.fg input,
.fg textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 1.15rem 0 0.7rem;
  font-size: var(--t-md);
  color: var(--black);
  outline: none;
  transition: border-color 0.3s;
}

.fg textarea {
  resize: none;
  height: 120px;
}

.fg label {
  position: absolute;
  top: 1.15rem;
  left: 0;
  font-size: var(--t-sm);
  color: var(--muted);
  pointer-events: none;
  transition: top 0.3s var(--ease), font-size 0.3s, color 0.3s, letter-spacing 0.3s;
}

.fg input:focus~label,
.fg input:not(:placeholder-shown)~label,
.fg textarea:focus~label,
.fg textarea:not(:placeholder-shown)~label {
  top: 0;
  font-size: var(--t-xs);
  color: var(--gold-dk);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.fg-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.fg input:focus~.fg-line,
.fg textarea:focus~.fg-line {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.fg-select {
  position: relative;
  margin-bottom: 1.75rem;
}

/* Custom Select UI */
.custom-select {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--border);
  padding: 1.15rem 0 0.7rem 0;
  font-size: var(--t-md);
  color: var(--black);
  transition: border-color 0.3s;
}

.custom-select-trigger span {
  font-size: var(--t-sm);
  opacity: 0.5; /* Matches placeholder until selected */
  transition: opacity 0.3s, font-size 0.3s;
}
.custom-select.selected .custom-select-trigger span {
  font-size: var(--t-md);
  opacity: 1;
}

.custom-select-trigger i {
  font-size: 18px;
  color: var(--muted);
  transition: transform 0.3s;
}

.custom-select.open .custom-select-trigger {
  border-bottom-color: var(--black);
}
.custom-select.open .custom-select-trigger i {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  z-index: 10;
  overflow: hidden;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  padding: 1rem 1.25rem;
  font-size: var(--t-base);
  color: var(--black);
  transition: background 0.2s, color 0.2s;
}

.custom-option:hover {
  background: var(--black);
  color: var(--bg);
}

.btn-submit {
  width: 100%;
  padding: 1.05rem 2rem;
  background: var(--black);
  color: var(--bg);
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: color 0.3s;
  margin-top: 0.75rem;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-io);
  border-radius: inherit;
}

.btn-submit:hover::before {
  transform: scaleX(1);
}

.btn-submit:hover {
  color: var(--black);
}

.btn-submit .bst,
.btn-submit .bspin,
.btn-submit .bcheck {
  position: relative;
  z-index: 1;
}

.btn-submit .bspin {
  display: none;
}

.btn-submit .bcheck {
  display: none;
}

.btn-submit.loading .bst {
  display: none;
}

.btn-submit.loading .bspin {
  display: flex;
  align-items: center;
}

.btn-submit.loading .bspin i {
  font-size: 18px;
  animation: spin 0.75s linear infinite;
}

.btn-submit.done {
  background: #2a7a50 !important;
}

.btn-submit.done .bst,
.btn-submit.done .bspin {
  display: none;
}

.btn-submit.done .bcheck {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.success-msg {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

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

.success-msg i {
  font-size: 2.5rem;
  color: #2a7a50;
  display: block;
  margin-bottom: 1rem;
}

.success-msg h3 {
  font-family: var(--serif);
  font-size: var(--t-2xl);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.success-msg p {
  font-size: var(--t-sm);
  color: var(--mid);
  line-height: 1.6;
}

/* ── DATA-REVEAL BASE STATES ────────────────────────────────────── */
[data-r] {
  opacity: 0;
  transform: translateY(32px);
}

[data-r="l"] {
  transform: translateX(-24px);
}

[data-r="r"] {
  transform: translateX(24px);
}

[data-r="s"] {
  transform: scale(0.95) translateY(16px);
}

[data-r].vis {
  opacity: 1;
  transform: none;
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

/* Fix flex/grid overflow */
.nf-top > *, .nf-mid > *, .nf-bottom > *, .foot-grid > *, .faq-layout > *, .about-split > *, .contact-split > *, .hero-body > *, .stats-intro > *, .menu-layout > *, .form-row > *, .story-wrap > * {
  min-width: 0;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-sticky {
    position: static;
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-right {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
  }
  .menu-tagline {
    display: none; /* Hide tagline to save space on mobile, keep contact/social */
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-sticky {
    position: static;
  }

  .rating-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .rating-awards {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .stats-intro {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  
  .stats-intro > div:nth-child(2) {
    padding-left: 0;
  }

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

  .nav-meta {
    display: none;
  }

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

  .rating-inner {
    grid-template-columns: 1fr;
  }

  .hero-body {
    grid-template-columns: 1fr;
  }

  .hero-scroll {
    display: none;
  }

  .dark-cta-h {
    font-size: clamp(2rem, 8vw, 4rem);
  }
}

/* ── REDUCED MOTION ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  #cursor {
    display: none;
  }

  body {
    cursor: auto;
  }

  button {
    cursor: pointer;
  }

  [data-r] {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ── MASONRY MEDIA GALLERY ──────────────────────────────────────── */
.media-gallery {
  padding: 0 var(--gutter) 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  grid-auto-rows: 20px;
  /* fine-grained grid for masonry */
  gap: 1.5rem;
  align-items: start;
}

.m-item {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  grid-row-end: span 15;
  /* Default, overridden by JS */
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease);
}

.m-item.revealed {
  clip-path: inset(0 0 0% 0);
}

.m-item img,
.m-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  display: block;
}

.m-item:hover img,
.m-item:hover video {
  transform: scale(1.05);
}

/* Play icon overlay */
.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg);
  font-size: 3rem;
  opacity: 0.8;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.4s var(--ease-spring);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.m-item:hover .play-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ── LIGHTBOX ───────────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

#lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-content img,
.lb-content video {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s, transform 0.5s var(--ease-io);
}

.lb-content img.loaded,
.lb-content video.loaded {
  opacity: 1;
  transform: scale(1);
}

.lb-ctrl {
  position: absolute;
  color: var(--bg);
  font-size: 2rem;
  padding: 1rem;
  transition: color 0.3s, transform 0.3s var(--ease-spring);
}

.lb-ctrl:hover {
  color: var(--gold);
  transform: scale(1.15);
}

.lb-close {
  top: 1.5rem;
  right: 2rem;
  position: fixed;
}

.lb-prev {
  left: 2rem;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
}

.lb-next {
  right: 2rem;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .nf-top, .nf-mid, .nf-cta-content, .nf-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .nf-top-right {
    gap: 3rem;
  }
  
  .nf-cta-box {
    width: 100%;
    margin-top: 2rem;
  }
  
  .nf-cta-content {
    align-items: stretch;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0.5rem;
  }
  
  .nf-cta-btn {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .nf-top-right {
    flex-direction: column;
    gap: 2rem;
  }
  
  .nf-huge-text {
    font-size: clamp(3rem, 12vw, 5rem);
  }
  
  .nf-legal {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
}

/* ═══ NEWSLETTER ══════════════════════════════════════════════════ */
.newsletter {
  background-color: var(--bg-warm);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.newsletter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.newsletter-eyebrow {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.newsletter-h2 {
  font-family: var(--serif);
  font-size: var(--t-3xl);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.newsletter-content p {
  color: var(--charcoal);
  font-size: var(--t-base);
  max-width: 600px;
  line-height: 1.6;
}

.newsletter-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.newsletter-form .input-group {
  display: flex;
  width: 100%;
  max-width: 500px;
  gap: 0.5rem;
  align-items: stretch;
}

.newsletter-form input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  padding: 0 1.5rem;
  border-radius: var(--r-pill);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: var(--t-sm);
  transition: border-color 0.3s ease, background 0.3s ease;
  line-height: normal;
  height: 52px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-dk);
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.privacy-note {
  font-size: var(--t-sm);
  color: var(--charcoal);
  margin-top: 1rem;
}

.privacy-note a {
  color: var(--gold-dk);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-note a:hover {
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .newsletter-form .input-group {
    flex-direction: column;
  }
}
