/* ============================================================
   Gouds Glas | website
   Archetype: Editorial Luxury. Glas-in-lood wijnrood, warm creme, goud.
   Fraunces (serif koppen) + Plus Jakarta Sans (body).
   ============================================================ */

:root {
  --cream: #F3EBDA;
  --cream-2: #E7DBC4;
  --paper: #FBF6EC;
  --paper-2: #FFFDF8;
  --ink: #2A2019;
  --ink-soft: #6E6154;
  --wine: #4A2231;
  --wine-deep: #351720;
  --wine-soft: #5E3141;
  --brass: #A9822F;
  --brass-soft: #DBB765;
  --line: rgba(42, 32, 25, 0.10);
  --line-strong: rgba(42, 32, 25, 0.16);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow-soft: 0 30px 60px -32px rgba(42, 32, 25, 0.28);
  --shadow-lift: 0 46px 90px -40px rgba(42, 32, 25, 0.42);
  --radius: 2rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
  -webkit-text-size-adjust: 100%;
}
html, body { overflow-x: clip; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

/* Film-grain overlay (fixed, non-interactive) */
.grain {
  position: fixed; inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.wrap { width: min(1200px, 92vw); margin-inline: auto; }
.section { padding: clamp(5rem, 12vw, 10rem) 0; position: relative; }
.eyebrow {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--brass);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(168, 137, 78, 0.34);
  border-radius: 999px;
  background: rgba(168, 137, 78, 0.06);
}
.eyebrow-light {
  color: var(--brass-soft);
  border-color: rgba(219, 183, 101, 0.32);
  background: rgba(219, 183, 101, 0.1);
}
.sec-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head h2 {
  font-size: clamp(2.2rem, 5.2vw, 3.9rem);
  margin: 1.1rem 0 1rem;
}
.sec-head h2 em { font-style: italic; color: var(--wine); }
.sec-head p { color: var(--ink-soft); font-size: 1.05rem; max-width: 34rem; }
.center { text-align: center; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.72rem 0.72rem 0.72rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem; font-weight: 600;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease), color 0.5s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.975); }
.btn-orb {
  width: 2rem; height: 2rem; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease);
}
.btn-orb svg { width: 15px; height: 15px; }
.btn:hover .btn-orb { transform: translate(2px, -1px) scale(1.06); }

.btn-primary {
  background: var(--wine);
  color: var(--cream);
  box-shadow: 0 20px 40px -20px rgba(74, 34, 49, 0.65);
}
.btn-primary .btn-orb { background: rgba(255, 255, 255, 0.14); color: var(--brass-soft); }
.btn-primary:hover { background: var(--wine-deep); box-shadow: 0 26px 50px -20px rgba(74, 34, 49, 0.7); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost .btn-orb { background: rgba(42, 32, 25, 0.06); color: var(--wine); }
.btn-ghost:hover { background: var(--paper); border-color: var(--brass); }

.btn-brass { background: var(--brass); color: #2b1f10; }
.btn-brass .btn-orb { background: rgba(0,0,0,0.12); color: #2b1f10; }
.btn-brass:hover { background: var(--brass-soft); }

/* ---------- Nav (floating pill) ---------- */
.nav {
  position: fixed; z-index: 40;
  top: 1.1rem; left: 0; right: 0;
  display: flex; justify-content: center;
  padding-inline: 1rem;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: min(1120px, 100%);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.6rem 0.5rem 1.15rem;
  border-radius: 999px;
  background: rgba(251, 246, 236, 0.72);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 40px -26px rgba(42, 32, 25, 0.5), inset 0 1px 1px rgba(255,255,255,0.7);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav.is-scrolled .nav-inner { box-shadow: 0 24px 48px -24px rgba(42, 32, 25, 0.6), inset 0 1px 1px rgba(255,255,255,0.7); }
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand svg { width: 30px; height: 38px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.02rem; }
.brand-txt span { font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--brass); margin-top: 0.18rem; }

.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a {
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem; font-weight: 500;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color 0.4s var(--ease), background 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(42, 32, 25, 0.05); }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.nav .btn { padding: 0.6rem 0.65rem 0.6rem 1.2rem; font-size: 0.88rem; }

/* Hamburger */
.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  position: relative;
  background: rgba(42, 32, 25, 0.05);
}
.burger span {
  position: absolute; left: 12px; right: 12px; height: 1.6px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.5s var(--ease), opacity 0.3s var(--ease);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile fullscreen menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 39;
  display: flex; flex-direction: column; justify-content: center;
  gap: 0.5rem;
  padding: 2rem clamp(1.5rem, 8vw, 5rem);
  background: rgba(53, 23, 32, 0.94);
  -webkit-backdrop-filter: blur(26px); backdrop-filter: blur(26px);
  color: var(--cream);
  opacity: 0; visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 9vw, 3rem);
  padding: 0.35rem 0;
  color: var(--cream);
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
body.menu-open .mobile-menu a { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 0.14s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 0.20s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 0.26s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu .mm-foot {
  margin-top: 2.5rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem; color: rgba(243, 235, 218, 0.66); line-height: 1.9;
}
.mobile-menu .mm-foot a { font-family: inherit; font-size: inherit; display: inline; color: var(--brass-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(219,183,101,0.18), transparent 55%),
    radial-gradient(90% 80% at 10% 100%, rgba(94,49,65,0.12), transparent 60%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero-copy { max-width: 34rem; }
.hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  margin: 1.4rem 0 1.3rem;
}
.hero h1 em { font-style: italic; color: var(--wine); }
.hero-lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 30rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-meta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.4rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem; color: var(--ink-soft);
}
.status-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  padding: 0.45rem 0.85rem; border-radius: 999px;
  background: var(--paper-2); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.status-chip i { width: 7px; height: 7px; border-radius: 999px; background: #4C8A5F; box-shadow: 0 0 0 3px rgba(76,138,95,0.18); animation: pulse 2.4s var(--ease) infinite; }
.status-chip.is-closed i { background: #B0654A; box-shadow: 0 0 0 3px rgba(176,101,74,0.16); animation: none; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.4); } }

/* Hero stained-glass panel */
.hero-visual { position: relative; display: flex; justify-content: center; }
.glass-panel {
  position: relative;
  width: min(400px, 86%);
  padding: 0.6rem;
  border-radius: 2.6rem;
  background: rgba(39, 34, 26, 0.05);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
.glass-panel-core {
  border-radius: 2.1rem;
  overflow: hidden;
  background: linear-gradient(165deg, var(--wine-deep), var(--wine) 55%, #612F40);
  aspect-ratio: 5 / 6;
  display: flex; align-items: center; justify-content: center;
  padding: 2.4rem;
  color: var(--cream);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.12);
}
.glass-panel-core .arched { width: 66%; color: var(--brass-soft); }
.panel-float {
  position: absolute; z-index: 2;
  background: var(--paper-2);
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 0.85rem 1.05rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.panel-float .pf-ico { width: 38px; height: 38px; border-radius: 999px; background: var(--cream); display: inline-flex; align-items: center; justify-content: center; color: var(--wine); }
.panel-float .pf-ico svg { width: 19px; height: 19px; }
.panel-float b { display: block; font-size: 0.82rem; line-height: 1.2; }
.panel-float span { display: block; font-size: 0.7rem; color: var(--ink-soft); line-height: 1.3; }
.pf-1 { top: 8%; left: -6%; }
.pf-2 { bottom: 9%; right: -4%; }

/* ---------- Double-bezel card ---------- */
.card-shell {
  padding: 0.5rem;
  border-radius: var(--radius);
  background: rgba(39, 34, 26, 0.05);
  border: 1px solid var(--line);
}
.card-core {
  border-radius: calc(var(--radius) - 0.5rem);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.6), var(--shadow-soft);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  height: 100%;
}

/* ---------- Over ons ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-copy p { color: var(--ink-soft); margin-top: 1.15rem; font-size: 1.02rem; }
.about-copy p strong { color: var(--ink); font-weight: 600; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-fact .card-core { padding: 1.3rem 1.35rem; }
.about-fact .eyebrow { font-size: 0.56rem; padding: 0.3rem 0.7rem; }
.about-fact h4 { font-size: 1.15rem; margin-top: 0.65rem; }
.about-fact p { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.3rem; }

.about-visual { position: relative; display: flex; justify-content: center; }
.about-window {
  width: min(380px, 100%);
  padding: 0.55rem;
  border-radius: 2.4rem;
  background: rgba(39,34,26,0.05);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
.about-window-core {
  border-radius: 1.95rem;
  overflow: hidden;
  background: linear-gradient(160deg, #2c4a68, var(--wine) 70%);
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
}
.about-window-core .arched { width: 62%; color: var(--brass-soft); }

/* ---------- Menu ---------- */
.menu { background: linear-gradient(180deg, var(--cream), var(--cream-2) 140%); }
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 2.4rem; }
.chip {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.86rem; font-weight: 600;
  color: var(--ink-soft);
  background: var(--paper-2);
  border: 1px solid var(--line);
  transition: color 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.chip:hover { transform: translateY(-1px); }
.chip.is-on { color: var(--cream); background: var(--wine); border-color: var(--wine); }

.menu-cats { display: grid; gap: 1rem; }
.menu-cat { display: none; }
.menu-cat.is-shown { display: block; }
.menu-cat-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.menu-card .card-core { display: flex; flex-direction: column; }
.menu-cat-head { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.4rem; }
.menu-cat-head .mc-ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 999px; background: var(--cream); display: inline-flex; align-items: center; justify-content: center; color: var(--wine); }
.menu-cat-head .mc-ico svg { width: 22px; height: 22px; }
.menu-cat-head h3 { font-size: 1.5rem; }
.menu-cat-head span { font-size: 0.8rem; color: var(--brass); font-weight: 600; }

.dish { display: flex; align-items: baseline; gap: 0.85rem; padding: 0.85rem 0; border-top: 1px dashed var(--line); }
.dish:first-of-type { border-top: 0; }
.dish-main { flex: 1 1 auto; min-width: 0; }
.dish-name { font-weight: 600; font-size: 0.98rem; display: flex; align-items: center; gap: 0.5rem; }
.dish-tip { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brass); border: 1px solid rgba(168,137,78,0.4); border-radius: 999px; padding: 0.12rem 0.5rem; font-weight: 700; }
.dish-info { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.2rem; }
.dish-dots { flex: 1 1 auto; border-bottom: 1px dotted var(--line-strong); transform: translateY(-3px); min-width: 1rem; }
.dish-price { flex: 0 0 auto; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.dish-price small { font-weight: 500; color: var(--ink-soft); font-size: 0.7rem; }
.menu-note { margin-top: 2rem; font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Arrangementen (bento) ---------- */
.moments { background: var(--wine-deep); color: var(--cream); }
.moments .sec-head h2 { color: var(--cream); }
.moments .sec-head h2 em { color: var(--brass-soft); }
.moments .sec-head p { color: rgba(243,235,218,0.72); }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }
.moment {
  padding: 0.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}
.moment-core {
  height: 100%;
  border-radius: calc(var(--radius) - 0.5rem);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: rgba(255,255,255,0.03);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
}
.moment:nth-child(1) { grid-column: span 4; }
.moment:nth-child(2) { grid-column: span 2; }
.moment:nth-child(3) { grid-column: span 2; }
.moment:nth-child(4) { grid-column: span 4; }
.moment .m-ico { width: 48px; height: 48px; border-radius: 999px; background: rgba(219,183,101,0.14); color: var(--brass-soft); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.moment .m-ico svg { width: 24px; height: 24px; }
.moment h3 { font-size: 1.5rem; }
.moment p { color: rgba(243,235,218,0.7); font-size: 0.94rem; margin-top: 0.7rem; }
.moment .link-more { margin-top: auto; padding-top: 1.2rem; font-size: 0.82rem; font-weight: 600; color: var(--brass-soft); }

/* ---------- Contact / hours ---------- */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.hours-list { margin-top: 0.4rem; }
.hours-row { display: flex; align-items: center; justify-content: space-between; padding: 0.62rem 0; border-top: 1px solid var(--line); font-size: 0.95rem; }
.hours-row:first-child { border-top: 0; }
.hours-row.is-today { font-weight: 700; }
.hours-row .h-day { color: var(--ink); }
.hours-row .h-time { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-row.is-today .h-time { color: var(--wine); }
.hours-row .h-time.closed { color: #B0654A; }
.kitchen-note { margin-top: 1.3rem; padding-top: 1.3rem; border-top: 1px solid var(--line); font-size: 0.86rem; color: var(--ink-soft); }

.contact-core h3 { font-size: 1.55rem; margin-bottom: 0.3rem; }
.contact-lines { margin: 1.2rem 0 1.6rem; display: grid; gap: 0.95rem; }
.contact-line { display: flex; align-items: flex-start; gap: 0.8rem; }
.contact-line .cl-ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 999px; background: var(--cream); display: inline-flex; align-items: center; justify-content: center; color: var(--wine); }
.contact-line .cl-ico svg { width: 19px; height: 19px; }
.contact-line b { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brass); }
.contact-line span { font-size: 0.98rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* ---------- CTA band ---------- */
.cta-band { padding: clamp(3rem, 7vw, 5rem) 0; }
.cta-core {
  position: relative; overflow: hidden;
  border-radius: calc(var(--radius) - 0.5rem);
  background: linear-gradient(150deg, var(--wine-deep), var(--wine) 60%, #612F40);
  color: var(--cream);
  padding: clamp(2.4rem, 6vw, 4rem);
  text-align: center;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
}
.cta-core .arched { position: absolute; right: -3%; top: -18%; width: 210px; color: var(--brass-soft); opacity: 0.22; }
.cta-core h2 { font-size: clamp(2rem, 5vw, 3.2rem); position: relative; }
.cta-core h2 em { font-style: italic; color: var(--brass-soft); }
.cta-core p { color: rgba(243,235,218,0.76); margin: 1rem auto 2rem; max-width: 32rem; position: relative; }
.cta-core .hero-actions { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--wine-deep); color: rgba(243,235,218,0.7); padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer .brand-txt b { color: var(--cream); }
.footer p { margin-top: 1rem; font-size: 0.92rem; max-width: 24rem; }
.footer h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--brass-soft); margin-bottom: 1rem; }
.footer-links { display: grid; gap: 0.6rem; }
.footer-links a, .footer-col a { font-size: 0.92rem; color: rgba(243,235,218,0.7); transition: color 0.3s var(--ease); }
.footer-links a:hover, .footer-col a:hover { color: var(--cream); }
.footer-bot { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; justify-content: space-between; font-size: 0.8rem; color: rgba(243,235,218,0.5); }
.footer-bot a { color: var(--brass-soft); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(2.4rem); filter: blur(6px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .glass-panel { width: min(340px, 78%); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .moment:nth-child(n) { grid-column: span 1; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn span:not(.btn-orb) { display: none; }
  .burger { display: block; }
  .nav .btn { padding: 0.6rem; }
  .menu-cat-inner { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pf-1 { left: -2%; }
  .pf-2 { right: -1%; }
}
@media (max-width: 400px) {
  .panel-float span { display: none; }
}
