/* css/style.css */

:root {
  /* Brand */
  --brand-green: #183a30;
  --sidebar: #183a30;
  --green: var(--brand-green);
  --green-light: #234d42;
  --gold: #9e8945;
  --gold-soft: #c9bc86;

  /* Surfaces & text — editorial restraint */
  --surface-page: #f6f1e9;
  --surface-elevated: #ffffff;
  --surface-warm: #fdfbf6;

  --text-primary: #121816;
  --text-body: #3a423f;
  --text-muted: #5f6864;
  --text-faint: #7a837e;

  --border-subtle: rgba(24, 58, 48, 0.09);
  --border-strong: rgba(24, 58, 48, 0.16);

  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  --shadow-xs: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 10px 36px rgba(0, 0, 0, 0.09);
  --shadow-md: 0 18px 48px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 26px 64px rgba(0, 0, 0, 0.16);

  /** Legacy aliases (backward compat throughout file) */
  --bg: var(--surface-page);
  --text: var(--text-primary);
  --shadow: var(--shadow-md);

  /* Motion */
  --motion-fast: 0.18s;
  --motion-medium: 0.32s;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Cinzel", serif;
  --font-body: "Cormorant Garamond", serif;

  /* Vertical rhythm — fluid section padding */
  --section-py: clamp(4.25rem, 7vw + 2rem, 7.75rem);
  --section-px: clamp(1.25rem, 3.5vw + 0.5rem, 4.375rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 10003;
  padding: 12px 20px;
  background: var(--surface-page);
  color: var(--green);
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-160%);
  transition: transform var(--motion-medium) var(--ease-out-expo);
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

.skip-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(158, 137, 69, 0.22);
  color: var(--text-primary);
}

body {
  font-family: var(--font-body);
  background: var(--surface-page);
  color: var(--text-primary);
  overflow-x: hidden;
}

.hero h1,
.section-header h2,
.section-heading h2,
.inner-hero .hero-content h1,
.intro-card h3,
.home-hours h2,
.split-feature.home-split .split-feature__text h2,
.home-local__content h2,
.home-faq h2,
.form-panel h3,
.contact-card h3,
.menu-plate-card h4,
.split-feature__text h3,
.wine-card h4 {
  font-family: var(--font-display);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.sidebar-nav a:focus-visible,
input:focus-visible:not(.flatpickr-input),
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.hero .btn:focus-visible,
.hero .btn-outline:focus-visible {
  outline-offset: 4px;
  outline-color: var(--gold-soft);
}

/* SIDEBAR */

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 290px;
  height: 100vh;
  background: var(--sidebar);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 35px;
  z-index: 1000;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* Ljus “bricka” så mörkgrön logotyp syns mot sidebar (#183a30) */
.sidebar-top {
  padding: 18px 16px;
  margin-bottom: 12px;
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid rgba(158, 137, 69, 0.35);
  box-shadow: var(--shadow-lg);
}

.sidebar-top a {
  display: block;
  text-decoration: none;
}

.sidebar-logo {
  width: 170px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 28px;
  transition:
    color var(--motion-fast) var(--ease-out-expo),
    transform var(--motion-fast) var(--ease-out-expo);
  letter-spacing: 0.5px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--gold);
  transform: translateX(4px);
}

.sidebar-bottom {
  color: rgba(255, 255, 255, 0.5);
}

.sidebar-bottom p {
  font-size: 22px;
  color: var(--gold-soft);
}

.sidebar-bottom span {
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sidebar-bottom__contact {
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-bottom__link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.68);
  transition: color var(--motion-fast) var(--ease-out-expo);
}

.sidebar-bottom__link:hover {
  color: var(--gold-soft);
}

.sidebar-bottom__link--tel {
  white-space: nowrap;
}

.sidebar-legal {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-legal__link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.44);
  transition:
    color var(--motion-fast) var(--ease-out-expo),
    text-decoration-color var(--motion-fast) var(--ease-out-expo);
}

.sidebar-legal__link:hover {
  color: var(--gold-soft);
}

.sidebar-legal__link.is-active {
  color: var(--gold);
}

.sidebar-login-link {
  margin: 12px 0 0;
}

.main-content {
  margin-left: 290px;
}

/* HERO */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;

  background-color: #0f1211;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Ljus neutralsk läsbarhetsschema — foto behåller sina nyanser (ingen grön toneringsfilter) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    165deg,
    rgba(12, 14, 13, 0.45) 0%,
    rgba(8, 9, 9, 0.22) 48%,
    rgba(12, 14, 13, 0.58) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
}

.hero-subtitle {
  color: var(--gold-soft);
  letter-spacing: 0.42em;
  word-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 12px;
}

.hero-location {
  color: var(--gold-soft);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 0;
  margin-bottom: 32px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 3.8vw + 1.05rem, 3.85rem);
  line-height: 1.06;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 14px;
  letter-spacing: 0.035em;
}

.hero .hero-lead {
  color: rgba(253, 251, 246, 0.93);
  font-size: clamp(1.025rem, 0.94rem + 0.42vw, 1.225rem);
  line-height: 1.55;
  max-width: min(40ch, 90vw);
  margin: -20px auto 32px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 36px;
  text-decoration: none;
  transition:
    background-color var(--motion-fast) var(--ease-out-expo),
    color var(--motion-fast) var(--ease-out-expo),
    border-color var(--motion-fast) var(--ease-out-expo),
    box-shadow var(--motion-fast) var(--ease-out-expo),
    transform var(--motion-fast) var(--ease-out-expo);
  font-size: 20px;
  border-radius: 100px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: #8a763c;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
}

.btn-muted-outline {
  border: 1px solid rgba(24, 58, 48, 0.38);
  color: var(--green);
}

.btn-muted-outline:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-row--spaced {
  margin-top: 48px;
}

/* INTRO */

.intro {
  padding: var(--section-py) var(--section-px);
  background: var(--surface-page);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section-header span {
  position: relative;
  display: inline-block;
  color: var(--gold);
  letter-spacing: 0.42em;
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 500;
  padding-bottom: 14px;
  margin-bottom: 4px;
  text-indent: 0.42em;
}

.section-header span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: min(72px, 38vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(158, 137, 69, 0.55),
    transparent
  );
}

.section-header h2 {
  font-size: clamp(2.375rem, 3.25vw + 1.35rem, 3.875rem);
  font-weight: 500;
  max-width: 900px;
  margin: 20px auto 0;
  color: var(--green);
  line-height: 1.06;
  letter-spacing: 0.02em;
}

.section-header .local-snippet {
  margin-top: 28px;
  font-size: clamp(1.125rem, 0.95rem + 0.65vw, 1.375rem);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-body);
  line-height: 1.62;
  font-weight: 400;
}

.section-header .local-snippet strong {
  color: var(--green);
  font-weight: 600;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.8vw, 32px);
  align-items: stretch;
}

.intro-card {
  background: var(--surface-elevated);
  padding: clamp(34px, 3.5vw, 48px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition:
    transform var(--motion-medium) var(--ease-out-expo),
    box-shadow var(--motion-medium) var(--ease-out-expo),
    border-color var(--motion-medium) var(--ease-out-expo);
}

.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(158, 137, 69, 0.22);
}

.intro-card h3 {
  font-size: clamp(1.6rem, 1.35rem + 0.95vw, 2.125rem);
  font-weight: 500;
  color: var(--green);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.intro-card h3.intro-card__title-upper {
  text-transform: uppercase;
  min-height: 2.65em;
}

.intro-card p {
  font-size: clamp(1.125rem, 1rem + 0.55vw, 1.425rem);
  line-height: 1.45;
  color: var(--text-body);
}

.intro-card::after {
  content: "";
  flex: 1 1 auto;
  min-height: 0;
}

.intro-card p + p {
  margin-top: 0.6rem;
}

/* HOME extended (beyond hero + intro) */

.home-panel {
  padding: var(--section-py) var(--section-px);
  background: var(--surface-elevated);
}

.home-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.home-hours h2 {
  font-size: clamp(2.125rem, 2vw + 1.4rem, 2.875rem);
  font-weight: 500;
  color: var(--green);
  margin-bottom: 18px;
  line-height: 1.06;
}

.home-hours__lead {
  font-size: clamp(1.05rem, 0.92rem + 0.55vw, 1.275rem);
  line-height: 1.62;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 52ch;
}

.home-hours__booking-note {
  margin-top: 10px;
  font-size: clamp(0.98rem, 0.9rem + 0.35vw, 1.1rem);
  line-height: 1.52;
  color: var(--text-body);
  max-width: 54ch;
}

.home-hours__booking-note + .home-hours__booking-note {
  margin-top: 8px;
}

.home-hours__booking-note a[href^='tel:'] {
  white-space: nowrap;
}

.booking-hours-info {
  gap: 14px;
  margin-bottom: 22px;
}

.booking-hours-info dd .booking-hours-info__text {
  margin: 0;
  line-height: 1.55;
}

.booking-hours-info dd .booking-hours-info__text + .booking-hours-info__text {
  margin-top: 0.45rem;
}

.booking-time-hint {
  display: block;
  margin-top: 8px;
}

.home-hours__dl {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.home-hours__dl dt {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 500;
}

.home-hours__dl dd {
  font-size: clamp(1.05rem, 0.94rem + 0.35vw, 1.275rem);
  color: var(--text-primary);
}

.home-hours__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.home-hours__visual img {
  width: 100%;
  height: auto;
  min-height: 320px;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.split-feature.home-split {
  padding: var(--section-py) var(--section-px);
  margin: 0 0 0;
  margin-bottom: 0;
  background: var(--surface-page);
  max-width: none;
}

.split-feature.home-split:last-of-type {
  margin-bottom: 0;
}

.split-feature__text h2 {
  font-size: clamp(2rem, 1.6vw + 1.35rem, 2.375rem);
  font-weight: 500;
  color: var(--green);
  margin-bottom: 18px;
  line-height: 1.08;
}

.home-inline-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.home-local {
  padding: var(--section-py) var(--section-px);
  background: linear-gradient(
    185deg,
    rgba(253, 251, 246, 0.94) 0%,
    var(--surface-page) 55%,
    #ebe4d9 160%
  );
}

.home-local__content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.home-local__content h2 {
  font-size: clamp(2.125rem, 2vw + 1.35rem, 2.75rem);
  font-weight: 500;
  color: var(--green);
  margin-bottom: 22px;
  line-height: 1.08;
}

.home-local__content p {
  font-size: clamp(1.1rem, 0.94rem + 0.65vw, 1.35rem);
  line-height: 1.62;
  color: var(--text-body);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.home-local__content a {
  color: var(--green);
  font-weight: 600;
  text-underline-offset: 3px;
}

.home-local__content .btn:not(:hover) {
  text-decoration: none;
}

.home-faq {
  padding: var(--section-py) var(--section-px) clamp(5rem, 8vw + 2rem, 8.5rem);
  background: var(--surface-page);
}

.home-faq h2 {
  font-size: clamp(2.125rem, 2vw + 1.35rem, 2.75rem);
  font-weight: 500;
  margin-bottom: 14px;
  text-align: center;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-faq__intro {
  text-align: center;
  font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.2rem);
  color: var(--text-body);
  line-height: 1.62;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

.home-faq__intro a {
  color: var(--green);
  font-weight: 600;
}

.home-faq__inner {
  max-width: 760px;
  margin: 0 auto;
}

.home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-faq__item {
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.home-faq__item summary {
  cursor: pointer;
  padding: 20px 28px;
  font-size: clamp(1.075rem, 0.96rem + 0.55vw, 1.275rem);
  color: var(--green);
  font-weight: 500;
  font-family: var(--font-body);
  list-style: none;
  position: relative;
  padding-right: 48px;
  transition: background var(--motion-fast) var(--ease-out-expo);
}

.home-faq__item summary:hover {
  background: rgba(246, 241, 233, 0.45);
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--gold);
  font-weight: 400;
}

.home-faq__item[open] summary::after {
  content: "−";
}

.home-faq__item[open] summary {
  padding-bottom: 14px;
}

.home-faq__item summary:focus {
  outline: none;
}

.home-faq__item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  position: relative;
  z-index: 1;
}

.home-faq__summary-label {
  pointer-events: none;
}

.home-faq__item .home-faq__panel p {
  padding: 0 28px;
  margin: 0;
  font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.2rem);
  line-height: 1.45;
  color: var(--text-body);
}

.home-faq__item .home-faq__panel p + p {
  margin-top: 0.45rem;
}

.home-faq__item .home-faq__panel p:first-child {
  padding-top: 2px;
}

.home-faq__item .home-faq__panel p:last-child {
  padding-bottom: 20px;
}

.home-faq__item .home-faq__panel p a {
  color: var(--green);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .skip-link {
    transition: none;
  }
}

/* INNER PAGES */

.inner-hero {
  position: relative;
  isolation: isolate;
  min-height: 52vh;
  overflow: hidden;
  background-color: var(--green);
  display: flex;
  align-items: flex-end;
  padding: var(--section-py) var(--section-px) clamp(3rem, 5vw, 4.5rem);
}

.inner-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.inner-hero .hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 720px;
  margin: 0;
  padding: 0;
}

.inner-hero .hero-content h1 {
  font-size: clamp(2.5rem, 2.5vw + 1.5rem, 3.5rem);
  margin-bottom: 18px;
  color: #faf7f0;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.inner-hero.inner-hero--meny .hero-content h1,
.inner-hero.inner-hero--kontakt .hero-content h1 {
  text-transform: uppercase;
}

.inner-hero.inner-hero--kontakt .hero-content .hero-lead + .hero-lead {
  margin-top: 0.65rem;
}

.inner-hero .hero-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.075rem, 0.95rem + 0.45vw, 1.3rem);
  line-height: 1.55;
  max-width: 56ch;
}

.page-main {
  padding: var(--section-py) var(--section-px) clamp(5rem, 8vw + 2rem, 8.5rem);
  background: var(--surface-page);
}

.section-heading {
  margin-bottom: clamp(2rem, 3vw + 1rem, 2.75rem);
}

.section-heading span {
  color: var(--gold);
  letter-spacing: 0.32em;
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2.25rem, 2.2vw + 1.35rem, 3rem);
  color: var(--green);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0.02em;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: clamp(3rem, 5vw + 1rem, 5rem);
}

.split-feature--flip .split-feature__text {
  order: 2;
}

.split-feature--flip .split-feature__visual {
  order: 1;
}

.split-feature__visual img {
  width: 100%;
  min-height: 340px;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.split-feature__text h3 {
  font-size: clamp(2rem, 1.65vw + 1.2rem, 2.375rem);
  font-weight: 500;
  color: var(--green);
  margin-bottom: 18px;
}

.split-feature__text h2.split-feature__title-upper {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.split-feature__text p {
  font-size: clamp(1.05rem, 0.92rem + 0.55vw, 1.3rem);
  line-height: 1.5;
  color: var(--text-body);
}

.split-feature__text p + p {
  margin-top: 0.65rem;
}

.menu-category {
  margin-bottom: 56px;
}

/* Utskilt bar — tydligt avgränsad mot middagsmenyn */
.menu-category--barmeny {
  position: relative;
  padding: clamp(1.15rem, 2.2vw + 0.35rem, 1.85rem) clamp(1.1rem, 2.5vw, 1.75rem)
    clamp(1.25rem, 2vw + 0.5rem, 1.9rem);
  border-radius: var(--radius-md);
  border: 1px solid rgba(158, 137, 69, 0.32);
  background:
    linear-gradient(155deg, rgba(255, 252, 247, 0.97) 0%, rgba(248, 242, 232, 0.88) 45%, rgba(240, 230, 216, 0.42) 100%),
    var(--surface-warm);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.menu-category--barmeny::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 100%);
  opacity: 0.95;
}

.menu-category--barmeny .menu-barmeny-intro {
  margin: 0 0 1.15rem;
  max-width: 42rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.92rem + 0.25vw, 1.12rem);
  font-weight: 500;
  line-height: 1.52;
  color: var(--text-body);
}

.menu-category h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(24, 58, 48, 0.15);
}

.menu-category.menu-category--barmeny > h3 {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(158, 137, 69, 0.22);
}

.menu-category--brunch .menu-brunch-head h3 {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.menu-brunch-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px 18px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(24, 58, 48, 0.15);
}

.menu-brunch-head h3 {
  flex: 0 1 auto;
  margin: 0;
}

.menu-brunch-badge {
  margin: 0;
  flex: 0 1 auto;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 0.74rem + 0.3vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--green);
  line-height: 1.3;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(24, 58, 48, 0.2);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.95) 0%, rgba(246, 242, 236, 0.85) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.menu-category-promo {
  margin: 0 0 1.35rem;
  max-width: 38rem;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: rgba(24, 58, 48, 0.92);
}

.menu-subsection-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin: 2rem 0 10px;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(24, 58, 48, 0.14);
}

.menu-category--brunch .menu-subsection-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.menu-plate-card {
  background: var(--surface-elevated);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--motion-medium) var(--ease-out-expo),
    box-shadow var(--motion-medium) var(--ease-out-expo);
}

.menu-plate-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.menu-plate-card p.desc {
  margin-top: 10px;
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.45;
}

.menu-list-row span.detail {
  font-size: 19px;
  color: var(--text-muted);
  flex: 1;
}

.wine-card {
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--motion-medium) var(--ease-out-expo),
    box-shadow var(--motion-medium) var(--ease-out-expo);
}

.wine-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.wine-card p {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 6px;
}

.feature-banner {
  margin: clamp(3rem, 5vw, 4.75rem) 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.contact-card {
  background: var(--surface-elevated);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.contact-card dd {
  color: var(--text-body);
}

.contact-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  object-fit: cover;
  min-height: 420px;
}

.form-panel {
  background: var(--surface-elevated);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.form-note {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 16px;
}

.menu-plate-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.menu-plate-card figcaption {
  padding: 22px 26px 26px;
}

.menu-plate-card h4 {
  font-size: 26px;
  color: var(--green);
  margin-bottom: 8px;
}

.menu-plate-card .price {
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
}

.menu-list {
  max-width: 760px;
}

.menu-list-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(24, 58, 48, 0.12);
}

.menu-list-row:last-child {
  border-bottom: none;
}

.menu-list-row strong {
  font-size: 24px;
  color: var(--green);
  font-weight: 500;
}

.menu-list-row .price {
  font-size: 22px;
  color: var(--gold);
  white-space: nowrap;
}

.wine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.wine-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.wine-card-body {
  padding: 18px 20px 22px;
}

.wine-card h4 {
  font-size: 22px;
  color: var(--green);
}

.feature-banner img {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
}

.chef-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.chef-grid img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card h3 {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 22px;
}

.contact-card dl {
  font-size: 22px;
  line-height: 1.65;
}

.contact-card dt {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 18px;
}

.contact-card dt:first-child {
  margin-top: 0;
}

.contact-card-form {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(24, 58, 48, 0.12);
}

.contact-card-form__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green);
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-card-form__hint {
  margin-bottom: 16px;
}

.contact-card-form__grid {
  gap: 18px;
}

.contact-card-form__thanks {
  margin-top: 8px;
}

.contact-card-form__thanks--visible {
  margin-top: 18px;
  padding: 20px 24px;
  background: rgba(24, 58, 48, 0.08);
  border: 1px solid rgba(24, 58, 48, 0.18);
  border-radius: var(--radius-lg);
}

.contact-card-form__thanks p {
  color: var(--green);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}

[hidden] {
  display: none !important;
}

.contact-card-form__error {
  color: #8b2e2e;
  margin-bottom: 12px;
}

.contact-card-form .btn-submit {
  margin-top: 4px;
}

.contact-card-form__legal {
  margin-top: 4px;
}

.form-panel h3 {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  gap: 22px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field label {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(24, 58, 48, 0.18);
  font-family: inherit;
  font-size: 20px;
  background: var(--bg);
}

/* Align custom chevron with padding from right edge — native picker sits flush to border otherwise */
.form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-inline-end: 44px;
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23183a30' stroke-opacity='0.58' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 22px center;
  background-repeat: no-repeat;
  background-size: 14px auto;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  margin-top: 28px;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 20px;
}

/* Bokningsdatum: smal skärm = native date (iOS/Android kalender), desktop = Flatpickr */
.form-field--booking-date {
  position: relative;
}

/* Datum + Antal gäster: Native date-kontroller blir högre än angiven min-height på desktop;
 * låsa samma yttre höjd för båda (min-height höjer bara golvet och stoppar inte att datum växer). */
.form-field--booking-date input.booking-date-input[type="date"],
.form-field--booking-date input.booking-date-input.booking-date--native {
  width: 100%;
  box-sizing: border-box;
  height: 56px;
  min-height: 56px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(24, 58, 48, 0.2);
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--green);
  background: linear-gradient(180deg, #fdfcf8 0%, var(--bg) 100%);
}

.form-field--booking-guests select {
  width: 100%;
  box-sizing: border-box;
  height: 56px;
  min-height: 56px;
  padding: 12px 44px 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(24, 58, 48, 0.2);
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--green);
  background-color: transparent;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23183a30' stroke-opacity='0.58' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #fdfcf8 0%, var(--bg) 100%);
  background-position:
    right 22px center,
    center;
  background-repeat: no-repeat, no-repeat;
  background-size:
    14px auto,
    100% 100%;
  cursor: pointer;
}

.form-field--booking-date input.booking-date-input[type="date"],
.form-field--booking-date input.booking-date-input.booking-date--native {
  -webkit-appearance: none;
  appearance: none;
}

.form-field--booking-date input[type="date"]:focus {
  outline: none;
  border-color: rgba(158, 137, 69, 0.55);
  box-shadow: 0 0 0 3px rgba(158, 137, 69, 0.15);
}

.form-field--booking-date
  input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.55;
  padding: 8px;
  margin-right: -4px;
  border-radius: 10px;
}

.form-field--booking-date
  input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 0.95;
  background: rgba(158, 137, 69, 0.14);
}

.form-field--booking-guests select:focus {
  outline: none;
  border-color: rgba(158, 137, 69, 0.55);
  box-shadow: 0 0 0 3px rgba(158, 137, 69, 0.15);
}

/* Flatpickr alt-fält (endast desktop) */
.form-field input.booking-date-alt,
.booking-date-alt {
  width: 100%;
  padding: 17px 22px;
  border-radius: 14px;
  border: 1px solid rgba(24, 58, 48, 0.2);
  font-family: inherit;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  background: linear-gradient(180deg, #fdfcf8 0%, var(--bg) 100%);
  color: var(--green);
  cursor: pointer;
  box-sizing: border-box;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.booking-date-alt:focus,
.booking-date-alt:hover {
  border-color: rgba(158, 137, 69, 0.55);
  box-shadow: 0 0 0 3px rgba(158, 137, 69, 0.12);
}

.booking-date-alt::placeholder {
  color: rgba(24, 58, 48, 0.35);
}

/* Flatpickr-dekorerad kalender: endast om boka-bord initierar Flatpickr (se inline-skript: smal/native, eller grov primärpekare utan any-pointer:fine → native). */
@media (min-width: 768px) {
  .form-field--booking-date input.flatpickr-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .flatpickr-calendar {
    width: 360px;
    max-width: calc(100vw - 32px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(158, 137, 69, 0.38);
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    background: var(--bg);
    z-index: 1200;
  }

  .flatpickr-months {
    background: var(--green);
    padding: 12px 46px;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  /* Absolut positioned .flatpickr-current-month gives no in-flow height; height:auto on this row collapses strip + Flatpickrs overflow:hidden clips .cur-month. */
  .flatpickr-months .flatpickr-month {
    overflow: visible !important;
    min-height: 54px !important;
  }

  .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month {
    left: 8px !important;
  }

  .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
    right: 8px !important;
  }

  .flatpickr-prev-month,
  .flatpickr-next-month {
    top: unset !important;
    padding: 10px !important;
    transform: translateY(-2px);
    border-radius: 12px !important;
  }

  .flatpickr-prev-month:hover,
  .flatpickr-next-month:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .flatpickr-prev-month svg,
  .flatpickr-next-month svg {
    fill: var(--gold-soft) !important;
  }

  .flatpickr-current-month {
    padding: 6px 0 !important;
    height: auto !important;
    min-height: 40px !important;
  }

  .flatpickr-current-month .cur-month {
    font-family: "Cinzel", serif;
    font-size: 12px !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase;
    color: #fefcf8 !important;
    font-weight: 500 !important;
  }

  .flatpickr-current-month input.cur-year {
    font-family: "Cormorant Garamond", serif;
    color: #fefcf8 !important;
    font-weight: 600 !important;
    padding: 0 2px !important;
    margin: 0 !important;
    font-size: 19px !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    -moz-appearance: textfield !important;
  }

  .flatpickr-current-month input.cur-year::-webkit-inner-spin-button,
  .flatpickr-current-month input.cur-year::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .flatpickr-current-month .numInputWrapper {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 10px !important;
    padding: 4px 6px !important;
  }

  .flatpickr-current-month .numInputWrapper:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .flatpickr-innerContainer {
    padding: 12px 12px 16px;
    background: linear-gradient(178deg, #fffdf9 0%, var(--bg) 100%);
  }

  .flatpickr-weekdays {
    padding: 10px 0 6px;
  }

  span.flatpickr-weekday {
    color: #0d1f18;
    font-size: 11px !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase;
    font-family: "Cinzel", serif;
    font-weight: 700 !important;
    opacity: 1 !important;
  }

  .flatpickr-day {
    margin: 2px !important;
    border-radius: 13px !important;
    border: none !important;
    height: 44px !important;
    max-height: none !important;
    line-height: 44px !important;
    font-size: 19px !important;
    font-weight: 600 !important;
    color: #0a1814 !important;
  }

  .flatpickr-day:hover:not(.flatpickr-disabled):not(.selected) {
    background: rgba(158, 137, 69, 0.2);
  }

  .flatpickr-day.selected,
  .flatpickr-day.selected:hover,
  .flatpickr-day.startRange,
  .flatpickr-day.endRange {
    background: var(--gold) !important;
    color: #fff !important;
  }

  .flatpickr-day.today:not(.selected) {
    border: 1px solid rgba(158, 137, 69, 0.55) !important;
    background: rgba(158, 137, 69, 0.08);
    color: #05100c !important;
    font-weight: 700 !important;
  }

  .flatpickr-day.flatpickr-disabled {
    color: rgba(10, 24, 20, 0.38) !important;
    opacity: 1 !important;
  }

  .flatpickr-day.prevMonthDay,
  .flatpickr-day.nextMonthDay {
    color: rgba(10, 24, 20, 0.52) !important;
    opacity: 1 !important;
    font-weight: 500 !important;
  }
}

.inner-hero.inner-hero--plain {
  background-image: none;
  min-height: 38vh;
}

[x-cloak] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  padding: 22px 22px max(22px, env(safe-area-inset-bottom));
  background: rgba(24, 58, 48, 0.98);
  border-top: 1px solid rgba(158, 137, 69, 0.38);
  box-shadow: 0 -14px 44px rgba(0, 0, 0, 0.28);
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-end;
  justify-content: space-between;
}

.cookie-banner__text {
  flex: 1 1 280px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.5;
}

.cookie-banner__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--gold-soft);
  margin-bottom: 8px;
  font-weight: 500;
}

.cookie-banner__text p {
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-banner__link {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__link:hover {
  color: #fff;
}

.cookie-banner .cookie-banner__actions .btn {
  appearance: none;
  -webkit-appearance: none;
}

.cookie-banner .cookie-banner__actions .btn-outline {
  background-color: var(--bg);
  color: var(--green);
  border: 2px solid rgba(158, 137, 69, 0.65);
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

.cookie-banner .cookie-banner__actions .btn-outline:hover {
  background-color: #fff;
  color: var(--green);
  border-color: var(--gold);
}

.cookie-banner .cookie-banner__actions .btn:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

/* MOBILE HEADER */

.mobile-header {
  display: none;
}

/* MOBILE */

@media (max-width: 991px) {
  .sidebar:not(.active) {
    visibility: hidden;
    pointer-events: none;
  }

  .sidebar.active {
    visibility: visible;
    pointer-events: auto;
  }

  .sidebar {
    transform: translateX(-100%);
    transition: 0.4s ease;
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 88px;
    height: auto;
    background: rgba(24, 58, 48, 0.97);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 16px;
    z-index: 999;
  }

  /* Större, tydligare logotyp i mobil-header (tidigare ~118×52px) */
  .mobile-logo {
    width: auto;
    max-width: min(52vw, 198px);
    max-height: 64px;
    padding: 10px 14px;
    background: var(--bg);
    border-radius: 14px;
    border: 1px solid rgba(158, 137, 69, 0.38);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    object-fit: contain;
  }

  .menu-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }

  .menu-toggle:focus-visible {
    outline: 2px solid var(--gold-soft);
    outline-offset: 3px;
  }

  .menu-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
  }

  .main-content {
    margin-left: 0;
  }

  .hero {
    padding-top: clamp(100px, 18vw + 3rem, 140px);
    padding-bottom: clamp(3.25rem, 6vw + 1.75rem, 5rem);
    /* Yttre luft + säkra notchar; inre .hero-content klämmer text (flex min-width: 0). */
    padding-left: max(
      clamp(1.2rem, 5.5vw + 0.65rem, 2.75rem),
      calc(env(safe-area-inset-left, 0px) + 10px)
    );
    padding-right: max(
      clamp(1.2rem, 5.5vw + 0.65rem, 2.75rem),
      calc(env(safe-area-inset-right, 0px) + 10px)
    );
  }

  .hero .hero-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding-inline: clamp(0rem, 1.25vw + 0.125rem, 0.5rem);
  }

  .hero .hero-subtitle {
    font-size: clamp(12px, 2.85vw + 0.5rem, 15px);
    letter-spacing: clamp(0.08em, 1.1vw + 0.04em, 0.25em);
    line-height: 1.4;
    padding-inline: 0;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 4.5vw + 0.85rem, 2.85rem);
    letter-spacing: 0.02em;
    line-height: 1.1;
    overflow-wrap: anywhere;
    margin-bottom: 12px;
  }

  .hero .hero-location {
    font-size: clamp(10px, 2.35vw + 0.42rem, 12px);
    letter-spacing: clamp(0.04em, 0.6vw + 0.02em, 0.14em);
    max-width: min(100%, 52ch);
    margin-top: 0;
    margin-bottom: 26px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
    padding: 0;
  }

  .inner-hero {
    padding: clamp(100px, 18vw + 3rem, 140px) var(--section-px)
      clamp(3.25rem, 6vw + 1.75rem, 5rem);
    align-items: flex-end;
    min-height: 46vh;
  }

  .page-main {
    padding: clamp(3.25rem, 5vw + 2rem, 4.75rem) var(--section-px)
      clamp(5rem, 9vw + 2.75rem, 7.25rem);
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.4rem);
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .split-feature--flip .split-feature__text,
  .split-feature--flip .split-feature__visual {
    order: unset;
  }

  .chef-grid,
  .contact-layout,
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .form-field--booking-date input.booking-date-input[type="date"],
  .form-field--booking-date input.booking-date-input.booking-date--native {
    height: 52px;
    min-height: 52px;
    font-size: 19px;
    padding: 13px 16px;
  }

  .form-field select {
    padding-inline-end: 40px;
    background-position: right 20px center;
  }

  .form-field--booking-guests select {
    height: 52px;
    min-height: 52px;
    font-size: 19px;
    padding: 13px 40px 13px 16px;
    background-position:
      right 20px center,
      center;
  }

  .booking-date-alt {
    font-size: 19px !important;
    padding: 15px 18px !important;
  }

  .split-feature__visual img {
    min-height: 260px;
  }

  .chef-grid img {
    height: 280px;
  }

  .intro {
    padding: clamp(4.5rem, 10vw + 2rem, 5.75rem) var(--section-px);
  }

  .section-header h2 {
    font-size: 42px;
  }

  .section-header .local-snippet {
    font-size: 19px;
    margin-top: 20px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .home-panel {
    padding: clamp(4rem, 9vw + 2rem, 4.75rem) var(--section-px);
  }

  .home-panel__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-hours h2 {
    font-size: 34px;
  }

  .home-hours__visual img {
    min-height: 240px;
    max-height: none;
  }

  .split-feature.home-split {
    padding: clamp(4rem, 9vw + 2rem, 4.75rem) var(--section-px);
    margin-bottom: 0;
  }

  .split-feature__text h2 {
    font-size: 32px;
  }

  .home-inline-nav .btn {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
  }

  .home-local {
    padding: clamp(4rem, 9vw + 2rem, 4.75rem) var(--section-px);
  }

  .home-local__content h2 {
    font-size: 32px;
  }

  .home-local__content p {
    font-size: 19px;
  }

  .home-faq {
    padding: clamp(4rem, 9vw + 2rem, 4.75rem) var(--section-px)
      clamp(5rem, 10vw + 2.75rem, 6.75rem);
  }

  .home-faq h2 {
    font-size: 34px;
  }

  .home-faq__item summary {
    font-size: 19px;
    padding: 18px 22px;
    padding-right: 42px;
  }

  .home-faq__item summary::after {
    right: 20px;
  }

  .home-faq__item[open] summary {
    padding-bottom: 12px;
  }

  .home-faq__item .home-faq__panel p {
    font-size: 18px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .home-faq__item .home-faq__panel p:last-child {
    padding-bottom: 18px;
  }

  .intro-card {
    padding: 35px;
  }

  .intro-card h3 {
    font-size: 30px;
  }

  .intro-card p {
    font-size: 22px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }

  /* ── Menysida — mobil & surfplatta (meny.php) ── */
  .inner-hero .hero-content {
    width: 100%;
    max-width: min(720px, 100%);
    min-width: 0;
    box-sizing: border-box;
    padding-inline: clamp(0rem, 1.25vw + 0.125rem, 0.5rem);
  }

  .inner-hero .hero-content .hero-subtitle {
    font-size: clamp(11px, 2vw + 0.5rem, 14px);
    letter-spacing: clamp(0.1em, 0.85vw + 0.06em, 0.28em);
    line-height: 1.38;
    margin-bottom: 8px;
  }

  .inner-hero .hero-content h1 {
    font-size: clamp(1.55rem, 4.2vw + 0.95rem, 2.75rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
    margin-bottom: 14px;
  }

  .inner-hero .hero-lead {
    font-size: clamp(1rem, 0.88rem + 0.52vw, 1.22rem);
    line-height: 1.54;
    max-width: none;
  }

  .menu-category {
    margin-bottom: clamp(2.25rem, 4vw + 1.25rem, 3rem);
  }

  .menu-category h3 {
    font-size: clamp(1.2rem, 0.92rem + 1.1vw, 1.6rem);
    letter-spacing: clamp(2px, 0.35vw + 1px, 3px);
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .menu-category.menu-category--barmeny > h3 {
    margin-bottom: 10px;
    padding-bottom: 8px;
  }

  .menu-category--barmeny {
    padding: clamp(1rem, 1.85vw + 0.65rem, 1.65rem)
      clamp(0.92rem, 3.5vw + 0.4rem, 1.55rem)
      clamp(1.05rem, 2vw + 0.65rem, 1.65rem);
  }

  .menu-category--barmeny .menu-barmeny-intro {
    font-size: clamp(0.98rem, 0.9rem + 0.38vw, 1.08rem);
    line-height: 1.5;
  }

  .menu-brunch-badge {
    text-align: left;
    letter-spacing: 0.11em;
    padding: 9px 14px;
  }

  .menu-category-promo {
    font-size: clamp(1.02rem, 0.93rem + 0.42vw, 1.26rem);
    line-height: 1.46;
    max-width: none;
    margin-bottom: 1.1rem;
  }

  .menu-subsection-title {
    font-size: clamp(0.9rem, 0.82rem + 0.4vw, 1.06rem);
    letter-spacing: 0.14em;
    margin: 1.6rem 0 8px;
    padding-top: 1rem;
    line-height: 1.35;
  }

  .menu-list {
    max-width: none;
    width: 100%;
    min-width: 0;
  }

  /* Rad: namn | pris först, beskrivning under full bredd — undviker klem i flexbaslinje */
  .menu-list-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 5px 12px;
    align-items: start;
    padding: 14px 0 16px;
  }

  .menu-list-row strong {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(1.14rem, 0.98rem + 0.72vw, 1.48rem);
    line-height: 1.26;
    font-weight: 600;
    color: #0e241e;
    padding-right: 6px;
  }

  .menu-list-row .price {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    font-size: clamp(1.08rem, 0.94rem + 0.58vw, 1.3rem);
    font-weight: 600;
    color: #6f5f2a;
    white-space: nowrap;
  }

  .menu-list-row .detail {
    grid-column: 1 / -1;
    grid-row: 2;
    flex: unset;
    font-size: clamp(0.97rem, 0.89rem + 0.38vw, 1.08rem);
    line-height: 1.43;
    color: var(--text-muted);
  }

  .menu-list-row .detail:empty {
    display: none;
  }

  /* Väldigt smala skärmar — undvik overflow vid långa rätter */
  @media (max-width: 380px) {
    .menu-list-row {
      column-gap: 8px;
    }

    .menu-list-row strong {
      font-size: clamp(1.08rem, 4.6vw, 1.22rem);
    }
  }
}

/* Onlinebokning (CodeIgniter) */
.booking-cms-block {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.booking-flash.booking-flash--ok {
  color: var(--green, #3d5c4a);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Boka: välkomstkort för lyckade steg */
.booking-success-banner {
  margin: 0 0 clamp(1.35rem, 3vw, 2rem);
  border-radius: 16px;
  border: 1px solid rgba(24, 58, 48, 0.16);
  background: linear-gradient(135deg, rgba(237, 244, 240, 0.95), rgba(255, 251, 245, 0.88));
  box-shadow: 0 14px 40px rgba(24, 58, 48, 0.08);
  overflow: hidden;
}

.booking-success-banner--confirmed {
  border-color: rgba(111, 95, 42, 0.28);
  background: linear-gradient(135deg, rgba(251, 248, 236, 0.98), rgba(237, 244, 240, 0.92));
  box-shadow: 0 16px 44px rgba(111, 95, 42, 0.1);
}

.booking-success-banner--legacy .booking-success-banner__icon {
  background: rgba(61, 92, 74, 0.15);
}

.booking-success-banner__inner {
  display: flex;
  gap: clamp(14px, 2.5vw, 22px);
  align-items: flex-start;
  padding: clamp(1.05rem, 3vw, 1.65rem);
}

.booking-success-banner__icon {
  flex: 0 0 auto;
  width: clamp(42px, 7vw, 52px);
  height: clamp(42px, 7vw, 52px);
  margin-top: 2px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(61, 92, 74, 0.18));
  box-shadow: inset 0 0 0 1px rgba(24, 58, 48, 0.1);
}

.booking-success-banner__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center / 55% 55%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23183a30' stroke-width='2.4'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  opacity: 0.92;
}

.booking-success-banner--confirmed .booking-success-banner__icon {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(111, 95, 42, 0.2));
}

.booking-success-banner--confirmed .booking-success-banner__icon::before {
  background: no-repeat center / 55% 55%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f5f2a' stroke-width='2.4'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

.booking-success-banner__body {
  flex: 1;
  min-width: 0;
}

.booking-success-banner__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 1.06rem + 0.72vw, 1.52rem);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #0e241e;
}

.booking-success-banner__intro {
  margin: 0;
  font-size: clamp(0.985rem, 0.92rem + 0.42vw, 1.12rem);
  line-height: 1.52;
  color: rgba(24, 58, 48, 0.88);
  font-weight: 500;
}

.booking-success-banner__list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: rgba(24, 58, 48, 0.86);
  font-size: clamp(0.96rem, 0.91rem + 0.34vw, 1.06rem);
  line-height: 1.43;
}

.booking-success-banner__list li + li {
  margin-top: 0.4rem;
}

.booking-success-banner__dl {
  margin: clamp(0.85rem, 2vw, 1.05rem) 0 0;
  padding: clamp(0.75rem, 2vw, 1rem);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(24, 58, 48, 0.08);
}

.booking-success-banner__dl-row {
  display: grid;
  grid-template-columns: minmax(0, 7.25rem) 1fr;
  gap: 0.35rem 1rem;
  padding: 0.35rem 0;
}

.booking-success-banner__dl-row + .booking-success-banner__dl-row {
  border-top: 1px solid rgba(24, 58, 48, 0.08);
}

.booking-success-banner__dl-row dt {
  margin: 0;
  font-size: clamp(0.88rem, 0.82rem + 0.32vw, 0.97rem);
  font-weight: 650;
  color: rgba(24, 58, 48, 0.58);
}

.booking-success-banner__dl-row dd {
  margin: 0;
  font-size: clamp(0.97rem, 0.9rem + 0.36vw, 1.07rem);
  font-weight: 600;
  color: #0e241e;
  line-height: 1.35;
}

@media (max-width: 420px) {
  .booking-success-banner__dl-row {
    grid-template-columns: 1fr;
  }
}

.page-main > .booking-success-banner {
  max-width: min(100%, 52rem);
}

.booking-form .booking-form-feedback--banner {
  margin-top: 0;
  margin-bottom: clamp(0.75rem, 2vw, 1.1rem);
  font-weight: 400;
  color: inherit;
}

.booking-form .booking-form-feedback--banner .booking-success-banner {
  margin-bottom: 0;
}

.booking-errors {
  list-style: disc;
  margin: 0 0 1.25rem 1.35rem;
  padding: 0;
  color: #8b2942;
  line-height: 1.5;
}

.booking-errors li + li {
  margin-top: 0.35rem;
}

.booking-filter {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(24, 58, 48, 0.12);
}

.booking-filter__btn {
  margin-top: 0.65rem;
}

.booking-filter-toast {
  margin: 0;
  padding: 0;
  min-height: 0;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--green);
}

.booking-filter-toast.booking-filter-toast--show {
  margin-top: 14px;
}

.booking-filter-toast.booking-filter-toast--err {
  color: #8b2942;
}

.booking-submit-summary.booking-submit-summary--show {
  margin: 0 0 1rem;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(139, 41, 66, 0.28);
  background: rgba(139, 41, 66, 0.06);
  color: #6b2835;
  font-size: 16px;
  line-height: 1.45;
}

.booking-submit-summary-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.booking-field-msg {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.35;
  color: #8b2942;
  font-weight: 600;
}

.booking-field-msg--slot {
  margin-top: 10px;
}

.booking-form .booking-input-invalid,
.booking-form .form-field textarea.booking-input-invalid {
  outline: none;
  border-color: rgba(139, 41, 66, 0.92) !important;
  box-shadow: 0 0 0 2px rgba(139, 41, 66, 0.18);
}

.booking-form-field--invalid > label {
  color: rgba(139, 41, 66, 0.95);
}

.booking-form-feedback {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
}

.booking-form-feedback--ok {
  color: var(--green);
}

.booking-form-feedback--bad {
  color: #8b2942;
}

/* Boka: mindre vertikal rytm i tydligare lyft av Namn under sittning + hint */
.booking-form.form-grid {
  gap: 11px;
}

.booking-form #booking-slot-mount {
  margin-bottom: 0;
}

.booking-form .form-note.booking-slot-hint,
.booking-form .booking-slot-hint,
.booking-form #book-slot + .booking-slot-hint {
  margin-top: 18px;
  margin-bottom: 12px;
}

.booking-form .booking-form-field--guest_name {
  margin-top: 0;
}

select#book-slot + .booking-slot-hint,
#book-slot + .booking-slot-hint,
.booking-slot-hint {
  margin-top: 18px;
}

/* CMS page builder sections — galleri, karusell, team, omdömen */
.cms-section {
  padding: var(--section-py) var(--section-px);
  background: var(--surface-page);
}

.cms-gallery__grid {
  display: grid;
  grid-template-columns: repeat(var(--cms-gallery-cols, 3), minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.cms-gallery__thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
  aspect-ratio: 4 / 3;
}

.cms-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cms-gallery__caption {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
}

.cms-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.cms-carousel__track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: var(--surface-elevated);
  box-shadow: var(--shadow-sm);
  scrollbar-width: thin;
}

.cms-carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 280px;
}

.cms-carousel__visual {
  min-height: 220px;
}

.cms-carousel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cms-carousel__body {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cms-carousel__title {
  font-family: var(--font-display);
  color: var(--green);
  font-size: clamp(1.5rem, 1.2vw + 1.1rem, 2rem);
  margin-bottom: 12px;
}

.cms-carousel__nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.cms-carousel__btn {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

.cms-carousel__btn:hover {
  background: #fff;
}

.cms-teams__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.cms-teams__card {
  background: var(--surface-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cms-teams__photo {
  aspect-ratio: 1;
  overflow: hidden;
}

.cms-teams__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cms-teams__text {
  padding: clamp(1.1rem, 2vw, 1.5rem);
}

.cms-teams__name {
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 6px;
}

.cms-teams__role {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.cms-testimonials__track {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.5vw, 24px);
  justify-content: center;
}

.cms-testimonials--scroll .cms-testimonials__track {
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.cms-testimonials__item {
  flex: 1 1 280px;
  max-width: 400px;
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--surface-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
}

.cms-testimonials--scroll .cms-testimonials__item {
  flex: 0 0 min(88vw, 340px);
  scroll-snap-align: start;
}

.cms-testimonials__stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.cms-testimonials__quote {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 14px;
}

.cms-testimonials__meta {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cms-testimonials__author {
  font-style: normal;
  font-weight: 600;
  color: var(--green);
}

.cms-testimonials__sub {
  display: block;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .cms-carousel__slide {
    grid-template-columns: 1fr;
  }

  .cms-carousel__visual {
    min-height: 200px;
  }
}
