@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;1,6..72,300;1,6..72,400&family=Spectral:ital,wght@0,300;0,400;1,300&family=Hanken+Grotesk:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DIASPORA — Design System
   Stories you can taste · Brazil → Denmark
   ============================================================ */

:root{
  /* Direction A — TERRENO (warm white, brand-aligned, default) */
  --bg:        #FAF8F3;
  --bg-2:      #EFE8DC;
  --paper:     #FFFFFF;
  --ink:       #1A1A1A;
  --ink-soft:  #515150;
  --muted:     #908778;
  --line:      rgba(26,26,26,.15);
  --line-soft: rgba(26,26,26,.08);
  --accent:    #F9C84B;   /* gold — unified brand accent */
  --gold:      #F9C84B;   /* bright gold — button fills & accents on dark */
  --bg-gray:   #E0DCD4;   /* neutral stone gray — transition band */
  --accent-2:  #8A7355;   /* taupe bronze */
  --on-accent: #1A1A1A;   /* dark text on gold */
  --topo:      rgba(26,26,26,.17);

  --serif: 'Cormorant', Georgia, serif;
  --sans:  'Hanken Grotesk', system-ui, sans-serif;

  --maxw: 1320px;
  --gut: clamp(20px, 5vw, 92px);
  --section: clamp(64px, 9vw, 124px);
  --nav-h: 76px;

  color-scheme: light;
}

/* Direction B — NOTURNO (espresso, dramatic) */
[data-theme="noturno"]{
  --bg:        #161311;
  --bg-2:      #1E1A16;
  --paper:     #221D18;
  --ink:       #ECE6DB;
  --ink-soft:  #C5BDB0;
  --muted:     #8E8576;
  --line:      rgba(236,230,219,.16);
  --line-soft: rgba(236,230,219,.08);
  --accent:    #F9C84B;
  --gold:      #F9C84B;
  --accent-2:  #B8A98A;
  --on-accent: #161311;
  --bg-gray:   #221C16;
  --topo:      rgba(236,230,219,.18);
  color-scheme: dark;
}

/* Display-font tweak */
[data-font="newsreader"]{ --serif:'Newsreader', Georgia, serif; }
[data-font="spectral"]{ --serif:'Spectral', Georgia, serif; }

*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:var(--sans); font-weight:400;
  font-size:17px; line-height:1.65;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  transition:background .5s ease, color .5s ease;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
::selection{ background:var(--accent); color:var(--on-accent); }

/* ---------- Layout ---------- */
.wrap{ max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gut); }
.wrap-wide{ max-width:1620px; margin-inline:auto; padding-inline:var(--gut); }
section{ position:relative; }
.pad{ padding-block:var(--section); }
.pad-sm{ padding-block:var(--section); }

/* Soft gradient blend between bg / bg-2 bands — edges fade into the neighbouring
   bone background so colour changes read gently instead of as a hard line.
   Targets the inline bg-2 sections; the section's own background does the blend
   (no overlay, so it never washes out text). */
section[style*="var(--bg-2)"]{
  background:linear-gradient(to bottom,
    var(--bg) 0%,
    var(--bg-2) 11%,
    var(--bg-2) 89%,
    var(--bg) 100%) !important;
}

/* ---------- Type ---------- */
.eyebrow{
  font-family:var(--sans); font-weight:600;
  font-size:.72rem; letter-spacing:.28em; text-transform:uppercase;
  color:var(--accent); margin:0;
}
.eyebrow--muted{ color:var(--muted); }
.display{
  font-family:var(--serif); font-weight:300;
  line-height:.98; letter-spacing:-.012em; margin:0;
  font-size:clamp(2.9rem, 8.2vw, 8.5rem);
}
.h1{ font-family:var(--serif); font-weight:300; line-height:1.02; letter-spacing:-.01em;
  font-size:clamp(2.4rem,5.4vw,4.6rem); margin:0; }
.h2{ font-family:var(--serif); font-weight:300; line-height:1.06; letter-spacing:-.005em;
  font-size:clamp(2rem,4vw,3.4rem); margin:0; }
.h3{ font-family:var(--serif); font-weight:400; line-height:1.15;
  font-size:clamp(1.4rem,2.2vw,2rem); margin:0; }
.serif-it{ font-style:italic; }
.lead{ font-size:clamp(1.12rem,1.6vw,1.4rem); line-height:1.6; color:var(--ink-soft);
  font-weight:300; max-width:34ch; }
.body{ color:var(--ink-soft); max-width:60ch; }
.body p{ margin:0 0 1.1em; }
.kicker-num{ font-family:var(--sans); font-size:.72rem; letter-spacing:.18em; color:var(--muted); font-weight:600; }
.measure{ max-width:62ch; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.7em;
  font-family:var(--sans); font-weight:600; font-size:.74rem;
  letter-spacing:.18em; text-transform:uppercase;
  padding:1.05em 1.8em; border-radius:0; white-space:nowrap;
  background:var(--gold); color:#1A1A1A;
  border:1px solid var(--gold); cursor:pointer;
  transition:filter .3s, background .35s,color .35s,border-color .35s, transform .2s;
}
.btn:hover{ filter:brightness(.93); }
.btn--ink{ background:var(--ink); border-color:var(--ink); color:var(--bg); }
.btn--ink:hover, .btn--ink:focus-visible, .btn--ink:active{ background:var(--gold); border-color:var(--gold); color:#1A1A1A; filter:none; }
.btn-line{
  display:inline-flex; align-items:center; gap:.7em;
  font-family:var(--sans); font-weight:600; font-size:.74rem;
  letter-spacing:.18em; text-transform:uppercase; color:var(--ink);
  padding:1.05em 0; border:0; background:none; cursor:pointer;
  border-bottom:1px solid var(--ink); transition:gap .3s, color .3s, border-color .3s;
}
.btn-line:hover{ gap:1.1em; color:var(--accent); border-color:var(--accent); }
.btn-line .arr{ transition:transform .3s; }
.btn-line:hover .arr{ transform:translateX(4px); }

/* ---------- Rules / dividers ---------- */
.rule{ height:1px; background:var(--line); border:0; margin:0; }
.overline{ border-top:1px solid var(--line); padding-top:1.4rem; }

/* ---------- Brand maps as topographic motif ---------- */
/* Country outlines (Brazil, Denmark…) are black-on-transparent PNGs drawn as
   topographic contour lines. Rendered as faint background images; inverted on
   the dark theme so the lines read light. url() resolves against this stylesheet. */
.topo{ position:absolute; inset:0; z-index:0; pointer-events:none;
  background-repeat:no-repeat; background-size:contain; background-position:center;
  background-image:url('brand/maps/brasil.png'); opacity:.13; }
[data-theme="noturno"] .topo{ filter:invert(1) brightness(1.6); opacity:.16; }
.topo--brasil{   background-image:url('brand/maps/brasil.png'); }
.topo--denmark{  background-image:url('brand/maps/denmark.png'); }
.topo--portugal{ background-image:url('brand/maps/portugal.png'); }
.topo--right{ left:auto; right:-12%; width:58%; background-position:right center; }
.topo--left{ right:auto; left:-14%; width:56%;
  background-image:url('brand/maps/denmark.png'); background-position:left center; }
.topo--cover{ inset:-4%; }
.above{ position:relative; z-index:1; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100; height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between;
  padding-inline:var(--gut);
  transition:background .4s, border-color .4s, box-shadow .4s;
  border-bottom:1px solid transparent;
}
.nav.scrolled{
  background:color-mix(in srgb, var(--bg) 86%, transparent);
  -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line-soft);
}
.nav__logo{ display:flex; align-items:center; gap:.6rem; height:38px; }
.nav__left{ display:flex; align-items:center; gap:clamp(.85rem,2vw,1.5rem); }
.nav__logo img{ height:30px; width:auto; }
[data-theme="noturno"] .nav__logo img{ filter:invert(1) brightness(1.6); }
.nav__links{ display:none; align-items:center; gap:clamp(1.1rem,2.4vw,2.4rem); }
.nav__link{
  font-family:var(--sans); font-weight:500; font-size:.74rem;
  letter-spacing:.16em; text-transform:uppercase; color:var(--ink);
  position:relative; padding-block:.3em; opacity:.85; transition:opacity .3s;
}
.nav__link::after{ content:''; position:absolute; left:0; bottom:0; height:1px; width:0;
  background:var(--accent); transition:width .3s; }
.nav__link:hover{ opacity:1; }
.nav__link:hover::after,.nav__link.active::after{ width:100%; }
.nav__link.active{ color:var(--accent); opacity:1; }
.nav__right{ display:flex; align-items:center; gap:clamp(1rem,2vw,1.8rem); }
.lang{
  display:inline-flex; align-items:center; font-family:var(--sans);
  font-size:.72rem; letter-spacing:.1em; font-weight:600; text-transform:uppercase;
  border:1px solid var(--line); border-radius:100px; overflow:hidden;
}
.lang button{ appearance:none; background:none; border:0; cursor:pointer; color:var(--muted);
  padding:.4em .8em; font:inherit; letter-spacing:inherit; transition:background .3s,color .3s; }
.lang button.on{ background:var(--ink); color:var(--bg); }
.nav__cta{ display:inline-flex; }
.nav__burger{ display:flex; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:8px; }
.nav__burger span{ width:24px; height:1.5px; background:var(--ink); transition:.3s; transform-origin:center; }
.nav__burger.is-open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2){ opacity:0; }
.nav__burger.is-open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

/* mobile menu — slides in from the left, light frosted glass + map line-art */
.mobile-menu{ position:fixed; inset:0; z-index:99; overflow:hidden;
  background:color-mix(in srgb, var(--bg) 64%, transparent);
  -webkit-backdrop-filter:blur(13px) saturate(1.15); backdrop-filter:blur(13px) saturate(1.15);
  transform:translateX(-100%); transition:transform .55s cubic-bezier(.7,0,.2,1);
  display:flex; flex-direction:column; justify-content:center; align-items:flex-start;
  padding:var(--gut); gap:1.1rem; }
.mobile-menu.open{ transform:translateX(0); }
/* map contour lines sit ON TOP of the glass (a child, so the blur never touches them) */
.mobile-menu .topo{ z-index:0; opacity:.28; }
.mobile-menu a{ position:relative; z-index:1; }
/* a scattered constellation of country maps — Brazil, Denmark, Portugal, UK, Italy —
   line-art behind the links for an organic "many homes" feel */
.menu-maps{ position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
[data-theme="noturno"] .menu-maps{ filter:invert(1) brightness(1.6); }
.mmap{ position:absolute; background-repeat:no-repeat; background-size:contain; background-position:center; }
.mmap--brasil{   background-image:url('brand/maps/brasil.png');   width:54%; height:72%; right:-9%;  top:3%;    opacity:.30; }
.mmap--denmark{  background-image:url('brand/maps/denmark.png');  width:40%; height:52%; right:7%;   bottom:-4%; opacity:.28; }
.mmap--uk{       background-image:url('brand/maps/uk.png');       width:27%; height:38%; left:31%;   top:5%;    opacity:.22; }
.mmap--portugal{ background-image:url('brand/maps/portugal.png'); width:21%; height:31%; left:34%;   bottom:5%; opacity:.20; }
.mmap--italy{    background-image:url('brand/maps/italy.png');    width:21%; height:33%; right:33%;  top:33%;   opacity:.20; }
@media (max-width:620px){
  .mmap--uk,.mmap--portugal,.mmap--italy{ display:none; }
  .mmap--brasil{ width:70%; height:60%; right:-12%; top:6%; opacity:.24; }
  .mmap--denmark{ width:54%; height:44%; right:-8%; bottom:2%; opacity:.22; }
}
.mobile-menu a{ font-family:var(--serif); font-weight:300; font-size:clamp(2rem,9vw,3.4rem);
  color:var(--ink); display:grid; }
.mobile-menu a > .mm-text, .mobile-menu a > .mm-glyphs{ grid-area:1 / 1; align-self:center; }
.mobile-menu a:hover, .mobile-menu a:focus, .mobile-menu a:active, .mobile-menu a.active{ color:var(--accent); font-style:italic; }
/* hover/active → crossfade the word into the hand-drawn Diaspora alphabet, in gold */
.mm-text{ transition:opacity .35s ease; }
.mm-glyphs{ display:inline-flex; align-items:flex-end; gap:.04em; --cap:.74em;
  opacity:0; pointer-events:none; transition:opacity .35s ease; }
.mm-glyphs .mm-gl{ display:inline-block; background-color:var(--accent);
  -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat;
  -webkit-mask-size:contain; mask-size:contain;
  -webkit-mask-position:center bottom; mask-position:center bottom; }
.mm-glyphs .mm-sp{ display:inline-block; width:.42em; }
.mobile-menu a:hover .mm-text, .mobile-menu a:focus-visible .mm-text, .mobile-menu a.active .mm-text{ opacity:0; }
.mobile-menu a:hover .mm-glyphs, .mobile-menu a:focus-visible .mm-glyphs, .mobile-menu a.active .mm-glyphs{ opacity:1; }

/* ============================================================
   HERO — animated maps signature (home)
   ============================================================ */
.herogif{ position:relative; }
.hero-lines{ position:absolute; inset:0; z-index:0; pointer-events:none;
  background:url('brand/hero-lines.svg') center/cover no-repeat; opacity:.15; }
[data-theme="noturno"] .hero-lines{ filter:invert(1) brightness(1.7); opacity:.17; }
.mobile-menu .hero-lines{ z-index:0; opacity:.24; }
.herogif__stick{ position:relative; z-index:1; height:100svh; min-height:560px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:clamp(1.4rem,3vw,2.4rem); padding:var(--nav-h) var(--gut) 0; text-align:center; }
.herogif__gif{ width:min(76vw,540px); height:auto; will-change:opacity, filter, transform; }
[data-theme="noturno"] .herogif__gif{ filter:invert(1) brightness(1.6); }
.herogif__tag{ font-family:var(--sans); font-weight:600; font-size:.74rem;
  letter-spacing:.28em; text-transform:uppercase; color:var(--muted); }
.herogif__cue{ position:absolute; left:50%; bottom:5vh; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:.5rem;
  font-family:var(--sans); font-size:.64rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--muted); animation:cueFloat 2.2s ease-in-out infinite; }
.herogif__cue .ln{ width:1px; height:38px; background:var(--line); }
@keyframes cueFloat{ 0%,100%{ transform:translate(-50%,0); opacity:.7; } 50%{ transform:translate(-50%,6px); opacity:1; } }

/* ============================================================
   HERO
   ============================================================ */
.hero--short{ min-height:62svh; }
.hero{ min-height:100svh; display:flex; align-items:flex-end; position:relative; overflow:hidden;
  padding-bottom:clamp(40px,6vw,80px); padding-top:calc(var(--nav-h) + 40px); }
.hero__media{ position:absolute; inset:0; z-index:0; }
.hero__media img{ width:100%; height:100%; object-fit:cover; }
.hero__scrim{ position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(20,17,12,.18) 0%, rgba(20,17,12,.02) 30%, rgba(20,17,12,.10) 60%, rgba(20,17,12,.66) 100%); }
.hero__inner{ position:relative; z-index:2; width:100%; }
.hero--light .hero__inner{ color:#F8F3E9; }
.hero__tag{ display:flex; align-items:center; gap:1rem; color:#F8F3E9; margin-bottom:1.4rem; }
.hero__tag .eyebrow{ color:#F8F3E9; opacity:.85; }
.hero__line{ width:clamp(40px,8vw,120px); height:1px; background:rgba(248,243,233,.6); }

/* ============================================================
   COMPONENTS — dish grid, story, menu list, quote, events
   ============================================================ */
.grid{ display:grid; gap:clamp(1.4rem,3vw,2.6rem); }
.cols-2{ grid-template-columns:repeat(2,1fr); }
.cols-3{ grid-template-columns:repeat(3,1fr); }
.cols-12{ grid-template-columns:repeat(12,1fr); }
.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,6vw,7rem); align-items:center; }
.split--story{ grid-template-columns:1.05fr .95fr; }

.figure{ position:relative; overflow:hidden; background:var(--bg-2); }
.figure img, .figure video{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s cubic-bezier(.2,.8,.2,1); }
.figure:hover img, .figure:hover video{ transform:scale(1.045); }
.figure--tall{ aspect-ratio:3/4; }
.figure--port{ aspect-ratio:4/5; }
.figure--land{ aspect-ratio:4/3; }
.figure--sq{ aspect-ratio:1/1; }
.figcap{ display:flex; justify-content:space-between; align-items:baseline; gap:1rem;
  margin-top:.9rem; padding-bottom:.2rem; }
.figcap .name{ font-family:var(--serif); font-style:italic; font-size:1.18rem; font-weight:400; }
.figcap .meta{ font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }

/* ---------- Flip cards (click a dish image → it rotates to reveal the description) ---------- */
.figure--flip{ cursor:pointer; overflow:visible; background:transparent; perspective:1500px; -webkit-tap-highlight-color:transparent; }
.figure--flip:focus-visible{ outline:2px solid var(--accent); outline-offset:4px; }
.figure--flip .flip-inner{ position:absolute; inset:0; transition:transform .9s cubic-bezier(.2,.8,.2,1); transform-style:preserve-3d; }
.figure--flip.is-flipped .flip-inner{ transform:rotateY(180deg); }
.flip-face{ position:absolute; inset:0; overflow:hidden; background:var(--bg-2);
  backface-visibility:hidden; -webkit-backface-visibility:hidden; }
.flip-front img{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s cubic-bezier(.2,.8,.2,1); }
.figure--flip:hover .flip-front img{ transform:scale(1.045); }
/* clickable cue on the front — minimal arrow, gold on hover */
.flip-cue{ position:absolute; right:1rem; bottom:1rem; z-index:2;
  display:flex; align-items:center; justify-content:center; color:#16110E;
  filter:drop-shadow(0 1px 2px rgba(255,255,255,.45));
  transition:color .35s ease, transform .55s cubic-bezier(.2,.8,.2,1); }
.flip-cue svg{ width:1.5rem; height:1.5rem; }
.figure--flip:hover .flip-cue{ color:var(--accent); transform:rotate(-150deg); }
.figure--flip.is-flipped .flip-cue{ color:var(--accent); transform:rotate(-360deg); }
/* back face */
.flip-back{ transform:rotateY(180deg); background:#1c1916; color:#F2EDE4;
  display:flex; align-items:center; }
.flip-back__inner{ padding:clamp(1.4rem,3vw,2.2rem); width:100%; }
.flip-back__name{ display:block; font-family:var(--serif); font-style:italic; font-weight:400;
  font-size:clamp(1.5rem,2.6vw,2rem); line-height:1.05; }
.flip-back__rule{ width:34px; height:1px; background:var(--accent); margin:1rem 0 1.1rem; }
.flip-back__desc{ font-size:clamp(.92rem,1.4vw,1.02rem); line-height:1.6; color:#C9C1B4; }
.flip-back__meta{ display:block; margin-top:1.3rem; font-size:.7rem; letter-spacing:.14em;
  text-transform:uppercase; color:#8E8576; }

/* menu list */
.menu-course{ border-top:1px solid var(--line); padding:1.6rem 0; display:grid;
  grid-template-columns:auto 1fr auto; gap:1.4rem; align-items:baseline; }
.menu-course:last-child{ border-bottom:1px solid var(--line); }
.menu-course .no{ font-size:.72rem; letter-spacing:.16em; color:var(--muted); font-weight:600;
  font-variant-numeric:tabular-nums; padding-top:.4em; }
.menu-course .title{ font-family:var(--serif); font-size:clamp(1.4rem,2.4vw,2rem); font-weight:400; line-height:1.1; }
.menu-course .desc{ color:var(--muted); font-size:.96rem; margin-top:.35rem; max-width:52ch; }
.menu-course .origin{ font-family:var(--serif); font-style:italic; color:var(--ink-soft);
  font-size:1rem; white-space:nowrap; padding-top:.3em; }

/* big pull quote */
.pull{ font-family:var(--serif); font-weight:300; font-style:italic;
  font-size:clamp(1.8rem,4.4vw,3.6rem); line-height:1.18; letter-spacing:-.01em;
  max-width:20ch; }
.pull--single{ white-space:nowrap; }
@media (max-width:560px){ .pull--single{ white-space:normal; } }

/* stat / fact row */
.facts{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line);
  border-block:1px solid var(--line); }
.fact{ background:var(--bg); padding:2rem 1.4rem; }
.fact .n{ font-family:var(--serif); font-size:clamp(2.2rem,4vw,3.2rem); font-weight:300; line-height:1; }
.fact .l{ font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-top:.7rem; }
/* bare facts — smaller, no boxes */
.facts--bare{ background:none; border:0; gap:clamp(1.4rem,4vw,3rem);
  padding-top:0; }
.facts--bare .fact{ background:none; padding:0; }
.facts--bare .fact .n{ font-size:clamp(1.35rem,2.2vw,1.8rem); }
.facts--bare .fact .l{ margin-top:.35rem; font-size:.66rem; }

/* event card */
.event{ display:grid; grid-template-columns:auto 1fr auto; gap:1.6rem; align-items:center;
  border-top:1px solid var(--line); padding:1.8rem 0; transition:padding-left .4s; }
.event:last-child{ border-bottom:1px solid var(--line); }
.event:hover{ padding-left:.8rem; }
.event .date{ font-family:var(--serif); font-size:1.5rem; font-weight:300; min-width:120px; }
.event .date small{ display:block; font-family:var(--sans); font-size:.68rem; letter-spacing:.14em;
  text-transform:uppercase; color:var(--muted); margin-top:.3rem; }
.event .ev-title{ font-family:var(--serif); font-size:clamp(1.3rem,2vw,1.7rem); font-weight:400; }
.event .ev-sub{ color:var(--muted); font-size:.92rem; margin-top:.2rem; }
.event .ev-status{ font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--accent);
  white-space:nowrap; }
.event .ev-status.soldout{ color:var(--muted); }

/* tags */
.tags{ display:flex; flex-wrap:wrap; gap:.5rem; }
.tag{ font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-soft);
  border:1px solid var(--line); border-radius:100px; padding:.5em 1em; }
/* single-line tag row (scrolls horizontally if it ever overflows) */
.tags--row{ flex-wrap:nowrap; overflow-x:auto; gap:.4rem; }
.tags--row .tag{ white-space:nowrap; flex:0 0 auto; font-size:.62rem; padding:.45em .85em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--bg); border-top:1px solid var(--line); position:relative; overflow:hidden; }
.footer__brand img{ height:40px; }
[data-theme="noturno"] .footer__brand img{ filter:invert(1) brightness(1.6); }

/* shared section heading — same baseline across every column */
.footer__h{ font-family:var(--sans); font-size:.7rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--muted); font-weight:600; margin:0 0 1.1rem; }

/* row of columns, spread across the full width, aligned to the top */
.footer__top{ display:flex; flex-wrap:wrap; justify-content:space-between; align-items:flex-start;
  gap:clamp(1.6rem,3vw,2.4rem) clamp(2.5rem,7vw,6.5rem);
  padding-block:clamp(28px,3.4vw,42px); position:relative; z-index:1; }

/* generic column */
.footer__col{ display:flex; flex-direction:column; align-items:flex-start; }

/* brand column — logo + contact + policy links, evenly stacked */
.footer__brand{ display:flex; flex-direction:column; align-items:flex-start; gap:1rem; }
.footer__brand-row{ display:flex; align-items:center; gap:1.1rem 1.4rem; flex-wrap:wrap; }
.footer__brand-row .footer__contact{ padding-left:1.4rem; border-left:1px solid var(--line); }
.footer__contact{ display:flex; flex-direction:column; align-items:flex-start; gap:.5rem; }
.footer__contact a{ font-family:var(--sans); font-size:.8rem; color:var(--ink-soft);
  transition:color .3s, transform .3s; }
.footer__contact a:hover{ color:var(--accent); transform:translateX(4px); }
.footer__brand-links{ display:flex; flex-direction:column; align-items:flex-start; gap:.6rem; }
.footer__privacy{ font-family:var(--sans); font-size:.7rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--muted); transition:color .3s, transform .3s; }
.footer__privacy:hover{ color:var(--accent); transform:translateX(4px); }
.smiley-link{ display:inline-flex; align-items:center;
  font-family:var(--sans); font-size:.7rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--muted); transition:color .3s, transform .3s; }
.smiley-link:hover{ color:var(--accent); transform:translateX(4px); }

/* explore column */
.footer__nav{ display:flex; flex-direction:column; align-items:flex-start; gap:.75rem; }
.footer__nav a{ font-family:var(--sans); font-size:.74rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink-soft); transition:color .3s, transform .3s; }
.footer__nav a:hover{ color:var(--accent); transform:translateX(4px); }

/* connect column — social group + newsletter group */
.footer__connect{ display:flex; flex-direction:column; align-items:flex-start; gap:2rem; max-width:280px; }
.footer__social{ display:flex; gap:1.1rem; align-items:center; }
.footer__social a{ display:inline-flex; align-items:center; justify-content:center; color:var(--ink-soft);
  transition:color .3s; }
.footer__social a:hover{ color:var(--accent); }
.footer__social svg{ width:20px; height:20px; }
.footer__news{ display:flex; align-items:center; gap:.6rem; width:100%; max-width:280px;
  border-bottom:1px solid var(--line); transition:border-color .3s; }
.footer__news:focus-within{ border-color:var(--accent); }
.footer__news input{ flex:1; min-width:0; appearance:none; background:none; border:0; border-radius:0;
  padding:.6em 0; font-family:var(--sans); font-size:.92rem; color:var(--ink); }
.footer__news input:focus{ outline:0; }
.footer__news input::placeholder{ color:var(--muted); opacity:.7; }
.footer__news-btn{ appearance:none; background:none; border:0; cursor:pointer; white-space:nowrap;
  font-family:var(--sans); font-weight:600; font-size:.7rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink); padding:.4em 0; transition:color .3s, transform .3s; }
.footer__news-btn:hover{ color:var(--accent); transform:translateX(3px); }
.footer__news-done{ font-size:.82rem; color:var(--accent); margin:.8rem 0 0; }
.footer__bottom.footer__bottom--center{ justify-content:center; text-align:center; }
.footer__bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem;
  border-top:1px solid var(--line); padding-block:.85rem; font-size:.78rem; color:var(--muted);
  position:relative; z-index:1; }

/* ---------- Forms ---------- */
.form{ display:grid; grid-template-columns:1fr 1fr; gap:1.05rem 1.4rem; }
.field{ display:flex; flex-direction:column; gap:.5rem; }
.field--full{ grid-column:1 / -1; }
.field label{ font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); font-weight:600; }
.field input, .field select, .field textarea{
  appearance:none; font-family:var(--sans); font-size:1rem; color:var(--ink);
  background:transparent; border:0; border-bottom:1px solid var(--line);
  padding:.7em 0; border-radius:0; transition:border-color .3s;
}
.field textarea{ resize:vertical; min-height:90px; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:0; border-color:var(--accent); }
.field input::placeholder, .field textarea::placeholder{ color:var(--muted); opacity:.7; }
.field select{ cursor:pointer; background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%238C8170' stroke-width='1.5'/></svg>"); background-repeat:no-repeat; background-position:right .2em center; }
.form-note{ font-size:.82rem; color:var(--muted); }
.form-success{ display:none; }
.form-success.show{ display:block; }
.contact-line{ display:flex; flex-direction:column; gap:.3rem; margin-bottom:1.6rem; }
.contact-line .lab{ font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); font-weight:600; }
.contact-line .val{ font-family:var(--serif); font-size:1.3rem; }

/* ---------- Reservations — full-bleed split (video left, form right) ---------- */
.reserve{ display:grid; grid-template-columns:1fr 1fr; min-height:calc(100svh - var(--nav-h));
  margin-top:var(--nav-h); }
.reserve__media{ position:relative; overflow:hidden; background:#0c0a0a; order:2;
  display:flex; align-items:center; justify-content:center;
  padding:0; }
.reserve__panel{ order:1; display:flex; align-items:center; justify-content:flex-start;
  padding:clamp(1.6rem,3.2vh,2.8rem) var(--gut); overflow:visible; }
.reserve__panel.scope-dark{ --line:rgba(242,237,228,.26); background:#0c0a0a; }
.reserve__fg{ width:100%; height:100%; object-fit:cover; display:block; position:absolute; inset:0; }
.reserve__inner{ width:100%; max-width:540px; }
@media (max-width:860px){
  .reserve{ grid-template-columns:1fr; height:auto; min-height:0; }
  .reserve__media{ min-height:46vh; order:0; }
  .reserve__panel{ overflow:visible; padding-block:clamp(2.4rem,7vw,3.5rem); }
}
@media (max-width:620px){ .form{ grid-template-columns:1fr; } }

/* ---------- Brand intro (animated maps signature) ---------- */
.intro{ position:fixed; inset:0; z-index:9999; background:var(--bg);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .9s ease; }
.intro.hide{ opacity:0; pointer-events:none; }
.intro__gif{ width:min(86vw,640px); height:auto; }
[data-theme="noturno"] .intro__gif{ filter:invert(1) brightness(1.55); }
.intro__skip{ position:absolute; bottom:7vh; left:50%; transform:translateX(-50%);
  appearance:none; background:none; border:0; cursor:pointer; color:var(--muted);
  font-family:var(--sans); font-weight:600; font-size:.72rem; letter-spacing:.22em;
  text-transform:uppercase; display:inline-flex; align-items:center; gap:.6em;
  opacity:0; animation:introHint 1s ease 2.2s forwards; transition:color .3s; }
.intro__skip:hover{ color:var(--accent); }
@keyframes introHint{ to{ opacity:1; } }

/* ---------- Gray transition band (soft gradient from page bg) ---------- */
.band-gray{ position:relative; background:var(--bg-gray); }
.band-gray::before{ content:''; position:absolute; left:0; right:0; top:0;
  height:clamp(48px,7vw,110px); background:linear-gradient(to bottom, var(--bg), var(--bg-gray));
  pointer-events:none; z-index:0; }
.band-gray > *{ position:relative; z-index:1; }
/* dedicated gray→black transition strip (no content, so nothing darkens) */
.band-fade{ height:clamp(70px,10vw,150px); background:linear-gradient(to bottom, var(--bg-gray), #121010); }

/* ---------- Gray band with soft fade on BOTH edges (surrounded by page bg) ---------- */
.band-soft{ position:relative; background:var(--bg-gray); }
.band-soft::before, .band-soft::after{ content:''; position:absolute; left:0; right:0;
  height:clamp(48px,7vw,110px); pointer-events:none; z-index:0; }
.band-soft::before{ top:0;    background:linear-gradient(to bottom, var(--bg), var(--bg-gray)); }
.band-soft::after{  bottom:0; background:linear-gradient(to top,    var(--bg), var(--bg-gray)); }
.band-soft > *{ position:relative; z-index:1; }

/* ---------- Line-art illustration (transparent black ink → matches any bg) ---------- */
.illus img{ width:100%; height:auto; }
[data-theme="noturno"] .illus img{ filter:invert(1); }

/* Story header — full screen; illustration anchored to the bottom so it
   touches the dark section below, while the text stays vertically centred */
.story-head{
  min-height:100svh; display:flex; flex-direction:column;
  padding-top:var(--nav-h); padding-bottom:0;
}
.story-head .wrap{ flex:1 1 auto; display:flex; align-items:flex-end; }
.story-head .split{ width:100%; align-items:stretch; }
.story-head .illus{ display:flex; align-items:flex-end; }            /* image sits on the floor */
.story-head .split > div:nth-child(2){ display:flex; flex-direction:column; justify-content:center; }  /* text centred */
.story-head .illus img{ display:block; max-height:calc(100svh - var(--nav-h) - 4vh); width:auto; max-width:100%; }
@media (max-width:980px){
  .story-head{ display:block; min-height:0; padding-top:calc(var(--nav-h) + 7vh); padding-bottom:7vh; }
  .story-head .wrap{ display:block; }
  .story-head .split{ align-items:center; }
  .story-head .split > div:nth-child(2){ display:block; }
  .story-head .illus{ display:none; }
}

/* ---------- Dark feature band (scoped dark colours on any theme) ---------- */
.scope-dark{
  position:relative;
  --bg-2:#121010; --ink:#F2EDE4; --ink-soft:#C9C1B4; --muted:#8E8576;
  --accent:#F9C84B;
  --line:rgba(242,237,228,.16); --line-soft:rgba(242,237,228,.08); --topo:rgba(242,237,228,.16);
  background:#121010; color:var(--ink);
}
.scope-dark::before, .scope-dark::after{ content:''; position:absolute; left:0; right:0;
  height:clamp(44px,6vw,90px); pointer-events:none; z-index:2; }
.scope-dark::before{ top:0;    background:linear-gradient(to bottom, var(--bg), transparent); }
.scope-dark--from-gray::before{ background:linear-gradient(to bottom, var(--bg-gray), transparent); }
.scope-dark--nofade::before, .scope-dark--nofade::after{ display:none; }
.scope-dark::after{  bottom:0; background:linear-gradient(to top, var(--bg), transparent); }
.scope-dark .figure{ background:#1c1916; }

/* ---------- Menu list beside photo (menu.html) ---------- */
.menu-photo{ height:100%; }
.menu-photo img{ height:100%; width:100%; object-fit:cover; }
.menu-compact .menu-course{ padding:1.02rem 0; gap:1rem; }
.menu-compact .menu-course .title{ font-size:clamp(1.12rem,1.7vw,1.45rem); }
.menu-compact .menu-course .desc{ font-size:.86rem; margin-top:.25rem; }
.menu-compact .menu-course .origin{ font-size:.92rem; }

/* grouped seasonal menu (Welcome Bites / Starter / Main / Dessert) */
.menu-group{ margin-top:clamp(1.6rem,2.6vw,2.4rem); }
.menu-group:first-of-type{ margin-top:0; }
.menu-group__head{ font-size:.7rem; letter-spacing:.22em; text-transform:uppercase; color:var(--accent);
  font-weight:600; margin:0 0 .2rem; }
.dish{ border-top:1px solid var(--line); padding:1.05rem 0; }
.dish__name{ font-family:var(--serif); font-size:clamp(1.1rem,1.7vw,1.42rem); font-weight:400; line-height:1.18; }
.dish__desc{ color:var(--muted); font-size:.9rem; line-height:1.6; margin-top:.45rem; max-width:56ch; }
.dish__note{ color:var(--muted); font-size:.78rem; font-style:italic; margin-top:.4rem; opacity:.85; }

/* ---------- Hand-drawn alphabet heading ---------- */
.idea-glyphs{ --cap:clamp(1.45rem,2.8vw,2.45rem); display:flex; flex-direction:column;
  gap:clamp(.4rem,1vw,.8rem); margin-top:1.5rem; }
.idea-glyphs .line{ display:flex; align-items:flex-end; gap:.12em; flex-wrap:nowrap; }
.idea-glyphs .gl{ width:auto; opacity:0; transform:translateY(6px);
  transition:opacity .35s ease, transform .35s ease; }
.idea-glyphs .gl.on{ opacity:.92; transform:none; }
.idea-glyphs .sp{ display:inline-block; width:.5em; }
.idea-glyphs .gcaret{ align-self:flex-end; width:3px; height:calc(var(--cap) * .82);
  background:var(--ink); margin:0 .12em .08em; animation:caretBlink .8s steps(1) infinite; }
@keyframes caretBlink{ 50%{ opacity:0; } }
[data-theme="noturno"] .idea-glyphs .gl{ filter:invert(1); }

/* ---------- reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; } .reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; } .reveal.d4{ transition-delay:.32s; }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; } }

/* lang visibility */
[data-lang="en"] .dk{ display:none; }
[data-lang="dk"] .en{ display:none; }

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .nav__links{ display:none; }
  .nav__burger{ display:flex; }
  .split,.split--story{ grid-template-columns:1fr; gap:2.4rem; }
  .cols-3{ grid-template-columns:1fr 1fr; }
  .footer__grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:620px){
  body{ font-size:16px; }
  .cols-2,.cols-3{ grid-template-columns:1fr; }
  .facts{ grid-template-columns:1fr; }
  .facts--bare{ grid-template-columns:repeat(3,1fr); gap:0.8rem; }
  .facts--bare .fact .n{ font-size:1.45rem; }
  .facts--bare .fact .l{ font-size:.58rem; letter-spacing:.1em; }
  /* tags: let them wrap on phones instead of scrolling off-screen */
  .tags--row{ flex-wrap:wrap; overflow-x:visible; gap:.5rem; }
  .tags--row .tag{ font-size:.64rem; }
  .menu-course{ grid-template-columns:auto 1fr; }
  .menu-course .origin{ grid-column:2; white-space:normal; padding-top:.4em; }
  .event{ grid-template-columns:1fr; gap:.5rem; }
  .footer__grid{ grid-template-columns:1fr; }

  /* Story title on a single line on phones */
  .story-title{ max-width:none !important; white-space:nowrap; font-size:clamp(1.9rem,10vw,3.4rem); }

  /* Signature dishes: tap-through card stack on phones */
  .band-gray{ overflow-x:clip; }
  .dish-grid.is-stack{ position:relative; display:block; max-width:270px; margin-left:auto; margin-right:auto; }
  .dish-grid.is-stack > figure{
    position:absolute; left:0; right:0; top:0; margin:0 !important;
    transition:transform .55s cubic-bezier(.2,.7,.2,1), opacity .42s ease, filter .42s ease;
    cursor:pointer; -webkit-user-select:none; user-select:none;
    box-shadow:0 22px 46px -22px rgba(0,0,0,.6); border:3px solid var(--bg);
  }
  .dish-grid.is-stack > figure .flip-cue{ display:none; }
  .dish-grid.is-stack .figcap{ display:none; }
}

/* Stack indicator (caption + dots + hint) — only visible when JS turns on stack mode */
.dish-stack-ui{ display:none; flex-direction:column; align-items:center; gap:.75rem; margin-top:1.4rem; text-align:center; }
.dish-stack-cap{ display:flex; flex-direction:column; gap:.25rem; }
.dish-stack-cap .dsc-name{ font-family:var(--serif); font-weight:300; font-size:1.45rem; line-height:1.1; color:var(--ink); }
.dish-stack-cap .dsc-meta{ font-family:var(--sans); font-size:.66rem; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); }
.dish-stack-row{ display:flex; align-items:center; gap:.9rem; }
.dish-dots{ display:flex; gap:.45rem; }
.dish-dot{ width:7px; height:7px; border-radius:50%; background:var(--line); transition:background .3s, transform .3s; }
.dish-dot.is-on{ background:var(--accent); transform:scale(1.3); }
.dish-hint{ font-family:var(--sans); font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }

/* CTA heading on a single line (wraps only on small phones) */
.cta-line{ white-space:nowrap; }
@media (max-width:620px){ .cta-line{ white-space:normal; } }


/* ============================================================
   MOBILE POLISH (v47) — fixes layered on top of the rules above
   ============================================================ */

/* 1 — Kill sticky :hover on touch devices.
   On phones a tap latches :hover, which left the flip-card arrow
   rotated and the image zoomed instead of flipping cleanly. */
@media (hover:none){
  .figure:hover img, .figure:hover video,
  .figure--flip:hover .flip-front img{ transform:none; }
  .figure--flip:hover .flip-cue{ transform:none; color:#16110E; }
}

/* 2 — Force every split to ONE column on phones/tablets, even when an
   inline grid-template-columns is set (menu photo+list, story header). */
@media (max-width:980px){
  .split, .split--story{ grid-template-columns:1fr !important; }
  .illus{ margin-left:0 !important; }            /* remove negative pull when stacked */
  .menu-photo{ height:auto; aspect-ratio:4/3; }  /* photo sized sanely, not 100% of the list */
}

/* 3 — Smaller, better-proportioned header button on mobile. */
@media (max-width:620px){
  .nav__cta{ padding:.72em 1.05em; font-size:.62rem; letter-spacing:.1em; }
}

/* 4 — Larger body copy + tidier, left-aligned footer on phones. */
@media (max-width:620px){
  .body{ font-size:1.05rem; line-height:1.7; }
  .lead{ font-size:1.12rem; }
  .dish__desc{ font-size:.95rem; }
  .footer__top{ justify-content:flex-start; gap:2.4rem 2rem; }
  .footer__connect{ max-width:none; width:100%; }
}

/* Menu page: hide the dish photo on mobile — list takes full width */
@media (max-width:760px){
  .menu-photo{ display:none; }
}


/* 5 — No horizontal overflow anywhere.
   The decorative country-map backgrounds (.topo--right, .topo--cover, etc.)
   bleed slightly past the page edge BY DESIGN. Outside the footer they sit in
   un-clipped sections, which on narrow screens created sideways scroll and a
   strip of empty space on the right. Clip the page to its own width so the art
   still reaches the edge but never adds scrollable emptiness. */
html{ overflow-x:hidden; }
body{ overflow-x:hidden; max-width:100%; }


/* 6 — Bulletproof overflow clip at the SOURCE.
   The bleeding map backgrounds (.topo--right/.topo--cover) live in otherwise
   un-clipped sections. iOS Safari sometimes ignores overflow-x on <body>, so
   clip each hosting section directly — the art still bleeds to the edge but
   can never create sideways scroll / empty space on the right. */
section:has(> .topo){ overflow:hidden; }


/* ============================================================
   REFINED RESERVATION CONTROLS (v50) — stepper / chips / date
   ============================================================ */

/* Guests +/- stepper */
.stepper{ display:flex; align-items:center; justify-content:space-between; gap:.6rem; border-bottom:1px solid var(--line); padding:.25em 0; }
.stepper__btn{ flex:0 0 auto; width:2.15rem; height:2.15rem; display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line); border-radius:100px; background:transparent; color:inherit; cursor:pointer;
  font-family:var(--sans); font-size:1.15rem; line-height:1; padding:0;
  transition:border-color .25s, color .25s; -webkit-tap-highlight-color:transparent; }
.stepper__btn:hover{ border-color:var(--accent); color:var(--accent); }
.stepper__btn:active{ transform:translateY(1px); }
.stepper .stepper__val{ flex:1 1 0; min-width:0; width:auto; text-align:center; border:0; background:transparent; color:inherit;
  padding:0; font-family:var(--serif); font-size:1.6rem; line-height:1; -moz-appearance:textfield; cursor:text; }
.stepper .stepper__val:focus{ outline:0; }

/* Selectable chips (budget) */
.chips{ display:flex; flex-wrap:wrap; gap:.55rem; padding-top:.45rem; }
.chip{ font-family:var(--sans); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-soft);
  border:1px solid var(--line); border-radius:100px; padding:.66em 1.1em; background:transparent; cursor:pointer;
  white-space:nowrap; transition:border-color .25s, color .25s, background .25s; -webkit-tap-highlight-color:transparent; }
.chip:hover{ border-color:var(--accent); color:var(--accent); }
.chip[aria-pressed="true"]{ background:var(--gold); border-color:var(--gold); color:#1a1a1a; }

/* Polished date field on the dark panel */
.field input[type=date]{ color-scheme:dark; cursor:pointer; }
.field input[type=date]::-webkit-calendar-picker-indicator{ filter:invert(1) brightness(1.4); opacity:.55; cursor:pointer; transition:opacity .25s; }
.field input[type=date]::-webkit-calendar-picker-indicator:hover{ opacity:1; }


/* 7 — Keep the reservation form inside its (narrow) panel.
   Long <select> option text was forcing the grid columns wider than the
   panel, cutting off the right column. Let fields shrink to their track. */
.form .field{ min-width:0; }
.field input, .field select, .field textarea{ width:100%; min-width:0; max-width:100%; box-sizing:border-box; }

/* 8 — guests stepper: number left, the two buttons grouped together on the right */
.stepper{ justify-content:space-between; }
.stepper .stepper__val{ text-align:left; }
.stepper__btns{ display:flex; align-items:center; gap:.5rem; flex:0 0 auto; }

/* 9 — trim the cream gap between the form and the video (desktop split only) */
@media (min-width:861px){
  .reserve{ grid-template-columns:0.9fr 1.1fr; }
  .reserve__panel{ padding-inline-end:clamp(1.2rem,2.6vw,2.6rem); }
}

/* 10 — Reservations: fit form + video in one screen (no page scroll) */
@media (min-width:861px){
  .reserve{ height:calc(100svh - var(--nav-h)); min-height:0; }
  .reserve__panel{ overflow-y:auto; padding-block:clamp(.8rem,2.2vh,1.6rem); }
  .reserve__inner{ max-width:600px; }
  .reserve .h1{ margin-top:.3rem !important; font-size:clamp(1.55rem,2.2vw,2.05rem) !important; }
  .reserve .lead{ margin:.4rem 0 .85rem !important; font-size:clamp(.9rem,1.1vw,1.02rem) !important; }
  .reserve .form{ gap:.45rem 1.1rem !important; }
  .reserve .field{ gap:.22rem; }
  .reserve .field input, .reserve .field select, .reserve .field textarea{ padding:.28em 0; font-size:.95rem; }
  .reserve .field textarea{ min-height:44px !important; }
  .reserve .form-note{ margin-top:.5rem !important; font-size:.74rem; }
  .reserve .chips{ gap:.4rem; padding-top:.3rem; }
  .reserve .chip{ padding:.45em .85em; }
  .reserve .stepper__btn{ width:1.85rem; height:1.85rem; }
}

/* 10 — Hide the scrollbar everywhere (page still scrolls) */
html{ scrollbar-width:none; -ms-overflow-style:none; }      /* Firefox + legacy Edge */
html::-webkit-scrollbar, body::-webkit-scrollbar{ width:0; height:0; display:none; } /* Chrome/Safari/Edge */
