/* ════════════════════════════════════════════════════════════
   OLEA — "Simple" restaurant template
   Clean, slick, business-like. Generous whitespace, thin rules,
   restrained motion.
   Schibsted Grotesk (display) · Hanken Grotesk (body) ·
   Newsreader (italic accent)
   ════════════════════════════════════════════════════════════ */

:root {
  --bg:       #FBFBF8;
  --bg-2:     #F2F1EA;
  --ink:      #16181A;
  --ink-soft: #5B615E;
  --faint:    #9A9E98;
  --brand:    #2F5C4E;   /* deep sage — single restrained accent */
  --brand-soft:#E4EBE5;
  --line:     #E6E5DD;
  --card:     #FFFFFF;

  --disp: "Schibsted Grotesk", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;
  --serif:"Newsreader", Georgia, serif;

  --pad: clamp(20px, 5vw, 80px);
  --maxw: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* type helpers */
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; }
.label {
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

/* ════════════════ Nav ════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -0.02em;
}
.brand .mark {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--brand);
}
.nav__links { display: flex; align-items: center; gap: clamp(20px, 3.5vw, 42px); }
.nav__links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  background: var(--ink);
  color: var(--bg);
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background .3s var(--ease);
}
.nav__cta:hover { background: var(--brand); }
.nav__burger { display: none; }

/* ════════════════ Hero ════════════════ */
.hero {
  padding: clamp(48px, 8vw, 110px) var(--pad) clamp(40px, 6vw, 80px);
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.hero__label { margin-bottom: 26px; display: flex; align-items: center; gap: 12px; }
.hero__label::after { content: ""; width: 46px; height: 1px; background: var(--line); }
.hero__title {
  font-family: var(--disp);
  font-weight: 500;
  font-size: clamp(46px, 6.6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero__title .serif { color: var(--brand); }
.hero__lede {
  margin: clamp(24px, 3vw, 34px) 0 clamp(30px, 4vw, 40px);
  max-width: 440px;
  font-size: clamp(17px, 1.7vw, 19px);
  color: var(--ink-soft);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--maxw);
  margin: clamp(48px, 7vw, 90px) auto 0;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
.stat__num { font-family: var(--disp); font-weight: 500; font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.03em; }
.stat__label { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }

/* ════════════════ Section primitives ════════════════ */
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--panel { background: var(--bg-2); }
.section--ink { background: var(--ink); color: var(--bg); }
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.sec-title {
  font-family: var(--disp);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
}
.sec-title .serif { color: var(--brand); }
.sec-note { color: var(--ink-soft); font-size: 16px; max-width: 380px; justify-self: end; }
.section--ink .sec-note { color: color-mix(in srgb, var(--bg) 65%, transparent); }
.section--ink .label { color: color-mix(in srgb, var(--bg) 70%, transparent); }

/* ════════════════ Menu list ════════════════ */
.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px clamp(40px, 6vw, 90px);
}
@media (max-width: 820px) { .menu { grid-template-columns: 1fr; } }
.menu__group-title {
  font-family: var(--disp);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--faint);
  text-transform: uppercase;
  padding: 22px 0 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.menu__group-title:not(:first-child) { margin-top: 26px; }
.menu__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.menu__name { font-family: var(--disp); font-weight: 500; font-size: 19px; letter-spacing: -0.01em; }
.menu__price { font-family: var(--disp); font-weight: 500; font-size: 18px; color: var(--brand); }
.menu__desc { grid-column: 1 / -1; color: var(--ink-soft); font-size: 14.5px; margin-top: 2px; max-width: 90%; }

/* ════════════════ Featured cards ════════════════ */
.feat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.fcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.fcard:hover { transform: translateY(-5px); border-color: var(--brand); }
.fcard__media { aspect-ratio: 4 / 3; }
.fcard__body { padding: 22px 22px 26px; }
.fcard__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.fcard__name { font-family: var(--disp); font-weight: 500; font-size: 21px; letter-spacing: -0.01em; margin: 0; }
.fcard__price { font-family: var(--disp); font-weight: 500; color: var(--brand); }
.fcard__desc { color: var(--ink-soft); font-size: 14.5px; margin: 10px 0 0; }

/* ════════════════ Reviews (minimal carousel) ════════════════ */
.section--ink .sec-title { color: var(--bg); }
.rev-stage { position: relative; min-height: 230px; max-width: 860px; }
.rev-card {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.rev-card.is-active { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.rev-stars { color: var(--bg); font-size: 18px; letter-spacing: 5px; margin-bottom: 24px; opacity: .9; }
.rev-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.3;
  margin: 0 0 30px;
  text-wrap: balance;
  color: var(--bg);
}
.rev-who { display: flex; align-items: center; gap: 14px; }
.rev-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand);
  display: grid; place-items: center;
  font-family: var(--disp); font-weight: 600; color: var(--bg); font-size: 18px;
}
.rev-name { font-weight: 600; color: var(--bg); }
.rev-when { font-size: 13px; color: color-mix(in srgb, var(--bg) 55%, transparent); }
.rev-nav { display: flex; align-items: center; gap: 16px; margin-top: 44px; }
.rev-arrow {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--bg) 30%, transparent);
  background: transparent; color: var(--bg);
  display: grid; place-items: center; cursor: pointer; font-size: 18px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.rev-arrow:hover { background: var(--bg); color: var(--ink); }
.rev-count { font-family: var(--disp); font-weight: 500; font-size: 14px; letter-spacing: 0.08em; min-width: 64px; text-align: center; color: color-mix(in srgb, var(--bg) 70%, transparent); }

/* ════════════════ Visit ════════════════ */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
@media (max-width: 820px) { .visit { grid-template-columns: 1fr; } }
.visit__media { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); min-height: 340px; }
.visit__rows { display: flex; flex-direction: column; }
.visit__row { padding: 24px 0; border-bottom: 1px solid var(--line); }
.visit__row:first-child { padding-top: 0; }
.visit__row .label { display: block; margin-bottom: 10px; }
.visit__city { font-family: var(--disp); font-weight: 500; font-size: 24px; letter-spacing: -0.02em; margin: 0 0 8px; }
.visit__detail { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.visit__detail b { color: var(--ink); font-weight: 600; }

/* ════════════════ Buttons ════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--bg);
  border: 1px solid var(--ink);
  padding: 14px 26px;
  border-radius: 9px;
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover { background: var(--brand); border-color: var(--brand); }
.btn:hover .arr { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: transparent; color: var(--brand); border-color: var(--brand); }

/* ════════════════ Footer ════════════════ */
.foot {
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 8vw, 100px) var(--pad) 36px;
}
.foot__top {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 52px);
}
.foot__big { font-family: var(--disp); font-weight: 500; font-size: clamp(26px, 3.2vw, 40px); letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 18px; max-width: 320px; }
.foot__big .serif { color: var(--brand); }
.foot__sub { color: var(--ink-soft); max-width: 300px; font-size: 15px; }
.foot__col h4 { font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin: 0 0 16px; }
.foot__col a { display: block; margin-bottom: 9px; color: var(--ink-soft); font-size: 15.5px; transition: color .25s var(--ease); }
.foot__col a:hover { color: var(--brand); }
.foot__bottom {
  max-width: var(--maxw); margin: clamp(48px, 6vw, 80px) auto 0; padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: var(--faint);
}

/* ════════════════ Placeholder ════════════════ */
.ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background-color: var(--bg-2);
  background-image: repeating-linear-gradient(-45deg,
    transparent 0, transparent 11px,
    color-mix(in srgb, var(--ink) 7%, transparent) 11px,
    color-mix(in srgb, var(--ink) 7%, transparent) 12px);
}
.ph span {
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--card);
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-align: center;
}
.ph--brand { background-color: var(--brand-soft); }
.shot { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ════════════════ Reveal ════════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ════════════════ Responsive ════════════════ */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; }
  .feat { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .sec-head { grid-template-columns: 1fr; }
  .sec-note { justify-self: start; }
  .foot__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .hero__stats { grid-template-columns: 1fr; gap: 18px; }
  .foot__top { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__burger {
    display: inline-grid; place-items: center;
    width: 42px; height: 42px; border-radius: 9px;
    border: 1px solid var(--line); background: var(--card); cursor: pointer;
  }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 18px var(--pad) 26px; gap: 16px;
  }
}
