:root {
  --bg: #E5E1DA;
  --ink: #3a2f27;
  --ink-muted: #6b5f52;
  --accent: #9D7655;
  --accent-hover: #b58e6e;
  --accent-dark-hover: #7d5a41;
  --dark: #3D2B27;
  --sand: #D4CDC2;
  --sand-2: #dcd6c7;
}

@font-face {
  font-family: 'playlist-script';
  src: url('fonts/Playlist-Script.otf') format('opentype');
  font-display: swap;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Times New Roman', Times, serif;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

::selection { background: var(--accent); color: #fff; }

img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: 'Italiana', serif; font-weight: 400; color: var(--accent); text-transform: lowercase; margin: 0; }

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow-light { color: #fff; opacity: 0.9; }
.eyebrow-accent { color: var(--accent); }
.eyebrow-accent-light { color: var(--accent); }

.h-md { font-size: clamp(32px, 4vw, 52px); line-height: 1.1; margin-bottom: 20px; }
.h-lg { font-size: clamp(36px, 4.5vw, 58px); line-height: 1.1; margin-bottom: 26px; }
.h-xl { font-size: clamp(40px, 5vw, 60px); line-height: 1.1; margin-bottom: 28px; }

.body-text { font-size: 17px; line-height: 1.8; color: var(--ink-muted); margin: 0 0 32px; max-width: 460px; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Italiana', serif;
  font-size: 16px;
  letter-spacing: normal;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-dark-hover); color: #fff; }

.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--sand-2); color: var(--ink); }

.btn-outline-light { border-color: var(--accent); color: var(--ink); }
.btn-outline-light:hover { background: rgba(157,118,85,0.08); color: var(--ink); }

.btn-outline-dark { border-color: var(--accent); color: var(--ink); padding: 13px 24px; }
.btn-outline-dark:hover { background: rgba(157,118,85,0.08); color: var(--ink); }

.link-underline {
  display: inline-block;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.link-underline:hover { color: var(--accent); border-color: var(--accent); }

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  isolation: isolate;
  width: 100%;
  background: transparent;
}
.header-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 28px clamp(20px, 3vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.main-nav { display: flex; align-items: center; gap: 26px; flex-shrink: 1; min-width: 0; }
.nav-link {
  color: var(--accent);
  font-size: 17px;
  letter-spacing: normal;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.nav-link:hover { color: var(--accent-dark-hover); }

.nav-link-caret::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
}
.nav-item-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(58,47,39,0.14);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 110;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 22px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
  white-space: nowrap;
}
.nav-dropdown a:hover { color: var(--accent); background: rgba(157,118,85,0.06); }
.nav-ext-tag {
  display: inline-block; margin-left: 6px; padding: 2px 7px;
  background: var(--sand); color: var(--ink);
  font-size: 9px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  vertical-align: middle;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); transition: transform 0.25s, opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero — 1:1 live layout: full-bleed 50/50 split, no gap */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  color: var(--ink);
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 76px 60px;
}
.hero-logo { width: min(80%, 460px); height: auto; margin-bottom: 28px; }
.hero-eyebrow { font-size: 16px; font-weight: 600; letter-spacing: normal; color: var(--ink); margin-bottom: 28px; }
.hero-script { font-family: 'playlist-script', sans-serif; font-size: clamp(30px, 3.2vw, 48px); color: var(--accent); line-height: 1.1; margin: 0 0 20px; }
.hero-dates { font-size: clamp(18px, 1.6vw, 25.6px); font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.hero-divider { width: 180px; height: 1px; background: var(--ink); margin: 0 0 24px; }
.hero-subnav { display: flex; gap: 28px; justify-content: center; margin-bottom: 32px; }
.hero-subnav a { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.hero-subnav a:hover { color: var(--accent); }

.hero-buttons { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 330px; margin-bottom: 28px; }
.hero-button-wrap { position: relative; }
.hero-btn { display: block; width: 100%; text-align: center; }
.hero-scribble { position: absolute; z-index: 2; font-family: 'playlist-script', sans-serif; color: #ff0096; font-size: 24px; line-height: 1; white-space: nowrap; pointer-events: none; }
.hero-scribble-badge { top: -16px; right: -18px; transform: rotate(-10deg); }

.hero-award { display: flex; align-items: center; gap: 12px; }
.hero-award-icon { height: 52px; width: auto; }
.hero-award span { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--dark); }

.hero-visual { position: relative; width: 100%; min-height: 420px; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scribble-photo { top: 8%; left: 8%; transform: rotate(-6deg); font-size: clamp(20px, 2vw, 28px); text-shadow: 0 1px 6px rgba(0,0,0,0.15); }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 60vw; }
  .hero-content { padding: 40px 32px 50px; }
}
@media (max-width: 640px) {
  .hero-content { padding: 32px 20px 40px; }
  .hero-logo { width: min(85%, 320px); }
}

/* Home hero: two equal, standalone entry points for Sonnmatten and ALM. */
.hero {
  min-height: min(820px, calc(100svh - 84px));
}
.hero-panel { min-width: 0; }
.hero-panel-sonnmatten { background: var(--bg); }
.hero-panel-sonnmatten .hero-content {
  min-height: 100%;
  justify-content: center;
}
.hero-panel-alm {
  display: grid;
  place-items: center;
  padding: 72px clamp(28px, 6vw, 108px);
  background: #485D44;
  color: #f8f5ed;
}
.alm-panel-content { width: min(100%, 520px); text-align: center; }
.alm-panel-logo { width: min(72%, 330px); margin: 0 auto 34px; }
.alm-panel-opening,
.alm-panel-family { margin: 0; font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 1.8vw, 26px); letter-spacing: .04em; }
.alm-panel-opening { margin-bottom: 34px; text-transform: uppercase; font-size: 13px; font-weight: 600; letter-spacing: .16em; }
.alm-panel-family { margin-bottom: 18px; font-style: italic; }
.alm-panel-founders { width: min(100%, 220px); height: 160px; margin: 0 auto 24px; overflow: hidden; border: 1px solid rgba(248,245,237,.55); }
.alm-panel-founders img { width: 100%; height: 100%; object-fit: cover; object-position: center 72%; }
.alm-panel-title { margin: 0 auto 38px; color: #f8f5ed; font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 5vw, 76px); font-weight: 500; line-height: .95; text-transform: none; }
.alm-panel-actions { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.alm-panel-btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 14px 28px; border: 1px solid #f8f5ed; background: #f8f5ed; color: #485D44; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; letter-spacing: .04em; }
.alm-panel-btn:hover { border-color: #d9e0d4; background: #d9e0d4; color: #354733; }
.alm-panel-link { border-bottom: 1px solid currentColor; padding-bottom: 3px; color: #f8f5ed; font-family: 'Cormorant Garamond', serif; font-size: 18px; }
.alm-panel-link:hover { color: #d9e0d4; }

@media (max-width: 1000px) {
  .hero { min-height: 0; }
  .hero-panel-sonnmatten .hero-content { min-height: 0; padding: 72px 32px 64px; }
  .hero-panel-alm { min-height: 620px; }
}
@media (max-width: 640px) {
  .hero-panel-sonnmatten .hero-content { padding: 54px 20px 48px; }
  .hero-panel-alm { min-height: 540px; padding: 54px 22px; }
  .alm-panel-logo { width: min(76%, 290px); margin-bottom: 28px; }
  .alm-panel-founders { width: min(100%, 205px); height: 148px; }
}

/* Staging-home hero: keep its own header treatment without changing subpages. */
.site-header--hero {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 110;
}
.site-header--hero .header-inner { padding: 32px 32px 0; }
.hero {
  min-height: 1000px;
  background: var(--bg);
}
.hero-panel-sonnmatten .hero-content {
  justify-content: flex-start;
  padding: 145px clamp(24px, 4vw, 64px) 46px;
}
.hero-logo { width: min(80%, 640px); margin-bottom: 48px; }
.hero-eyebrow { margin-bottom: 8px; }
.hero-dates { margin-bottom: 30px; }
.hero-video { width: 100%; max-width: 720px; aspect-ratio: 16 / 9; margin-bottom: 28px; overflow: hidden; background: #29211d; }
.hero-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.hero-buttons { max-width: 720px; gap: 0; margin-bottom: 26px; }
.hero-button-wrap + .hero-button-wrap { margin-top: 12px; }
.hero-btn { min-height: 52px; }
.hero-award { max-width: 360px; justify-content: center; }

.hero-panel-alm {
  min-height: 1000px;
  place-items: stretch;
  padding: 126px clamp(28px, 5vw, 84px) 58px;
}
.alm-panel-content { width: 100%; max-width: 800px; margin: 0 auto; }
.alm-panel-brand { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3vw, 46px); margin-bottom: 34px; }
.alm-panel-logo { width: min(30%, 150px); margin: 0; }
.alm-panel-wordmark { display: inline-block; text-align: center; color: #f8f5ed; font-family: 'Cormorant Garamond', serif; font-size: clamp(66px, 7vw, 108px); line-height: .8; letter-spacing: -.04em; }
.alm-panel-wordmark-sub { display: block; font-size: .26em; letter-spacing: .08em; text-transform: uppercase; margin-top: 6px; }
.alm-panel-intro { display: grid; grid-template-columns: minmax(160px, .85fr) 1fr; align-items: center; gap: 24px; margin-bottom: 30px; }
.alm-panel-founders { width: 100%; height: clamp(230px, 21vw, 350px); margin: 0; border: 0; }
.alm-panel-founders img { object-position: center 70%; }
.alm-panel-family { margin: 0 0 18px; color: #f8f5ed; font-size: clamp(24px, 2.4vw, 40px); font-style: normal; font-weight: 500; line-height: 1.05; }
.alm-panel-opening { margin: 0; color: #f8f5ed; font-size: clamp(24px, 2.6vw, 42px); font-weight: 500; letter-spacing: 0; line-height: 1.05; text-transform: none; }
.alm-panel-title { display: none; }
.alm-panel-offer { margin: 0 0 34px; color: #f8f5ed; font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 4.7vw, 76px); font-weight: 500; line-height: .94; text-align: center; text-transform: none; }
.alm-panel-actions { align-items: stretch; gap: 12px; }
.alm-panel-btn,
.alm-panel-link { width: 100%; min-height: 52px; border: 1px solid #f8f5ed; background: #f8f5ed; color: #485D44; font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; text-align: center; text-decoration: none; }
.alm-panel-btn:hover,
.alm-panel-link:hover { border-color: #d9e0d4; background: #d9e0d4; color: #354733; }
.alm-panel-phone { display: block; width: fit-content; margin: 28px auto 0; color: #f8f5ed; font-family: 'Cormorant Garamond', serif; font-size: 22px; letter-spacing: .03em; }
.alm-panel-phone:hover { color: #f8f5ed; }

@media (max-width: 1000px) {
  .hero,
  .hero-panel-alm { min-height: 0; }
  .hero-panel-sonnmatten .hero-content { padding: 130px 32px 64px; }
  .hero-panel-alm { padding: 64px 40px; }
}
@media (max-width: 640px) {
  .site-header--hero .header-inner { padding: 22px 20px 0; }
  .hero-panel-sonnmatten .hero-content { padding: 104px 20px 48px; }
  .hero-logo { width: min(86%, 420px); margin-bottom: 34px; }
  .hero-video { margin-bottom: 22px; }
  .hero-panel-alm { padding: 48px 20px; }
  .alm-panel-brand { margin-bottom: 28px; }
  .alm-panel-intro { grid-template-columns: .9fr 1fr; gap: 16px; }
  .alm-panel-founders { height: 220px; }
  .alm-panel-actions { gap: 10px; }
}

/* Final staging-home alignment: split ALM surface, equal CTAs and detached badge. */
.hero-panel-sonnmatten { position: relative; }
.hero-buttons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; gap: 12px; }
.hero-button-wrap + .hero-button-wrap { margin-top: 0; }
.hero-button-wrap cb-book-now-button { display: block; width: 100%; }
.hero-button-wrap .book-a-room,
.hero-button-wrap .book-a-room button,
.hero-button-wrap .book-a-room a { display: flex !important; width: 100% !important; min-height: 52px !important; align-items: center !important; justify-content: center !important; padding: 14px 18px !important; border: 1px solid var(--accent) !important; border-radius: 0 !important; background: var(--accent) !important; color: #fff !important; font-family: 'Italiana', serif !important; font-size: 16px !important; font-weight: 600 !important; letter-spacing: normal !important; text-transform: uppercase !important; }
.hero-button-wrap .book-a-room:hover,
.hero-button-wrap .book-a-room button:hover,
.hero-button-wrap .book-a-room a:hover { border-color: var(--accent-dark-hover) !important; background: var(--accent-dark-hover) !important; }
.hero-button-wrap .hero-discount { top: auto; right: -18px; bottom: -14px; transform: rotate(-12deg); }

.hero-panel-alm {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  padding: 0;
  border: 32px solid #485D44;
  color: #485D44;
}
.alm-panel-brand {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 20px 26px;
  background: #485D44;
}
.alm-panel-content { flex: 1; box-sizing: border-box; padding: 72px clamp(20px, 3vw, 48px) 58px; }
.alm-panel-wordmark { color: #f8f5ed; }
.alm-panel-content > .alm-panel-opening,
.alm-panel-content > .alm-panel-family { display: none; }
.alm-panel-intro { grid-template-columns: minmax(0, 1.35fr) minmax(150px, .65fr); margin-bottom: 36px; }
.alm-panel-founders { height: auto; margin: 0; }
.alm-panel-founder-image { aspect-ratio: 3 / 2; overflow: hidden; }
.alm-panel-founder-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 80%; }
.alm-panel-founders figcaption { margin-top: 12px; color: #485D44; font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 1.8vw, 26px); font-weight: 600; line-height: 1.1; }
.alm-panel-opening-copy { display: flex; align-items: center; justify-content: center; min-height: 100%; text-align: center; transform: translateX(clamp(18px, 3vw, 52px)); }
.alm-panel-opening-copy p { margin: 0; color: #485D44; font-family: 'playlist-script', sans-serif; font-size: clamp(34px, 4vw, 64px); font-weight: 500; line-height: .95; }
.alm-panel-offer { margin: 0 0 36px; color: #485D44; }
.alm-panel-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.alm-panel-btn,
.alm-panel-link { display: inline-flex; align-items: center; justify-content: center; border-color: #485D44; background: #485D44; color: #f8f5ed; }
.alm-panel-btn:hover,
.alm-panel-link:hover { border-color: #354733; background: #354733; color: #fff; }
.alm-panel-phone,
.alm-panel-phone:hover { color: #485D44; }

@media (max-width: 1000px) {
  .hero-panel-alm { border-width: 24px; }
  .alm-panel-content { padding: 48px 40px; }
}

@media (max-width: 640px) {
  .hero-buttons { grid-template-columns: 1fr; gap: 12px; }
  .hero-button-wrap .hero-discount { right: -12px; bottom: -10px; }
  .hero-panel-alm { border-width: 20px; }
  .alm-panel-brand { padding: 16px; }
  .alm-panel-content { padding: 40px 20px; }
  .alm-panel-intro { grid-template-columns: 1fr; gap: 16px; }
  .alm-panel-opening-copy { transform: none; }
  .alm-panel-founder-image { aspect-ratio: 3 / 2; }
  .alm-panel-actions { grid-template-columns: 1fr; }
}

/* ALM restaurant launch */
body:has(.alm-hero) .site-header:not(.is-scrolled) {
  background: rgba(44, 85, 48, .97);
  box-shadow: 0 1px 0 rgba(245, 241, 232, .18);
}
.alm-hero,
.alm-hero * { font-family: 'Lato', sans-serif; }
.alm-hero {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  background: #f5f1e8;
  color: #2d2d2d;
}
.alm-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 130px clamp(38px, 6vw, 100px) 80px max(40px, calc((100vw - 1400px) / 2));
}
.alm-opening {
  display: inline-block;
  margin-bottom: 42px;
  padding: 9px 15px;
  background: #f0643c;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.alm-wordmark { display: flex; flex-direction: column; margin-bottom: 28px; line-height: .8; }
.alm-wordmark-main { font-family: 'Cormorant Garamond', serif; font-size: clamp(76px, 9vw, 142px); font-weight: 700; letter-spacing: -.04em; }
.alm-wordmark-sub { margin: 17px 0 0 5px; color: #2c5530; font-size: 12px; font-weight: 700; letter-spacing: .42em; text-transform: uppercase; }
.alm-title { max-width: 580px; margin-bottom: 18px; font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 58px); line-height: 1.02; font-weight: 600; }
.alm-text { max-width: 510px; margin: 0 0 36px; color: #2d2d2d; font-size: 17px; line-height: 1.65; overflow-wrap: anywhere; }
.alm-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.alm-btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 14px 24px; border: 1px solid #2c5530; background: #2c5530; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: background .2s, color .2s; }
.alm-btn:hover { background: #705724; border-color: #705724; color: #fff; }
.alm-btn.is-disabled { background: transparent; color: #2c5530; cursor: not-allowed; opacity: .62; }
.alm-hero-visual { position: relative; min-height: 100vh; min-height: 100svh; margin: 0; overflow: hidden; background: #2c5530; }
.alm-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 70%; }
.alm-hero-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(44,85,48,.16), transparent 30%); pointer-events: none; }
.alm-hero-visual figcaption { position: absolute; right: 24px; bottom: 20px; z-index: 1; color: #fff; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,.55); }

/* Award strip */
.award-strip {
  max-width: 1480px;
  margin: 0 auto;
  padding: 90px 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.award-badge-row { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.award-circle {
  height: 64px; width: 64px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.award-label { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--accent); max-width: 180px; line-height: 1.5; }
.award-text { margin-bottom: 20px; }
.discount-pill { display: inline-block; background: var(--sand-2); color: var(--ink); padding: 10px 20px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

.award-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.award-img { width: 100%; height: 340px; object-fit: cover; }
.award-img-b { margin-top: 60px; }

/* Generic split sections */
.section-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-section, .rooms-section { padding: 110px 40px; }
.section-img { width: 100%; height: 480px; object-fit: cover; }
.section-img-tall { height: 520px; }

.restaurant-section { background: var(--bg); color: var(--ink); padding: 110px 40px; }
.restaurant-section .body-text,
.restaurant-section .hours-list { color: var(--ink-muted); }
.hours-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; font-size: 16px; line-height: 1.7; }

.rooms-section { background: var(--sand); }
.offset-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.offset-img { width: 100%; height: 300px; object-fit: cover; }
.offset-img-b { margin-top: 50px; }

/* Promo sections (schnitzel / rooms / events / familie): image column
   sized by its own natural height, centered text vertically aligned to it.
   The small frame around the pictures mirrors the spacing on the live
   Sonnmatten home page and gives every image room to breathe. */
.promo-section { background: var(--bg); }
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.promo-image-frame { padding: 32px; }
.promo-img { width: 100%; height: clamp(440px, 42vw, 620px); object-fit: cover; display: block; }
.promo-stacked-images { display: flex; flex-direction: column; gap: 32px; padding: 32px; }
.promo-stacked-images img { width: 100%; height: clamp(320px, 30vw, 440px); object-fit: cover; display: block; }

.promo-text { padding: 60px 76px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.promo-top-text, .promo-bottom-text { font-size: 16px; font-weight: 500; color: var(--dark); max-width: 440px; margin: 0 0 24px; line-height: 1.6; }
.promo-heading { margin: 0 0 28px; font-size: clamp(48px, 7vw, 96px); }

.restaurant-group { margin-bottom: 28px; }
.restaurant-group:last-child { margin-bottom: 0; }
.restaurant-group-label { font-size: 16px; font-weight: 600; color: var(--dark); margin: 0 0 2px; }
.restaurant-group-time { font-size: 16px; color: var(--dark); margin: 0 0 18px; }
.restaurant-btn { display: block; width: 100%; max-width: 280px; margin: 0 auto 14px; }
.restaurant-btn:last-child { margin-bottom: 0; }

@media (max-width: 1000px) {
  .promo-grid { grid-template-columns: 1fr; }
  .promo-image-frame { padding: 24px; }
  .promo-stacked-images { gap: 24px; padding: 24px; }
  .promo-text { order: -1; }
  .promo-text { padding: 50px 32px; }
}

/* Family */
.family-section { padding: 110px 40px; text-align: center; background: var(--bg); }
.family-img { display: none; }
.family-overlay { display: none; }
.family-content { max-width: 700px; margin: 0 auto; }
.family-content .eyebrow { margin-bottom: 22px; }
.family-text { font-size: 17px; line-height: 1.7; color: var(--ink-muted); margin: 0; }

/* 360° location panorama */
.panorama-section { max-width: 1400px; margin: 0 auto; padding: 110px 40px; text-align: center; }
.panorama-heading { margin-bottom: 40px; }
.panorama-frame { display: block; width: 100%; height: min(70vh, 650px); min-height: 420px; border: 0; }

/* Contact */
.contact-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 110px 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}
.address { font-size: 16px; line-height: 2; color: var(--ink-muted); margin-bottom: 8px; }
.contact-links { font-size: 16px; line-height: 2; margin-bottom: 28px; }
.contact-links a { color: var(--ink); }
.contact-links a:hover { color: var(--accent); }
.map-frame { width: 100%; height: 260px; border: 0; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  max-width: 560px;
}
.form-field { display: block; grid-column: span 1; }
.form-field-full { grid-column: span 2; }
.form-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 2px;
  border: none;
  border-bottom: 1px solid #c7bda8;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
}
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { outline: none; border-bottom-color: var(--accent); }

.form-consent {
  grid-column: span 2;
  font-size: 13px;
  color: var(--ink-muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 4px;
}
.form-consent input { margin-top: 3px; }
.form-consent a { color: var(--accent); }

.form-submit {
  grid-column: span 2;
  border: none;
  padding: 16px 32px;
  justify-self: start;
  margin-top: 8px;
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.contact-form__status,
.contact-form__error {
  grid-column: span 2;
  font-size: 14px;
  padding: 14px 18px;
  margin-top: 4px;
}
.contact-form__status { background: rgba(157,118,85,0.1); color: var(--ink); border: 1px solid var(--accent); }
.contact-form__error { background: rgba(178,35,24,0.08); color: #b42318; border: 1px solid #b42318; }

/* Footer */
.site-footer { background: var(--bg); color: var(--ink); padding: 70px 40px 40px; }
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(58,47,39,0.15);
}
.footer-logo { height: 48px; width: auto; margin-bottom: 20px; }
.footer-address { font-size: 14px; line-height: 1.8; color: var(--ink-muted); }
.footer-heading { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--accent); margin-bottom: 18px; }
.footer-links { font-size: 14px; line-height: 2; }
.footer-links a, .footer-legal a { color: var(--ink-muted); }
.footer-links a:hover, .footer-legal a:hover { color: var(--accent); }
.footer-legal { font-size: 14px; line-height: 2; display: flex; flex-direction: column; }
.footer-lang-switch { margin-top: 0; }
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: 12px; letter-spacing: 0.05em; margin-top: 16px; }
.lang-switch a { color: var(--ink-muted); opacity: 0.7; }
.lang-switch .lang-active { color: var(--ink); opacity: 1; font-weight: 700; }
.lang-switch span { opacity: 0.4; color: var(--ink-muted); }

.footer-copy { max-width: 1400px; margin: 0 auto; padding-top: 30px; font-size: 13px; color: var(--ink-muted); opacity: 0.8; }

/* Responsive */
@media (max-width: 1000px) {
  .alm-hero { grid-template-columns: 1fr; }
  .alm-hero-copy { min-height: auto; padding: 125px 40px 70px; }
  .alm-hero-visual { min-height: 72vh; }
  .award-strip,
  .section-grid,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .award-images { order: -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-img, .section-img-tall { height: 360px; }
  .award-img, .award-img-b { height: 260px; margin-top: 0; }
  .offset-img, .offset-img-b { height: 240px; margin-top: 0; }
}

@media (max-width: 860px) {
  .panorama-section { padding: 80px 20px; }
  .panorama-frame { height: 65vh; min-height: 380px; }
  .main-nav {
    position: fixed;
    z-index: 120;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--bg);
    box-shadow: -8px 0 30px rgba(58,47,39,0.15);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-toggle { display: flex; }

  .nav-item-dropdown { display: flex; flex-direction: column; gap: 16px; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .nav-dropdown a { padding: 0; font-size: 12px; }
}

@media (max-width: 640px) {
  .header-inner { padding: 14px 20px; }
  .contact-form { grid-template-columns: 1fr; max-width: none; }
  .form-field, .form-field-full, .form-consent, .form-submit { grid-column: span 1; }
  .btn-row { gap: 12px; }
}

/* ===== Subpages (DB-driven sections) ===== */

.nav-link.is-active { border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* split-section background variants */
.split-section--dark { background: var(--bg); color: var(--ink); }
.split-section--dark .body-text,
.split-section--dark .hours-list,
.split-section--dark .room-row-body { color: var(--ink-muted); }
.split-section--dark .eyebrow-light { color: var(--accent); }
.split-section--dark .link-underline-light { color: var(--ink); border-color: var(--ink); }
.split-section--sand { background: var(--sand); }

.split-quote {
  font-family: 'Italiana', serif;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--accent);
  margin: 0;
}

.link-underline-light { color: var(--bg); border-color: var(--bg); }
.link-underline-light:hover { color: var(--accent); border-color: var(--accent); }

.btn-outline-brown { border-color: var(--ink); color: var(--ink); padding: 13px 24px; }
.btn-outline-brown:hover { background: rgba(0,0,0,0.05); }

/* Page hero (Rooms / Events / Galerie titles) */
.page-hero { max-width: 1400px; margin: 0 auto; padding: 20px 40px 60px; text-align: center; }
.page-hero-title { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; }

/* Single full-width image banner */
.image-banner { max-width: 1400px; margin: 0 auto; padding: 0 40px 100px; }
.image-banner img { width: 100%; height: 560px; object-fit: cover; }

/* Photo grids (Events / Gallery / room detail) */
.photo-grid { max-width: 1400px; margin: 0 auto; padding: 0 40px 100px; display: grid; gap: 18px; }
.photo-grid-item { min-width: 0; min-height: 230px; padding: 0; border: 0; background: none; overflow: hidden; cursor: zoom-in; }
.photo-grid-item img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; display: block; transition: transform .4s cubic-bezier(.22,1,.36,1); }
.photo-grid-item:hover img { transform: scale(1.025); }
.photo-grid-item:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.photo-grid-3 { grid-template-columns: repeat(3, 1fr); }
.photo-grid-3 .photo-grid-item { height: 260px; min-height: 0; }
.photo-grid-4 { grid-template-columns: repeat(4, 1fr); }
.photo-grid-4 .photo-grid-item { height: 230px; }
.photo-grid-item-tall { grid-row: span 2; min-height: 490px !important; height: 100% !important; }

/* Gallery lightbox */
.sm-lightbox { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 56px 80px; }
.sm-lightbox.is-open { display: flex; }
.sm-lightbox-backdrop { position: absolute; inset: 0; background: rgba(25, 18, 13, .94); backdrop-filter: blur(8px); }
.sm-lightbox-figure { position: relative; z-index: 1; margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; }
.sm-lightbox-image { display: block; max-width: min(1400px, 100%); max-height: calc(100vh - 130px); width: auto; height: auto; object-fit: contain; box-shadow: 0 20px 70px rgba(0,0,0,.4); }
.sm-lightbox-caption { margin-top: 14px; color: rgba(255,255,255,.82); font-size: 14px; }
.sm-lightbox-close, .sm-lightbox-arrow { position: absolute; z-index: 2; border: 0; color: #fff; background: rgba(255,255,255,.12); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.sm-lightbox-close:hover, .sm-lightbox-arrow:hover { background: rgba(255,255,255,.24); }
.sm-lightbox-close { top: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%; font-size: 28px; }
.sm-lightbox-arrow { top: 50%; transform: translateY(-50%); width: 52px; height: 72px; border-radius: 4px; font-size: 34px; }
.sm-lightbox-prev { left: 20px; }
.sm-lightbox-next { right: 20px; }

/* Room rows (Rooms overview listing) */
.room-rows { padding: 100px 40px; }
.room-rows--sand { background: var(--sand); }
.room-rows-inner { max-width: 1400px; margin: 0 auto; }
.room-rows-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.room-rows-images img { width: 100%; height: 360px; object-fit: cover; }
.room-rows-texts { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.room-rows-images--single, .room-rows-texts--single { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
.h-room { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 38px); margin: 0 0 14px; font-weight: 600; }
.room-row-body { font-size: 16px; line-height: 1.7; margin: 0 0 18px; max-width: none; }
.room-row-specs { font-size: 14px; line-height: 2; color: var(--ink-muted); margin-bottom: 22px; }

/* Centered text block */
.text-center-block { max-width: 900px; margin: 0 auto; padding: 110px 40px; text-align: center; }
.text-center-body { margin: 0 auto 32px; max-width: none; }
.btn-row-center { justify-content: center; }

/* Quote section */
.quote-section { background: var(--bg); color: var(--ink); padding: 120px 40px; text-align: center; }
.quote-text { font-family: 'Italiana', serif; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.4; font-weight: 400; color: var(--accent); max-width: 820px; margin: 0 auto 24px; }
.quote-attribution { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }

/* Standalone map section */
.map-section { max-width: 1400px; margin: 0 auto; padding: 0 40px 100px; }
.map-frame-standalone { width: 100%; height: 340px; border: 0; }

/* Room detail header */
.room-header-back { max-width: 1400px; margin: 0 auto; padding: 10px 40px 0; }
.back-link { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.room-header {
  max-width: 1400px; margin: 0 auto; padding: 24px 40px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.room-header-title { font-size: clamp(38px, 5.5vw, 64px); line-height: 1.05; }
.room-header-cta { display: inline-flex; align-items: center; gap: 12px; padding: 16px 28px; }
.room-header-badge {
  position: absolute; top: -14px; right: -10px;
  background: var(--sand-2); color: var(--ink);
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.room-header-cta-wrap { position: relative; display: inline-block; }
.room-header-tag {
  display: inline-block; margin-top: 10px; padding: 5px 12px;
  background: var(--sand); color: var(--ink);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}

/* Room detail info */
.room-info { max-width: 1400px; margin: 0 auto; padding: 0 40px 100px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; }
.h-room-info { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 36px); margin: 0 0 22px; font-weight: 600; }
.room-info-paragraph { max-width: none; margin: 0 0 20px; }
.room-amenities-box { background: var(--sand); padding: 36px; }
.h-amenities { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin: 0 0 18px; font-weight: 600; }
.amenities-list { display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--ink-muted); }

/* Related rooms */
.related-rooms { max-width: 1400px; margin: 0 auto; padding: 0 40px 120px; }
.h-related { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3vw, 34px); margin: 0 0 34px; font-weight: 600; text-align: center; }
.related-rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-room-card { display: block; }
.related-room-card img { width: 100%; height: 220px; margin-bottom: 16px; object-fit: cover; }
.related-room-title { font-family: 'Italiana', serif; font-size: 24px; color: var(--accent); text-transform: lowercase; margin-bottom: 6px; }
.related-room-meta { font-size: 14px; color: var(--ink-muted); }

/* Bottom CTA banner (room detail) */
.cta-center { background: var(--sand); color: var(--ink); padding: 90px 40px; text-align: center; }
.h-cta-center { font-size: clamp(28px, 3.5vw, 42px); margin: 0 0 26px; }

@media (max-width: 1000px) {
  .room-rows-images,
  .room-rows-texts,
  .room-info { grid-template-columns: 1fr; gap: 32px; }
  .room-rows-images img { height: 280px; }
  .photo-grid-3, .photo-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .photo-grid-item-tall { grid-row: span 1; min-height: 230px !important; }
  .related-rooms-grid { grid-template-columns: 1fr; }
  .room-header { flex-direction: column; align-items: flex-start; }
}

/* Legal pages (Impressum / Datenschutz) */
.legal-text-block { padding: 64px 48px 96px; }
.legal-text-container { max-width: none; margin: 0 auto; }
.legal-text-updated { font-size: 14px; color: var(--ink-muted); margin: 0 0 40px; }
.legal-text-body { font-size: 16px; line-height: 1.8; color: var(--ink-muted); }
.legal-text-body h2 { font-family: 'Italiana', serif; font-size: 26px; font-weight: 400; color: var(--accent); margin: 40px 0 14px; }
.legal-text-body h2:first-child { margin-top: 0; }
.legal-text-body h4 { font-family: 'Work Sans', sans-serif; font-size: 17px; font-weight: 600; color: var(--ink); margin: 24px 0 10px; }
.legal-text-body li h4 { margin: 0 0 6px; }
.legal-text-body p, .legal-text-body ul { margin: 0 0 18px; }
.legal-text-body ul { padding-left: 22px; }
.legal-text-body a { color: var(--accent); text-decoration: underline; }
.legal-text-body strong { color: var(--ink); font-weight: 600; }

/* Image carousel (room detail pages) */
.carousel-block { max-width: 1400px; margin: 0 auto; padding: 0 40px 100px; }
.carousel { position: relative; overflow: hidden; border-radius: 4px; }
.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}
.carousel-slide {
  position: relative;
  flex: 0 0 calc(100% - 0px);
  aspect-ratio: 4 / 3;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; }

@media (min-width: 641px) {
  .carousel:not([data-columns="1"]) .carousel-slide { flex-basis: calc((100% - 16px) / 2); }
}
@media (min-width: 1024px) {
  .carousel:not([data-columns="1"]):not([data-columns="2"]):not([data-columns="4"]) .carousel-slide { flex-basis: calc((100% - 32px) / 3); }
  .carousel[data-columns="2"] .carousel-slide { flex-basis: calc((100% - 16px) / 2); }
  .carousel[data-columns="4"] .carousel-slide { flex-basis: calc((100% - 48px) / 4); }
}
.carousel[data-columns="1"] .carousel-slide { flex-basis: 100%; aspect-ratio: 3 / 4; }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border: none; border-radius: 50%;
  background: rgba(54,42,33,0.55);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}
.carousel-arrow:hover { background: rgba(54,42,33,0.85); }
.carousel-arrow-prev { left: 20px; }
.carousel-arrow-next { right: 20px; }

.carousel-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 2;
}
.carousel-dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; padding: 0;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dot.is-active { background: #fff; transform: scale(1.2); }

@media (max-width: 640px) {
  .alm-hero-copy { padding: 110px 22px 58px; }
  .alm-opening { margin-bottom: 30px; }
  .alm-hero-visual { min-height: 62vh; }
  .alm-actions, .alm-btn { width: 100%; }
  .carousel-slide { aspect-ratio: 16 / 11; }
  .carousel-arrow { width: 38px; height: 38px; font-size: 20px; }
  .sm-lightbox { padding: 64px 14px 72px; }
  .sm-lightbox-image { max-height: calc(100vh - 150px); }
  .sm-lightbox-arrow { top: auto; bottom: 14px; width: 48px; height: 44px; transform: none; }
  .sm-lightbox-prev { left: calc(50% - 56px); }
  .sm-lightbox-next { right: calc(50% - 56px); }
}

/* Scroll-triggered reveal (site-wide) */
.sm-reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(3px);
  transition:
    opacity .8s cubic-bezier(.22,1,.36,1),
    transform .8s cubic-bezier(.22,1,.36,1),
    filter .8s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.sm-reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Hero + header entrance */
.hero-content > * { animation: sm-fade-up .9s cubic-bezier(.22,1,.36,1) both; }
.hero-content > *:nth-child(2) { animation-delay: .1s; }
.hero-content > *:nth-child(3) { animation-delay: .2s; }
.hero-content > *:nth-child(4) { animation-delay: .3s; }
.page-hero { animation: sm-fade-up .9s cubic-bezier(.22,1,.36,1) both; }

@keyframes sm-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .sm-reveal, .hero-content > *, .page-hero {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .carousel-slide { transition: none !important; }
}

/* ---- Aleno reservation modal ---- */
.aleno-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.aleno-modal.is-open { display: flex; }
.aleno-modal-backdrop { position: absolute; inset: 0; background: rgba(38, 28, 20, 0.55); backdrop-filter: blur(3px); }
.aleno-modal-panel {
  position: relative;
  width: min(720px, 100%);
  height: min(760px, 100%);
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}
.aleno-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.aleno-modal-close:hover { background: var(--sand); }
.aleno-modal-iframe { flex: 1; width: 100%; border: 0; }
.aleno-modal-fallback {
  flex-shrink: 0;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: none;
  border-top: 1px solid var(--sand-2);
}
.aleno-modal-fallback:hover { color: var(--accent); }
@media (max-width: 640px) {
  .aleno-modal { padding: 0; }
  .aleno-modal-panel { width: 100%; height: 100%; border-radius: 0; }
}

/* Sonnmatten contact, location and wedding layouts. */
h1, h2, h3, h4, h5, h6,
.h-room, .h-room-info, .h-amenities, .h-related,
.legal-text-body h2 { font-weight: 700; }

.contact-section { max-width: 1140px; padding: 64px 10px 128px; grid-template-columns: 1fr 2fr; gap: 0; align-items: center; }
.contact-details { padding: 10px; text-align: center; }
.contact-logo { width: 100%; max-width: 340px; height: auto; margin: 0 auto 20px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; font-size: 16px; line-height: 24px; margin: 0; }
.contact-form { width: 100%; max-width: none; gap: 10px; padding: 10px; }
.contact-heading { grid-column: 1 / -1; font-size: clamp(56px, 7.23vw, 104px); line-height: 1.2; text-align: center; margin-bottom: 10px; }
.contact-form .form-label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.contact-form .form-field input, .contact-form .form-field textarea { padding: 6px 16px; border-bottom-color: #999; border-radius: 0; font-size: 16px; line-height: 24px; box-shadow: none; }
.contact-form .form-field input::placeholder, .contact-form .form-field textarea::placeholder { color: #777; opacity: 1; }
.contact-form .form-field textarea { height: 110px; }
.contact-form .form-consent { margin: 0; font-size: 16px; line-height: 24px; color: #333; }
.contact-form .form-submit { width: 100%; justify-self: stretch; margin: 0; padding: 16px 32px; }
.contact-form .form-field-full, .contact-form .form-consent, .contact-form .form-submit,
.contact-form .contact-form__status, .contact-form .contact-form__error { grid-column: 1 / -1; }
.map-section { max-width: none; padding: 32px 64px 64px; }
.map-section .panorama-heading { font-size: clamp(42px, 7.23vw, 104px); line-height: 1.2; text-align: center; margin: 0 0 32px; }
.map-frame-standalone { display: block; height: 300px; }

.sonnmatten-events .page-hero { max-width: none; padding: 40px 64px 32px; }
.sonnmatten-events .page-hero .eyebrow { display: none; }
.sonnmatten-events .page-hero-title { font-size: clamp(48px, 7.23vw, 104px); line-height: 1.2; }
.event-gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; padding: 0 64px; }
.event-gallery img { width: 100%; height: 26vw; object-fit: cover; }
.event-intro { padding: 32px 64px 48px; font-size: 16px; line-height: 24px; text-align: center; }
.event-facts { display: grid; grid-template-columns: 1fr 2fr; padding: 0 64px 64px; }
.event-facts-card img { width: 100%; height: auto; }
.event-facts h2, .event-card h2 { font-size: clamp(32px, 3.89vw, 56px); line-height: 1.2; margin: 20px 0 32px; }
.event-facts-copy { padding: 0 64px; align-self: center; text-align: center; font-size: 16px; line-height: 24px; }
.event-facts-copy p { margin: 0 0 48px; }
.event-facts-copy .event-email { margin: 80px 0 0; }
.event-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; padding: 0 64px 64px; }
.event-card { min-width: 0; }
.event-card img { width: 100%; height: 430px; object-fit: cover; }
.event-card:last-child img { object-position: top center; }
.event-card .btn, .event-facts .btn { padding: 20px 36px; }

@media (max-width: 767px) {
  .contact-section { padding: 32px 22px 64px; grid-template-columns: 1fr; gap: 32px; }
  .contact-logo { max-width: 240px; }
  .contact-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-form .form-field { min-width: 0; }
  .contact-form .form-consent { font-size: 14px; }
  .map-section { padding: 32px; }
  .sonnmatten-events .page-hero { padding: 40px 32px 32px; }
  .event-gallery { grid-template-columns: 1fr; padding: 0 32px; }
  .event-gallery img { height: auto; max-height: 620px; }
  .event-intro { padding: 32px; }
  .event-facts { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .event-facts-copy { padding: 0; }
  .event-facts-copy p { margin-bottom: 24px; }
  .event-facts-copy .event-email { margin-top: 40px; }
  .event-cards { grid-template-columns: 1fr; padding: 32px; gap: 48px; }
  .event-card img { height: 430px; }
}

/* Mobile navigation opens beneath the header, as on Sonnmatten. */
.nav-submenu-toggle { display: none; }
@media (max-width: 1024px) {
  .header-inner { height: 85px; padding: 16px 32px; }
  .nav-toggle { display: flex; order: -1; width: 44px; height: 44px; padding: 7px; gap: 6px; z-index: 121; }
  .nav-toggle span { height: 4px; background: var(--accent); border-radius: 2px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; width: 100%; height: auto; max-height: calc(100dvh - 85px); overflow-y: auto; overscroll-behavior: contain; display: none; padding: 0; gap: 0; background: #fff; box-shadow: none; transform: none; transition: none; }
  .main-nav.is-open { display: block; }
  .main-nav > .nav-link, .nav-item-dropdown > .nav-link { display: block; padding: 22px 23px; font-size: 13px; line-height: 16px; font-weight: 400; color: #000; white-space: normal; border: 0; }
  .main-nav .nav-link:hover, .main-nav .nav-link.is-active { color: #fff; background: var(--accent); }
  .nav-item-dropdown { position: relative; display: block; }
  .nav-item-dropdown > .nav-link { padding-right: 68px; }
  .nav-link-caret::after { display: none; }
  .nav-submenu-toggle { position: absolute; display: flex; align-items: center; justify-content: center; top: 0; right: 12px; width: 48px; height: 60px; border: 0; background: transparent; color: var(--accent); font-size: 20px; cursor: pointer; }
  .nav-item-dropdown:has(> .is-active) .nav-submenu-toggle { color: #fff; }
  .nav-submenu-toggle[aria-expanded="true"] span { transform: rotate(180deg); }
  .nav-dropdown, .nav-item-dropdown:hover .nav-dropdown, .nav-item-dropdown:focus-within .nav-dropdown { position: static; display: none; min-width: 0; padding: 0; margin: 0; background: #fff; box-shadow: none; transform: none; opacity: 1; visibility: visible; }
  .nav-item-dropdown.is-expanded .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 22px 30px; color: #000; font-size: 13px; line-height: 16px; font-weight: 400; white-space: normal; }
  .nav-ext-tag { display: inline; padding: 0; margin-left: 4px; background: none; font-size: inherit; color: inherit; font-weight: inherit; }
}

.sonnmatten-rooms .site-header { position: absolute; top: 0; }
.rooms-overview-hero { height: 500px; display: grid; place-items: center; padding: 48px; background-size: cover; background-position: top center; }
.rooms-overview-hero h1 { color: #fff; font-size: clamp(56px, 7.23vw, 104px); line-height: 1.2; text-align: center; }
.rooms-welcome { background: var(--accent); padding: 48px; text-align: center; }
.rooms-welcome h2 { font-size: clamp(26px, 3.89vw, 56px); line-height: 1.2; color: #fff; text-transform: uppercase; }
.rooms-overview-list { padding: 0 48px; }
.rooms-overview-row { display: grid; grid-template-columns: 58% minmax(0, 1fr); align-items: center; gap: 24px; padding: 48px 0; }
.rooms-overview-row--reverse { grid-template-columns: minmax(0, 1fr) 58%; }
.rooms-overview-row--reverse .rooms-overview-image { order: 2; }
.rooms-overview-image img { width: 100%; height: auto; max-height: 534px; object-fit: cover; }
.rooms-overview-copy { text-align: center; min-width: 0; }
.rooms-overview-copy h2 { font-size: clamp(26px, 3.89vw, 56px); line-height: 1.2; margin: 0 0 20px; }
.rooms-overview-copy p { font-size: 16px; line-height: 24px; margin: 0 0 24px; color: #333; }
.room-features { display: flex; justify-content: center; align-items: flex-start; gap: 18px; list-style: none; margin: 0 0 32px; padding: 0; }
.room-features li { flex: 0 1 auto; min-width: 0; max-width: 112px; display: flex; flex-direction: column; align-items: center; font-size: 16px; line-height: 24px; color: #333; }
.room-features svg { width: 48px; height: 48px; margin-bottom: 8px; color: var(--accent); }
.rooms-overview-copy .btn { font-size: 20.8px; line-height: 25px; padding: 17px 36px; }
.quote-section--image { min-height: 630px; padding: 100px 24px; display: flex; flex-direction: column; justify-content: center; background-size: cover; background-position: center; }
.quote-section--image .quote-text { max-width: 672px; font-size: clamp(26px, 3.89vw, 56px); line-height: 1.2; color: #fff; }
.quote-section--image .quote-attribution { color: #fff; margin-top: 20px; text-transform: none; letter-spacing: 0; font-size: 16px; }
@media (max-width: 767px) {
  .rooms-overview-hero { padding: 16px; }
  .rooms-welcome { padding: 16px; }
  .rooms-overview-list { padding: 0 32px; }
  .rooms-overview-row, .rooms-overview-row--reverse { grid-template-columns: minmax(0, 1fr); gap: 10px; padding: 32px 0; }
  .rooms-overview-row--reverse .rooms-overview-image { order: 0; }
  .rooms-overview-copy h2 { margin-bottom: 16px; }
  .room-features { flex-direction: column; align-items: center; gap: 20px; }
  .room-features li { max-width: none; }
  .quote-section--image { min-height: 500px; padding: 64px 32px; }
}
.room-feature-icon { display: block; width: 48px; height: 48px; margin-bottom: 8px; background: var(--accent); -webkit-mask: var(--room-icon) center / contain no-repeat; mask: var(--room-icon) center / contain no-repeat; }

/* Gallery rows use the available page width and preserve photo proportions. */
.sonnmatten-gallery .page-hero { max-width: none; padding: 48px 48px 184px; }
.sonnmatten-gallery .page-hero-title { font-size: clamp(56px, 7.23vw, 104px); line-height: 1.2; }
.gallery-subtitle { margin-top: 32px; font-size: clamp(26px, 3.89vw, 56px); line-height: 1.2; text-transform: uppercase; }
.sonnmatten-gallery .photo-grid { max-width: none; width: auto; margin: 0 48px; padding: 0 0 64px; display: flex; flex-wrap: wrap; align-items: flex-start; gap: 10px; }
.sonnmatten-gallery .photo-grid-item, .sonnmatten-gallery .photo-grid-item-tall { flex: none; width: calc((100% - 30px) / 4); height: 220px; min-height: 0 !important; grid-row: auto; }
.sonnmatten-gallery .photo-grid-item img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
@media (max-width: 767px) {
  .sonnmatten-gallery .page-hero { padding: 56px 16px 180px; }
  .gallery-subtitle { margin-top: 20px; }
  .sonnmatten-gallery .photo-grid { margin: 0 32px; }
  .sonnmatten-gallery .photo-grid-item { width: 100%; }
}

/* Room pages follow the original full-width hero and two-column detail layout. */
.sonnmatten-room-detail .site-header { position: absolute; top: 0; left: 0; }
.room-detail-hero { position: relative; min-height: 700px; display: flex; align-items: flex-end; justify-content: center; padding: 100px 48px 64px; isolation: isolate; }
.room-detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.room-detail-hero::before { content: ''; position: absolute; inset: 0; background: rgba(30,24,20,.3); z-index: -1; }
.room-detail-hero-copy { width: 100%; text-align: center; }
.room-detail-hero h1 { color: var(--bg); font-family: 'Times New Roman', serif; font-size: clamp(48px, 7.23vw, 104px); line-height: 1.1; font-weight: 400; text-wrap: balance; }
.room-detail-hero nav { display: flex; justify-content: center; gap: 40px; margin-top: 24px; }
.room-detail-hero nav a { color: white; font-size: 16px; text-transform: uppercase; }
.room-detail-hero nav a:hover { text-decoration: underline; text-underline-offset: 6px; }
.room-detail-info { display: grid; grid-template-columns: 1fr 1fr; padding: 48px; background: #fff; color: var(--dark); font-size: 16px; line-height: 1.5; }
.room-detail-copy { padding-right: 48px; }
.room-detail-copy h2 { font: 400 clamp(36px, 3.9vw, 56px)/1.2 'Italiana', serif; color: var(--dark); text-transform: none; margin-bottom: 36px; }
.room-detail-copy p { margin: 0 0 16px; }
.room-detail-equipment { border-left: 1px solid var(--dark); padding-left: 48px; }
.room-detail-equipment h2 { margin: 36px 0 16px; font: 400 18px/1.5 'Times New Roman', serif; text-transform: none; color: var(--dark); }
.room-detail-equipment ul { padding: 0; margin: 0; list-style: none; }
.room-detail-equipment li { margin-bottom: 10px; display: flex; gap: 14px; }
.room-detail-equipment li::before { content: '\203A'; color: var(--accent); font-size: 24px; line-height: 24px; }
.room-detail-booking { position: relative; display: inline-block; margin-bottom: 14px; }
.room-detail-booking > span { position: absolute; left: 70%; top: 65%; width: 140px; color: #ed1490; font: 24px 'playlist-script', cursive; transform: rotate(-35deg); pointer-events: none; }
.room-detail-external { margin-top: 24px; }
.sonnmatten-room-detail #details, .sonnmatten-room-detail #ausstattung, .sonnmatten-room-detail #galerie { scroll-margin-top: 24px; }
.sonnmatten-room-detail .carousel-block { max-width: none; padding: 48px; }
.sonnmatten-room-detail .carousel, .sonnmatten-room-detail .carousel-slide img { border-radius: 0; }
.sonnmatten-room-detail .carousel-slide { aspect-ratio: 3 / 2; }
.sonnmatten-room-detail .related-rooms { max-width: none; padding: 32px 48px 96px; }
.sonnmatten-room-detail .h-related { font: 400 clamp(28px, 3.5vw, 52px)/1.2 'Italiana', serif; text-transform: uppercase; color: var(--dark); margin-bottom: 24px; }
.sonnmatten-room-detail .related-room-card { text-align: center; }
.sonnmatten-room-detail .related-room-card img { height: auto; aspect-ratio: 3 / 2; }
.sonnmatten-room-detail .related-room-title { font-size: 32px; color: var(--dark); text-transform: none; }
.sonnmatten-room-detail .related-room-meta { margin: 16px 0 24px; }
.site-footer { padding: 64px; }
.footer-grid { max-width: none; grid-template-columns: 40% 22% 22% 16%; gap: 0; border: 0; padding: 0; align-items: center; }
.footer-grid > :last-child { text-align: right; align-self: start; }
.footer-grid > :last-child .footer-lang-switch { justify-content: flex-end; }
.footer-grid > :nth-child(2) { justify-self: center; }
.footer-copy { max-width: none; margin-top: 32px; }
.legal-pdf { display: block; width: 100%; height: 80vh; min-height: 500px; border: 0; margin-top: 24px; }
.sonnmatten-legal .page-hero { max-width: none; padding-left: 48px; padding-right: 48px; }
.sonnmatten-legal .page-hero-title { overflow-wrap: anywhere; }
@media (max-width: 767px) {
  .room-detail-hero { min-height: 560px; padding: 100px 24px 48px; }
  .room-detail-hero nav { gap: 24px; }
  .room-detail-hero nav a { font-size: 13px; }
  .room-detail-info { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .room-detail-copy { padding: 0; }
  .room-detail-equipment { border-left: 0; border-top: 1px solid var(--accent); padding: 32px 0 0; }
  .sonnmatten-room-detail .carousel-block { padding: 32px; }
  .sonnmatten-room-detail .related-rooms { padding: 32px 32px 64px; }
  .sonnmatten-room-detail .related-rooms-grid { grid-template-columns: 1fr; gap: 40px; }
  .site-footer { padding: 48px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > :last-child { text-align: left; }
  .footer-grid > :last-child .footer-lang-switch { justify-content: flex-start; }
  .footer-grid > :nth-child(2) { justify-self: start; }
  .legal-text-block { padding: 48px 32px 64px; overflow-wrap: anywhere; }
  .sonnmatten-legal .page-hero { padding-left: 32px; padding-right: 32px; }
}
.room-detail-equipment .room-detail-features { margin-top: 24px; }
.room-detail-equipment .room-detail-features li { align-items: center; }
.room-detail-equipment .room-detail-features li::before { content: none; }
.room-detail-features .room-feature-icon { width: 30px; height: 30px; flex-shrink: 0; }
.sonnmatten-room-detail .related-room-meta { display: flex; justify-content: center; }
.sonnmatten-room-detail .related-room-meta span { padding: 8px 24px; }
.sonnmatten-room-detail .related-room-meta span + span { border-left: 1px solid var(--dark); }
