@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,200;0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,200;1,9..144,300;1,9..144,400;1,9..144,500&family=Syne:wght@400;500;600;700;800&display=swap');

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

:root {
  --bg:       #08090B;
  --bg-1:     #0C0D10;
  --bg-2:     #111318;
  --bg-3:     #161820;
  --surface:  rgba(255,255,255,0.03);
  --surface-h:rgba(255,255,255,0.055);
  --border:   rgba(255,255,255,0.07);
  --border-g: rgba(185,148,90,0.22);
  --gold:     #C09A60;
  --gold-l:   #DEAD7D;
  --gold-m:   rgba(192,154,96,0.55);
  --text:     #EDE9E0;
  --muted:    rgba(237,233,224,0.38);
  --muted-2:  rgba(237,233,224,0.18);
  --spring:   cubic-bezier(0.32,0.72,0,1);
  --expo:     cubic-bezier(0.19,1,0.22,1);
  --snappy:   cubic-bezier(0.25,0.46,0.45,0.94);
  --font-d:   'Fraunces', serif;
  --font-ui:  'Syne', sans-serif;
  --r: 18px;
  --r-lg: 26px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─── NAV — FLOATING PILL ─── */
.nav-wrap {
  position: fixed;
  top: 24px;
  left: 0; right: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  pointer-events: none;
}
nav {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(8,9,11,0.72);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px;
  padding: 10px 10px 10px 24px;
  transition: all 0.5s var(--spring);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.35);
}
nav.expanded {
  border-radius: var(--r-lg);
  background: rgba(8,9,11,0.9);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 32px;
}
.nav-logo-mark {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-logo-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-bottom: 2px;
  flex-shrink: 0;
}
.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  display: block;
  text-decoration: none;
  color: rgba(237,233,224,0.55);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.3s var(--snappy), background 0.3s var(--snappy);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.nav-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--gold);
  color: var(--bg) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 10px 20px !important;
  border-radius: 100px;
  margin-left: 8px;
  transition: all 0.35s var(--spring) !important;
  background: rgba(255,255,255,0.08) !important;
  color: var(--text) !important;
}
.nav-cta-btn:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
  transform: scale(1.03);
}

/* hamburger */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255,255,255,0.07);
  border: none;
  border-radius: 100px;
  margin-left: 8px;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span {
  position: absolute;
  display: block;
  width: 16px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.4s var(--spring);
}
.nav-toggle span:nth-child(1) { transform: translateY(-4px); }
.nav-toggle span:nth-child(2) { transform: translateY(4px); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: rotate(-45deg); }

/* Mobile menu overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(8,9,11,0.92);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nav-overlay.open { display: flex; }
.nav-overlay .nav-links {
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.nav-overlay .nav-links a {
  font-size: 1.8rem;
  font-family: var(--font-d);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  text-transform: none;
  padding: 12px 28px;
  color: var(--muted);
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s, background 0.3s, opacity 0.5s var(--expo), transform 0.5s var(--expo);
}
.nav-overlay.open .nav-links a { opacity: 1; transform: translateY(0); }
.nav-overlay.open .nav-links li:nth-child(1) a { transition-delay: 0.05s; }
.nav-overlay.open .nav-links li:nth-child(2) a { transition-delay: 0.1s; }
.nav-overlay.open .nav-links li:nth-child(3) a { transition-delay: 0.15s; }
.nav-overlay.open .nav-links li:nth-child(4) a { transition-delay: 0.2s; }
.nav-overlay.open .nav-links li:nth-child(5) a { transition-delay: 0.25s; }
.nav-overlay .nav-links a:hover { color: var(--text); }
.nav-overlay-contact {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--expo) 0.3s, transform 0.5s var(--expo) 0.3s;
}
.nav-overlay.open .nav-overlay-contact { opacity: 1; transform: translateY(0); }

/* ─── SCROLL REVEAL ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition: opacity 0.8s var(--expo), transform 0.8s var(--expo), filter 0.8s var(--expo);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }

/* ─── TYPOGRAPHY ─── */
.display-xl {
  font-family: var(--font-d);
  font-size: clamp(3.8rem, 9.5vw, 9.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
}
.display-lg {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--text);
}
.display-md {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
em.accent { font-style: italic; color: var(--gold); }
.gradient-text {
  background: linear-gradient(135deg, var(--gold-l) 0%, var(--gold) 50%, #8A6B3A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,154,96,0.1);
  border: 1px solid var(--border-g);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.body-text {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 14px 20px 14px 24px;
  transition: all 0.4s var(--spring);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.4s var(--spring);
  flex-shrink: 0;
}
.btn:hover .btn-icon { transform: translate(2px, -2px) scale(1.1); }
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 0 1px rgba(192,154,96,0.5), 0 4px 20px rgba(192,154,96,0.25);
}
.btn-gold::before { background: rgba(255,255,255,0.12); }
.btn-gold:hover { box-shadow: 0 0 0 1px rgba(192,154,96,0.8), 0 8px 30px rgba(192,154,96,0.35); }
.btn-gold .btn-icon { background: rgba(0,0,0,0.15); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost::before { background: rgba(255,255,255,0.04); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.14); }
.btn-ghost .btn-icon { background: rgba(255,255,255,0.06); color: var(--gold); }

.btn-dark {
  background: var(--bg);
  color: var(--gold);
  border: 1px solid rgba(192,154,96,0.4);
}
.btn-dark .btn-icon { background: rgba(192,154,96,0.1); }
.btn-dark:hover { background: rgba(8,9,11,0.9); border-color: var(--gold); }

/* ─── DOUBLE-BEZEL CARD ─── */
.bezel {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 3px;
}
.bezel-inner {
  background: var(--bg-1);
  border-radius: calc(var(--r-lg) - 3px);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.06);
  height: 100%;
}
.bezel-inner-gold {
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.06), 0 0 0 1px var(--border-g);
}

/* ─── HERO ─── */
.hero {
  min-height: 100dvh;
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  padding-top: 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(8,9,11,0.95) 0%, transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(8,9,11,0.65) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(8,9,11,0.5) 0%, rgba(8,9,11,0.2) 50%, rgba(8,9,11,0.9) 85%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100dvh - 140px);
  gap: 2rem;
}
.hero-tag-row { display: flex; align-items: center; gap: 16px; }
.hero-rule { flex: 1; max-width: 80px; height: 1px; background: linear-gradient(to right, var(--gold-m), transparent); }
.hero-heading { max-width: 14ch; }
.hero-heading .line-2 {
  display: block;
  padding-left: 8vw;
}
.hero-sub-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.hero-desc { max-width: 380px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 24px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.hero-stat-row { display: flex; gap: 40px; }
.hero-stat-num {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 2px;
}
.hero-stat-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  animation: scrollAnim 2s var(--expo) infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ─── SECTIONS ─── */
.section { padding: 120px 5vw; }
.section-sm { padding: 80px 5vw; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 5vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:first-child { padding-left: 0; border-left: none; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ─── BENTO SERVICES GRID ─── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

/* CARD BASE */
.bento-card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.4s var(--snappy), transform 0.4s var(--spring);
}
.bento-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* Card sizes */
.bento-c-8 { grid-column: span 8; }
.bento-c-7 { grid-column: span 7; }
.bento-c-6 { grid-column: span 6; }
.bento-c-5 { grid-column: span 5; }
.bento-c-4 { grid-column: span 4; }
.bento-c-3 { grid-column: span 3; }
.bento-r-2 { grid-row: span 2; }

/* Image card (service hero) */
.bento-img-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}
.bento-img-card .bcard-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--spring), filter 0.5s;
  filter: brightness(0.55) saturate(0.9);
}
.bento-img-card:hover .bcard-bg { transform: scale(1.04); filter: brightness(0.4) saturate(0.8); }
.bento-img-card .bcard-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,9,11,0.92) 0%, rgba(8,9,11,0.2) 55%, transparent 100%);
}
.bcard-content {
  position: relative;
  z-index: 2;
  padding: 32px;
}
.bcard-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bcard-tag::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.bcard-title {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.bcard-desc {
  font-size: 0.8rem;
  color: rgba(237,233,224,0.55);
  line-height: 1.6;
  max-width: 340px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--expo), transform 0.4s var(--expo);
}
.bento-img-card:hover .bcard-desc { opacity: 1; transform: translateY(0); }
.bcard-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s var(--expo), transform 0.4s var(--expo);
}
.bento-img-card:hover .bcard-arrow { opacity: 1; transform: translateX(0); }

/* Stat card */
.bento-stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-2);
  min-height: 200px;
}
.bento-stat-card .big-num {
  font-family: var(--font-d);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 200;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bento-stat-card .big-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* Text/info card */
.bento-text-card {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

/* Mini service card */
.bento-mini-card {
  padding: 32px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
}
.bento-mini-card:hover { border-color: var(--border-g); }
.mini-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border-g);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192,154,96,0.07);
  color: var(--gold);
  font-size: 1rem;
  transition: background 0.3s, transform 0.4s var(--spring);
}
.bento-mini-card:hover .mini-icon { background: rgba(192,154,96,0.15); transform: scale(1.08) rotate(-4deg); }
.mini-title {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
}
.mini-desc { font-size: 0.76rem; color: var(--muted); line-height: 1.6; }

/* ─── ABOUT SPLIT ─── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.9);
  transition: filter 0.6s, transform 0.8s var(--spring);
}
.about-img-frame:hover img { filter: brightness(0.75); transform: scale(1.02); }
.about-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: rgba(8,9,11,0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-g);
  border-radius: var(--r);
  padding: 16px 20px;
}
.about-badge-num {
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
}
.about-badge-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: rgba(237,233,224,0.6);
  line-height: 1.55;
  transition: color 0.25s;
}
.about-list li:hover { color: var(--text); }
.about-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 1px solid var(--border-g);
  border-radius: 50%;
  background: rgba(192,154,96,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ─── GALLERY PREVIEW ─── */
.gallery-reel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-reel-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.gallery-reel-item.tall { aspect-ratio: 3/5; }
.gallery-reel-item.short { aspect-ratio: 3/3; }
.gallery-reel-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.8);
  transition: transform 0.7s var(--spring), filter 0.4s;
}
.gallery-reel-item:hover img { transform: scale(1.06); filter: brightness(0.5) saturate(0.7); }
.gallery-reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-reel-item:hover .gallery-reel-overlay { opacity: 1; }
.gallery-reel-overlay span {
  width: 40px; height: 40px;
  border: 1px solid rgba(192,154,96,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  background: rgba(8,9,11,0.5);
  backdrop-filter: blur(8px);
}

/* ─── PROCESS ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.process-step {
  background: var(--bg-1);
  padding: 40px 32px;
  transition: background 0.3s;
}
.process-step:hover { background: var(--bg-2); }
.process-num {
  font-family: var(--font-d);
  font-size: 4rem;
  font-weight: 200;
  line-height: 1;
  color: rgba(192,154,96,0.15);
  margin-bottom: 20px;
}
.process-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.process-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.7; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(192,154,96,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .display-lg { margin-bottom: 20px; }

/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  padding: 80px 5vw 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-logo-mark {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 4px;
}
.footer-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 12px;
  max-width: 280px;
}
.footer-col-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  text-decoration: none;
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--text); }
.footer-contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  align-items: flex-start;
}
.footer-contact-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.footer-contact-row a { color: var(--muted); text-decoration: none; transition: color 0.25s; }
.footer-contact-row a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted-2);
}
.footer-bottom a { color: var(--gold-m); text-decoration: none; }

/* ─── PAGE HERO (Inner pages) ─── */
.page-hero {
  min-height: 55dvh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 120px 5vw 60px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.7);
  transition: transform 0.1s;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,9,11,0.9) 0%, rgba(8,9,11,0.4) 60%, transparent 100%),
              linear-gradient(to top, rgba(8,9,11,0.8) 0%, transparent 50%);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold-m); text-decoration: none; }

/* ─── INNER PAGE SECTIONS ─── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  background: var(--bg-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.split-section.flip { direction: rtl; }
.split-section.flip > * { direction: ltr; }
.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.85);
  transition: transform 0.8s var(--spring);
}
.split-section:hover .split-img img { transform: scale(1.03); }
.split-text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.split-features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.split-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}
.split-features li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Product placeholder card */
.product-card-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 12px
    ),
    var(--bg-2);
  border: 1px dashed rgba(192,154,96,0.25);
  border-radius: var(--r);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 2rem;
}
.product-card-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(192,154,96,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.placeholder-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(192,154,96,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-m);
  font-size: 1.4rem;
  background: rgba(192,154,96,0.05);
}
.placeholder-title {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(237,233,224,0.5);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.placeholder-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(192,154,96,0.4);
}
.placeholder-coming {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,233,224,0.2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 5px 14px;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.product-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.product-card:hover { border-color: var(--border-g); }
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
  transition: transform 0.7s var(--spring), filter 0.4s;
}
.product-card:hover img { transform: scale(1.06); filter: brightness(0.45); }
.product-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px;
  background: linear-gradient(to top, rgba(8,9,11,0.92), transparent);
}
.product-card-tag { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.product-card-title { font-family: var(--font-d); font-size: 1.1rem; font-weight: 300; color: var(--text); letter-spacing: -0.01em; }

/* Features grid */
.features-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feature-cell {
  background: var(--bg-1);
  padding: 36px 28px;
  transition: background 0.3s;
}
.feature-cell:hover { background: var(--bg-2); }
.feature-n { font-family: var(--font-d); font-size: 3rem; color: rgba(192,154,96,0.12); font-weight: 200; line-height: 1; margin-bottom: 16px; }
.feature-t { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
.feature-d { font-size: 0.77rem; color: var(--muted); line-height: 1.65; }

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 12px;
}
.contact-info-panel {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 56px 48px;
}
.contact-form-panel {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 56px 48px;
}
.contact-item { margin-bottom: 36px; }
.contact-item-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-m); margin-bottom: 6px; }
.contact-item-val { font-family: var(--font-d); font-size: 1.15rem; font-weight: 300; color: var(--text); line-height: 1.4; }
.contact-item-val a { color: var(--text); text-decoration: none; transition: color 0.25s; }
.contact-item-val a:hover { color: var(--gold); }
.contact-divider { height: 1px; background: var(--border); margin: 32px 0; }

/* Form */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  padding: 14px 18px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--muted-2); }
.form-input:focus { border-color: var(--border-g); background: rgba(192,154,96,0.04); }
.form-input option { background: var(--bg-2); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#formMsg { display: none; font-size: 0.78rem; text-align: center; margin-top: 12px; color: var(--gold); }

/* Map */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border);
  margin-top: 12px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(1) invert(0.88) brightness(0.9); }

/* ─── GALLERY PAGE ─── */
.gallery-controls {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
}
.filter-pill {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--snappy);
}
.filter-pill.active, .filter-pill:hover { background: var(--gold); color: var(--bg); }

.masonry {
  columns: 4;
  column-gap: 8px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--spring), filter 0.3s;
  filter: brightness(0.72) saturate(0.85);
}
.masonry-item:hover img { transform: scale(1.04); filter: brightness(0.5); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(8,9,11,0.25);
  transition: opacity 0.3s;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay span {
  width: 40px; height: 40px;
  border: 1px solid var(--border-g);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  background: rgba(8,9,11,0.6);
  backdrop-filter: blur(8px);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(4,5,7,0.96);
  backdrop-filter: blur(30px);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(90vw, 1000px); max-height: 90dvh; object-fit: contain; border-radius: var(--r); }
.lb-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.lb-close:hover { background: rgba(255,255,255,0.08); border-color: var(--border-g); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .bento-c-8 { grid-column: span 12; }
  .bento-c-7 { grid-column: span 12; }
  .bento-c-6 { grid-column: span 12; }
  .bento-c-5 { grid-column: span 6; }
  .bento-c-4 { grid-column: span 6; }
  .bento-c-3 { grid-column: span 6; }
  .bento-r-2 { grid-row: span 1; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .features-4, .process-grid { grid-template-columns: repeat(2,1fr); }
  .masonry { columns: 3; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-reel { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-overlay .nav-links { display: flex; }
  .nav-toggle { display: flex; }
  nav { padding: 8px 8px 8px 20px; }
  .section { padding: 80px 5vw; }
  .section-sm { padding: 56px 5vw; }
  .bento-c-5, .bento-c-4, .bento-c-3 { grid-column: span 12; }
  .bento-img-card { min-height: 340px; }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .split-section { grid-template-columns: 1fr; }
  .split-img { min-height: 280px; position: relative; }
  .split-section.flip { direction: ltr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .features-4, .process-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .masonry { columns: 2; }
  .hero-sub-row { flex-direction: column; align-items: flex-start; }
  .hero-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-stat-row { gap: 28px; }
  .page-hero { padding: 100px 5vw 48px; }
  .contact-info-panel, .contact-form-panel { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .stats-strip { grid-template-columns: repeat(2,1fr); padding: 32px 5vw; }
  .stat-item { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .hero-heading { max-width: 100%; }
  .hero-heading .line-2 { padding-left: 3vw; }
  .gallery-reel { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── MOBILE OVERFLOW & LAYOUT FIXES ─── */

/* Contact page — 3-col info strip */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

/* Hide nav CTA on mobile — logo + CTA + toggle overflows on small screens */
@media (max-width: 768px) {
  .nav-cta-btn { display: none !important; }
  .nav-logo { margin-right: auto; }
}

/* Very small screens — trim nav logo sub-label */
@media (max-width: 380px) {
  .nav-logo-sub, .nav-logo-dot { display: none; }
  .nav-wrap { padding: 0 12px; }
  .nav-logo { margin-right: auto; }
}

/* Gallery filter pills — wrap on mobile */
@media (max-width: 640px) {
  .gallery-controls {
    width: 100%;
    border-radius: var(--r);
    flex-wrap: wrap;
    justify-content: center;
  }
  .filter-pill { flex: 0 0 auto; }
}

/* Contact 3-col strip — stack on mobile */
@media (max-width: 640px) {
  .contact-strip { grid-template-columns: 1fr; }
}

/* Footer bottom — stack on small screens */
@media (max-width: 560px) {
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* Prevent long words from breaking layout */
.display-xl, .display-lg, .display-md, .body-text {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Ensure images never overflow their containers */
img { max-width: 100%; }
