/* ===== Design tokens ===== */
:root {
  --ink: #16110d;          /* sumi-bläck */
  --ink-soft: #2a2018;
  --ink-2: #5b4f42;        /* rikare brödtext */
  --paper: #f7f2ea;        /* washi-papper */
  --paper-dim: #ece4d6;
  --accent: #c2a163;       /* champagneguld */
  --accent-dark: #a8863f;
  --accent-deep: #8a6d2f;  /* guld med AA-kontrast på ljust */
  --accent-soft: #e2c489;  /* ljusare guld för mörk botten */
  --muted: #6c6054;
  --line: rgba(22, 17, 13, 0.12);

  --maxw: 1180px;
  --measure: 62ch;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --ff-display: "Fraunces", Georgia, serif;
  --ff-body: "Inter", system-ui, -apple-system, sans-serif;

  /* modulär typskala */
  --step-3: clamp(2rem, 3.6vw, 2.7rem);
  --step-4: clamp(2.3rem, 5vw, 3.4rem);
  --step-5: clamp(3rem, 8.5vw, 6rem);

  --space-section: clamp(5rem, 9vw, 8rem);
  --space-section-tight: clamp(3.5rem, 6vw, 5.5rem);
  --on-dark: rgba(247, 242, 234, 0.82);
  --on-dark-soft: rgba(247, 242, 234, 0.62);
  --gold-line: rgba(226, 196, 137, 0.18);
  --shadow-gold: 0 12px 30px -10px rgba(168, 134, 63, 0.65);
  --nav-h: 70px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--ff-display); font-weight: 500; line-height: 1.07; letter-spacing: -0.018em; font-variation-settings: "opsz" 96; font-optical-sizing: none; text-wrap: balance; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }

section[id], #top { scroll-margin-top: 82px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 500; font-size: 1rem; letter-spacing: 0.015em;
  padding: 0.95rem 1.7rem; border-radius: 5px;
  border: 1px solid transparent; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn span[aria-hidden] { transition: transform 0.25s var(--ease); }
.btn:hover span[aria-hidden] { transform: translateX(3px); }
.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.95rem; }
.btn--accent { background: var(--accent); color: var(--ink); }
.btn--accent:hover { box-shadow: inset 0 0 0 1px var(--ink); }

/* Synlig tangentbordsfokus (WCAG 2.4.7) */
:where(a, button, [tabindex]):focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn:focus-visible { outline-offset: 4px; }
.call-fab:focus-visible { outline-offset: 4px; }

/* Diskret textlänk med animerad understrykning */
.link-quiet { position: relative; color: var(--paper); font-weight: 500; padding-bottom: 3px; }
.link-quiet::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--accent-soft); transition: right 0.35s var(--ease); }
.link-quiet:hover { color: var(--accent-soft); }
.link-quiet:hover::after { right: 0; }

/* ===== Eyebrow + brand-motiv ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: currentColor; opacity: 0.7; }
.eyebrow--light { color: var(--accent-soft); }
.eyebrow--dark { color: var(--accent-deep); }

.brand { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600; letter-spacing: -0.01em; }
.brand__mark { width: 6px; height: 6px; background: var(--accent); transform: rotate(45deg); flex: none; }

/* ===== Announcement bar ===== */
.announcement {
  position: relative; background: var(--ink); color: var(--paper);
  text-align: center; font-size: 0.9rem; padding: 0.7rem 2.75rem;
}
.announcement strong { color: var(--accent-soft); }
.announcement__close {
  position: absolute; right: 0.4rem; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: var(--paper); font-size: 1.3rem; line-height: 1;
  min-width: 44px; min-height: 44px; cursor: pointer; opacity: 0.65;
}
.announcement__close:hover { opacity: 1; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 65;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(247, 242, 234, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-color: var(--line);
}
.nav .brand, .nav__links a:not(.btn) { color: var(--paper); transition: color 0.35s var(--ease); }
.nav.is-scrolled .brand, .nav.is-scrolled .nav__links a:not(.btn) { color: var(--ink); }
.nav.is-scrolled .nav__toggle span { background: var(--ink); }
.nav.is-open .nav__toggle span { background: var(--ink); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a:not(.btn) { font-weight: 500; font-size: 0.98rem; position: relative; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--accent); transition: width 0.3s var(--ease);
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav.is-scrolled .nav__links .btn--accent { box-shadow: 0 6px 18px -8px rgba(168, 134, 63, 0.7); }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 12px; min-width: 48px; min-height: 48px; }
.nav__close { display: none; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--paper); margin: 5px 0; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease); }

.nav__scrim {
  position: fixed; inset: 0; z-index: 45; background: rgba(22, 17, 13, 0.5);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.nav__scrim.is-open { opacity: 1; }

/* ===== Seigaiha-motiv (svag vågtextur på mörka band) ===== */
.seigaiha { position: relative; }
.seigaiha > * { position: relative; z-index: 1; }
.seigaiha::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background-image:
    radial-gradient(circle at 50% 100%, transparent 9px, var(--accent-soft) 9px 10px, transparent 11px),
    radial-gradient(circle at 0 100%, transparent 9px, var(--accent-soft) 9px 10px, transparent 11px),
    radial-gradient(circle at 100% 100%, transparent 9px, var(--accent-soft) 9px 10px, transparent 11px);
  background-size: 40px 20px;
}

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; color: var(--paper); min-height: min(88svh, 860px); display: flex; margin-top: calc(-1 * var(--nav-h)); }
@supports not (height: 1svh) { .hero { min-height: min(88vh, 860px); } }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(120% 90% at 82% 0%, rgba(194, 161, 99, 0.32), transparent 55%),
    linear-gradient(rgba(18, 13, 9, 0.5), rgba(18, 13, 9, 0.78)),
    url("images/hero-lg.jpg");
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero__inner {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: end;
  gap: clamp(1.25rem, 4vw, 2.5rem); padding-block: clamp(4rem, 11vh, 7rem);
}
.hero__rail {
  align-self: stretch; writing-mode: vertical-rl; transform: rotate(180deg);
  display: flex; align-items: center; justify-content: flex-end;
  font-family: var(--ff-display); font-size: 0.8rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(226, 196, 137, 0.5);
  border-left: 1px solid rgba(226, 196, 137, 0.22); padding-left: 1.1rem;
}
.hero__content { align-self: end; max-width: 30ch; }
.hero__title { font-size: var(--step-5); margin-bottom: 1.4rem; font-variation-settings: "opsz" 144; letter-spacing: -0.03em; }
.hero__title em { font-style: italic; color: var(--accent-soft); }
.hero__lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: rgba(247, 242, 234, 0.85); max-width: 40ch; margin-bottom: 2.25rem; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.75rem; }
.hero__meta {
  position: absolute; right: 0; bottom: clamp(2rem, 5vh, 3rem);
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(247, 242, 234, 0.7);
}
.hero__rule { width: 34px; height: 1px; background: rgba(226, 196, 137, 0.5); }

/* ===== Strip (ticker) ===== */
.strip { background: var(--ink-soft); color: var(--paper); }
.strip__inner { display: flex; flex-wrap: wrap; align-items: baseline; gap: clamp(1rem, 3vw, 2.5rem); padding-block: 1.5rem; }
.strip__item { display: flex; align-items: baseline; gap: 0.55rem; }
.strip__item:not(:last-child)::after { content: "◆"; color: var(--accent); font-size: 0.5rem; margin-left: clamp(1rem, 3vw, 2.5rem); align-self: center; }
.strip__label { font-weight: 600; color: var(--paper); }
.strip__text { color: rgba(247, 242, 234, 0.6); }

/* ===== Sections ===== */
.section { padding-block: var(--space-section); }
.section--menu { padding-block: var(--space-section); }
.section--dark { background: var(--ink); color: var(--paper); }
/* Guld-hårlinje vid sektionsövergångar (premiumdetalj + skiljer mörka band) */
.feature, .section--dark, .footer, .cta-band { box-shadow: inset 0 1px 0 rgba(226, 196, 137, 0.16); }
.feature, .cta-band { box-shadow: inset 0 1px 0 rgba(226, 196, 137, 0.16), inset 0 -1px 0 rgba(226, 196, 137, 0.1); }
.section__head { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section__head h2 { font-size: var(--step-3); }
.section--menu .section__head h2 { font-size: var(--step-4); }
.section__sub { color: var(--ink-2); font-size: 1rem; max-width: 38ch; line-height: 1.55; }
.section__cta { margin-top: 3rem; text-align: center; }
.order-fallback { margin-top: 1rem; color: var(--muted); font-size: 0.95rem; }
.order-fallback a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--accent); }
.order-fallback a:hover { color: var(--accent-dark); }

@media (min-width: 721px) {
  .section__head { grid-template-columns: 1.3fr 1fr; align-items: end; }
  .section__head--solo { grid-template-columns: 1fr; }
  .section__sub { justify-self: end; text-align: right; }
}

/* ===== Intro / Om oss (asymmetrisk) ===== */
.intro { padding-block: var(--space-section-tight); }
.intro__grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.intro__head h2 { font-size: var(--step-3); }
.intro__body p { color: var(--ink-2); font-size: 1.12rem; max-width: var(--measure); line-height: 1.62; letter-spacing: -0.004em; }
@media (min-width: 721px) {
  .intro__grid { grid-template-columns: 5fr 7fr; align-items: start; }
  .intro__body { border-left: 1px solid var(--line); padding-left: clamp(1.5rem, 3vw, 2.5rem); }
}

/* ===== Meny ===== */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 2.2vw, 2rem); counter-reset: dish; }
.dish {
  counter-increment: dish; position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column; color: inherit; text-decoration: none;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.dish:hover { border-color: var(--accent); box-shadow: 0 22px 48px -30px rgba(22, 17, 13, 0.5); }
.dish:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; border-radius: 6px; }
.dish__img { position: relative; flex: none; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-dim); }
.dish__img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.06) contrast(1.02); transition: transform 0.8s var(--ease); }
.dish:hover .dish__img img { transform: scale(1.04); }
.dish__img::after { content: ""; position: absolute; inset: 0.55rem; border: 1px solid rgba(226, 196, 137, 0); transition: border-color 0.4s var(--ease); pointer-events: none; }
.dish:hover .dish__img::after { border-color: rgba(226, 196, 137, 0.6); }
.dish__body { flex: 1 1 auto; padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.dish__body::before { content: counter(dish, decimal-leading-zero); font-family: var(--ff-display); font-weight: 600; color: var(--accent-deep); font-size: 0.78rem; letter-spacing: 0.12em; }
.dish__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.dish__name { font-family: var(--ff-display); font-weight: 500; font-size: 1.2rem; line-height: 1.15; }
.dish__price { flex: none; font-family: var(--ff-display); font-weight: 600; color: var(--accent-deep); font-size: 1.02rem; white-space: nowrap; }
.dish__desc { color: var(--ink-2); font-size: 0.95rem; line-height: 1.55; }
.dish__order {
  margin-top: auto; padding-top: 0.7rem; display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; font-size: 0.85rem; color: var(--accent-deep);
}
.dish__arrow { transition: transform 0.3s var(--ease); }
.dish:hover .dish__arrow { transform: translate(3px, -3px); }

.menu-tags { list-style: none; padding: 0; margin: 2.75rem 0 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.4rem 0.25rem; }
.menu-tags li { position: relative; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding: 0.2rem 1.2rem; }
.menu-tags li:not(:last-child)::after { content: ""; position: absolute; right: -2px; top: 50%; width: 4px; height: 4px; background: var(--accent); transform: translateY(-50%) rotate(45deg); }
.menu-note { margin-top: 0.85rem; color: var(--muted); font-size: 0.85rem; }

/* ===== Feature-band (för sällskapet) ===== */
.feature { position: relative; color: var(--paper); overflow: hidden; }
.feature__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(18, 13, 9, 0.55), rgba(18, 13, 9, 0.72)), url("images/gallery/fest-sushi.jpg");
  background-size: cover; background-position: center;
}
.feature__inner { position: relative; z-index: 1; padding-block: var(--space-section); max-width: 580px; }
.feature__inner h2 { font-size: var(--step-3); margin-bottom: 1rem; }
.feature__inner p { color: rgba(247, 242, 234, 0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 46ch; }

/* ===== Öppettider ===== */
.hours { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
@media (min-width: 901px) { .hours__intro { padding-right: clamp(2rem, 4vw, 3.5rem); border-right: 1px solid var(--gold-line); } }
.hours h2 { font-size: var(--step-3); margin-bottom: 1.75rem; }
.hours__note { border-left: 3px solid var(--accent); padding: 0.4rem 0 0.4rem 1.25rem; color: rgba(247, 242, 234, 0.8); font-size: 0.98rem; }
.hours__note strong { display: block; color: var(--paper); font-family: var(--ff-display); font-size: 1.15rem; margin-bottom: 0.4rem; }
.hours__list { list-style: none; padding: 0; border-top: 1px solid rgba(247, 242, 234, 0.14); }
.hours__list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid rgba(247, 242, 234, 0.14); font-size: 1.1rem; }
.hours__list li:last-child { border-bottom: 0; }
.hours__list span:first-child { font-weight: 500; }
.hours__list span:last-child { color: rgba(247, 242, 234, 0.72); }
.hours__special { color: var(--accent-soft) !important; font-size: 0.92rem; }

/* ===== Kontakt ===== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact h2 { font-size: var(--step-3); margin-bottom: 2rem; }
.contact__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact__list li { display: flex; flex-direction: column; gap: 0.25rem; }
.contact__label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.contact__list a { font-size: 1.25rem; font-family: var(--ff-display); padding-bottom: 2px; background-image: linear-gradient(var(--accent), var(--accent)); background-size: 0 1px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size 0.35s var(--ease), color 0.25s var(--ease); }
.contact__list a:hover { background-size: 100% 1px; color: var(--accent-deep); }
.contact__social { display: flex; gap: 1.5rem; margin-top: 2rem; }
.contact__social a { font-weight: 500; border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.contact__social a:hover { border-color: var(--accent); color: var(--accent-dark); }
.contact__map iframe { width: 100%; height: 380px; border: 0; border-radius: 6px; filter: grayscale(0.35) contrast(1.05) brightness(1.02); }

/* ===== Galleri (asymmetriskt) ===== */
.gallery-sec { padding-block: var(--space-section); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 1rem; }
.gallery__item { position: relative; overflow: hidden; border-radius: 6px; margin: 0; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.05) contrast(1.02); transition: transform 0.7s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after { content: ""; position: absolute; inset: 0.55rem; border: 1px solid rgba(226, 196, 137, 0); transition: border-color 0.4s var(--ease); pointer-events: none; }
.gallery__item:hover::after { border-color: rgba(226, 196, 137, 0.6); }
.gallery__item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery__item:nth-child(2) { grid-column: 3 / 5; grid-row: 1; aspect-ratio: 16 / 10; }
.gallery__item:nth-child(3) { grid-column: 3 / 5; grid-row: 2; aspect-ratio: 16 / 10; }

/* ===== Omdömen ===== */
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(1.25rem, 2.2vw, 1.75rem); }
.review { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 1.9rem 1.75rem; margin: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.review__stars { color: var(--accent-deep); font-size: 1.05rem; letter-spacing: 0.18em; }
.review blockquote { margin: 0; font-family: var(--ff-display); font-weight: 500; font-size: 1.18rem; line-height: 1.45; color: var(--ink); }
.review figcaption { margin-top: auto; font-weight: 600; color: var(--ink-2); font-size: 0.95rem; }
.review figcaption span { color: var(--muted); font-weight: 500; }
.reviews__cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ===== Vanliga frågor ===== */
.faq__list { max-width: 760px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 0; font-family: var(--ff-display); font-size: 1.2rem; color: var(--ink); transition: color 0.25s var(--ease); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: ""; flex: none; width: 10px; height: 10px; border-right: 1.5px solid var(--accent-dark); border-bottom: 1.5px solid var(--accent-dark); transform: rotate(45deg); transition: transform 0.3s var(--ease); margin-right: 5px; margin-top: -4px; }
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq__item summary:hover { color: var(--accent-dark); }
.faq__a { padding: 0 0 1.4rem; color: var(--ink-2); max-width: 62ch; line-height: 1.62; }
.faq__a p { margin: 0; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: rgba(247, 242, 234, 0.8); padding-block: 3rem; text-align: center; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.brand--footer { color: var(--paper); font-size: 1.5rem; }
.footer__small { font-size: 0.85rem; color: rgba(247, 242, 234, 0.5); }

/* ===== Sticky mobil-CTA (docknad) ===== */
.sticky-cta {
  display: none; grid-template-columns: 1fr auto; gap: 0.6rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 0.75rem clamp(1rem, 4vw, 1.25rem);
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(22, 17, 13, 0.95), rgba(22, 17, 13, 0.8));
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(247, 242, 234, 0.1);
  transition: opacity 0.25s var(--ease);
}
.sticky-cta .btn { min-height: 52px; }
.sticky-cta .btn--accent { box-shadow: 0 10px 24px -12px rgba(168, 134, 63, 0.7); }
.btn--call { min-width: 96px; background: rgba(247, 242, 234, 0.1); color: var(--accent-soft); border: 1px solid var(--accent-soft); }
.btn--call:hover { background: rgba(226, 196, 137, 0.2); color: var(--paper); }
body.menu-open { overflow: hidden; }
body.menu-open .sticky-cta { opacity: 0; pointer-events: none; }

/* Flytande ring-knapp (hörn, desktop) */
.call-fab {
  position: fixed; right: clamp(1.25rem, 3vw, 2rem); bottom: clamp(1.25rem, 3vw, 2rem); z-index: 55;
  display: none; align-items: center; gap: 0.55rem;
  background: var(--accent); color: var(--ink); font-weight: 600; font-size: 0.98rem;
  padding: 0.85rem 1.35rem; border-radius: 999px;
  box-shadow: 0 12px 30px -10px rgba(168, 134, 63, 0.65);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.call-fab:hover { transform: translateY(-3px); color: var(--ink); box-shadow: 0 18px 38px -10px rgba(168, 134, 63, 0.8); }
.call-fab__icon { display: block; }
@media (min-width: 721px) { .call-fab { display: inline-flex; } }

/* Pil-länk (textlänk på ljus botten) */
.link-arrow { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.25rem; font-weight: 600; color: var(--accent-deep); }
.link-arrow span { transition: transform 0.25s var(--ease); }
.link-arrow:hover span { transform: translateX(3px); }

/* Footer-nav */
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.25rem; margin: 0.4rem 0; }
.footer__nav a { color: rgba(247, 242, 234, 0.85); font-weight: 500; font-size: 0.92rem; border-bottom: 1px solid transparent; padding-bottom: 1px; }
.footer__nav a:hover { color: var(--accent-soft); border-color: var(--accent-soft); }

/* ===== Landningssida (sid-hero + brödtext + CTA-band) ===== */
.hero--page { min-height: 0; }
.hero--page__inner { position: relative; z-index: 1; padding-block: clamp(7.5rem, 14vh, 9rem) clamp(3rem, 9vh, 5rem); max-width: 760px; }
.hero--page__inner h1 { font-size: var(--step-4); margin-bottom: 1.25rem; }
.crumbs { font-size: 0.85rem; letter-spacing: 0.04em; color: rgba(247, 242, 234, 0.7); margin-bottom: 1.5rem; }
.crumbs a { color: var(--accent-soft); }
.crumbs a:hover { text-decoration: underline; }

.prose .container { max-width: 760px; }
.prose__lead { font-size: 1.25rem; color: var(--ink); line-height: 1.6; margin-bottom: 2.5rem; max-width: var(--measure); }
.prose h2 { font-size: var(--step-3); margin-top: 2.75rem; margin-bottom: 1rem; }
.prose .eyebrow { margin-top: 2.75rem; margin-bottom: 0.7rem; }
.prose .eyebrow + h2 { margin-top: 0; }
.prose p { color: var(--ink-2); font-size: 1.08rem; max-width: var(--measure); margin-bottom: 1rem; line-height: 1.62; letter-spacing: -0.004em; }
.prose p a { color: var(--accent-deep); border-bottom: 1px solid var(--accent); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.75rem 0 0.5rem; }
.btn--call-light { color: var(--accent-deep); border-color: var(--accent); background: transparent; }
.btn--call-light:hover { background: rgba(194, 161, 99, 0.12); color: var(--accent-deep); }

.cta-band { position: relative; overflow: hidden; color: var(--paper); text-align: center; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(18, 13, 9, 0.72), rgba(18, 13, 9, 0.82)), url("images/hero-lg.jpg"); background-size: cover; background-position: center; }
.cta-band__inner { position: relative; z-index: 1; padding-block: var(--space-section); max-width: 620px; margin-inline: auto; }
.cta-band__inner h2 { font-size: var(--step-3); margin-bottom: 1rem; }
.cta-band__inner p { color: rgba(247, 242, 234, 0.85); margin-bottom: 2rem; }
.cta-band .hero__cta { justify-content: center; }

/* ===== Reveal (progressiv förbättring + stagger) ===== */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--d, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .dish:hover, .call-fab:hover,
  .dish:hover .dish__img img, .gallery__item:hover img,
  .dish:hover .dish__arrow, .btn:hover span[aria-hidden], .link-arrow:hover span { transform: none; }
}

/* ===== Responsivt ===== */
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .hours, .contact { grid-template-columns: 1fr; }
  .contact__map { order: -1; }
}

@media (max-width: 720px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); z-index: 70;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.75rem;
    background: var(--paper); padding: 2rem 2.5rem;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.35s var(--ease), visibility 0s 0.35s;
    box-shadow: -20px 0 50px -20px rgba(22, 17, 13, 0.4);
  }
  .nav__links.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity 0.3s var(--ease), transform 0.35s var(--ease); }
  .nav__links a:not(.btn) { font-size: 1.3rem; font-family: var(--ff-display); color: var(--ink); }
  .nav__links .btn { width: 100%; }
  .nav__close { display: block; position: absolute; top: 0.9rem; right: 1.1rem; background: none; border: 0; font-size: 2rem; line-height: 1; color: var(--ink); cursor: pointer; padding: 0.4rem; min-width: 44px; min-height: 44px; }
  .nav__close:hover { color: var(--accent-dark); }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__rail { display: none; }
  .hero__inner { grid-template-columns: 1fr; align-items: end; }
  .hero__content { max-width: none; }
  .hero__title { font-size: clamp(2.5rem, 12vw, 3.4rem); line-height: 1.05; }
  .hero__lead { max-width: 36ch; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 0.85rem; }
  .hero__cta .btn { width: 100%; min-height: 52px; }
  .hero__cta .link-quiet { align-self: center; margin-top: 0.25rem; }
  .hero__meta { position: static; margin-top: 2.5rem; }

  .menu-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: grid; }
  .footer { padding-bottom: calc(3rem + 84px + env(safe-area-inset-bottom)); }

  .contact__map iframe { height: 220px; filter: none; }

  .gallery { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .gallery__item:nth-child(1) { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 10; }
  .gallery__item:nth-child(2), .gallery__item:nth-child(3) { grid-column: auto; grid-row: auto; aspect-ratio: 1 / 1; }

  .contact__social a { padding: 0.5rem 0; min-height: 44px; display: inline-flex; align-items: center; }
  .hours__list li { flex-wrap: wrap; gap: 0.15rem 1rem; }
  .hours__special { flex-basis: 100%; text-align: left; }
  .menu-tags li { padding: 0.2rem 0.9rem; font-size: 0.74rem; letter-spacing: 0.12em; }
  .hero--page .hero__cta { flex-direction: column; align-items: stretch; }
  .hero--page .hero__cta .btn { width: 100%; min-height: 52px; }
  .prose__cta { flex-direction: column; align-items: stretch; }
  .prose__cta .btn { width: 100%; min-height: 52px; }
}
