/* ══════════════════════════════════════════════════════════════════════
   SELAKA · Global Stylesheet  v8
   Mobile-first · Luxury editorial · Cormorant Garamond + DM Sans
   Refactored: clean rules, full-screen mobile menu, mobile-first hero
══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── Tokens ──────────────────────────────────────────────────────────── */
:root {
  --bg:    #F6F2EB;
  --bg2:   #EDE7DC;
  --bg3:   #E4DDD1;
  --ink:   #18160F;
  --ink2:  #38342A;
  --muted: #867F72;
  --gold:  #B5904F;
  --gold2: #CBA96A;
  --line:  rgba(24,22,15,.09);
  --line2: rgba(24,22,15,.16);
  --card:  #FAF7F2;
  --sh:    0 1px 3px rgba(24,22,15,.06), 0 8px 32px rgba(24,22,15,.06);
  --sh2:   0 4px 16px rgba(24,22,15,.08), 0 24px 64px rgba(24,22,15,.12);
  --r:     6px;
  --pill:  999px;
  --nav-h: 64px;
  --pad:   20px;
}

/* ── Reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; background: none; border: none; cursor: pointer; }

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

/* ── Animations ──────────────────────────────────────────────────────── */
@keyframes up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.fade   { opacity: 0; animation: up .7s cubic-bezier(.22,1,.36,1) forwards; }
.fade-1 { animation-delay: .04s; }
.fade-2 { animation-delay: .13s; }
.fade-3 { animation-delay: .24s; }
.fade-4 { animation-delay: .36s; }
.fade-5 { animation-delay: .48s; }

/* ── Container ───────────────────────────────────────────────────────── */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad) 80px;
  position: relative; z-index: 1;
}


/* ══════════════════════════════════════════════════════════════════════
   NAV — sticky header
══════════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(246,242,235,.94);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 18px;
  letter-spacing: .22em; text-transform: uppercase;
  transition: opacity .2s;
  position: relative; z-index: 1;
}
.nav-brand:hover { opacity: .6; }

/* Desktop inline nav (hidden on mobile) */
.nav-desktop {
  display: none;
  align-items: center; gap: 32px;
}
.nd-link {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nd-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.nd-link:hover { color: var(--ink); }
.nd-link:hover::after { transform: scaleX(1); }
.nd-link.active { color: var(--ink); }
.nd-link.active::after { transform: scaleX(1); }
.nd-wa {
  color: var(--ink) !important;
  padding: 9px 18px;
  border: 1px solid var(--line2);
  border-radius: var(--pill);
  background: var(--card);
  letter-spacing: .08em;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.nd-wa::after { display: none; }
.nd-wa:hover {
  background: var(--ink); color: #fff !important;
  box-shadow: 0 6px 20px rgba(24,22,15,.15);
  transform: translateY(-1px);
}

/* Mobile hamburger trigger */
.nav-trigger {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  padding: 0;
  background: none; border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative; z-index: 1;
}
.bars {
  width: 22px; height: 14px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.bars span {
  display: block; height: 1px; background: var(--ink);
  transition: transform .35s cubic-bezier(.22,1,.36,1),
              opacity .2s, width .3s cubic-bezier(.22,1,.36,1);
  transform-origin: left center;
}
.bars span:nth-child(2) { width: 16px; }
.bars span:nth-child(3) { width: 11px; }

/* Hamburger → X when overlay is open */
body.menu-open .bars span:nth-child(1) { transform: rotate(42deg) translateY(-1px); width: 22px; }
body.menu-open .bars span:nth-child(2) { opacity: 0; }
body.menu-open .bars span:nth-child(3) { transform: rotate(-42deg) translateY(1px); width: 22px; }


/* ══════════════════════════════════════════════════════════════════════
   FULL-SCREEN OVERLAY MENU (mobile)
══════════════════════════════════════════════════════════════════════ */
.nav-overlay {
  position: fixed; inset: 0; z-index: 480;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: var(--nav-h) var(--pad) 40px;
  /* hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .38s cubic-bezier(.22,1,.36,1),
              transform .38s cubic-bezier(.22,1,.36,1);
  overflow-y: auto;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Big decorative brand in overlay */
.nvo-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}

/* Nav links inside overlay */
.nvo-nav {
  display: flex; flex-direction: column;
  gap: 0;
  flex: 1;
}
.nvo-link {
  display: flex; align-items: baseline; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transition: opacity .2s;
}
.nvo-link:last-child { border-bottom: none; }
.nav-overlay.open .nvo-link {
  animation: slideRight .5s cubic-bezier(.22,1,.36,1) forwards;
}
.nav-overlay.open .nvo-link:nth-child(1) { animation-delay: .05s; }
.nav-overlay.open .nvo-link:nth-child(2) { animation-delay: .11s; }
.nav-overlay.open .nvo-link:nth-child(3) { animation-delay: .17s; }
.nav-overlay.open .nvo-link:nth-child(4) { animation-delay: .23s; }

.nvo-num {
  font-size: 11px; letter-spacing: .1em; color: var(--muted);
  text-transform: uppercase; min-width: 28px; flex-shrink: 0;
}
.nvo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 9vw, 52px);
  font-weight: 300; line-height: 1;
  transition: color .2s;
}
.nvo-link:hover .nvo-title { color: var(--gold); }
.nvo-link.active .nvo-title { color: var(--gold); }
.nvo-wa .nvo-title { color: #22C55E; }

/* Footer inside overlay */
.nvo-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 8px;
  font-size: 11px; color: var(--muted); letter-spacing: .06em;
  opacity: 0;
}
.nav-overlay.open .nvo-footer {
  animation: up .5s .3s cubic-bezier(.22,1,.36,1) forwards;
}


/* ══════════════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r);
  font-size: 12px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
  border: 1px solid var(--line2);
  background: var(--card);
  transition: transform .18s, box-shadow .18s, background .18s, opacity .18s, color .18s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(24,22,15,.1); }
.btn:active { transform: translateY(0); box-shadow: none; opacity: .8; }
.btn-dark   { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: var(--ink2); }
.btn-wa  { background: #22C55E; color: #fff; border-color: #22C55E; }
.btn-wa:hover { background: #16a34a; }
.btn-sm  { padding: 10px 18px; font-size: 11px; }
.btn-full { width: 100%; }


/* ══════════════════════════════════════════════════════════════════════
   WA FAB
══════════════════════════════════════════════════════════════════════ */
.wa-fab {
  position: fixed; right: 18px; bottom: 24px; z-index: 600;
  display: inline-flex; align-items: center; gap: 9px;
  background: #22C55E; color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: var(--pill);
  font-size: 13px; font-weight: 500;
  box-shadow: 0 8px 32px rgba(34,197,94,.38);
  transition: transform .2s, box-shadow .2s;
}
.wa-fab:hover  { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(34,197,94,.48); }
.wa-fab:active { transform: scale(.97); }


/* ══════════════════════════════════════════════════════════════════════
   HERO — mobile first, full-portrait image
══════════════════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 0;
  border-bottom: 1px solid var(--line);
}
/* Mobile: taller portrait-style image */
.hero-img-wrap {
  position: relative;
  aspect-ratio: 3/4;          /* portrait — looks expensive on mobile */
  overflow: hidden;
  background: var(--bg2);
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.hero-img-wrap:hover img { transform: scale(1.03); }

.hero-stamp {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(250,247,242,.85); backdrop-filter: blur(10px);
  border: 1px solid var(--line2);
  padding: 8px 14px; border-radius: var(--r);
  font-size: 11px; color: var(--muted); letter-spacing: .06em;
}

.hero-body {
  padding: 40px var(--pad) 52px;
  background: var(--card);
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(44px, 12vw, 72px);
  line-height: .94; letter-spacing: -.01em; margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  max-width: 44ch; margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }


/* ══════════════════════════════════════════════════════════════════════
   SECTION HEAD
══════════════════════════════════════════════════════════════════════ */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; padding: 52px 0 24px;
  border-bottom: 1px solid var(--line); margin-bottom: 2px;
}
.sh-left { display: flex; flex-direction: column; gap: 4px; }
.section-label {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(30px, 7vw, 44px); line-height: 1;
}
.section-head h2 em { font-style: italic; color: var(--gold); }


/* ══════════════════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════════════════ */
.gallery {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--line);
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
.g-item { aspect-ratio: 1/1; position: relative; background: var(--bg2); overflow: hidden; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-cap {
  position: absolute; left: 10px; bottom: 10px;
  background: rgba(250,247,242,.85); backdrop-filter: blur(10px);
  border: 1px solid var(--line2);
  padding: 6px 12px; border-radius: var(--r);
  font-size: 11px; color: var(--muted); letter-spacing: .05em;
}


/* ══════════════════════════════════════════════════════════════════════
   INFO GRID
══════════════════════════════════════════════════════════════════════ */
.info-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2px; background: var(--line);
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  margin-top: 2px;
}
.info-card { background: var(--card); padding: 30px 24px 36px; }
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 24px; margin-bottom: 12px;
}
.info-card p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.info-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 2px; }
.info-list li {
  font-size: 13px; padding: 12px 14px; border-radius: 4px;
  background: var(--bg); color: var(--ink2);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.info-list li::before { content: '—'; color: var(--gold); font-size: 11px; flex-shrink: 0; padding-top: 2px; }


/* ══════════════════════════════════════════════════════════════════════
   PIECES GRID + CARD
══════════════════════════════════════════════════════════════════════ */
.pieces-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--line);
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  margin-top: 2px;
}
.p-card {
  background: var(--card);
  display: flex; flex-direction: column;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s;
}
.p-card:hover { background: var(--bg); }
.p-card:hover .p-img img { transform: scale(1.05); }

.p-img { aspect-ratio: 3/4; overflow: hidden; background: var(--bg2); }
.p-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }

.p-body { padding: 14px 14px 18px; flex: 1; display: flex; flex-direction: column; }
.p-row  { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.p-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 400; line-height: 1.2; }
.p-price { font-size: 11px; color: var(--muted); white-space: nowrap; }
.p-meta  { font-size: 11px; color: var(--muted); letter-spacing: .04em; margin: 5px 0 0; }
.p-tap-hint {
  font-size: 10px; color: var(--gold); letter-spacing: .08em;
  text-transform: uppercase; margin-top: 10px;
  display: flex; align-items: center; gap: 5px;
}
.p-tap-hint::after { content: '→'; }


/* ══════════════════════════════════════════════════════════════════════
   PRODUCT DETAIL MODAL
══════════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(24,22,15,.5);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  display: flex; align-items: flex-end;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-sheet {
  width: 100%;
  background: var(--card);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(100%);
  transition: transform .42s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column;
  position: relative;
}
.modal-overlay.open .modal-sheet { transform: translateY(0); }

.modal-drag {
  width: 36px; height: 4px;
  background: var(--line2); border-radius: 2px;
  margin: 14px auto 0; flex-shrink: 0;
}
.modal-body { padding: 20px 20px 44px; display: flex; flex-direction: column; }

.modal-img {
  aspect-ratio: 4/5; border-radius: 10px; overflow: hidden;
  background: var(--bg2); margin-bottom: 24px;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; }

.modal-tag { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 400; line-height: 1;
  margin-bottom: 6px;
}
.modal-price { font-size: 16px; color: var(--muted); font-weight: 400; margin-bottom: 18px; }
.modal-desc  { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }

.modal-features { list-style: none; display: flex; flex-direction: column; gap: 2px; margin-bottom: 28px; }
.modal-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; padding: 12px 14px;
  background: var(--bg); border-radius: 4px; line-height: 1.5;
}
.modal-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: 11px; padding-top: 2px; }

.modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px;
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--muted);
  cursor: pointer; transition: background .2s;
  z-index: 2;
}
.modal-close:hover { background: var(--bg3); }


/* ══════════════════════════════════════════════════════════════════════
   PAGE HERO (collection / care pages)
══════════════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2px;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(40px, 10vw, 68px); line-height: .95;
  margin-top: 8px;
}
.page-title em { font-style: italic; color: var(--gold); }
.page-sub {
  font-size: 14px; color: var(--muted); max-width: 44ch;
  line-height: 1.75; margin-top: 14px;
}


/* ══════════════════════════════════════════════════════════════════════
   CARE PAGE
══════════════════════════════════════════════════════════════════════ */
.care-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2px; background: var(--line);
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
.care-card { background: var(--card); padding: 30px 24px 36px; }
.care-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 24px; margin-bottom: 12px; }
.care-card p  { font-size: 14px; color: var(--muted); line-height: 1.8; }
.care-steps { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 2px; }
.care-steps li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; background: var(--bg); border-radius: 4px;
}
.care-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 20px;
}
.care-step-body strong { display: block; font-size: 13px; font-weight: 500; margin-bottom: 3px; }
.care-step-body span  { font-size: 12px; color: var(--muted); line-height: 1.6; }

.care-banner {
  background: var(--ink); color: #fff;
  padding: 36px 24px;
  border-radius: 10px; margin-top: 2px;
}
.care-banner h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: #fff; margin-bottom: 10px; }
.care-banner p  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 22px; }


/* ══════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════ */
footer {
  margin-top: 60px; border-top: 1px solid var(--line); padding: 24px 0 0;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 8px; font-size: 11px; color: var(--muted); letter-spacing: .06em;
}


/* ══════════════════════════════════════════════════════════════════════
   TABLET  ≥ 640px
══════════════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  :root { --pad: 28px; }

  /* Hero: taller image on tablet but still portrait feel */
  .hero-img-wrap { aspect-ratio: 4/3; }

  .gallery        { grid-template-columns: repeat(3, 1fr); }
  .info-grid      { grid-template-columns: repeat(2, 1fr); }
  .care-grid      { grid-template-columns: repeat(2, 1fr); }
  .pieces-grid    { grid-template-columns: repeat(3, 1fr); }

  /* Modal: centered card on tablet+ */
  .modal-overlay { align-items: center; justify-content: center; padding: 20px; }
  .modal-sheet {
    max-width: 540px; border-radius: 16px;
    max-height: 88vh;
    transform: scale(.94) translateY(10px);
  }
  .modal-overlay.open .modal-sheet { transform: scale(1) translateY(0); }
  .modal-drag { display: none; }

  /* Hero: side by side */
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-img-wrap { aspect-ratio: unset; min-height: 520px; order: 2; }
  .hero-body {
    order: 1; justify-content: flex-end;
    border-top: none; border-right: 1px solid var(--line);
    padding: 52px 44px;
  }
}


/* ══════════════════════════════════════════════════════════════════════
   DESKTOP  ≥ 1024px
══════════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  :root { --pad: 36px; }

  /* Show desktop inline nav, hide mobile hamburger */
  .nav-desktop { display: flex; }
  .nav-trigger { display: none; }

  /* Hide overlay entirely on desktop */
  .nav-overlay { display: none; }

  .hero-img-wrap { min-height: 580px; }
  .hero-body { padding: 64px 52px; }
}
