@font-face {
  font-family: "Marcellus";
  src: url("../assets/fonts/Marcellus-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --color-cream: #F4EFE7;
  --color-olive: #3F4034;
  --color-maroon: #923539;
  --color-gold: #ECBE40;
  --color-terracotta: #D27976;
  --color-white: #FFFFFF;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

img,
svg,
video {
  max-width: 100%;
}

html {
  background: var(--color-cream);
  color: var(--color-olive);
  font-family: "Instrument Sans", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

main section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  background: var(--color-cream);
  overflow-x: hidden;
}

html.nav-open,
body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 8px clamp(18px, 4vw, 64px);
  background: var(--color-cream);
  border-bottom: 1px solid rgba(63, 64, 52, 0.12);
  transition: min-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease, box-shadow 0.3s ease;
}

.site-header--shrunk {
  min-height: 64px;
  padding-top: 4px;
  padding-bottom: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 70px;
  text-decoration: none;
  transition: width 0.3s ease;
}

.site-header--shrunk .brand {
  width: 50px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  min-width: 0;
  justify-content: center;
  gap: clamp(8px, 1.35vw, 22px);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(0.86rem, 0.95vw, 1rem);
  font-weight: 725;
  line-height: 1;
}

.primary-nav a {
  padding: 10px 0;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.menu-toggle {
  display: none;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--color-cream);
  border: 1.5px solid rgba(63, 64, 52, 0.25);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 
    0 2px 5px rgba(63, 64, 52, 0.08),
    inset 0 0 0 4px var(--color-cream),
    inset 0 0 0 5.2px rgba(63, 64, 52, 0.15),
    inset 0 2px 3.5px rgba(63, 64, 52, 0.06);
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 150ms ease;
}

.menu-toggle:hover {
  background-color: #ebe5d8;
  border-color: rgba(63, 64, 52, 0.35);
  box-shadow: 
    0 3px 7px rgba(63, 64, 52, 0.12),
    inset 0 0 0 4px #ebe5d8,
    inset 0 0 0 5.2px rgba(63, 64, 52, 0.2),
    inset 0 2px 3.5px rgba(63, 64, 52, 0.09);
}

.menu-toggle:active {
  transform: scale(0.95);
}

.menu-toggle__cutlery {
  position: relative;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cutlery-item {
  position: absolute;
  width: 20px;
  height: 20px;
  color: var(--color-olive);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1),
              color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.cutlery-fork {
  transform: translateX(-3.5px) rotate(0deg);
}

.cutlery-knife {
  transform: translateX(3.5px) rotate(0deg);
}

body:not(.nav-open) .menu-toggle:hover .cutlery-fork {
  transform: translateX(-5.5px) rotate(-8deg);
}

body:not(.nav-open) .menu-toggle:hover .cutlery-knife {
  transform: translateX(5.5px) rotate(8deg);
}

body.nav-open .menu-toggle {
  background-color: var(--color-olive);
  border-color: rgba(244, 239, 231, 0.25);
  box-shadow: 
    0 2px 5px rgba(63, 64, 52, 0.15),
    inset 0 0 0 4px var(--color-olive),
    inset 0 0 0 5.2px rgba(244, 239, 231, 0.18),
    inset 0 2px 3.5px rgba(0, 0, 0, 0.12);
}

body.nav-open .menu-toggle:hover {
  background-color: #2f3027;
  border-color: rgba(244, 239, 231, 0.35);
  box-shadow: 
    0 3px 7px rgba(63, 64, 52, 0.22),
    inset 0 0 0 4px #2f3027,
    inset 0 0 0 5.2px rgba(244, 239, 231, 0.24),
    inset 0 2px 3.5px rgba(0, 0, 0, 0.18);
}

body.nav-open .cutlery-item {
  color: var(--color-cream);
}

body.nav-open .cutlery-fork {
  transform: translateX(0) rotate(45deg);
}

body.nav-open .cutlery-knife {
  transform: translateX(0) rotate(-45deg);
}

.hero {
  /* min-height: calc(100vh - var(--header-height)); */
}

.hero__image {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 68vh, 760px);
  display: grid;
  place-items: center;
  padding: clamp(54px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: url("../assets/photos/IMG_9580.jpg") center / cover no-repeat;
}

.hero__image::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(22, 22, 16, 0.36);
}

.hero__content {
  width: min(1180px, 100%);
  min-width: 0;
  margin: 0 auto;
  text-align: center;
  color: var(--color-white);
}

.hero__kicker {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1040px;
  margin: 0 auto;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(3rem, 8.6vw, 8.25rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.keep-together {
  white-space: nowrap;
}

.hero__lede {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: clamp(1.12rem, 2vw, 1.52rem);
  font-weight: 600;
  line-height: 1.35;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(30px, 4.5vw, 54px);
}

@media (max-width: 768px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .hero__actions .pill {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    min-height: 44px;
    padding: 12px 10px;
    font-size: 0.82rem;
  }

  /* Keep the long hero title and Instagram handle inside the viewport. */
  .hero h1 .keep-together {
    display: inline-block;
    max-width: 100%;
    font-size: inherit;
    letter-spacing: inherit;
  }

  .instagram-wall__heading h2 {
    display: inline-block;
    max-width: 100%;
    font-size: clamp(2.4rem, 8vw, 4rem);
    letter-spacing: inherit;
    white-space: nowrap;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 62px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.pill:focus-visible,
.booking-search:focus-visible,
.menu-toggle:focus-visible,
.booking-field input:focus-visible,
.booking-field select:focus-visible {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 3px;
}

.pill--room {
  background: var(--color-maroon);
  color: var(--color-white);
}

.pill--table {
  background: var(--color-gold);
  color: var(--color-olive);
}

.pill--event {
  background: var(--color-olive);
  color: var(--color-white);
}

.booking-strip {
  margin: 0;
  padding: 36px clamp(18px, 5vw, 72px) 30px;
  background: var(--color-olive);
}

.booking-strip__inner {
  display: grid;
  grid-template-columns: minmax(190px, 390px) minmax(240px, 440px) minmax(140px, 280px);
  align-items: end;
  justify-content: center;
  gap: 18px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.booking-field {
  display: grid;
  gap: 12px;
}

.booking-field span {
  text-align: center;
  color: var(--color-white);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 600;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  color: var(--color-olive);
  background: var(--color-cream);
  border: 1px solid rgba(63, 64, 52, 0.22);
  border-radius: 5px;
  appearance: auto;
}

.booking-search {
  min-height: 56px;
  padding: 0 34px;
  color: var(--color-white);
  background: var(--color-maroon);
  border: 0;
  border-radius: 999px;
  font-size: 1.12rem;
  font-weight: 800;
  cursor: pointer;
}

.booking-strip__status {
  min-height: 1.35em;
  margin: 14px auto 0;
  color: var(--color-white);
  text-align: center;
  font-weight: 700;
}
/* ── Sirvoy booking widget section ────────────────────────────── */

.sirvoy-section {
  background-color: var(--color-olive);
  padding: 48px 24px;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.sirvoy-section__inner {
  max-width: 720px;
  margin: 0 auto;
}

.sirvoy-section__header {
  text-align: center;
  margin-bottom: 16px;
}

.sirvoy-section__kicker {
  margin: 0 0 6px;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sirvoy-section__title {
  margin: 0;
  color: var(--color-white);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 760;
}

.sirvoy-section__widget {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 20px 20px 0;
  overflow: visible;
  overscroll-behavior: auto;
}

/* Target Sirvoy's generated container */
#sirvoy-widget .sbw {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.78rem;
  text-align: center;
  margin-top: 4px !important;
  line-height: 1.2;
}

#sirvoy-widget .sbw a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: underline;
}

#sirvoy-widget .sbw iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: auto;
  min-height: 0;
  margin-bottom: 0 !important;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  overscroll-behavior: auto;
}

/* ── Caspeco restaurant booking ─────────────────────────────────── */
.booking-section {
  padding: clamp(72px, 10vw, 144px) clamp(18px, 4vw, 64px);
  background: var(--color-cream);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.booking-section__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(42px, 8vw, 120px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.booking-section__intro {
  padding-top: clamp(12px, 3vw, 42px);
}

.booking-section__intro .section-kicker {
  color: var(--color-maroon);
}

.booking-section__intro h2 {
  max-width: 8ch;
  margin: 0;
  color: var(--color-olive);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: 0;
}

.booking-section__intro > p:not(.section-kicker):not(.booking-section__hours) {
  max-width: 31ch;
  margin: 28px 0 0;
  color: rgba(63, 64, 52, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 550;
  line-height: 1.5;
}

.booking-section__hours {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(63, 64, 52, 0.24);
  color: var(--color-olive);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.55;
}

.booking-section__widget {
  min-width: 0;
  min-height: 500px;
  padding: clamp(20px, 3vw, 36px);
  background: var(--color-white);
  border: 1px solid rgba(63, 64, 52, 0.18);
  border-top: 5px solid var(--color-gold);
  box-shadow: 14px 14px 0 var(--color-olive);
}

.booking-section__widget .caspeco-booking {
  display: block;
  width: 100%;
  min-height: 440px;
}

.booking-section__loading {
  margin: 0;
  padding: 1.5rem 0;
  color: rgba(63, 64, 52, 0.68);
  font-size: 0.98rem;
  text-align: center;
}

.booking-section__widget .caspeco-booking iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
}

.booking-section__fallback {
  margin: 24px auto 0;
  padding: 16px 18px;
  color: var(--color-olive);
  background: var(--color-cream);
  border-left: 3px solid var(--color-maroon);
  font-size: 0.98rem;
  line-height: 1.5;
}

.booking-section__fallback a {
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ========================================================================
   Recensioner — homepage-only, isolated component
   ======================================================================== */
.victoria-reviews {
  --reviews-ink: #3F4034;
  --reviews-paper: #FFF9EE;
  --reviews-line: rgba(63, 64, 52, 0.2);
  padding: clamp(74px, 10vw, 148px) clamp(18px, 4vw, 64px);
  background: var(--color-gold);
  color: var(--reviews-ink);
  overflow: hidden;
}

.victoria-reviews__inner { width: min(1180px, 100%); margin: 0 auto; }
.victoria-reviews__ratings {
  padding: clamp(24px, 4vw, 46px);
  background: var(--reviews-paper);
  border: 1px solid rgba(63, 64, 52, 0.12);
  border-radius: 24px;
  box-shadow: 12px 14px 0 rgba(63, 64, 52, 0.18);
}

.victoria-reviews__ratings-heading,
.victoria-reviews__carousel-heading,
.victoria-reviews__review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.victoria-reviews__ratings-heading { align-items: flex-start; margin-bottom: 26px; }
.victoria-reviews__ratings-heading h2 { margin: 0; font-family: "Marcellus", Georgia, serif; font-size: clamp(1.9rem, 3.61vw, 3.28rem); line-height: .98; }
.victoria-reviews__rating-mark { display: grid; place-items: center; flex: 0 0 auto; width: 48px; height: 48px; color: var(--color-gold); border: 1px solid rgba(236, 190, 64, .45); border-radius: 50%; font-size: 1.5rem; }
.victoria-reviews__rating-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.victoria-reviews__rating-card { display: flex; min-height: 174px; flex-direction: column; padding: 18px 16px 16px; border: 1px solid var(--reviews-line); border-radius: 14px; transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease; }
.victoria-reviews__rating-card:hover { background: #fffdf8; box-shadow: 0 8px 18px rgba(63,64,52,.09); transform: translateY(-3px); }
.victoria-reviews__platform, .victoria-reviews__verdict, .victoria-reviews__count { margin: 0; }
.victoria-reviews__platform { min-height: 2.6em; font-size: .82rem; font-weight: 800; }
.victoria-reviews__score { display: flex; align-items: baseline; gap: 3px; margin: 12px 0 4px; white-space: nowrap; }
.victoria-reviews__score strong { font-family: "Marcellus", Georgia, serif; font-size: clamp(1.9rem, 2.85vw, 2.85rem); line-height: .9; }
.victoria-reviews__score span { font-size: .82rem; font-weight: 700; }
.victoria-reviews__verdict { color: var(--color-maroon); font-size: .89rem; font-weight: 800; }
.victoria-reviews__count { margin-top: auto; padding-top: 14px; color: rgba(63,64,52,.68); font-size: .73rem; line-height: 1.3; }
.victoria-reviews__categories-source { display: flex; align-items: center; gap: 11px; margin: 26px 0 -10px; color: var(--color-maroon); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.victoria-reviews__categories-source-mark { width: 8px; height: 8px; flex: 0 0 auto; background: var(--color-maroon); border-radius: 50%; box-shadow: 0 0 0 4px rgba(146,53,57,.12); }
.victoria-reviews__categories-source-detail { margin-left: auto; color: rgba(63,64,52,.56); font-size: .72rem; }
.victoria-reviews__categories { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px 24px; margin: 28px 0 0; padding-top: 22px; border-top: 1px solid var(--reviews-line); }
.victoria-reviews__categories div { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.victoria-reviews__categories dt, .victoria-reviews__categories dd { margin: 0; font-size: .78rem; line-height: 1.35; }
.victoria-reviews__categories dt { color: rgba(63,64,52,.72); }
.victoria-reviews__categories dd { font-weight: 800; white-space: nowrap; }
.victoria-reviews__carousel { width: min(860px, 100%); margin: clamp(58px, 9vw, 112px) auto 0; }
.victoria-reviews__carousel-heading { margin-bottom: 18px; }
.victoria-reviews__carousel-heading .section-kicker { margin: 0; color: var(--color-maroon); }
.victoria-reviews__stars, .victoria-reviews__review-stars { color: var(--color-maroon); letter-spacing: .14em; }
.victoria-reviews__viewport { position: relative; min-height: 390px; transition: height 420ms cubic-bezier(.16,1,.3,1); }
.victoria-reviews__review { position: absolute; inset: 0 0 auto; display: flex; min-height: 390px; flex-direction: column; padding: clamp(26px,5vw,58px); background: var(--reviews-paper); border-radius: 24px; box-shadow: 0 16px 34px rgba(63,64,52,.12); opacity: 0; transform: translateX(22px); transition: opacity 360ms ease, transform 420ms cubic-bezier(.16,1,.3,1); pointer-events: none; }
.victoria-reviews__review.is-active { position: relative; z-index: 1; opacity: 1; transform: translateX(0); pointer-events: auto; }
.victoria-reviews__review-source { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.victoria-reviews__review-number { color: rgba(63,64,52,.56); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.victoria-reviews__review h3 { max-width: 19ch; margin: clamp(32px,5vw,54px) 0 0; font-family: "Marcellus", Georgia, serif; font-size: clamp(1.9rem,3.99vw,3.8rem); line-height: .98; }
.victoria-reviews__review-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 18px 0 0; color: var(--color-maroon); font-size: .78rem; font-weight: 800; }
.victoria-reviews__review-meta span { color: rgba(63,64,52,.64); }
.victoria-reviews__quote { max-width: 70ch; margin: 30px 0 0; font-family: "Marcellus", Georgia, serif; font-size: clamp(1.03rem,1.52vw,1.24rem); line-height: 1.54; }
.victoria-reviews__controls { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 28px; }
.victoria-reviews__arrow { display: grid; place-items: center; width: 48px; height: 48px; padding: 0; color: white; background: var(--color-terracotta); border: 0; border-radius: 50%; cursor: pointer; transition: background-color 180ms ease, transform 180ms ease; }
.victoria-reviews__arrow:hover, .victoria-reviews__arrow:focus-visible { background: var(--color-maroon); transform: translateY(-2px); }
.victoria-reviews__arrow svg { width: 22px; height: 22px; }
.victoria-reviews__dots { display: flex; align-items: center; gap: 9px; }
.victoria-reviews__dots button { width: 9px; height: 9px; padding: 0; background: rgba(63,64,52,.35); border: 0; border-radius: 50%; cursor: pointer; }
.victoria-reviews__dots button.is-active { background: var(--color-maroon); transform: scale(1.45); }

@media (max-width: 900px) {
  .victoria-reviews__rating-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .victoria-reviews__categories { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .victoria-reviews { padding: 60px 18px 78px; }
  .victoria-reviews__ratings { padding: 22px 14px 20px; border-radius: 18px; box-shadow: 7px 8px 0 rgba(63,64,52,.18); }
  .victoria-reviews__ratings-heading { margin-bottom: 20px; }
  .victoria-reviews__ratings-heading h2 { font-size: 1.9rem; }
  .victoria-reviews__rating-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
  .victoria-reviews__rating-card { min-height: 154px; padding: 15px 12px 13px; }
  .victoria-reviews__rating-card:last-child { grid-column: 1 / -1; min-height: 132px; }
  .victoria-reviews__score strong { font-size: 2.2rem; }
  .victoria-reviews__categories-source { margin-top: 22px; margin-bottom: -8px; font-size: .68rem; }
  .victoria-reviews__categories { display: block; margin-top: 22px; padding-top: 16px; }
  .victoria-reviews__categories div { padding: 8px 0; border-bottom: 1px solid rgba(63,64,52,.12); }
  .victoria-reviews__categories div:last-child { border-bottom: 0; }
  .victoria-reviews__carousel { margin-top: 68px; }
  .victoria-reviews__viewport { min-height: 500px; }
  .victoria-reviews__review { min-height: 500px; padding: 24px 20px; border-radius: 18px; }
  .victoria-reviews__review h3 { margin-top: 28px; font-size: clamp(1.81rem,8.55vw,2.57rem); }
  .victoria-reviews__quote { margin-top: 24px; font-size: .97rem; line-height: 1.5; }
  .victoria-reviews__controls { gap: 20px; margin-top: 22px; }
}

.section-kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  width: min(960px, 100%);
  margin: 0 auto clamp(30px, 5vw, 58px);
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.rooms-intro :is(h1, h2) {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 7vw, 6.6rem);
}

.rooms-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: clamp(34px, 6vw, 86px);
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 64px) clamp(36px, 5vw, 64px);
}

.rooms-intro :is(h1, h2) {
  max-width: 920px;
  font-size: clamp(3rem, 7.8vw, 8rem);
}

.rooms-intro__text p:not(.section-kicker) {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  font-weight: 550;
  line-height: 1.42;
}

/* Box wrapper */
.rooms-intro__facts-wrapper {
  margin-top: 64px;
  width: min(100%, 420px);
  position: relative;
}

.rooms-intro__facts {
  align-self: start;
  background: var(--color-white);
  border: 2.5px solid var(--color-olive);
  padding: 12px 0;
  list-style: none;
  box-shadow: 15px 15px 0 var(--color-maroon);
}

.rooms-intro__facts li {
  padding: 18px 24px;
  border-bottom: 1.5px solid rgba(63, 64, 52, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 750;
  color: var(--color-olive);
  transition: background 0.2s ease;
}

.rooms-intro__facts li:last-child {
  border-bottom: none;
}

.rooms-intro__facts li:hover {
  background: var(--color-cream);
}

.rooms-intro__facts li svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-maroon);
}

/* Restored INFO badge */
.rooms-intro__facts-wrapper::after {
  content: "INFO";
  position: absolute;
  top: -15px;
  right: -20px;
  background: var(--color-olive);
  color: white;
  padding: 4px 10px;
  font-family: "Marcellus", Georgia, serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transform: rotate(10deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
  z-index: 10;
}

.room-gallery {
  overflow: hidden;
  padding: clamp(46px, 7vw, 90px) 0 clamp(52px, 7vw, 96px);
  background: var(--color-cream);
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1280px, calc(100% - 36px));
  margin: clamp(16px, 3vw, 24px) auto 0;
  padding: 0 10px;
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--color-olive);
  border-radius: 50%;
  background: transparent;
  color: var(--color-olive);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.carousel-btn:hover {
  background: var(--color-olive);
  color: var(--color-white);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.room-cards {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 36px);
  width: 100%;
  padding: 0 max(18px, calc((100vw - 1280px) / 2));
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-sizing: border-box;
  transition: height 380ms cubic-bezier(0.4, 0, 0.2, 1);
}

.room-cards::-webkit-scrollbar {
  display: none;
}

.room-card {
  flex: 0 0 calc(85vw - 36px);
  /* Mobile: show 1 card + peek */
  scroll-snap-align: center;
}

@media (min-width: 769px) {
  .room-card {
    flex: 0 0 calc(50% - 18px);
    /* Tablet: 2 cards per view */
    scroll-snap-align: start;
  }
}

@media (min-width: 1024px) {
  .room-card {
    flex: 0 0 calc(33.333% - 24px);
    /* Desktop: 3 cards per view */
    scroll-snap-align: start;
  }
}

.room-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  text-decoration: none;
  color: inherit;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(63, 64, 52, 0.12);
}

.room-card--offset {
  margin-top: 0;
  /* Keep baseline aligned for clean grid */
}

.arch-frame {
  position: relative;
  aspect-ratio: 1 / 1.02;
  margin: 0;
  overflow: hidden;
  border-radius: 48% 48% 0 0 / 24% 24% 0 0;
  background: var(--color-olive);
}

.arch-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}

.room-card:hover .arch-frame img {
  transform: scale(1.05);
}

/* Floating badge on top of card image (matches Hasselbacken Screenshot 1) */
.card-floater {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 16px;
  background: rgba(25, 25, 20, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 650;
  white-space: nowrap;
  pointer-events: none;
}

.card-floater span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-floater svg {
  width: 15px;
  height: 15px;
  opacity: 0.9;
}

.room-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: clamp(24px, 3.5vw, 36px) clamp(20px, 3vw, 28px);
  background: var(--color-white);
  flex-grow: 1;
}

.room-card__body h3 {
  max-width: none;
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--color-olive);
}

.room-card__body p {
  margin: 0;
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 500;
  line-height: 1.48;
  color: rgba(63, 64, 52, 0.82);
  max-width: 32ch;
}

.room-card__link {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-olive);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  margin-top: 4px;
  transition: opacity 180ms ease;
}

.room-card:hover .room-card__link {
  opacity: 0.75;
}

/* Stort dubbelrum card: connecting-room CTA */
.room-card__main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-decoration: none;
  color: inherit;
}

.room-card__note {
  font-size: clamp(0.85rem, 1.15vw, 0.95rem);
  font-weight: 650;
}

.room-card__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px 30px;
  background: var(--color-white);
}

.room-card__cta .room-card__link {
  margin-top: 0;
}

.room-card__cta .pill {
  min-width: 0;
  width: 100%;
  max-width: 300px;
  min-height: 48px;
  padding: 12px 26px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  /* Mobil: Läs Mer ovanför, boka-knappen nedanför (stackad). */
  .room-card__cta {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 12px 22px;
  }

  .room-card__cta .room-card__link {
    margin-top: 0;
  }

  .room-card__cta .pill {
    width: 100%;
    min-width: 0;
    max-width: 300px;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.85rem;
    white-space: normal;
    line-height: 1.2;
  }
}

.room-info {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 64px);
  background: var(--color-gold);
}

.room-info>* {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-panel {
  padding: clamp(24px, 3vw, 36px);
  background: var(--color-cream);
}

.info-panel--wide {
  grid-column: span 1;
}

.info-panel h3 {
  margin: 0 0 18px;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.info-panel p,
.info-panel dl,
.distance-list {
  margin: 0;
}

.info-panel p,
.info-panel dd,
.distance-list {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.42;
}

.info-panel dl {
  display: grid;
  gap: 14px;
}

.info-panel dl div,
.distance-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(63, 64, 52, 0.18);
}

.info-panel dt {
  font-weight: 800;
}

.info-panel dd {
  margin: 0;
  text-align: right;
}

.distance-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.distance-list strong {
  white-space: nowrap;
}

.restaurant-wrapper {
  background: var(--color-cream);
  padding: clamp(48px, 8vw, 112px) clamp(16px, 4vw, 32px);
}

/* ── Restaurant experiences: a layered table of moments ──────────── */
.restaurant-experiences {
  padding: clamp(76px, 10vw, 144px) clamp(18px, 4vw, 64px) clamp(76px, 9vw, 132px);
  background: var(--color-olive);
  color: var(--color-white);
  overflow: hidden;
}

.restaurant-experiences__inner {
  width: min(1240px, 100%);
  min-width: 0;
  margin: 0 auto;
}

.restaurant-experiences__heading {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.5fr);
  align-items: end;
  gap: clamp(24px, 6vw, 88px);
  width: min(1110px, 100%);
  margin: 0 auto clamp(42px, 6vw, 72px);
}

.restaurant-experiences__heading .section-kicker {
  grid-column: 1 / -1;
  margin: 0 0 -26px;
  color: var(--color-gold);
}

.restaurant-experiences__heading h2 {
  max-width: none;
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: 0;
  white-space: nowrap;
}

.restaurant-experiences__intro {
  max-width: 24ch;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.42;
  text-align: right;
  text-wrap: pretty;
}

.restaurant-experiences__stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(18px, 2.6vw, 36px);
  width: min(1110px, 100%);
  margin: 0 auto;
}

.restaurant-experience-card {
  color: var(--color-olive);
  background: transparent;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(63, 64, 52, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.restaurant-experience-card:hover {
  box-shadow: 0 22px 42px rgba(63, 64, 52, 0.18);
}

.restaurant-experience-card--featured {
  position: relative;
  z-index: 3;
  width: 100%;
  box-shadow: 0 16px 34px rgba(63, 64, 52, 0.12);
}

.restaurant-experience-card--side {
  position: relative;
  z-index: 1;
  width: 100%;
  box-shadow: 0 16px 34px rgba(63, 64, 52, 0.12);
}

.restaurant-experience-card--featured .restaurant-experience-card__image,
.restaurant-experience-card--side .restaurant-experience-card__image {
  aspect-ratio: 0.82 / 1;
  /* Keep Victoria's soft arch at the top; the bottom edge is square so it meets the card body flush. */
  border-radius: 48% 48% 0 0 / 22% 22% 0 0;
}

.restaurant-experience-card__image {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-olive);
}

.restaurant-experience-card__image img {
  position: absolute;
  inset: -1px;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.restaurant-experience-card--left .restaurant-experience-card__image img {
  object-position: center 58%;
}

.restaurant-experience-card--right .restaurant-experience-card__image img {
  object-position: center 42%;
}

/* The supplied wine photo has a pale strip in its original top edge.
   Crop it inside the frame instead of letting that edge read as a border. */
.restaurant-experience-card--featured .restaurant-experience-card__image img {
  transform: scale(1.18);
  object-position: center 62%;
}

.restaurant-experience-card__body {
  display: grid;
  gap: 9px;
  min-height: 112px;
  padding: 22px 22px 26px;
  background: var(--color-cream);
  border-radius: 0 0 18px 18px;
  text-align: center;
}

.restaurant-experience-card--side .restaurant-experience-card__body {
  min-height: 96px;
  padding: 17px 14px 19px;
}

.restaurant-experience-card h3 {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 760;
  line-height: 1.05;
  text-wrap: balance;
}

.restaurant-experience-card__subtitle {
  max-width: 34ch;
  margin: 0;
  color: rgba(63, 64, 52, 0.78);
  font-size: clamp(0.82rem, 1.15vw, 0.98rem);
  font-weight: 600;
  line-height: 1.35;
  text-wrap: pretty;
}

.restaurant-experience-card--side .restaurant-experience-card__subtitle {
  font-size: clamp(0.76rem, 0.95vw, 0.86rem);
}

.restaurant-experience-card--side h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
}

@media (max-width: 1024px) and (min-width: 769px) {
  .restaurant-experiences__stage {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .restaurant-experiences {
    padding: 64px 18px 72px;
  }

  .restaurant-experiences__heading {
    display: block;
    width: 100%;
    margin-bottom: 38px;
  }

  .restaurant-experiences__heading .section-kicker {
    margin: 0 0 14px;
  }

  .restaurant-experiences__heading h2 {
    max-width: none;
    font-size: clamp(2.45rem, 10vw, 4.6rem);
    line-height: 0.94;
    white-space: nowrap;
  }

  .restaurant-experiences__intro {
    max-width: 30ch;
    margin: 22px 0 0;
    text-align: left;
  }

  .restaurant-experiences__stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }

  .restaurant-experience-card,
  .restaurant-experience-card--featured,
  .restaurant-experience-card--side {
    position: relative;
    inset: auto;
    width: min(100%, 430px);
    opacity: 1;
    filter: none;
    transform: none;
  }

  .restaurant-experience-card--featured {
    box-shadow: 0 16px 34px rgba(63, 64, 52, 0.14);
  }

  .restaurant-experience-card--side {
    box-shadow: 0 16px 34px rgba(63, 64, 52, 0.12);
  }

  .restaurant-experience-card--left {
    order: 0;
  }

  .restaurant-experience-card--right {
    order: 1;
  }

  .restaurant-experience-card--featured .restaurant-experience-card__image,
  .restaurant-experience-card--side .restaurant-experience-card__image {
    aspect-ratio: 0.82 / 1;
    border-radius: 42% 42% 18px 18px / 17% 17% 18px 18px;
  }

  .restaurant-experience-card__image img {
    transform: scale(1.04);
  }

  .restaurant-experience-card--featured .restaurant-experience-card__image img {
    transform: scale(1.24);
    object-position: center 64%;
  }

  .restaurant-experience-card__body,
  .restaurant-experience-card--side .restaurant-experience-card__body {
    min-height: 104px;
    padding: 20px 18px 23px;
    border-radius: 0 0 18px 18px;
  }

  .restaurant-experience-card h3,
  .restaurant-experience-card--side h3 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }
}

@media (max-width: 480px) {
  .restaurant-experiences {
    padding-inline: 16px;
  }

  .restaurant-experiences__heading h2 {
    max-width: none;
    font-size: clamp(2.45rem, 10vw, 3.7rem);
    white-space: nowrap;
  }

  .restaurant-experiences__intro {
    max-width: 28ch;
    font-size: 0.98rem;
  }

  .restaurant-experiences__stage {
    gap: 24px;
  }

  .restaurant-experience-card__body,
  .restaurant-experience-card--side .restaurant-experience-card__body {
    padding-inline: 14px;
  }
}

/* Mobile-only carousel shell. Desktop keeps the layered stage above. */
.restaurant-experiences__mobile-viewport,
.restaurant-experiences__mobile-track,
.restaurant-experiences__mobile-controls {
  display: contents;
}

.restaurant-experiences__mobile-arrow,
.restaurant-experiences__mobile-dots {
  display: none;
}

@media (max-width: 768px) {
  .restaurant-experiences__mobile-viewport {
    display: block;
    width: 100%;
    overflow: hidden;
    overscroll-behavior-x: contain;
  }

  .restaurant-experiences__mobile-track {
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    padding: 8px 32px 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 32px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .restaurant-experiences__mobile-track::-webkit-scrollbar {
    display: none;
  }

  .restaurant-experiences__mobile-track .restaurant-experience-card {
    position: relative;
    flex: 0 0 calc(100% - 64px);
    min-width: 0;
    scroll-snap-align: center;
    opacity: 0.72;
    transform: scale(0.94);
    transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
    z-index: 1;
  }

  .restaurant-experiences__mobile-track .restaurant-experience-card[data-restaurant-mobile-active] {
    z-index: 2;
    opacity: 1;
    transform: scale(1);
  }

  .restaurant-experiences__mobile-track .restaurant-experience-card {
    order: initial;
  }

  .restaurant-experiences__mobile-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 52px;
  }

  .restaurant-experiences__mobile-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: transparent;
    color: var(--color-white);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 180ms ease, color 180ms ease, transform 160ms ease;
  }

  .restaurant-experiences__mobile-arrow:hover,
  .restaurant-experiences__mobile-arrow:focus-visible {
    background: var(--color-gold);
    color: var(--color-olive);
  }

  .restaurant-experiences__mobile-arrow:active {
    transform: scale(0.94);
  }

  .restaurant-experiences__mobile-arrow:focus-visible,
  .restaurant-experiences__mobile-dots button:focus-visible {
    outline: 3px solid var(--color-terracotta);
    outline-offset: 3px;
  }

  .restaurant-experiences__mobile-arrow svg {
    width: 20px;
    height: 20px;
  }

  .restaurant-experiences__mobile-dots {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .restaurant-experiences__mobile-dots button {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease;
  }

  .restaurant-experiences__mobile-dots button.is-active {
    background: var(--color-gold);
    transform: scale(1.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .restaurant-experience-card,
  .restaurant-experience-card:hover,
  .restaurant-experiences__mobile-track,
  .restaurant-experiences__mobile-track .restaurant-experience-card,
  .restaurant-experiences__mobile-arrow,
  .restaurant-experiences__mobile-dots button {
    transition: none;
  }

  .restaurant-experiences__mobile-track {
    scroll-behavior: auto;
  }
}

.restaurant-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  width: min(1280px, 100%);
  margin: 0 auto;
}

.restaurant-intro__text {
  min-width: 0;
}

.restaurant-intro__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: clamp(28px, 4vw, 42px);
}

.link-action {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-olive);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
  transition: opacity 180ms ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.link-action:hover {
  opacity: 0.7;
}

.restaurant-intro :is(h1, h2),
.restaurant-hours h2,
.restaurant-menu h2,
.breakfast h2 {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.restaurant-intro :is(h1, h2) {
  max-width: 820px;
  font-size: clamp(3rem, 5vw, 6rem);
}

.restaurant-intro__text p:not(.section-kicker) {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.4rem);
  font-weight: 550;
  line-height: 1.42;
}

.restaurant-intro__image {
  width: 100%;
  aspect-ratio: 0.86 / 1;
}

.restaurant-hours {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 4vw, 64px);
  background: var(--color-olive);
  color: var(--color-white);
}

.restaurant-hours__inner,
.breakfast__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.9fr);
  gap: clamp(36px, 9vw, 140px);
  width: min(1100px, 100%);
  margin: 0 auto;
}

.restaurant-hours h2,
.breakfast h2 {
  font-size: clamp(3rem, 6.6vw, 6.5rem);
}

.restaurant-hours__details {
  align-self: end;
}

.restaurant-hours__season {
  margin: 0 0 18px;
  font-weight: 800;
}

.restaurant-hours dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.restaurant-hours dl div,
.breakfast__times div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.restaurant-hours dt,
.restaurant-hours dd,
.breakfast dt,
.breakfast dd {
  margin: 0;
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  font-weight: 700;
}

.season-closed {
  display: inline-block;
  margin: 22px 0 0;
  padding: 12px 16px;
  background: var(--color-terracotta);
  color: var(--color-white);
  font-weight: 800;
}

.restaurant-menu {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 10vw, 160px);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(60px, 10vw, 136px) clamp(18px, 4vw, 64px);
}

.restaurant-menu__image {
  aspect-ratio: 0.9 / 1;
}

.restaurant-menu h2 {
  max-width: 8ch;
  font-size: clamp(3rem, 6.6vw, 6.5rem);
}

.menu-links {
  display: grid;
  gap: 12px;
  max-width: 440px;
  margin-top: 34px;
}

.menu-links a,
.menu-links button {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 18px;
  background: var(--color-gold);
  color: var(--color-olive);
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  width: 100%;
}

.menu-links a:hover,
.menu-links a:focus-visible,
.menu-links button:hover,
.menu-links button:focus-visible {
  background: var(--color-terracotta);
  color: var(--color-white);
}

.breakfast {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(68px, 9vw, 132px) clamp(18px, 4vw, 64px);
  background: var(--color-olive);
  color: var(--color-white);
}

.breakfast::before {
  position: absolute;
  top: -120px;
  right: -70px;
  z-index: -1;
  width: clamp(220px, 28vw, 420px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(236, 190, 64, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(236, 190, 64, 0.07), 0 0 0 44px rgba(236, 190, 64, 0.05);
}

.breakfast__inner {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  align-items: start;
  gap: clamp(42px, 8vw, 118px);
  width: min(1240px, 100%);
}

.breakfast__content {
  min-width: 0;
}

.breakfast__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-gold);
}

.breakfast__eyebrow .section-kicker {
  margin: 0;
}

.breakfast__spark {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  overflow: visible;
  /* Keep the vector at a useful display size so its edges stay crisp. */
}

.breakfast h2 {
  max-width: 10ch;
  margin-top: 20px;
  color: var(--color-white);
  font-size: clamp(3.2rem, 6vw, 6.8rem);
}

.breakfast__lead {
  margin: 18px 0 0;
  color: var(--color-gold);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 650;
  line-height: 1.1;
}

.breakfast__content > p:not(.section-kicker):not(.breakfast__lead):not(.breakfast__highlight):not(.breakfast__family-copy) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  font-weight: 500;
  line-height: 1.52;
}

.breakfast__highlight {
  display: inline-block;
  margin: 26px 0 0;
  padding: 14px 18px;
  background: var(--color-gold);
  color: var(--color-olive);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
  transform: rotate(-1.5deg);
}

.breakfast__family-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--color-gold);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  font-weight: 750;
  line-height: 1.45;
}

.breakfast__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.breakfast__actions .pill {
  min-height: 56px;
}

.breakfast__price {
  display: grid;
  gap: 1px;
  margin: 0;
  line-height: 1.1;
}

.breakfast__price-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breakfast__price strong {
  font-family: "Marcellus", Georgia, serif;
  font-size: 1.7rem;
}

.breakfast__price span {
  font-size: 0.86rem;
  font-weight: 650;
}

.breakfast__aside {
  display: grid;
  gap: 24px;
  min-width: 0;
  padding-top: clamp(12px, 4vw, 56px);
}

.breakfast__image {
  position: relative;
  aspect-ratio: 1 / 0.92;
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--color-cream);
  border-radius: 48% 48% 8px 8px / 26% 26% 8px 8px;
  background: var(--color-cream);
  box-shadow: 14px 14px 0 var(--color-gold);
}

.breakfast__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.breakfast__image:hover img {
  transform: scale(1.04);
}

.breakfast__image figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  background: var(--color-olive);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.breakfast__details {
  padding: clamp(24px, 3.5vw, 38px);
  background: var(--color-cream);
  color: var(--color-olive);
  box-shadow: 8px 8px 0 rgba(236, 190, 64, 0.65);
}

.breakfast__details .section-kicker {
  color: var(--color-maroon);
}

.breakfast__details ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
}

.breakfast__details li {
  padding-left: 24px;
  position: relative;
}

.breakfast__details li::before {
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--color-gold);
}

.breakfast__family-note {
  display: grid;
  gap: 3px;
  margin: 22px 0;
  padding: 14px 16px;
  background: var(--color-gold);
  line-height: 1.25;
}

.breakfast__family-note strong {
  font-family: "Marcellus", Georgia, serif;
  font-size: 1.2rem;
}

.breakfast__family-note span {
  font-size: 0.92rem;
  font-weight: 700;
}

.breakfast__times {
  display: grid;
  gap: 12px;
  margin: 0;
}

.breakfast__times div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(63, 64, 52, 0.26);
}

.breakfast__times dt,
.breakfast__times dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 750;
}

.breakfast__times dd {
  max-width: 17ch;
  text-align: right;
}

.breakfast__times dd span {
  display: block;
  margin-top: 3px;
  font-size: 0.8rem;
  font-weight: 600;
}

.booking-section {
  padding: clamp(48px, 7vw, 88px) clamp(18px, 4vw, 64px);
  background: var(--color-cream);
}

.booking-section__inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.booking-section__widget {
  min-height: 180px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--color-white);
  border: 1px solid rgba(63, 64, 52, 0.16);
  border-radius: 4px;
  box-shadow: 8px 8px 0 rgba(63, 64, 52, 0.08);
}

.booking-section__widget > p {
  margin: 0;
  text-align: center;
}

.booking-section__fallback {
  margin-top: 14px !important;
  color: rgba(63, 64, 52, 0.78);
  font-size: 0.95rem;
}

.booking-section__fallback a {
  font-weight: 800;
  color: var(--color-maroon);
}

.booking-section__fallback[hidden] {
  display: none;
}

.offers-intro {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(64px, 11vw, 150px) clamp(18px, 4vw, 64px) clamp(42px, 7vw, 88px);
  text-align: center;
  container-type: inline-size;
}

.offers-intro :is(h1, h2),
.offer-card h2 {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.offers-intro :is(h1, h2) {
  font-size: clamp(3.4rem, 9vw, 9rem);
}

.offer-list {
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 64px) clamp(68px, 10vw, 140px);
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr);
  align-items: center;
  gap: clamp(32px, 8vw, 112px);
  padding: clamp(28px, 5vw, 72px);
}

.offer-card--weekend {
  background: var(--color-maroon);
  color: var(--color-white);
}

.offer-card--event {
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1fr);
  background: var(--color-gold);
  color: var(--color-olive);
}

.offer-card__content {
  min-width: 0;
  container-type: inline-size;
}

.offer-card .section-kicker {
  margin-bottom: 18px;
}

.offer-card h2 {
  font-size: clamp(2.7rem, 5.8vw, 5.8rem);
}

@media (min-width: 769px) {
  .offer-card--event h2 {
    max-width: 100%;
    white-space: nowrap;
    /* Scale to the actual text column so the one-line title stays inside the card. */
    font-size: clamp(1.8rem, 9cqw, 4rem);
    letter-spacing: -0.02em;
  }
}

.offer-card ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  font-weight: 650;
  line-height: 1.35;
}

.offer-card li {
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
}

.offer-card__extra {
  margin: 20px 0 0;
  font-weight: 700;
  line-height: 1.4;
}

.offer-card__prompt {
  margin: 20px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0.9;
}

.offer-card .pill {
  margin-top: 32px;
}

.offer-card__image {
  aspect-ratio: 0.9 / 1;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(38px, 9vw, 140px);
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 140px) clamp(18px, 4vw, 64px);
}

.about-intro__text {
  min-width: 0;
}

.about-intro :is(h1, h2),
.about-story h2,
.about-welcome h2 {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.about-intro :is(h1, h2) {
  font-size: clamp(3.4rem, 8.5vw, 8.5rem);
}

.about-intro__text p:not(.section-kicker) {
  max-width: 660px;
  margin: 26px 0 0;
  font-size: clamp(1.14rem, 1.9vw, 1.5rem);
  font-weight: 550;
  line-height: 1.4;
}

.about-intro__image {
  aspect-ratio: 0.9 / 1;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 10vw, 160px);
  padding: clamp(64px, 10vw, 140px) max(18px, calc((100% - 1100px) / 2));
  background: var(--color-maroon);
  color: var(--color-white);
}

.about-story__mark {
  display: grid;
  place-items: center;
  width: min(100%, 300px);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.about-story__mark img {
  width: 96px;
  filter: invert(1);
}

.about-story__mark span {
  margin-top: -52px;
  font-family: "Marcellus", Georgia, serif;
  font-size: 2rem;
  font-weight: 760;
}

.about-story h2,
.about-welcome h2 {
  font-size: clamp(3rem, 6.2vw, 6.1rem);
}

.about-story__content>p:not(.section-kicker),
.about-welcome p:not(.section-kicker) {
  max-width: 690px;
  margin: 26px 0 0;
  font-size: clamp(1.1rem, 1.7vw, 1.38rem);
  font-weight: 550;
  line-height: 1.45;
}

.about-welcome {
  padding: clamp(70px, 12vw, 168px) clamp(18px, 4vw, 64px);
  background: var(--color-gold);
}

.about-welcome__inner {
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: center;
}

.about-welcome p:not(.section-kicker) {
  margin-inline: auto;
}

.contact-intro {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(64px, 11vw, 150px) clamp(18px, 4vw, 64px) clamp(40px, 7vw, 88px);
  text-align: center;
}

.contact-intro h2,
.contact-directions :is(h1, h2) {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.contact-intro h2 {
  font-size: clamp(3.4rem, 8.4vw, 8.4rem);
}

.contact-details {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.2fr;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(63, 64, 52, 0.28);
}

.contact-details>* {
  display: grid;
  align-content: center;
  min-height: 132px;
  padding: 24px clamp(20px, 3vw, 40px);
  color: var(--color-olive);
  font-size: clamp(1.08rem, 1.75vw, 1.42rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.38;
  text-decoration: none;
}

.contact-details>*+* {
  border-left: 1px solid rgba(63, 64, 52, 0.28);
}

.contact-details a:hover,
.contact-details a:focus-visible {
  background: var(--color-gold);
  color: var(--color-olive);
}

.contact-message {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 10vw, 144px) clamp(18px, 4vw, 64px);
  background: var(--color-cream);
  color: var(--color-olive);
}

.contact-message::before {
  position: absolute;
  top: -150px;
  right: -110px;
  z-index: -1;
  width: clamp(260px, 32vw, 500px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(236, 190, 64, 0.48);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(236, 190, 64, 0.07), 0 0 0 44px rgba(236, 190, 64, 0.04);
}

.contact-message__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 64px);
  width: min(1040px, 100%);
  margin: 0 auto;
}

.contact-message__intro {
  padding-top: 0;
  text-align: center;
}

.contact-message__intro h2 {
  margin: 0;
  color: var(--color-olive);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.contact-message__promise {
  max-width: 22ch;
  margin: 22px auto 0;
  color: var(--color-olive);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.65rem);
  font-weight: 650;
  line-height: 0.98;
}

.contact-form {
  position: relative;
  padding: clamp(24px, 4vw, 48px);
  background: var(--color-gold);
  border-radius: 20px;
  color: var(--color-olive);
  box-shadow: 0 0 18px rgba(63, 64, 52, 0.30);
}

.contact-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.contact-form__field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field > span {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-form__field b {
  color: var(--color-maroon);
}

.contact-form__field em {
  color: rgba(63, 64, 52, 0.68);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 550;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--color-olive);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(63, 64, 52, 0.3);
  border-radius: 2px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form__field textarea {
  min-height: 146px;
  resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(63, 64, 52, 0.48);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  background: var(--color-white);
  border-color: var(--color-maroon);
  box-shadow: 0 0 0 3px rgba(146, 53, 57, 0.14);
}

.contact-form__footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 28px;
}

.contact-form__submit {
  min-height: 54px;
  background: var(--color-cream);
  color: var(--color-olive);
  border: 0;
  cursor: pointer;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: #ebe5d8;
  color: var(--color-olive);
}

.contact-form__status {
  flex: 1 1 220px;
  min-height: 1.4em;
  margin: 0;
  color: rgba(63, 64, 52, 0.78);
  font-size: 0.88rem;
  line-height: 1.4;
}

.contact-form__status a {
  color: var(--color-olive);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-directions {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  align-items: center;
  gap: clamp(42px, 9vw, 140px);
  padding: clamp(64px, 9vw, 128px) max(18px, calc((100% - 1200px) / 2));
  background: var(--color-olive);
  color: var(--color-white);
}

.contact-directions :is(h1, h2) {
  font-size: clamp(3rem, 4.7vw, 4.6rem);
  overflow-wrap: normal;
  word-break: normal;
}

.contact-directions__content>p:not(.section-kicker) {
  max-width: 540px;
  margin: 26px 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
  font-weight: 550;
  line-height: 1.45;
}

.contact-map {
  min-height: 480px;
  overflow: hidden;
  border-radius: 46% 46% 0 0 / 18% 18% 0 0;
  background: var(--color-cream);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(0.6) sepia(0.14);
}

.garage-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(64px, 9vw, 120px) max(18px, calc((100% - 1200px) / 2));
  background: var(--color-gold);
}

.garage-section__content {
  max-width: 680px;
}

.garage-section__content .section-kicker {
  color: var(--color-olive);
  opacity: 0.75;
}

.garage-section__content h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin: 0 0 clamp(20px, 3vw, 36px);
  color: var(--color-olive);
}

.garage-section__content > p:not(.section-kicker):not(.garage-section__welcome) {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-olive);
  margin: 0 0 1.2em;
}

.garage-section__notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.45);
  border-left: 4px solid var(--color-olive);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 28px 0 24px;
}

.garage-section__notice-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1.4;
  color: var(--color-olive);
}

.garage-section__notice p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  color: var(--color-olive);
}

.garage-section__welcome {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-style: italic;
  font-weight: 700;
  color: var(--color-olive);
  opacity: 0.85;
  margin: 0 0 36px;
}

.garage-section__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

/* P-skylt höger kolumn, toppjusterad mot boxens högra hörn */
.garage-section__sign {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: start;
}

.garage-p-sign {
  width: clamp(100px, 9.5vw, 150px);
  height: auto;
  filter: drop-shadow(6px 10px 0 rgba(0,0,0,0.15));
}


.instagram-wall {
  overflow: hidden;
  padding: clamp(90px, 10vw, 140px) 0 clamp(64px, 7vw, 100px);
  background: var(--color-cream);
}

.instagram-wall__heading {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto clamp(48px, 6vw, 84px);
  text-align: center;
}

.instagram-wall__heading h2 {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(3.25rem, 8.4vw, 9rem);
  font-weight: 760;
  line-height: 0.98;
}

.instagram-wall__heading a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 24px;
  padding-bottom: 3px;
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}

.instagram-wall__grid {
  position: relative;
  width: min(1520px, calc(100% - 48px));
  height: clamp(460px, 42vw, 660px);
  margin: 0 auto;
}

.instagram-wall__item {
  --wall-stagger: 0px;
  --parallax-offset: 0px;
  position: absolute;
  margin: 0;
  border-radius: 48% 48% 0 0 / 32% 32% 0 0;
  overflow: hidden;
  transform: translateY(calc(var(--wall-stagger) + var(--parallax-offset)));
  transition: transform 100ms linear;
  will-change: transform;
}

.instagram-wall__item:nth-child(1) {
  --wall-stagger: 0px;
  left: 0;
  top: 0;
  width: 29%;
  height: 86%;
  z-index: 1;
}

.instagram-wall__item:nth-child(2) {
  --wall-stagger: -15px;
  left: 32.5%;
  top: 15%;
  width: 13%;
  height: 35%;
  z-index: 1;
}

.instagram-wall__item:nth-child(3) {
  --wall-stagger: 15px;
  left: 43.5%;
  top: 36%;
  width: 27.5%;
  height: 60%;
  z-index: 2;
}

.instagram-wall__item:nth-child(4) {
  --wall-stagger: -10px;
  left: 73%;
  top: 0;
  width: 20.5%;
  height: 56%;
  z-index: 3;
}

.instagram-wall__item:nth-child(5) {
  --wall-stagger: 20px;
  left: 85.5%;
  top: 38%;
  width: 14.5%;
  height: 36%;
  z-index: 1;
}

.instagram-wall__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meetings-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(42px, 9vw, 140px);
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 140px) clamp(18px, 4vw, 64px);
}

.meetings-intro__content {
  min-width: 0;
}

.meetings-intro :is(h1, h2),
.meetings-details h2 {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.meetings-intro :is(h1, h2) {
  font-size: clamp(2.8rem, 5.8vw, 5.6rem);
}

.meetings-intro__content>p:not(.section-kicker) {
  max-width: 660px;
  margin: 26px 0 0;
  font-size: clamp(1.12rem, 1.85vw, 1.48rem);
  font-weight: 550;
  line-height: 1.42;
}

.meetings-intro .pill {
  margin-top: 34px;
}

.meetings-intro__image {
  aspect-ratio: 0.88 / 1;
}

.meetings-details {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.95fr);
  gap: clamp(40px, 9vw, 140px);
  align-items: end;
  padding: clamp(64px, 9vw, 128px) max(18px, calc((100% - 1120px) / 2));
  background: var(--color-gold);
}

.meetings-details h2 {
  font-size: clamp(3rem, 5.8vw, 5.9rem);
}

.meetings-details__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(63, 64, 52, 0.34);
  border-left: 1px solid rgba(63, 64, 52, 0.34);
}

.meetings-details__list span {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 20px;
  border-right: 1px solid rgba(63, 64, 52, 0.34);
  border-bottom: 1px solid rgba(63, 64, 52, 0.34);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  font-weight: 725;
  text-align: center;
}

.site-footer {
  background: var(--color-olive);
  color: var(--color-white);
}

@media (min-width: 769px) {
  .restaurant-hours__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  }

  .restaurant-hours h2 {
    font-size: clamp(3rem, 4.2vw, 4.6rem);
  }

  .restaurant-hours h2 span {
    display: block;
  }
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px) clamp(18px, 4vw, 64px);
}

.site-footer__brand {
  display: inline-flex;
  width: 82px;
  filter: invert(1);
}

.site-footer__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 725;
  line-height: 1.35;
}

.footer-nav a,
.footer-contact a {
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.footer-contact {
  display: grid;
  max-width: 240px;
  gap: 4px;
  margin: 0;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .rooms-intro {
    padding-block: 48px 40px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
  }

  .brand {
    width: 62px;
  }

  .site-header--shrunk {
    min-height: 58px;
  }

  .site-header--shrunk .brand {
    width: 46px;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-actual-height, var(--header-height));
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: calc(100dvh - var(--header-actual-height, var(--header-height)));
    padding: 18px;
    overflow-y: auto;
    background: var(--color-cream);
    border-bottom: 1px solid rgba(63, 64, 52, 0.12);
  }

  body.nav-open .primary-nav {
    display: flex;
    z-index: 9999;
  }

  .primary-nav a {
    width: min(100%, 360px);
    min-height: 48px;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid rgba(63, 64, 52, 0.12);
  }
}

@media (max-width: 768px) {
  .hero__image {
    min-height: 590px;
    padding-inline: 24px;
  }

  .booking-strip__inner {
    grid-template-columns: minmax(0, 1fr);
    max-width: 560px;
  }

  .booking-field span {
    text-align: left;
  }

  .sirvoy-section {
    padding: 36px 16px;
  }

  .sirvoy-section__widget {
    padding: 16px 16px 0;
  }
}

@media (max-width: 767px) {
  .rooms-intro {
    grid-template-columns: 1fr;
    padding: 48px 24px 36px;
  }

  .rooms-intro :is(h1, h2) {
    margin-inline: auto;
    text-align: center;
  }

  .rooms-intro__facts-wrapper {
    margin-top: 32px;
    margin-inline: auto;
    width: calc(100% - 24px);
    max-width: 320px;
  }

  .rooms-intro__facts li {
    padding: 12px 18px;
    font-size: 0.95rem;
    gap: 12px;
  }

  .rooms-intro__facts li svg {
    width: 20px;
    height: 20px;
  }

  .rooms-intro__facts-wrapper::after {
    right: -12px;
    top: -12px;
    padding: 3px 8px;
    font-size: 0.68rem;
  }
}

@media (max-width: 768px) {
  .restaurant-intro,
  .restaurant-menu,
  .booking-section__inner,
  .restaurant-hours__inner,
  .breakfast__inner,
  .offer-card,
  .offer-card--event,
  .about-intro,
  .about-story,
  .contact-directions,
  .meetings-intro,
  .meetings-details {
    grid-template-columns: 1fr;
  }

  .restaurant-intro {
    padding-inline: 24px;
  }

  .restaurant-intro__text {
    text-align: center;
  }

  .restaurant-intro :is(h1, h2),
  .restaurant-intro__text p:not(.section-kicker) {
    margin-inline: auto;
  }

  .restaurant-intro__image,
  .restaurant-menu__image,
  .offer-card__image,
  .about-intro__image {
    width: min(560px, 100%);
    margin-inline: auto;
    justify-self: center;
    align-self: auto;
  }

  .meetings-intro__image {
    width: min(560px, 100%);
    margin-inline: auto;
    justify-self: center;
    align-self: auto;
  }

  .meetings-intro__content {
    text-align: center;
  }

  .meetings-intro__content>p:not(.section-kicker) {
    margin-inline: auto;
  }

  .about-intro__text {
    text-align: center;
  }

  .about-intro__text p:not(.section-kicker) {
    margin-inline: auto;
  }

  .about-story {
    padding-inline: 24px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .contact-details>* {
    min-height: 88px;
  }

  .contact-details>*+* {
    border-top: 1px solid rgba(63, 64, 52, 0.28);
    border-left: 0;
  }

  .contact-directions {
    padding-inline: 24px;
  }

  .about-story__mark {
    width: min(260px, 100%);
  }

  .offer-card--event .offer-card__image {
    order: 2;
  }

  .offer-card h2 {
    font-size: 8.5cqw;
  }

  .rooms-intro__facts {
    align-self: stretch;
  }

  .room-cards,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .room-cards {
    width: min(560px, calc(100% - 36px));
    margin-inline: auto;
  }

  .room-card--offset {
    margin-top: 0;
  }

  .room-card__body {
    min-height: auto;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .site-footer__brand {
    margin-inline: auto;
  }

  .footer-contact {
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .instagram-wall__grid {
    height: clamp(340px, 48vw, 480px);
    width: min(720px, calc(100% - 32px));
  }
}

@media (max-width: 400px) {
  .breakfast__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* iPad Mini zone: 560–768px — show 2 cards per view in carousel */
@media (min-width: 561px) and (max-width: 768px) {
  .room-card {
    flex: 0 0 calc(50% - 14px);
    scroll-snap-align: start;
  }

  .room-cards {
    width: calc(100% - 36px);
    margin-inline: auto;
    padding: 0 18px;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  .hero__image {
    min-height: auto;
    padding: 50px 18px;
    background-position: 52% center;
  }

  .hero__kicker {
    font-size: 0.72rem;
  }

  .hero__content {
    width: 100%;
    max-width: 339px;
  }

  .hero h1 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    font-size: clamp(2rem, 9.4vw, 2.8rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero h1 .keep-together {
    display: inline-block;
    max-width: 100%;
    font-size: inherit;
    letter-spacing: inherit;
  }

  .hero__lede {
    margin-top: 18px;
    font-size: 1.08rem;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .hero__actions .pill {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    min-height: 44px;
    padding: 12px 10px;
    font-size: 0.82rem;
  }

  .booking-strip {
    padding: 28px 18px 24px;
  }

  .booking-field input,
  .booking-field select,
  .booking-search {
    min-height: 52px;
  }

  .sirvoy-section {
    padding: 32px 14px;
  }

  .sirvoy-section__title {
    font-size: clamp(1.35rem, 5vw, 1.7rem);
  }

  .sirvoy-section__widget {
    padding: 12px 12px 0;
    border-radius: 6px;
  }

  .rooms-intro {
    padding: 38px 18px 28px;
  }

  .restaurant-intro {
    padding: 46px 18px;
  }

  .booking-section {
    padding: 58px 18px 72px;
  }

  .booking-section__inner {
    gap: 34px;
  }

  .booking-section__intro {
    padding-top: 0;
    text-align: center;
  }

  .booking-section__intro h2,
  .booking-section__intro > p:not(.section-kicker):not(.booking-section__hours) {
    margin-inline: auto;
  }

  .booking-section__intro h2 {
    max-width: none;
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .booking-section__hours {
    width: min(100%, 320px);
    margin-inline: auto;
    text-align: left;
  }

  .booking-section__widget {
    min-height: 500px;
    padding: 14px;
    box-shadow: 8px 8px 0 var(--color-olive);
  }

  .booking-section__widget .caspeco-booking {
    min-height: 470px;
  }

  .restaurant-intro :is(h1, h2) {
    max-width: 100%;
    font-size: clamp(2.15rem, 9.4vw, 3.25rem);
    line-height: 1.02;
  }

  .restaurant-menu h2,
  .meetings-details h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9.8vw, 3.4rem);
    line-height: 1.02;
  }

  .restaurant-hours__inner,
  .breakfast__inner {
    gap: 32px;
  }

  .breakfast {
    padding: 58px 18px 72px;
  }

  .breakfast__aside {
    padding-top: 8px;
  }

  .breakfast__image {
    width: calc(100% - 8px);
    margin-inline: auto;
    box-shadow: 8px 8px 0 var(--color-gold);
  }

  .breakfast__details {
    padding: 24px 20px;
  }

  .breakfast__actions {
    align-items: flex-start;
    gap: 16px;
  }

  .breakfast__actions .pill {
    min-width: 0;
    padding-inline: 22px;
  }

  .restaurant-hours dl div,
  .breakfast__times div {
    display: grid;
    gap: 5px;
  }

  .breakfast__times dd {
    max-width: none;
    text-align: left;
  }

  .restaurant-menu {
    gap: 40px;
    padding-inline: 18px;
  }

  .offers-intro {
    padding: 52px 18px 36px;
  }

  .offers-intro :is(h1, h2) {
    font-size: 13cqw;
  }

  .offer-list {
    gap: 28px;
    padding: 0 14px 62px;
  }

  .offer-card {
    gap: 30px;
    padding: 30px 24px;
  }

  .about-intro {
    padding: 52px 18px;
  }

  .about-intro :is(h1, h2) {
    font-size: clamp(3.1rem, 15vw, 4.6rem);
  }

  .about-story {
    padding: 62px 18px;
  }

  .about-story__mark {
    width: 210px;
  }

  .about-story__mark img {
    width: 72px;
  }

  .about-story__mark span {
    margin-top: -42px;
    font-size: 1.55rem;
  }

  .contact-details>* {
    padding-inline: 22px;
  }

  .contact-message {
    padding: 42px 18px 20px;
  }

  .contact-message__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-message__intro {
    text-align: center;
  }

  .contact-message__intro h2 {
    font-size: clamp(3rem, 13.5vw, 4.35rem);
  }

  .contact-message__promise {
    max-width: none;
    margin-top: 14px;
    font-size: clamp(1.55rem, 7.2vw, 2.35rem);
    line-height: 1.05;
  }

  .contact-message__promise-line {
    display: inline-block;
    white-space: nowrap;
  }

  .contact-form {
    margin-block: 16px;
    padding: 16px;
  }

  .contact-form__fields {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form__field--full {
    grid-column: auto;
  }

  .contact-form__footer {
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    flex-direction: column;
  }

  .contact-form__status {
    flex: 0 0 auto;
  }

  .contact-form__submit {
    width: 100%;
  }

  .contact-directions {
    gap: 36px;
    padding: 62px 18px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 380px;
  }

  .garage-section {
    grid-template-columns: 1fr;
    padding: 52px 18px;
    gap: 36px;
  }

  .garage-section__content h2 {
    font-size: clamp(2.2rem, 11vw, 2.6rem);
  }

  .garage-section__sign {
    position: absolute;
    top: 18px;
    right: 18px;
    align-self: auto;
  }

  .garage-p-sign {
    width: 52px;
  }

  .garage-section__cta {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .garage-section__cta .pill {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding-inline: 14px;
    font-size: 0.95rem;
  }

  .garage-section__notice {
    gap: 12px;
    padding: 16px 18px;
  }

  .instagram-wall {
    padding-block: 44px 50px;
  }

  .instagram-wall__grid {
    height: clamp(170px, 46vw, 260px);
    width: min(480px, calc(100% - 24px));
  }

  .instagram-wall__item {
    border-radius: 44% 44% 0 0 / 20% 20% 0 0;
  }

  .instagram-wall__item:nth-child(1) {
    height: 130px !important;
  }

  .instagram-wall__item:nth-child(2) {
    height: 68px !important;
  }

  .instagram-wall__item:nth-child(3) {
    height: 112px !important;
  }

  .instagram-wall__item:nth-child(4) {
    height: 104px !important;
  }

  .instagram-wall__item:nth-child(5) {
    height: 72px !important;
  }

  .instagram-wall__heading {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 40px;
  }

  .instagram-wall__heading h2 {
    display: inline-block;
    max-width: none;
    font-size: clamp(2.15rem, 10vw, 3rem);
    letter-spacing: inherit;
    white-space: nowrap;
  }

  .meetings-intro {
    padding: 52px 18px;
  }

  .meetings-intro :is(h1, h2) {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.5vw, 4.4rem);
    line-height: 1.02;
  }

  .meetings-details {
    gap: 36px;
    padding: 62px 18px;
  }

  .meetings-details__list span {
    min-height: 100px;
    padding: 16px;
  }

  .restaurant-menu h2 {
    max-width: 100%;
  }

  .breakfast dd {
    text-align: left;
  }

  .breakfast h2 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .breakfast__lead {
    font-size: 1.32rem;
  }

  .breakfast__content > p:not(.section-kicker):not(.breakfast__lead):not(.breakfast__highlight):not(.breakfast__family-copy) {
    font-size: 1rem;
  }

  .breakfast__highlight {
    max-width: 100%;
    font-size: 1.18rem;
  }

  .breakfast__price strong {
    font-size: 1.5rem;
  }

  .breakfast__family-copy {
    font-size: 0.98rem;
  }

  .rooms-intro :is(h1, h2) {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .section-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .arch-frame {
    aspect-ratio: 1 / 0.98;
  }

  .room-cards {
    width: calc(100% - 28px);
  }

  .room-card__body h3 {
    max-width: 100%;
  }

  .room-info {
    padding-inline: 18px;
  }

  .info-panel dl div,
  .distance-list li {
    display: grid;
    gap: 4px;
  }

  .info-panel dd {
    text-align: left;
  }

  .site-footer__inner {
    padding-inline: 18px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 18px;
    font-size: 1rem;
    text-align: center;
  }

  .footer-nav__garage {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .instagram-wall__item {
    transform: translateY(var(--wall-stagger));
    transition: none;
  }
}

/* ─────────────────────────────────────────────
   ROOM DETAIL PAGES  (.rd-*)
───────────────────────────────────────────── */

/* Hero Slider */
.rd-hero {
  position: relative;
  background: var(--color-cream);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0; /* Tar bort all extra luft ovanför bildspelet */
}

/* Wrapper som håller ihop bild + pilar vertikalt */
.rd-slider {
  position: relative;
}

/* Enbart glidande remsa – ingen fast höjd */
.rd-slider__track {
  display: flex;
  align-items: flex-start; /* Viktigt! Så att inte korta slides sträcks till den längstas höjd */
  transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Viewport: klipper överskjutande slides (INGEN position:relative här — 
   så att absolut-positionerade barn ankrar till .rd-slider istället) */
.rd-slider__viewport {
  overflow: hidden;
}

/* Intern klipp-wrapper, används inte längre men låter CSS vara bakvärtskompatibel */
.rd-slider__clip {
  /* Tog bort overflow: hidden för att vara helt säker på att det inte klipper */
}

/* Varje slide: bred som viewporten, höjden dikteras av bilden */
.rd-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  background: transparent; /* Transparent så att den inte döljer skuggor från syskon-slides (om de råkar överlappa) */
  display: block; /* Ändrat från flex för att undvika Safari flexbox bugg */
  text-align: center;
  padding: 34px 0 100px 0; /* 100px nere för att garantera att hela bottenskuggan får rymmas (offset 32 + blur 64 = 96px) */
}

/* Bilden: max 90vw bred, max 80vh hög — anpassar sig till stående OCH liggande */
.rd-slider__slide img {
  display: block;
  margin: 0 auto; /* Centrerar bilden horisontellt */
  max-width: calc(100% - 48px); /* Ger skuggan plats på höger/vänster sida utan att slå i skärmkanten */
  width: auto;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.3),
    0 16px 40px rgba(0, 0, 0, 0.3),
    0 32px 64px rgba(0, 0, 0, 0.15);
}

/* Pilar: dras upp över bildens nederkant med negativ margin.
   Utanför viewport så att overflow:hidden INTE klipper dem.
   position:relative så att z-index fungerar. */
.rd-slider__controls {
  position: relative;
  z-index: 10;
  margin-top: -152px;  /* -152px: kompenserar för 100px padding, och drar upp knapparna så de sitter i bildkanten */
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 0 16px;
  background: transparent;
  pointer-events: none;
}
.rd-slider__controls .rd-slider__arrow {
  pointer-events: auto;
}

/* Desktop + iPad: lite mindre bild så rubriken syns, knapparna lite högre upp */
@media (min-width: 768px) {
  .rd-slider__slide img {
    max-height: 52vh; /* Lite lägre än mobilens 70vh — ger plats åt rubriken nedanför */
  }

  .rd-slider__controls {
    margin-top: -160px; /* Lite högre upp än på mobil */
  }
}

.rd-slider__arrow {
  position: static;   /* Inte absolut – följer naturligt innehållsflöde */
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background-color 180ms ease;
}

.rd-slider__arrow:hover {
  background: var(--color-cream);
  transform: scale(1.06);
}

.rd-slider__arrow svg {
  display: block;
  width: 22px;
  height: 22px;
}

.rd-slider__arrow:focus-visible {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 3px;
}

.rd-slider[data-single] .rd-slider__controls {
  display: none;
}

/* ─── Hasselbacken-layout: h1 centrerad + 2 kolumner ─── */

.rd-content {
  /* Minskade top-padding från 52px till 24px för att dra upp rubriken närmare bilden */
  padding: clamp(24px, 5vw, 64px) clamp(18px, 4vw, 64px) clamp(48px, 7vw, 96px);
}

.rd-content__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

/* Centrerad rubrik ovanför kolumnerna */
.rd-header {
  margin-bottom: clamp(40px, 6vw, 72px);
  text-align: center;
}

.rd-header h1 {
  margin: 12px 0 0;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 760;
  line-height: 0.97;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

/* Centrerad layout för rumsinformation */
.rd-layout {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* Boka-knapp (flyttad centrerat ovanför beskrivning) */
.rd-booking-cta {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(32px, 5vw, 54px);
}

.rd-booking-cta .pill {
  min-width: 220px;
}

.rd-layout__info {
  min-width: 0;
}

/* Ikon-rad: antal gäster + kvm (precis som Hasselbacken .room-icons-horizontal) */
.rd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(63, 64, 52, 0.15);
  justify-content: center;
}

.rd-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 650;
}

.rd-meta__item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

/* Beskrivning */
.rd-description {
  margin-bottom: 32px;
  text-align: center;
}

.rd-description h2 {
  margin: 0 0 14px;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.rd-description p {
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
  max-width: 65ch;
}

.rd-description p + p {
  margin-top: 10px;
}

.rd-description__cta {
  margin-top: 26px;
}

/* Utsikt-badges */
.rd-views {
  margin-bottom: 40px;
  text-align: center;
}

.rd-views__label {
  margin: 0 0 12px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.rd-views__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.rd-views__list li {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border: 1.5px solid var(--color-olive);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Amenitetslista (ikon + text per rad, precis som Hasselbacken) */
.rd-amenities {
  display: grid;
  gap: 0;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(63, 64, 52, 0.14);
  width: min(100%, 440px);
  text-align: left;
}

.rd-amenities li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(63, 64, 52, 0.1);
  background: #fff;
  font-size: clamp(0.9rem, 1.2vw, 1.02rem);
  font-weight: 600;
  line-height: 1.3;
}

.rd-amenities li:last-child {
  border-bottom: none;
}

.rd-amenities li svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  opacity: 0.65;
}

/* ─── "Alltid på Hotel Victoria" ─── */
.rd-services {
  padding: clamp(60px, 8vw, 112px) clamp(18px, 4vw, 64px);
  background: var(--color-cream);
}

.rd-services__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.rd-services h2 {
  margin: 0 0 clamp(32px, 5vw, 64px);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.rd-services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px clamp(16px, 4vw, 48px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.rd-services__grid li {
  flex: 1 1 260px;
  max-width: 360px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-olive);
  border-bottom: 1px solid rgba(63, 64, 52, 0.12);
  word-break: normal;
  overflow-wrap: break-word;
}

.rd-services__grid li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

.rd-services__note {
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-maroon);
  max-width: 600px;
}

/* ─── "Fler rum" browse-rad ─── */
.rd-browse {
  padding: clamp(52px, 8vw, 104px) 0;
  overflow: hidden;
}

.rd-browse__inner {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.rd-browse h2 {
  margin: 0 0 clamp(26px, 4vw, 46px);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
}

.rd-browse__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.rd-browse__card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.rd-browse__card:hover .rd-browse__img img,
.rd-browse__card:focus-visible .rd-browse__img img {
  transform: scale(1.05);
}

.rd-browse__card:focus-visible {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 3px;
}

/* Kvadratisk bild med bågform i toppen — precis som Hasselbackens card_image-wrapper */
.rd-browse__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 22% 22% 0 0;
  background: var(--color-olive);
}

.rd-browse__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}

.rd-browse__body {
  padding: 16px 4px 20px;
}

.rd-browse__body h3 {
  margin: 0 0 6px;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: 0;
}

.rd-browse__body p {
  margin: 0 0 10px;
  font-size: 0.87rem;
  font-weight: 600;
  opacity: 0.65;
}

/* Textlänk — precis som Hasselbackens "Läs mer" (ingen pill-knapp) */
.rd-browse__link {
  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  color: var(--color-olive);
}

/* Pilar under "Fler rum": dolda på desktop där alla kort visas i grid,
   synliga när tracken går att bläddra (≤1024px). */
.rd-browse__controls {
  display: none;
  margin-top: clamp(18px, 3vw, 28px);
}

@media (max-width: 1024px) {
  .rd-browse__controls {
    display: flex;
  }
}

/* ─── Erbjudanden-CTA ─── */
.rd-offers {
  padding: clamp(54px, 9vw, 116px) clamp(18px, 4vw, 64px);
  background: var(--color-gold);
  text-align: center;
}

.rd-offers__inner {
  width: min(780px, 100%);
  margin: 0 auto;
}

.rd-offers h2 {
  margin: 12px 0 clamp(26px, 4vw, 44px);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

/* ─── Responsiv ─── */

/* iPad (769–1024px): vanlig scroll, 2 kort syns, ingen peek, ingen loop */
@media (min-width: 769px) and (max-width: 1024px) {
  .rd-browse__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }
  .rd-browse__track::-webkit-scrollbar {
    display: none;
  }
  .rd-browse__card {
    flex: 0 0 calc(50% - 8px);
    scroll-snap-align: start;
  }
}

/* Mobil (≤768px): ett kort i mitten, grannkort kikar fram på varje sida */
@media (max-width: 768px) {
  .rd-browse {
    overflow: hidden;          /* klipp vid skärmkant */
  }
  .rd-browse__inner {
    width: 100%;               /* full bredd på mobil */
    overflow: visible;         /* låt spåret sticka ut */
  }
  .rd-browse__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    /* padding skapar fönstren för grannkorten */
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }
  .rd-browse__track::-webkit-scrollbar {
    display: none;
  }
  .rd-browse__card {
    /* Fyll hela synligt område (viewport - 2×peek - 2×gap-halva) */
    flex: 0 0 calc(100vw - 64px - 24px);
    scroll-snap-align: center;
  }
}

@media (max-width: 768px) {
  /* Rumlayouten är redan centrerad och fullt responsiv i grundreglerna */

  .rd-header {
    text-align: center;
    margin-bottom: 24px;
  }

  .rd-meta {
    justify-content: center;
    gap: 12px 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .rd-views__list {
    justify-content: center;
  }

  .rd-amenities {
    text-align: left;
    display: inline-block;
    width: min(100%, 340px);
    margin: 0 auto;
  }



  .restaurant-wrapper {
    padding: 28px 12px;
  }

  .restaurant-intro {
    padding: 28px 18px;
    gap: 28px;
    text-align: center;
  }

  .restaurant-intro__actions {
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
  }

  .restaurant-hours,
  .breakfast,
  .room-info,
  .room-gallery {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .rd-services {
    padding: 40px 16px;
  }

  .rd-services h2 {
    margin-bottom: 24px;
  }

  .rd-services__grid li {
    padding: 8px 0;
    gap: 8px;
    font-size: 0.92rem;
    align-items: flex-start;
  }

  .rd-services__grid li svg {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }

  .rd-services__note {
    margin: 24px auto 0;
    text-align: center;
    font-size: 0.85rem;
    width: 100%;
  }

  .rd-services__grid li:last-child {
    grid-column: span 2;
    justify-content: center;
    border-bottom: none;
  }

  .section-heading {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .rd-header h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    line-height: 1;
  }

  .rd-services__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px 24px;
  }

  /* rd-browse__track hanteras i mobil-blocket ovan */

  .rd-browse__body h3 {
    font-size: clamp(1rem, 5vw, 1.4rem);
  }

  .rd-slider__arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

@media (max-width: 375px) {

  /* Keep 2 columns on 375px but make gaps slightly tighter */
  .rd-services__grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 8px 16px;
  }
}

/* ==========================================================================
   Menu Modal Styles
   ========================================================================== */

html.modal-open,
body.modal-open {
  overflow: hidden !important;
  height: 100dvh !important;
  overscroll-behavior: none !important;
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
  overscroll-behavior: contain;
}

.menu-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.menu-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 16, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.menu-modal__body {
  position: relative;
  z-index: 1;
  width: min(880px, 92%);
  max-height: 85vh;
  background-color: var(--color-cream);
  color: var(--color-olive);
  border: 1px solid rgba(63, 64, 52, 0.15);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  transform: scale(0.96) translateY(12px);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Bakgrundsbild som är något förstorad för att beskära bort inbyggda kanter i bilden */
.menu-modal__body::after {
  content: '';
  position: absolute;
  inset: -10%;
  background-image: url('../assets/menyer/retro-pattern.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Cream-overlay ovanpå mönstret så texten är läsbar */
.menu-modal__body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244, 239, 231, 0.86);
  pointer-events: none;
  z-index: 1;
}

/* Header och content ovanpå overlay */
.menu-modal__header,
.menu-modal__content {
  position: relative;
  z-index: 2;
}

.menu-modal[aria-hidden="false"] .menu-modal__body {
  transform: scale(1) translateY(0);
}

.menu-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 239, 231, 0.9);
  border: 1px solid rgba(63, 64, 52, 0.2);
  border-radius: 999px;
  color: var(--color-olive);
  font-size: 26px;
  font-weight: 300;
  cursor: pointer;
  transition: all 180ms ease;
  padding: 0;
  line-height: 1;
  /* Måste vara högre än ::after-overlayen (z-index 1) */
  z-index: 10;
  pointer-events: all;
}

.menu-modal__close:hover,
.menu-modal__close:focus-visible {
  background: var(--color-olive);
  color: var(--color-cream);
  border-color: var(--color-olive);
}

.menu-modal__header {
  padding: 36px 32px 20px;
  border-bottom: 1px solid rgba(63, 64, 52, 0.12);
  text-align: center;
  /* Sticky så rubrik och flikar alltid syns */
  position: sticky;
  top: 0;
  background: rgba(244, 239, 231, 0.96);
  backdrop-filter: blur(8px);
  z-index: 3;
}

.menu-modal__title {
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 750;
  margin: 0 0 2px;
  color: var(--color-olive);
  letter-spacing: -0.01em;
}

.menu-modal__subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 20px;
  color: var(--color-terracotta);
  font-weight: 600;
}

.menu-modal__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
  margin-top: 14px;
}

.menu-modal__tab {
  background: rgba(244, 239, 231, 0.7);
  border: 1px solid rgba(63, 64, 52, 0.2);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-olive);
  cursor: pointer;
  transition: all 180ms ease;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  backdrop-filter: blur(4px);
}

.menu-modal__tab.active {
  background: var(--color-maroon);
  border-color: var(--color-maroon);
  color: var(--color-white);
}

.menu-modal__tab:hover:not(.active),
.menu-modal__tab:focus-visible:not(.active) {
  background: rgba(244, 239, 231, 0.95);
  border-color: var(--color-olive);
}

.menu-modal__content {
  padding: 28px clamp(16px, 4vw, 40px) 40px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Custom scrollbar to prevent blocking the background pattern */
.menu-modal__content::-webkit-scrollbar {
  width: 10px;
}

.menu-modal__content::-webkit-scrollbar-track {
  background: transparent;
}

.menu-modal__content::-webkit-scrollbar-thumb {
  background: rgba(63, 64, 52, 0.25);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 5px;
}

.menu-modal__content::-webkit-scrollbar-thumb:hover {
  background: rgba(63, 64, 52, 0.45);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.menu-cat {
  margin-bottom: 44px;
}

.menu-cat:last-child {
  margin-bottom: 0;
}

.menu-cat__title {
  font-family: "Marcellus", Georgia, serif;
  font-size: 1.62rem;
  font-weight: 725;
  color: var(--color-maroon);
  border-bottom: 1.5px solid rgba(63, 64, 52, 0.12);
  padding-bottom: 6px;
  margin: 0 0 10px;
}

.menu-cat__note {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(63, 64, 52, 0.65);
  margin: 0 0 24px;
  line-height: 1.4;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 680px) {
  .menu-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 36px;
  }
}

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.menu-item__name {
  font-family: "Marcellus", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-olive);
  line-height: 1.25;
}

.menu-item__price {
  font-family: "Marcellus", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-maroon);
  white-space: nowrap;
}

.menu-item__description {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.45;
  color: rgba(63, 64, 52, 0.72);
  margin: 0;
}



.pill--print {
  background: transparent;
  border: 1px solid var(--color-olive);
  color: var(--color-olive);
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 180ms ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pill--print:hover,
.pill--print:focus-visible {
  background: var(--color-olive);
  color: var(--color-cream);
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  body * {
    visibility: hidden;
  }

  #menu-modal,
  #menu-modal * {
    visibility: visible;
  }

  #menu-modal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    overflow: visible;
    background: #ffffff !important;
  }

  .menu-modal__backdrop,
  .menu-modal__close,
  .menu-modal__footer,
  .menu-modal__tabs {
    display: none !important;
  }

  .menu-modal__body {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
    background: #ffffff !important;
    height: auto;
    border: none;
  }

  .menu-modal__content {
    max-height: none;
    overflow: visible;
    padding: 0;
  }

  .menu-cat__title {
    color: #000000 !important;
    border-bottom-color: #000000 !important;
  }

  .menu-item__name,
  .menu-item__price,
  .menu-item__description {
    color: #000000 !important;
  }
}

/* ==========================================================================
   Meny-modal: Mobilanpassning
   ========================================================================== */

@media (max-width: 600px) {
  .menu-modal {
    align-items: flex-end;
  }

  .menu-modal__body {
    width: 100%;
    max-height: 92dvh;
    border-radius: 20px 20px 0 0;
    transform: scale(1) translateY(100%);
    transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .menu-modal[aria-hidden="false"] .menu-modal__body {
    transform: scale(1) translateY(0);
  }

  .menu-modal__header {
    padding: 20px 16px 16px;
    text-align: center;
  }

  .menu-modal__title {
    font-size: 1.35rem;
    padding-right: 44px;
    /* plats för kryssknapp */
  }

  .menu-modal__subtitle {
    display: none;
  }

  .menu-modal__close {
    top: 12px;
    right: 12px;
  }

  .menu-modal__tabs {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin-top: 10px;
  }

  .menu-modal__tab {
    font-size: 0.84rem;
    padding: 6px 14px;
    white-space: nowrap;
    min-height: 38px;
  }

  .menu-modal__content {
    padding: 20px 16px 40px;
  }

  .menu-cat {
    margin-bottom: 32px;
  }

  .menu-cat__title {
    font-size: 1.3rem;
  }

  .menu-list {
    gap: 20px;
  }

  .menu-item__name {
    font-size: 1rem;
  }

  .menu-item__price {
    font-size: 0.95rem;
  }

  .menu-item__description {
    font-size: 0.88rem;
  }
}