/* ============================================================
   Dürüm & Dreams — Black / White / Magenta accent
   Brand inspired by the Frederiksberg storefront facade.
   Edit the --spice / --purple variables below to change the accent.
   ============================================================ */

:root {
  /* Palette — matches restaurant exterior: black, white, red */
  --paper:        #FFFFFF;
  --paper-warm:   #F5F5F5;
  --paper-deep:   #EBEBEB;
  --smoke:        #0C0C0C;
  --smoke-2:      #181818;
  --char:         #000000;
  --spice:        #CC00CC;
  --spice-deep:   #AA00AA;
  --saffron:      #FFFFFF;
  --purple:       #CC00CC;
  --purple-deep:  #AA00AA;
  --olive:        #555555;
  --ink:          #0C0C0C;
  --ink-soft:     #555555;
  --line:         rgba(0, 0, 0, .12);
  --line-strong:  rgba(0, 0, 0, .24);

  /* Type */
  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --body:    "Manrope", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --hand:    "Caveat", "Bradley Hand", "Brush Script MT", cursive;

  /* Geometry */
  --maxw: 1440px;
  --pad-x: clamp(20px, 4vw, 56px);
  --radius: 14px;
}

/* Hidden attribute must always hide */
[hidden] { display: none !important; }

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.65 var(--body);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
/* Sitewide grain */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.08  0 0 0 0 0.08  0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .04; mix-blend-mode: multiply;
}
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
em { font-style: italic; }

::selection { background: var(--spice); color: var(--paper); }

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--smoke); color: var(--paper); padding: 10px 16px; border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus { top: 12px; }

/* ============================================================
   TOP MARQUEE
   ============================================================ */
.topbar {
  background: #000000;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
}
.topbar__track {
  display: inline-flex;
  white-space: nowrap;
  gap: 48px;
  padding-left: 100%;
  animation: marquee 38s linear infinite;
}
.topbar__track > span { display: inline-flex; align-items: center; gap: 10px; }
.topbar .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--spice);
  box-shadow: 0 0 0 0 rgba(204, 0, 204, .6);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(204, 0, 204, .6); }
  70%  { box-shadow: 0 0 0 10px rgba(204, 0, 204, 0); }
  100% { box-shadow: 0 0 0 0 rgba(204, 0, 204, 0); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(12px, 3vw, 36px);
  padding: 16px var(--pad-x);
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav__brand { display: inline-flex; align-items: center; gap: 12px; }
.nav__logo {
  height: 72px;
  width: auto;
  display: block;
}
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--char); color: var(--paper);
  font-family: var(--display); font-size: 18px; font-weight: 600;
  letter-spacing: -.02em;
  border-radius: 9px;
  position: relative;
}
.brand__mark .amp {
  font-size: 11px; color: var(--spice); margin: 0 1px;
  font-style: italic; transform: translateY(-1px);
}
.brand__mark--lg { width: 56px; height: 56px; font-size: 26px; border-radius: 12px; }
.brand__mark--lg .amp { font-size: 16px; }

.brand__name {
  font-family: var(--display); font-size: 19px; letter-spacing: -0.02em;
  font-weight: 500;
}
.brand__name em { color: var(--spice); font-weight: 400; }

.nav__links {
  display: flex; gap: clamp(16px, 2.4vw, 32px); justify-self: end;
  font-size: 14px; letter-spacing: .02em;
}
.nav__links a {
  position: relative; padding: 6px 0;
  color: rgba(255, 255, 255, .85);
  transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--spice);
  transition: width .35s cubic-bezier(.2,.8,.2,1);
}
.nav__links a:hover { color: var(--spice); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; gap: 10px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 500; letter-spacing: .02em;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.pill--ghost {
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .85);
}
.pill--ghost:hover { background: var(--char); color: var(--paper); border-color: var(--char); }
.pill--solid {
  background: var(--spice); color: var(--paper);
  box-shadow: 0 6px 18px -8px rgba(204, 0, 204, .55);
}
.pill--solid:hover { background: var(--char); transform: translateY(-1px); }

.nav__burger {
  display: none;
  background: none; border: none;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav__burger span { width: 22px; height: 1.5px; background: var(--paper); transition: transform .3s, opacity .3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column;
  background: var(--char); color: var(--paper);
  padding: 32px var(--pad-x) 48px;
  font-family: var(--display); font-size: clamp(28px, 6vw, 44px);
  letter-spacing: -0.02em; gap: 14px;
}
.mobile-menu a { padding: 6px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }

/* ============================================================
   HERO — cinematic, video-first
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero__video {
  position: absolute; inset: 0; z-index: -3;
  width: 100%; height: 100%; object-fit: cover;
  background:
    radial-gradient(1400px 900px at 30% 30%, #1a1a1a 0%, transparent 60%),
    radial-gradient(1100px 700px at 70% 70%, #0a0a0a 0%, transparent 60%),
    linear-gradient(160deg, #000000 0%, #0c0c0c 50%, #111111 100%);
  animation: heroBreathe 18s ease-in-out infinite alternate;
}
@keyframes heroBreathe {
  0%   { transform: scale(1.05); filter: brightness(.9); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); filter: brightness(1.05); }
}
.hero__veil {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(85% 75% at 50% 55%, transparent 0%, rgba(0, 0, 0, .4) 55%, rgba(0, 0, 0, .92) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .15) 30%, rgba(0, 0, 0, .85) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; opacity: .45; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.95  0 0 0 0 0.95  0 0 0 .35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__title-wrap {
  text-align: center; position: relative; z-index: 1;
  padding: 0 var(--pad-x);
  max-width: 1200px;
}

.hero__loc {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .32em; text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin: clamp(12px, 2vh, 20px) 0 0;
  opacity: 0;
  animation: heroFade 1.1s .95s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero__loc span {
  display: inline-block; width: 32px; height: 1px;
  background: currentColor; opacity: .55;
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 7.5vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0;
  white-space: nowrap;
  color: var(--paper);
  font-variation-settings: "opsz" 144, "SOFT" 70;
  opacity: 0;
  transform: translateY(28px);
  animation: heroFade 1.4s .55s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--spice);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 300;
  margin: 0 .04em;
  font-size: .85em;
  vertical-align: -0.03em;
}

.hero__tagline {
  margin: clamp(16px, 2.5vh, 28px) 0 0;
  font-family: var(--mono);
  font-size: clamp(11px, 1.2vw, 16px);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  opacity: 0;
  animation: heroFade 1.4s .75s cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes heroFade {
  to { opacity: .95; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 32px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  opacity: .6;
  transition: opacity .3s, transform .3s;
}
.hero__scroll:hover { opacity: 1; }
.hero__scroll-line {
  width: 1px; height: 60px;
  background: rgba(255, 255, 255, .25);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: -60px;
  width: 100%; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .8));
  animation: scrollDrip 2.6s ease-in-out infinite;
}
@keyframes scrollDrip {
  0%, 100% { top: -60px; }
  50%      { top: 60px; }
}

/* ============================================================
   SHARED SECTION HEAD
   ============================================================ */
.section-head { max-width: 900px; margin: 0 auto clamp(48px, 8vh, 80px); }
.section-head--center { text-align: center; }
.section-head__kicker {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--spice); margin: 0 0 18px;
}
.section-head__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(38px, 6.4vw, 96px);
  line-height: .98; letter-spacing: -0.035em;
  color: var(--smoke); margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.section-head__title em {
  font-style: italic; color: var(--spice);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.section-head__sub {
  margin-top: 18px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-soft); max-width: 56ch;
}
.section-head--center .section-head__sub { margin-inline: auto; }

/* ============================================================
   LETTER FROM NEBI
   ============================================================ */
.letter {
  position: relative;
  padding: clamp(80px, 14vh, 160px) var(--pad-x);
  background: var(--paper);
  overflow: hidden;
}
.letter::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(0, 0, 0, .02) 0%, transparent 60%),
    radial-gradient(50% 40% at 50% 100%, rgba(204, 0, 204, .04) 0%, transparent 60%);
  pointer-events: none;
}

.letter__paper {
  position: relative;
  max-width: 760px; margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) clamp(24px, 5vw, 72px);
  background: var(--paper-warm);
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .8) inset,
    0 30px 60px -30px rgba(0, 0, 0, .18),
    0 6px 16px -8px rgba(0, 0, 0, .1);
  background-image:
    radial-gradient(circle at 8px 12px, transparent 4px, var(--paper-warm) 5px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, .018) 0 1px, transparent 1px 38px);
}
.letter__paper::before {
  content: ""; position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 90px; height: 22px;
  background: rgba(204, 0, 204, .45);
  border-radius: 2px;
  box-shadow: 0 4px 8px -2px rgba(0,0,0,.2);
}

.letter__kicker {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 0 0 36px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--spice);
}
.letter__kicker span {
  display: inline-block; width: 28px; height: 1px;
  background: currentColor; opacity: .55;
}

.letter__body {
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.6; color: var(--ink);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-weight: 400;
}
.letter__body p { margin: 0 0 1.1em; }
.letter__body strong { color: var(--spice); font-weight: 600; }
.letter__hi {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 0 0 24px !important;
  color: var(--smoke);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.letter__sig {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px dashed var(--line-strong);
  display: flex; flex-direction: column; gap: 4px;
}
.letter__hand {
  font-family: var(--hand);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  color: var(--spice);
  font-weight: 600;
  transform: rotate(-2deg);
  transform-origin: left;
  display: inline-block;
}
.letter__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft);
}

.letter__pillars {
  position: relative;
  max-width: var(--maxw);
  margin: clamp(60px, 10vh, 100px) auto 0;
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) { .letter__pillars { grid-template-columns: repeat(3, 1fr); column-gap: 56px; } }

.letter__pillars li { padding-right: 12px; }
.pillar__no {
  display: inline-block;
  font-family: var(--display); font-style: italic;
  font-size: 22px; color: var(--spice);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.letter__pillars h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -.01em;
  margin: 0 0 8px; color: var(--smoke);
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.letter__pillars p {
  margin: 0; color: var(--ink-soft);
  font-size: 15px; line-height: 1.7;
}

/* ============================================================
   SIGNATURES
   ============================================================ */
.signatures {
  padding: clamp(80px, 14vh, 160px) var(--pad-x);
  background: var(--paper);
}
.sig-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 800px) {
  .sig-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(260px, auto);
  }
  .sig-card--lg { grid-column: span 6; }
  .sig-card     { grid-column: span 2; }
}
@media (min-width: 1200px) {
  .sig-card--lg { grid-column: span 3; grid-row: span 2; }
  .sig-card     { grid-column: span 3; }
}

.sig-card {
  position: relative;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
}
.sig-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .35); }

.sig-card__media {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--smoke);
}
.sig-card--lg .sig-card__media { aspect-ratio: 4/3; }

/* Placeholder illustrations */
.ph {
  position: absolute; inset: 0;
  background: var(--smoke);
  overflow: hidden;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .12; mix-blend-mode: screen;
}
.ph::after {
  content: ""; position: absolute; inset: 18%;
  background-image: var(--art);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .55;
  filter: drop-shadow(0 1px 0 rgba(204, 0, 204, .2));
}

.ph--kebab {
  background:
    radial-gradient(120% 90% at 50% 130%, rgba(204, 0, 204, .25) 0%, transparent 60%),
    var(--smoke);
  --art: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 240' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='100' y1='10' x2='100' y2='230'/%3E%3Cpath d='M100 30 l5 -10 l-5 -8 l-5 8 z' fill='%23ffffff'/%3E%3Cellipse cx='100' cy='60' rx='24' ry='6'/%3E%3Cellipse cx='100' cy='78' rx='32' ry='8'/%3E%3Cellipse cx='100' cy='98' rx='38' ry='9'/%3E%3Cellipse cx='100' cy='118' rx='40' ry='9'/%3E%3Cellipse cx='100' cy='138' rx='38' ry='9'/%3E%3Cellipse cx='100' cy='158' rx='32' ry='8'/%3E%3Cellipse cx='100' cy='176' rx='24' ry='6'/%3E%3C/svg%3E");
}

.ph--lamb {
  background:
    radial-gradient(120% 90% at 50% 130%, rgba(204, 0, 204, .2) 0%, transparent 60%),
    var(--smoke-2);
  --art: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 240 200' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='10' y1='100' x2='230' y2='100'/%3E%3Crect x='40' y='80' width='32' height='40' rx='6'/%3E%3Crect x='80' y='75' width='36' height='50' rx='8'/%3E%3Crect x='124' y='80' width='32' height='40' rx='6'/%3E%3Crect x='164' y='85' width='28' height='30' rx='5'/%3E%3C/svg%3E");
}

.ph--falafel {
  background:
    radial-gradient(120% 90% at 50% 130%, rgba(85, 85, 85, .3) 0%, transparent 60%),
    var(--smoke);
  --art: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='65' cy='80' r='24'/%3E%3Ccircle cx='118' cy='65' r='22'/%3E%3Ccircle cx='95' cy='115' r='26'/%3E%3Ccircle cx='55' cy='130' r='20'/%3E%3Ccircle cx='140' cy='125' r='22'/%3E%3C/svg%3E");
}

.ph--mix {
  background:
    radial-gradient(120% 90% at 50% 130%, rgba(204, 0, 204, .25) 0%, transparent 60%),
    var(--smoke);
  --art: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 240 200' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M30 100 q0 -40 40 -40 l100 0 q40 0 40 40 q0 40 -40 40 l-100 0 q-40 0 -40 -40 z'/%3E%3Cpath d='M50 100 q0 -22 24 -22 l92 0 q24 0 24 22 q0 22 -24 22 l-92 0 q-24 0 -24 -22 z' opacity='.6'/%3E%3C/svg%3E");
}

/* Real food photos inside cards */
.sig-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.sig-card:hover .sig-card__media img { transform: scale(1.04); }

/* Photo overlay vignette */
.sig-card__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,.5) 100%),
    radial-gradient(ellipse at 50% 110%, rgba(0,0,0,.3) 0%, transparent 70%);
  pointer-events: none;
}

/* Tag pinned on hero card */
.sig-card__tag {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  background: var(--paper); color: var(--smoke);
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  border-radius: 999px;
  z-index: 3;
}

.sig-card__body {
  padding: 24px 26px 26px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.sig-card--lg .sig-card__body { padding: 36px 38px 38px; gap: 14px; }
.sig-card__no {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--spice);
}
.sig-card__body h3 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -.01em;
  margin: 0; color: var(--smoke);
}
.sig-card--lg .sig-card__body h3 { font-size: clamp(30px, 3vw, 44px); }
.sig-card__body p {
  margin: 0; color: var(--ink-soft);
  font-size: 14.5px; line-height: 1.65;
}
.sig-card--lg .sig-card__body p { font-size: 16px; }

.sig-card__foot {
  margin-top: auto;
  display: flex; align-items: center; gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.price {
  font-family: var(--display); font-style: italic;
  font-size: 24px; color: var(--spice);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.sig-card--lg .price { font-size: 32px; }
.sig-card__foot a { font-size: 13px; color: var(--smoke); border-bottom: 1px solid var(--smoke); padding-bottom: 1px; transition: color .25s, border-color .25s; }
.sig-card__foot a:hover { color: var(--spice); border-color: var(--spice); }

.badge {
  display: inline-block;
  padding: 4px 10px; border-radius: 999px;
  background: var(--olive); color: var(--paper);
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
}

/* ============================================================
   MENU
   ============================================================ */
.menu {
  background:
    /* Fine grain lines — amber on near-horizontal angle */
    repeating-linear-gradient(
      90deg,
      transparent 0, transparent 3px,
      rgba(225, 150, 45, .10) 3px, rgba(225, 150, 45, .10) 4px,
      transparent 4px, transparent 10px,
      rgba(180, 108, 22, .08) 10px, rgba(180, 108, 22, .08) 11px,
      transparent 11px, transparent 22px,
      rgba(205, 132, 36, .06) 22px, rgba(205, 132, 36, .06) 23px
    ),
    /* Plank joints — strong dark line + subtle highlight below */
    repeating-linear-gradient(
      180deg,
      transparent 0, transparent 168px,
      rgba(0, 0, 0, .60) 168px, rgba(0, 0, 0, .60) 172px,
      rgba(255, 190, 80, .07) 172px, rgba(255, 190, 80, .07) 173px,
      transparent 173px
    ),
    /* Wide alternating dark/light bands — natural grain depth */
    repeating-linear-gradient(
      89deg,
      transparent 0, transparent 35px,
      rgba(0, 0, 0, .12) 35px, rgba(0, 0, 0, .12) 70px,
      transparent 70px, transparent 100px,
      rgba(255, 160, 60, .04) 100px, rgba(255, 160, 60, .04) 130px
    ),
    /* Warm knot glow areas */
    radial-gradient(ellipse 80% 40% at 28% 20%, rgba(210, 140, 45, .32) 0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 76% 82%, rgba(185, 115, 28, .26) 0%, transparent 55%),
    radial-gradient(ellipse 35% 22% at 55% 50%, rgba(204, 0, 204, .07) 0%, transparent 65%),
    /* Walnut base — lightened */
    linear-gradient(175deg, #2E1A07 0%, #3D240C 30%, #341D09 60%, #271507 100%);
  color: var(--paper);
  padding: clamp(90px, 16vh, 180px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.menu::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(204, 0, 204, .08), transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(204, 0, 204, .06), transparent 50%);
  pointer-events: none;
}
.menu::after {
  content: ""; position: absolute; inset: 0; opacity: .025; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L36 24 L60 30 L36 36 L30 60 L24 36 L0 30 L24 24 Z' fill='%23CC00CC'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.menu .section-head__title { color: var(--paper); }
.menu .section-head__title em { color: var(--spice); }
.menu .section-head__kicker { color: var(--spice); }
.menu .section-head__sub { color: rgba(255, 255, 255, .55); }

.menu__cols {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 56px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .menu__cols { grid-template-columns: repeat(3, 1fr); gap: clamp(40px, 5vw, 72px); } }

.menu__col { padding: 8px 0; }

/* Menu banner */
.menu__banner {
  position: relative;
  max-width: var(--maxw); margin: 0 auto clamp(40px, 6vh, 64px);
  text-align: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.menu__banner span { color: var(--purple); font-size: 14px; }

.menu__cat {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(24px, 2.6vw, 38px);
  letter-spacing: -.02em;
  margin: 32px 0 8px;
  color: var(--purple);
  display: flex; align-items: baseline; gap: 14px;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.menu__cat:first-of-type { margin-top: 0; }
.menu__cat span {
  font-family: var(--mono); font-size: 11px; letter-spacing: .3em; color: rgba(255,255,255,.35); font-weight: 400;
}

/* Dual price (Alm. / Menu) */
.menu__price-pair {
  display: flex; align-items: baseline; gap: 0; flex-shrink: 0;
}
.menu__price-pair .menu__price {
  font-size: 20px;
}
.menu__price-menu {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: rgba(204, 0, 204, .80);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  white-space: nowrap;
  letter-spacing: normal;
}
.menu__price-menu::before {
  content: "/";
  font-family: var(--body);
  font-style: normal;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .20);
  margin: 0 5px 0 3px;
}
.menu__price-menu::after {
  content: " kr";
  font-size: .55em;
  font-style: normal;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .1em;
  margin-left: 2px;
}
.menu__desc {
  font-family: var(--display); font-style: italic;
  color: rgba(255, 255, 255, .45);
  font-size: 15px; margin: 0 0 24px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.menu__list { display: flex; flex-direction: column; gap: 22px; }
.menu__list--tight { gap: 12px; }

.menu__row {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 16px; color: var(--paper);
}
.menu__name { font-family: var(--display); font-size: 19px; font-weight: 400; letter-spacing: -.005em; }
.menu__name em { color: rgba(255, 255, 255, .45); font-style: italic; font-size: .85em; margin-left: 4px; }
.menu__dots {
  flex: 1; height: 1px;
  background-image: radial-gradient(circle, rgba(255,255,255,.35) 1px, transparent 1.5px);
  background-size: 6px 6px; background-position: 0 100%; background-repeat: repeat-x;
  align-self: end; margin-bottom: 6px;
}
.menu__price {
  font-family: var(--display); font-style: italic;
  color: var(--spice); font-size: 22px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.menu__price::after { content: " kr"; font-size: .55em; color: rgba(255,255,255,.45); font-style: normal; letter-spacing: .1em; margin-left: 4px; }

.menu__sub {
  margin: 4px 0 0; padding-left: 0;
  font-size: 13.5px; color: rgba(255, 255, 255, .5);
  line-height: 1.55;
}

.menu__list--tight .menu__sub { display: none; }
.menu__list--tight .menu__name { font-size: 17px; }
.menu__list--tight .menu__price { font-size: 19px; }

.menu__foot {
  position: relative;
  max-width: var(--maxw); margin: 80px auto 0;
  text-align: center;
  font-family: var(--display); font-style: italic;
  color: rgba(255, 255, 255, .4); font-size: 15px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

/* ============================================================
   RITUAL
   ============================================================ */
.ritual {
  padding: clamp(90px, 16vh, 180px) var(--pad-x);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}
.ritual__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .ritual__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 380px;
  }
  .ritual__step:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .ritual__step:nth-child(2) { grid-column: span 4; }
  .ritual__step:nth-child(3) { grid-column: span 2; }
  .ritual__step:nth-child(4) { grid-column: span 2; grid-row: span 2; grid-column-start: 5; grid-row-start: 1; }
}

.ritual__step {
  margin: 0;
  background: var(--smoke);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, .12);
}
.ritual__media {
  position: relative;
  flex: 1; min-height: 220px;
  background: radial-gradient(60% 60% at 50% 40%, #1a1a1a 0%, #000000 100%);
  overflow: hidden;
}
.ritual__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .9;
}
.ritual__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(20% 30% at 30% 60%, rgba(204, 0, 204, .2) 0%, transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.55) 100%);
}

.ritual__step figcaption {
  padding: 22px 26px 26px;
  color: var(--paper);
  position: relative;
  background: var(--smoke);
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.ritual__no {
  font-family: var(--mono); font-size: 11px;
  color: var(--spice); letter-spacing: .3em;
}
.ritual__step h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 28px; margin: 6px 0 8px;
  letter-spacing: -.01em;
}
.ritual__step p {
  margin: 0; font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

.ritual__step--feature figcaption {
  background: var(--spice); color: var(--paper);
  border-top-color: rgba(255,255,255,.2);
}
.ritual__step--feature .ritual__no { color: var(--paper); }
.ritual__step--feature h3 { font-style: italic; }
.ritual__step--feature p { color: rgba(255, 255, 255, .85); }
.ritual__step--feature p em { color: var(--paper); font-weight: 500; }

/* ============================================================
   VOICES
   ============================================================ */
.voices {
  padding: clamp(90px, 16vh, 180px) var(--pad-x);
  background: var(--paper-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.voices::before {
  content: """;
  position: absolute;
  top: 40px; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-style: italic;
  font-size: clamp(220px, 30vw, 460px);
  color: rgba(204, 0, 204, .07);
  line-height: .8; pointer-events: none;
}
.voices .section-head__title span { font-style: italic; color: var(--spice); margin-left: 8px; }

.voices__grid {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .voices__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) {
  .voices__grid { grid-template-columns: repeat(4, 1fr); }
  .voice--lg { grid-column: span 2; grid-row: span 1; }
}

.voice {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px 26px;
  text-align: left;
  margin: 0;
  transition: transform .4s, box-shadow .4s;
}
.voice:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(0, 0, 0, .25); }
.voice--lg { background: var(--char); color: var(--paper); }
.voice--accent { background: var(--spice); color: var(--paper); border-color: var(--spice); }

.voice p {
  font-family: var(--display); font-style: italic;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.35; letter-spacing: -.01em;
  margin: 0 0 24px;
  font-variation-settings: "opsz" 144, "SOFT" 90;
}
.voice--lg p { font-size: clamp(24px, 2.2vw, 36px); }

.voice footer {
  display: flex; flex-wrap: wrap; gap: 6px 12px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.voice--lg footer, .voice--accent footer { color: rgba(255, 255, 255, .6); }
.voice cite { font-style: normal; }

.voices__foot {
  position: relative;
  margin-top: 40px;
  font-size: 14px; color: var(--ink-soft);
}
.voices__foot a {
  color: var(--spice);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ============================================================
   ORDER
   ============================================================ */
.order {
  padding: clamp(90px, 16vh, 180px) var(--pad-x);
  background: var(--paper);
}
.order__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .order__grid { grid-template-columns: repeat(3, 1fr); } }

.order__card {
  position: relative;
  padding: 38px 34px 32px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column; min-height: 280px;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s, background .5s;
}
.order__card::after {
  content: ""; position: absolute; inset: auto -30% -50% auto;
  width: 360px; height: 360px; border-radius: 50%;
  background: var(--accent, var(--spice));
  opacity: .12; transition: transform .8s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.order__card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(0, 0, 0, .35); }
.order__card:hover::after { transform: scale(1.4) rotate(20deg); }

.order__card--wolt { --accent: #00C2E8; background: var(--smoke); color: var(--paper); border-color: var(--smoke); }
.order__card--uber { --accent: #06C167; background: var(--smoke); color: var(--paper); border-color: var(--smoke); }
.order__card--call { --accent: var(--spice); background: var(--spice); color: var(--paper); border-color: var(--spice); }

.order__head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.order__no {
  font-family: var(--mono); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  opacity: .5;
}
.order__brand {
  font-family: var(--display); font-style: italic; font-size: 18px;
  color: var(--accent);
}
.order__card--call .order__brand { color: rgba(255, 255, 255, .9); }

.order__card h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05; letter-spacing: -.02em;
  margin: 0 0 14px;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  position: relative; z-index: 1;
}
.order__card p {
  margin: 0 0 28px;
  font-size: 14.5px;
  opacity: .75;
  line-height: 1.65;
  position: relative; z-index: 1;
}
.order__cta {
  margin-top: auto;
  font-family: var(--mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid currentColor; padding-bottom: 4px;
  align-self: flex-start;
}

.order__note {
  max-width: var(--maxw); margin: 36px auto 0;
  text-align: center;
  font-family: var(--display); font-style: italic;
  color: var(--ink-soft); font-size: 14px;
}

/* ============================================================
   VISIT
   ============================================================ */
.visit {
  display: grid; grid-template-columns: 1fr;
  background: var(--char); color: var(--paper);
}
@media (min-width: 1000px) { .visit { grid-template-columns: 1fr 1fr; } }

.visit__intro {
  padding: clamp(70px, 12vh, 130px) var(--pad-x);
}
.visit .section-head__kicker { color: var(--spice); margin-bottom: 18px; }
.visit .section-head__title { color: var(--paper); }
.visit .section-head__title em { color: var(--spice); font-style: italic; }
.visit__lede {
  margin: 24px 0 40px;
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(255, 255, 255, .65);
  line-height: 1.7; max-width: 50ch;
}

.visit__details {
  display: grid; grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin: 0;
}
.visit__details > div {
  display: grid; grid-template-columns: 130px 1fr; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  align-items: start;
}
.visit__details dt {
  font-family: var(--mono); font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(255, 255, 255, .45);
  padding-top: 4px;
}
.visit__details dd { margin: 0; font-size: 16px; }
.visit__details a { color: var(--paper); border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 1px; transition: color .25s, border-color .25s; }
.visit__details a:hover { color: var(--spice); border-color: var(--spice); }

.hours li, .transport li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 4px 0;
  font-size: 15px;
}
.transport li { display: block; padding: 2px 0; color: rgba(255, 255, 255, .75); }

.visit__map {
  background: var(--smoke-2);
  min-height: 480px;
  position: relative;
}
.visit__map iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(.8) contrast(1.1) brightness(.7);
  position: absolute; inset: 0;
}

/* ============================================================
   SEO BLOCK
   ============================================================ */
.seo-block {
  background: var(--paper);
  padding: clamp(70px, 12vh, 120px) var(--pad-x);
  border-top: 1px solid var(--line);
}
.seo-block__inner { max-width: var(--maxw); margin: 0 auto; }
.seo-block__head {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.15; letter-spacing: -.02em;
  margin: 0 0 32px; color: var(--smoke);
  max-width: 22ch;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.seo-block__cols {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  font-size: 15.5px; color: var(--ink-soft); line-height: 1.8;
}
@media (min-width: 800px) { .seo-block__cols { grid-template-columns: repeat(3, 1fr); column-gap: 40px; } }
.seo-block__cols p { margin: 0; }
.seo-block strong { color: var(--ink); font-weight: 600; }
.seo-block a { color: var(--spice); border-bottom: 1px solid currentColor; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--char); color: var(--paper);
  padding: clamp(60px, 10vh, 100px) var(--pad-x) 32px;
  position: relative; overflow: hidden;
}
.foot__top {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  max-width: var(--maxw); margin: 0 auto;
}
@media (min-width: 800px) { .foot__top { grid-template-columns: 1fr 2fr; } }

.foot__brand { display: flex; gap: 18px; align-items: flex-start; }
.foot__logo {
  height: 110px;
  width: auto;
  display: block;
  border-radius: 10px;
}
.foot__tag {
  margin: 0;
  font-family: var(--display); font-size: 24px; letter-spacing: -.01em;
  font-weight: 400; line-height: 1.3;
}
.foot__tag em { color: var(--spice); font-style: italic; }
.foot__tag span {
  font-family: var(--body); font-size: 13px;
  color: rgba(255, 255, 255, .45);
  font-weight: 300;
}

.foot__nav {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .foot__nav { grid-template-columns: repeat(2, 1fr); } }
.foot__nav h4 {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--spice); margin: 0 0 16px;
  font-weight: 500;
}
.foot__nav a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  transition: color .25s;
}
.foot__nav a:hover { color: var(--paper); }

.social-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.social-link svg { flex-shrink: 0; opacity: .7; transition: opacity .25s; }
.social-link:hover svg { opacity: 1; }

.foot__big {
  margin: clamp(60px, 10vh, 110px) 0 28px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(60px, 16vw, 240px);
  line-height: .9; letter-spacing: -0.045em;
  white-space: nowrap;
  text-align: center;
  color: rgba(255, 255, 255, .06);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.foot__big em { color: rgba(204, 0, 204, .2); }

.foot__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}
.foot__bottom p { margin: 0; }

/* ============================================================
   RESPONSIVE — NAV / HERO TWEAKS
   ============================================================ */
@media (max-width: 880px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__title .line { font-size: clamp(64px, 18vw, 140px); }
  .visit__details > div { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================================
   SCROLL REVEAL HOOKS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
