@font-face {
  font-family: 'Bicyclette';
  src: url('Bicyclette-Light-webfont.woff2') format('woff2'),
       url('Bicyclette-Light-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Bicyclette';
  src: url('Bicyclette-Bold-webfont.woff2') format('woff2'),
       url('Bicyclette-Bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Bicyclette';
  src: url('Bicyclette-Italic-webfont.woff2') format('woff2'),
       url('Bicyclette-Italic-webfont.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}

:root {
  --sand: #E8DFB0;
  --vin:  #5C1A25;
  --text: #2A1810;
  --blue: #B8CBDB;
  --white: #FFFFFF;
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Bicyclette', Georgia, serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
}

/* ── HEADER ─────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-left  { display: flex; align-items: center; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; }

.logo-link { display: flex; align-items: center; text-decoration: none; position: relative; }
.logo { height: 58px; width: auto; display: block; transition: opacity 0.4s ease, height 0.4s ease; }
.logo--sort    { opacity: 1; }
.logo--sand    { position: absolute; top: 0; left: 0; height: 58px; opacity: 0; transition: opacity 0.4s ease, height 0.4s ease; }
.logo--vin-red { position: absolute; top: 0; left: 0; height: 58px; opacity: 0; transition: opacity 0.4s ease, height 0.4s ease; }

/* Side panel */
.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 33.333vw;
  height: 100vh;
  background: #F5F1E1;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 52px 52px;
  box-shadow: -4px 0 40px rgba(42, 24, 16, 0.08);
  pointer-events: none;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.menu-wrapper:hover .nav-panel,
.menu-wrapper.is-open .nav-panel {
  transform: translateX(0);
  pointer-events: all;
}

.menu-wrapper.is-closed .nav-panel {
  transform: translateX(100%) !important;
  pointer-events: none !important;
}

/* Top row: close button (mobile only) */
.nav-panel-top {
  display: none;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.nav-panel-lang {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.panel-lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 13px;
  color: var(--text);
  padding: 0;
  text-align: left;
  opacity: 0.35;
  transition: opacity 0.2s;
}

.panel-lang-btn.active { opacity: 1; }

/* Boxed X close button */
.nav-panel-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  flex-shrink: 0;
}

.nav-panel-close::before,
.nav-panel-close::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--vin);
}

.nav-panel-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-panel-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* Large nav links */
.nav-panel-links {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-panel-links a {
  display: block;
  font-family: 'Bicyclette', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: bold;
  color: var(--vin);
  text-decoration: none;
  line-height: 1.3;
  padding: 3px 0;
  transition: opacity 0.2s;
}

.nav-panel-links a:hover { opacity: 0.65; }

/* Info block */
.nav-panel-info {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(42, 24, 16, 0.14);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-panel-info p {
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.75;
  color: var(--vin);
}

.nav-panel-info a {
  color: var(--vin);
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-panel-info a:hover { opacity: 0.65; }

/* Lang toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  letter-spacing: 1px;
}

.lang-sep { color: rgba(42, 24, 16, 0.3); }

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(42, 24, 16, 0.4);
  padding: 0;
  transition: color 0.2s;
}

.lang-btn:hover { color: var(--vin); }
.lang-btn.active { color: var(--vin); font-weight: 300; }

/* Book button (hero) */
.book-btn {
  display: inline-block;
  background: var(--vin);
  color: var(--sand);
  text-decoration: none;
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.2s;
  white-space: nowrap;
}

.book-btn:hover { background: #3d0f17; }

/* Menu trigger */
.menu-wrapper { position: static; }

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  padding: 0;
  transition: color 0.4s ease;
}

/* Nav colour transitions */
.lang-btn, .lang-sep { transition: color 0.4s ease; }

/* Dark-background theme (hero video) */
#site-header[data-theme="dark"] .logo--sort { opacity: 0; }
#site-header[data-theme="dark"] .logo--sand { opacity: 1; }
#site-header[data-theme="dark"] .logo, #site-header[data-theme="dark"] .logo--sand, #site-header[data-theme="dark"] .logo--vin-red { height: 72px; }
#site-header[data-theme="dark"] .lang-btn        { color: rgba(232, 223, 176, 0.45); }
#site-header[data-theme="dark"] .lang-btn.active { color: var(--sand); }
#site-header[data-theme="dark"] .lang-sep        { color: rgba(232, 223, 176, 0.2); }
#site-header[data-theme="dark"] .menu-btn        { color: rgba(232, 223, 176, 0.8); }

/* Vin theme (ophold section) */
#site-header[data-theme="vin"] .logo--sort   { opacity: 0; }
#site-header[data-theme="vin"] .logo--vin-red { opacity: 1; }
#site-header[data-theme="vin"] .lang-btn        { color: rgba(92, 26, 37, 0.45); }
#site-header[data-theme="vin"] .lang-btn.active { color: var(--vin); }
#site-header[data-theme="vin"] .lang-sep        { color: rgba(92, 26, 37, 0.3); }
#site-header[data-theme="vin"] .menu-btn        { color: var(--vin); }

/* Blue theme (køkkenet) */
#site-header[data-theme="blue"] .logo--sort   { opacity: 0; }
#site-header[data-theme="blue"] .logo--sand   { opacity: 0; }
#site-header[data-theme="blue"] .logo--vin-red { opacity: 1; }
#site-header[data-theme="blue"] .lang-btn        { color: rgba(92, 26, 37, 0.45); }
#site-header[data-theme="blue"] .lang-btn.active { color: var(--vin); }
#site-header[data-theme="blue"] .lang-sep        { color: rgba(92, 26, 37, 0.3); }
#site-header[data-theme="blue"] .menu-btn        { color: var(--vin); }

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--text);
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.38) 70%,
    rgba(0, 0, 0, 0.58) 100%
  );
  z-index: 1;
}

/* Hero CTAs */
.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
  padding-bottom: 56px;
}

.outline-btn {
  display: inline-block;
  border: 1px solid rgba(232, 223, 176, 0.75);
  color: var(--sand);
  text-decoration: none;
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 40px;
  background: transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.outline-btn:hover {
  background: var(--sand);
  color: var(--text);
  border-color: var(--sand);
}

/* ── SHARED SECTION ──────────────────────── */
.section {
  padding: 100px 48px;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--vin);
  margin-bottom: 16px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--vin);
  margin-bottom: 28px;
}

.section-title {
  font-family: 'Bicyclette', Georgia, serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 28px;
}

.section-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
  max-width: 520px;
}

/* ── ABOUT ───────────────────────────────── */
.about { background: var(--white); }
.kalender-section { background: #F5F1E1; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.stripe-deco {
  width: 120px;
  opacity: 0.2;
  margin-top: 44px;
}

/* ── KALENDER ────────────────────────────── */
.kalender-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.kalender-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kalender-btn-desktop { margin-top: 32px; }
.kalender-btn-mobile { display: none; }
.rooms-btn-mobile-wrap { display: none; }

.kalender-image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .kalender-inner { grid-template-columns: 1fr; gap: 0; }
  .kalender-text { justify-content: flex-start; padding-bottom: 40px; }
  .kalender-image { height: 65vw; min-height: 260px; max-width: 100%; }
}

/* ── GODT AT VIDE ACCORDION ──────────────── */
.godt-accordion-section {
  background: #F5F1E1;
  border-top: 1px solid rgba(42, 24, 16, 0.1);
}

.godt-accordion-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 80px;
}

.godt-accordion {
  border-bottom: 1px solid rgba(42, 24, 16, 0.1);
}

.godt-accordion summary { list-style: none; }
.godt-accordion summary::-webkit-details-marker { display: none; }

.godt-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: pointer;
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--vin);
  user-select: none;
}

.godt-accordion-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.godt-accordion-icon::before,
.godt-accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--vin);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.godt-accordion-icon::before { width: 16px; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.godt-accordion-icon::after  { width: 1px; height: 16px; left: 50%; top: 0; transform: translateX(-50%); }

.godt-accordion[open] .godt-accordion-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.godt-accordion-body {
  padding-bottom: 32px;
}

.godt-accordion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 64px;
}

.godt-accordion-heading {
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vin);
  margin-bottom: 10px;
}

.godt-accordion-text {
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  max-width: 680px;
}

@media (max-width: 768px) {
  .godt-accordion-section { padding: 8px 0 0; }
  .godt-accordion-inner { padding: 0 24px; }
  .godt-accordion-trigger { padding: 24px 0; font-size: 9px; }
  .godt-accordion-grid { grid-template-columns: 1fr; gap: 32px; }
  .godt-accordion-body { padding-bottom: 48px; }
  .godt-accordion-text { font-size: 14px; }
}

/* ── ABOUT VIDEO ─────────────────────────── */
.about-video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(214, 227, 235, 0.75);
}

.about-video-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: center;
  padding: 0 48px;
}

.about-video-content .section-label { color: var(--vin); }
.about-video-content .divider { margin-left: auto; margin-right: auto; }

.about-quote {
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.5px;
  color: var(--vin);
  margin: 0 auto 28px;
  padding: 0 24px;
  border: none;
  line-height: 1.5;
}
.about-video-content .section-body {
  color: var(--vin);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 14px;
}

/* ── GODT AT VIDE ────────────────────────── */
.godt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.godt-item h3 {
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vin);
  margin-bottom: 12px;
}

.godt-item p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.75;
}

@media (max-width: 900px) {
  .godt-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 540px) {
  .godt-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── ROOMS HERO ──────────────────────────── */
.rooms-hero {
  min-height: 100vh;
  background: #F5F1E1;
  display: flex;
  align-items: stretch;
}

.rooms-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.rooms-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 48px 60px 80px;
}

.rooms-hero-text .section-label { color: var(--vin); }
.rooms-hero-text .section-body {
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 15px;
}
.rooms-hero-text .section-body:last-of-type { margin-bottom: 28px; }

.outline-btn.rooms-book-btn {
  align-self: flex-start;
  background: var(--vin);
  border-color: var(--vin);
  color: var(--sand);
}

.outline-btn.rooms-book-btn:hover {
  background: #3d0f17;
  border-color: #3d0f17;
  color: var(--sand);
}

/* Carousel */
.rooms-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 80px 60px 24px;
}

.carousel-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: calc(100vh - 200px);
  max-height: 580px;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-track img.active { opacity: 1; }

.carousel-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(92, 26, 37, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.carousel-dot.active { background: var(--vin); }

@media (max-width: 768px) {
  .rooms-hero { height: auto; }
  .rooms-hero-inner { grid-template-columns: 1fr; }
  .rooms-hero-text { padding: 80px 24px 8px; order: 1; }
  .rooms-btn-mobile-wrap { order: 2; padding: 0 24px 20px; background: #F5F1E1; display: flex; justify-content: center; }
  .rooms-btn-mobile-wrap .outline-btn { width: 100%; text-align: center; }
  .rooms-carousel { padding: 20px 24px 64px; order: 3; align-items: center; }
  .carousel-frame { height: 72vw; min-height: 300px; }
  .carousel-dots { justify-content: center; }
}

.rooms-link {
  display: inline-block;
  margin-top: 48px;
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vin);
  text-decoration: none;
  border-bottom: 1px solid var(--vin);
  padding-bottom: 3px;
  transition: opacity 0.2s;
}

.rooms-link:hover { opacity: 0.6; }

/* ── KITCHEN HERO ────────────────────────── */
.kitchen-hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100%;
  align-items: stretch;
  overflow: hidden;
}

.kitchen-image-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.kitchen-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.kitchen-text-panel {
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px 80px 56px;
}

.kitchen-content {
  max-width: 480px;
  text-align: left;
}

.kitchen-content .section-label { color: var(--vin); opacity: 0.7; }
.kitchen-content .divider { margin-left: 0; background: var(--vin); }

.kitchen-title {
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vin);
  margin-bottom: 24px;
}

.kitchen-content .section-body {
  color: var(--vin);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 12px;
}

.kitchen-content .section-body:last-of-type { margin-bottom: 36px; }

.kitchen-coming-soon { font-weight: 700; }

.outline-btn.kitchen-book-btn {
  border-color: var(--text);
  color: var(--text);
}

.outline-btn.kitchen-book-btn:hover {
  background: var(--text);
  color: var(--sand);
  border-color: var(--text);
}

/* ── BOTTOM SECTION ──────────────────────── */
.bottom-section { display: flex; flex-direction: column; }

.bottom-photo {
  width: 100%;
  height: 40vh;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.bottom-footer {
  background: #F5F1E1;
  padding: 56px 80px 0;
}

.bottom-footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}

.bottom-col-title {
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vin);
  margin-bottom: 16px;
}

.bottom-col p {
  font-family: 'Bicyclette', Georgia, serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--text);
}

.bottom-col a {
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s;
}

.bottom-col a:hover { opacity: 0.6; }

.bottom-legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.bottom-legal a {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.5;
}

.bottom-legal a:hover { opacity: 1; }

.bottom-copyright {
  border-top: 1px solid rgba(42, 24, 16, 0.12);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(42, 24, 16, 0.4);
}

/* ── TABLET ──────────────────────────────── */
@media (max-width: 1024px) {
  .kitchen-text-panel { padding: 60px 40px; }
  .rooms-hero-text { padding: 80px 40px 48px 48px; }
  .rooms-carousel { padding: 80px 40px 48px 16px; }
}

/* ── MOBILE ──────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav-inner { padding: 0 20px; }
  .logo { height: 36px; }
  .logo--sand, .logo--vin-red { height: 36px; }
  #site-header[data-theme="dark"] .logo,
  #site-header[data-theme="dark"] .logo--sand,
  #site-header[data-theme="dark"] .logo--vin-red { height: 36px; }
  .nav-panel { width: 85vw; }
  .nav-panel-top { display: flex; }

  /* Hero */
  .hero-content { padding: 16px 24px 0; }
  .hero-drawing { width: 92%; max-height: calc(100vh - var(--header-h) - 140px); }
  .hero { align-items: center; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    padding-bottom: 0;
    padding-top: 0;
  }
  .outline-btn { padding: 14px 32px; width: 220px; text-align: center; }

  /* Shared sections */
  .section { padding: 64px 24px; }
  .section-body { max-width: 100%; }

  /* Rooms */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 320px; order: -1; }
  .outline-btn.rooms-book-btn {
    align-self: stretch;
    text-align: center;
    padding: 16px 24px;
    margin-top: 8px;
  }
  /* Hide desktop-only buttons */
  .kalender-btn-desktop { display: none; }
  .rooms-hero-text .outline-btn.rooms-book-btn { display: none; }
  /* Show mobile-only buttons */
  .kalender-btn-mobile {
    display: block;
    margin: 0 auto;
  }
  .rooms-btn-mobile-wrap { display: block; }

  /* Kitchen */
  .kitchen-hero { grid-template-columns: 1fr; grid-template-rows: auto auto; height: auto; }
  .kitchen-image-panel { height: 120vw; min-height: 420px; max-height: 560px; }
  .kitchen-photo { object-position: center center; }
  .kitchen-text-panel { padding: 56px 24px 64px; }
  .kitchen-content { max-width: 100%; }

  /* About video */
  .about-video-content { padding: 0 24px; }
  .about-quote { font-size: 18px; }

  /* Footer */
  .bottom-footer { padding: 40px 24px 0; }
  .bottom-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .bottom-copyright { flex-direction: column; gap: 4px; }
  .bottom-photo { display: none; }
}

/* ── MODALS ──────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 24, 16, 0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #F5F1E1;
  max-width: 720px;
  width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--vin);
  z-index: 1;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.modal-scroll {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 48px 40px 40px;
}

.modal-content { font-family: 'Bicyclette', Georgia, serif; font-weight: 300; color: var(--text); }

.modal-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vin);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(42, 24, 16, 0.1);
}

.modal-intro {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 28px;
  opacity: 0.8;
}

.modal-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vin);
  margin: 28px 0 10px;
}

.modal-content p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.modal-list {
  font-size: 14px;
  line-height: 2;
  padding-left: 20px;
  margin-bottom: 12px;
}

.modal-list li::marker { color: var(--vin); }

@media (max-width: 768px) {
  .modal-overlay {
    align-items: flex-end;
  }
  .modal-box {
    width: 100%;
    max-width: 100%;
    max-height: 92dvh;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .modal-overlay.is-open .modal-box {
    transform: translateY(0);
  }
  .modal-scroll {
    padding: 16px 20px calc(20px + env(safe-area-inset-bottom));
  }
  .modal-close {
    top: 12px;
    right: 16px;
    font-size: 28px;
  }
  .modal-heading { margin: 20px 0 8px; }
}

.modal-subheading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sort);
  margin: 16px 0 8px;
  opacity: 0.7;
}

.modal-drag-handle {
  display: none;
}
@media (max-width: 768px) {
  .modal-drag-handle {
    display: block;
    width: 36px;
    height: 4px;
    background: rgba(42, 24, 16, 0.2);
    border-radius: 2px;
    margin: 12px auto 0;
  }
}

.modal-logo-wrap {
  text-align: center;
  margin-bottom: 24px;
}
.modal-logo {
  height: 80px;
  width: auto;
  max-width: 60%;
}

@media (max-width: 768px) {
  .modal-logo {
    height: 54px;
    max-width: 50%;
  }
  .modal-logo-wrap {
    margin-bottom: 16px;
  }
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.7;
  padding: 7px 0;
  border-bottom: 1px solid rgba(42, 24, 16, 0.07);
}
.menu-row-name { flex: 1; }
.menu-row-price {
  font-weight: 400;
  color: var(--vin);
  margin-left: 20px;
  white-space: nowrap;
}
.menu-row-note {
  font-size: 12px;
  opacity: 0.6;
  font-style: italic;
  display: block;
}
.kitchen-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .menu-row {
    flex-direction: column;
    gap: 2px;
  }
  .menu-row-price {
    margin-left: 0;
    font-size: 13px;
  }
  .kitchen-actions {
    flex-direction: column;
  }
  .kitchen-actions .outline-btn {
    width: 100%;
    text-align: center;
  }
}
