/* ================================================================
   RESTAURANG SKÖNSMON — NORDIC NOIR
   Design System v2 · Premium Scandinavian Luxury
   ================================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --ink:       #0c0b09;
  --stone:     #1a1815;
  --mist:      #252220;
  --charcoal:  #302d29;
  --paper:     #f2ede5;
  --paper-dim: rgba(242,237,229,0.6);
  --paper-faint:rgba(242,237,229,0.3);
  --gold:      #b8963e;
  --gold-lt:   #d4af62;
  --gold-bg:   rgba(184,150,62,0.08);
  --white:     #ffffff;

  --ff-display: 'Cormorant Garamond', serif;
  --ff-body:    'DM Sans', sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);

  --r-sm: 3px;
  --r-md: 8px;
  --r-lg: 16px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  cursor: none;
}
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; cursor: none; }
ul { list-style: none; }
button { cursor: none; font-family: inherit; }

/* ── CUSTOM CURSOR ───────────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
}
#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(184,150,62,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.4s, border-color 0.4s;
}
body.cursor-hover #cursor-dot  { width: 14px; height: 14px; background: var(--gold-lt); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(212,175,98,0.7); }

/* ── PRELOADER ───────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.8s var(--ease-inout), visibility 0.8s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0;
  animation: loaderFade 0.6s 0.2s var(--ease-out) forwards;
}
.preloader-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: loaderLine 1.2s 0.4s var(--ease-out) forwards;
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderLine { to { width: 120px; } }

/* ── CONTAINER ───────────────────────────────────────────────── */
.wrap     { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.wrap--sm { max-width: 960px;  margin: 0 auto; padding: 0 48px; }

/* ── NAVBAR ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 32px 0;
  transition: padding 0.5s var(--ease-out), background 0.5s, backdrop-filter 0.5s;
}
.nav.solid {
  padding: 18px 0;
  background: rgba(12,11,9,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s var(--ease-out);
}
.nav__logo:hover {
  transform: translateY(-1px);
}
.nav__logo img {
  height: 36px;
  width: auto;
  filter: brightness(1.05);
  transition: opacity 0.3s;
}
.nav__logo:hover img { opacity: 0.7; }

/* ── TYPOGRAPHIC LOGO ────────────────────────────────────── */
.site-logo {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}
.site-logo__top {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
  margin-left: 2px;
}
.site-logo__bottom {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--paper);
  line-height: 0.85;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.site-logo:hover .site-logo__bottom {
  color: var(--gold-lt);
}
.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.nav__link {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-dim);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav__link:hover, .nav__link.is-active { color: var(--paper); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__actions { display: flex; justify-content: flex-end; align-items: center; gap: 16px; }
.nav__cta {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: var(--r-sm);
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.nav__cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(184,150,62,0.28);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--paper);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--r-sm);
  transition: all 0.35s var(--ease-out);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn--gold {
  color: var(--ink);
  background: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(184,150,62,0.3);
}
.btn--outline {
  color: var(--paper);
  border: 1px solid rgba(242,237,229,0.3);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--paper);
  background: rgba(242,237,229,0.05);
}
.btn--ghost {
  color: var(--gold);
  border: none;
  background: none;
  padding: 0;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  gap: 10px;
}
.btn--ghost::after {
  content: '→';
  transition: transform 0.3s var(--ease-out);
  display: inline-block;
}
.btn--ghost:hover::after { transform: translateX(6px); }
.btn__icon { font-size: 1rem; }

/* ── LABEL / EYEBROW ─────────────────────────────────────────── */
.label {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.label--light { color: rgba(212,175,98,0.7); }

/* ── SECTION TITLES ──────────────────────────────────────────── */
.display {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.display--xl  { font-size: clamp(4rem, 8vw, 9rem); }
.display--lg  { font-size: clamp(3rem, 5.5vw, 6.5rem); }
.display--md  { font-size: clamp(2rem, 3.5vw, 4rem); }
.display--sm  { font-size: clamp(1.5rem, 2.5vw, 2.6rem); }
.display i    { font-style: italic; color: var(--gold); }

.body-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--paper-dim);
}
.body-text--sm { font-size: 0.9rem; }

/* ── ANIMATION BASE ──────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
[data-reveal="up"]    { transform: translateY(60px); }
[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="clip"]  {
  clip-path: inset(100% 0 0 0);
  opacity: 1;
  transition: clip-path 1.1s var(--ease-out), opacity 0.1s;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0,0) scale(1);
}
[data-reveal="clip"].is-visible { clip-path: inset(0 0 0 0); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
/* Parallax container */
.hero__bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12,11,9,0.2)   0%,
    rgba(12,11,9,0.55)  50%,
    rgba(12,11,9,0.92) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
}
.hero__sup {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeUp 1s 1.2s both;
}
.hero__sup-line { width: 40px; height: 1px; background: var(--gold); }
.hero__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(5rem, 13vw, 14rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--paper);
  animation: fadeUp 1.2s 1s var(--ease-out) both;
}
.hero__title em {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-size: 0.65em;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.hero__sub {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper-dim);
  animation: fadeUp 1s 1.5s both;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 1.7s both;
}
.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s 2s both;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper-faint);
}
.hero__scroll-bar {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollBar 2s ease-in-out infinite;
}
@keyframes scrollBar {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.4; transform: scaleY(0.6); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE STRIP ───────────────────────────────────────────── */
.marquee-strip {
  background: var(--stone);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--paper-dim);
  padding: 0 40px;
  white-space: nowrap;
}
.marquee-track span.sep {
  color: var(--gold);
  padding: 0;
  font-style: normal;
  font-size: 0.6rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   PHILOSOPHY — SPLIT LAYOUT
   ================================================================ */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.philosophy__visual {
  position: relative;
  overflow: hidden;
}
.philosophy__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 20% center;
  transition: transform 8s ease;
}
.philosophy:hover .philosophy__visual img { transform: scale(1.04); }

.philosophy__visual-badge {
  position: absolute;
  bottom: 40px; right: 40px;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-style: italic;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
  backdrop-filter: blur(12px);
  background: rgba(12,11,9,0.3);
}
/* Floating accent image — fills lower-left empty area of philosophy visual */
.philosophy__visual-accent {
  position: absolute;
  bottom: 48px; left: 32px;
  width: 180px;
  height: 220px;
  overflow: hidden;
  border-radius: var(--r-sm);
  border: 3px solid var(--ink);
  box-shadow: 0 20px 56px rgba(0,0,0,0.7);
  transition: transform 0.5s var(--ease-out), box-shadow 0.4s;
  z-index: 2;
}
.philosophy__visual-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.philosophy__visual:hover .philosophy__visual-accent {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(0,0,0,0.8);
}
.philosophy__visual:hover .philosophy__visual-accent img {
  transform: scale(1.07);
}
.philosophy__body {
  background: var(--stone);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
  gap: 32px;
}
.philosophy__body .display { max-width: 420px; }
.philosophy__quote {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--paper-dim);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 8px 0;
}
.philosophy__stats {
  display: flex;
  gap: 0;
}
.philosophy__stat {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.philosophy__stat:first-child { padding-left: 0; }
.philosophy__stat:last-child  { border-right: none; padding-right: 0; padding-left: 32px; }
.philosophy__stat-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.philosophy__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin-top: 6px;
  display: block;
}

/* ================================================================
   MENU SHOWCASE
   ================================================================ */
.menu-showcase {
  padding: 140px 0;
  background: var(--ink);
}
.menu-showcase__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}
.menu-showcase__cards {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
}
.menu-card {
  position: relative;
  overflow: hidden;
  height: 500px;
  background: var(--stone);
}
.menu-card--wide { height: 600px; }
.menu-card__img {
  position: absolute;
  inset: 0;
}
.menu-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
  filter: brightness(0.75);
}
.menu-card:hover .menu-card__img img {
  transform: scale(1.07);
  filter: brightness(0.9);
}
.menu-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,9,0.9) 0%, transparent 60%);
  z-index: 1;
}
.menu-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(8px);
  transition: transform 0.5s var(--ease-out);
}
.menu-card:hover .menu-card__body { transform: translateY(0); }
.menu-card__from {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.menu-card__title {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--paper);
  line-height: 1.1;
}
.menu-card__desc {
  font-size: 0.85rem;
  color: var(--paper-dim);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.05s var(--ease-out), transform 0.4s 0.05s var(--ease-out);
}
.menu-card:hover .menu-card__desc { opacity: 1; transform: translateY(0); }

/* ================================================================
   PULL QUOTE BAND
   ================================================================ */
.quote-band {
  padding: 120px 48px;
  background: var(--stone);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.quote-band__mark {
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.4;
  display: block;
  margin-bottom: 24px;
}
.quote-band__text {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 32px;
}
.quote-band__source {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper-faint);
}

/* ================================================================
   GALLERY GRID — 3×2 clean editorial
   ================================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 4px;
}
.gallery__item {
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out), filter 0.4s;
  filter: brightness(0.82);
}
.gallery__item:hover img { transform: scale(1.06); filter: brightness(1); }


/* ================================================================
   EXPERIENCE SECTION
   ================================================================ */
.experience {
  padding: 160px 0;
  background: var(--ink);
}
.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}
.experience__visual {
  position: relative;
}
.experience__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
}
.experience__img-wrap img {
  width: 100%; height: 560px;
  object-fit: cover;
}
.experience__img-accent {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 260px; height: 260px;
  overflow: hidden;
  border-radius: var(--r-sm);
  border: 4px solid var(--ink);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.experience__img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.experience__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.experience__features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}
.experience__feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding-left 0.3s var(--ease-out);
}
.experience__feature:hover { padding-left: 8px; }
.experience__feature-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--gold-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  margin-top: 2px;
  background: var(--gold-bg);
}
.experience__feature-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 4px;
}
.experience__feature-desc {
  font-size: 0.88rem;
  color: var(--paper-dim);
  line-height: 1.6;
}

/* ================================================================
   RESERVATION CTA
   ================================================================ */
.reservation-cta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.reservation-cta__bg {
  position: absolute;
  inset: 0;
}
.reservation-cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.reservation-cta__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,11,9,0.85) 0%, rgba(12,11,9,0.5) 100%);
}
.reservation-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}
.reservation-cta__phone {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--paper);
  line-height: 1;
  transition: color 0.3s;
}
.reservation-cta__phone:hover { color: var(--gold); }
.reservation-cta__note {
  font-size: 0.82rem;
  color: var(--paper-faint);
  letter-spacing: 0.08em;
}

/* ── FLOATING BOOK BUTTON ────────────────────────────────────── */
.float-book {
  position: fixed;
  bottom: 36px; right: 36px;
  z-index: 700;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(184,150,62,0.35);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.3s;
  transform: translateY(80px);
  opacity: 0;
}
.float-book.visible {
  transform: translateY(0);
  opacity: 1;
}
.float-book:hover {
  background: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(184,150,62,0.45);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--stone);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 0 60px;
}
.footer__brand img {
  height: 38px;
  margin-bottom: 20px;
  opacity: 0.85;
}
.footer__brand p {
  font-size: 0.88rem;
  color: var(--paper-faint);
  line-height: 1.7;
  max-width: 280px;
}
.footer__col h5 {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li a {
  font-size: 0.88rem;
  color: var(--paper-faint);
  transition: color 0.3s, padding-left 0.3s var(--ease-out);
}
.footer__col li a:hover { color: var(--paper); padding-left: 6px; }
.footer__col address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--paper-faint);
  line-height: 1.7;
}
.footer__col address a { color: var(--gold); transition: color 0.3s; }
.footer__col address a:hover { color: var(--gold-lt); }
.footer__hours { margin-top: 16px; }
.footer__hrs-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--paper-faint);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.footer__hrs-row:last-child { border: none; }
.footer__hrs-time { color: var(--paper-dim); font-weight: 400; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.75rem; color: var(--paper-faint); }
.footer__bottom a { color: var(--gold); transition: color 0.3s; }
.footer__bottom a:hover { color: var(--gold-lt); }

/* ================================================================
   MENU PAGE
   ================================================================ */
.page-banner {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
}
.page-banner__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.5);
}
.page-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(12,11,9) 0%, transparent 60%);
}
.page-banner__content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}
.page-banner__content .display { line-height: 1; }

/* Sticky tabs */
.menu-nav {
  position: sticky;
  top: 72px;
  z-index: 200;
  background: rgba(26,24,21,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.menu-nav__inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-nav__btn {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-faint);
  padding: 20px 28px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
}
.menu-nav__btn:hover { color: var(--paper-dim); }
.menu-nav__btn.is-active { color: var(--gold); border-bottom-color: var(--gold); }

/* Menu grid */
.menu-body-section { padding: 80px 0 120px; }
.menu-panel { display: none; }
.menu-panel.is-active { display: block; }
.menu-subsection { margin-bottom: 64px; }
.menu-section-heading {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(184,150,62,0.3), transparent);
}
.menu-note-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 300;
  font-style: italic;
  color: var(--paper-faint);
  margin-bottom: 24px;
  font-family: var(--ff-display);
}
.dish-list { display: flex; flex-direction: column; }
.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: padding-left 0.3s var(--ease-out);
}
.dish:hover { padding-left: 6px; }
.dish__name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 3px;
}
.dish__desc {
  font-size: 0.82rem;
  color: var(--paper-faint);
  font-style: italic;
  font-family: var(--ff-display);
}
.dish__price {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
}

/* ================================================================
   OM OSS PAGE
   ================================================================ */
.about-intro {
  padding: 140px 0;
  background: var(--ink);
}
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.about-intro__img { overflow: hidden; }
.about-intro__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.about-intro__img:hover img { transform: scale(1.05); }
.about-intro__img:first-child {
  grid-column: 1/3;
  height: 340px;
}
.about-intro__img:nth-child(2) { height: 220px; }
.about-intro__img:nth-child(3) { height: 220px; }
/* Solo variant — single image fills full visual height */
.about-intro__imgs:has(.about-intro__img--solo) {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  height: 100%;
}
.about-intro__img--solo {
  grid-column: auto;
  height: 520px;
}
.about-intro__img--solo img {
  object-position: center 20%;
}
.about-intro__text { display: flex; flex-direction: column; gap: 24px; }
.about-intro__text .body-text { max-width: 420px; }

.about-values {
  padding: 120px 0;
  background: var(--stone);
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.value-tile {
  background: var(--mist);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
}
.value-tile:hover { background: var(--charcoal); }
.value-tile__num {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.value-tile__title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--paper);
}
.value-tile__desc {
  font-size: 0.88rem;
  color: var(--paper-faint);
  line-height: 1.7;
}

/* ================================================================
   KONTAKT PAGE
   ================================================================ */
.contact-layout {
  padding: 120px 0;
  background: var(--ink);
}
.contact-layout__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 48px; }
.contact-info .display { margin-bottom: 8px; }
.contact-block { border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 32px; }
.contact-block__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.contact-block__val {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--paper);
}
.contact-block__val a { transition: color 0.3s; }
.contact-block__val a:hover { color: var(--gold); }
.contact-block__sub {
  font-size: 0.85rem;
  color: var(--paper-faint);
  margin-top: 8px;
  line-height: 1.6;
}
.hours-grid { display: flex; flex-direction: column; gap: 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
  font-size: 0.88rem;
}
.hours-row:last-child { border: none; }
.hours-day { color: var(--paper-dim); }
.hours-time { color: var(--paper-faint); }
.contact-map {
  border-radius: var(--r-sm);
  overflow: hidden;
  position: sticky;
  top: 120px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
  filter: grayscale(70%) brightness(0.6) contrast(1.15) sepia(0.15);
  transition: filter 0.6s;
}
.contact-map:hover iframe {
  filter: grayscale(30%) brightness(0.8) contrast(1.05) sepia(0.05);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .philosophy { grid-template-columns: 1fr; min-height: auto; }
  .philosophy__visual { height: 60vw; max-height: 480px; }
  .philosophy__body   { padding: 64px 48px; }
  .menu-showcase__cards { grid-template-columns: 1fr 1fr; }
  .menu-showcase__cards .menu-card:nth-child(3) { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .experience__grid { grid-template-columns: 1fr; gap: 64px; }
  .experience__img-accent { display: none; }
  .about-intro__grid { grid-template-columns: 1fr; }
  .contact-layout__grid { grid-template-columns: 1fr; }
  .contact-map { position: static; }
}
@media (max-width: 768px) {
  .wrap, .wrap--sm { padding: 0 24px; }
  .nav__inner { padding: 0 24px; grid-template-columns: 1fr auto; }
  .nav__links {
    display: none; position: fixed; inset: 0;
    background: rgba(12,11,9,0.97);
    flex-direction: column; justify-content: center;
    gap: 40px; z-index: 799;
  }
  .nav__links.is-open { display: flex; }
  .nav__link { font-size: 1.2rem; letter-spacing: 0.15em; }
  .nav__actions { display: none; }
  .nav__burger { display: flex; z-index: 801; }
  html { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
  .hero__title { font-size: clamp(4rem, 16vw, 7rem); }
  .philosophy__body { padding: 48px 24px; }
  .philosophy__stats { flex-direction: column; gap: 24px; }
  .philosophy__stat { border: none; padding: 0; }
  .menu-showcase { padding: 80px 0; }
  .menu-showcase__header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .menu-showcase__cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 220px); }
  .footer__top { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 40px; }
  .about-values__grid { grid-template-columns: 1fr; }
  .float-book { bottom: 20px; right: 20px; }
  .quote-band { padding: 80px 24px; }
  .experience { padding: 80px 0; }
  .reservation-cta__content { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: center; }
  .menu-showcase__cards { gap: 4px; }
  .gallery__item { aspect-ratio: 1/1 !important; }
  .about-intro__imgs { grid-template-columns: 1fr; }
  .about-intro__img:first-child { grid-column: auto; height: 260px; }
  .about-intro__img:nth-child(2),
  .about-intro__img:nth-child(3) { display: none; }
}
