:root {
  --forest-950: #071a13;
  --forest-900: #0c2b20;
  --forest-800: #143c2c;
  --forest-700: #24593d;
  --leaf: #7fa947;
  --leaf-light: #a8ca73;
  --amber: #98cb63;
  --amber-dark: #4f8248;
  --cream: #f7f4ed;
  --sand: #ebe3d5;
  --white: #fff;
  --ink: #17231d;
  --muted: #657069;
  --line: rgba(17, 47, 35, .14);
  --shadow-sm: 0 10px 28px rgba(7, 26, 19, .08);
  --shadow-lg: 0 28px 80px rgba(7, 26, 19, .18);
  --radius-sm: .75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --container: 76rem;
  --header-height: 5rem;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #04110c;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  color-scheme: light;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.viewer-open,
body.event-modal-open { overflow: hidden; }

[hidden] { display: none !important; }

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

a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }

button, input, textarea, select { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection { background: var(--amber); color: var(--forest-950); }

:focus-visible {
  outline: .2rem solid var(--amber);
  outline-offset: .2rem;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  transform: translateY(-180%);
  border-radius: .5rem;
  background: var(--white);
  color: var(--forest-950);
  font-weight: 750;
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section { padding-block: clamp(4rem, 7.5vw, 7.25rem); }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--forest-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: break-word; }

h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

h2 { font-size: clamp(2.35rem, 6vw, 4.9rem); }

.section-lead {
  max-width: 42rem;
  margin: 1.5rem 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .82rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 780;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: var(--amber);
  color: var(--forest-950);
  box-shadow: 0 12px 30px rgba(80, 130, 72, .24);
}

.button-primary:hover { background: #ace078; box-shadow: 0 16px 36px rgba(80, 130, 72, .3); }

.button-dark { background: var(--forest-900); color: var(--white); }
.button-dark:hover { background: var(--forest-700); }

.button-glow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 25px rgba(7,26,19,.2), 0 0 0 0 rgba(152,203,99,.26);
  animation: button-glow 2.35s ease-in-out infinite;
}

.button-glow::after {
  position: absolute;
  z-index: -1;
  top: -55%;
  left: -60%;
  width: 32%;
  height: 210%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  content: "";
  transform: translateX(0) skewX(-23deg);
  pointer-events: none;
  animation: button-sheen 5.5s ease-in-out infinite;
}

@keyframes button-sheen {
  0%, 18% { transform: translateX(0) skewX(-23deg); }
  35%, 100% { transform: translateX(650%) skewX(-23deg); }
}

.button-glow:hover { box-shadow: 0 14px 34px rgba(7,26,19,.26), 0 0 0 .38rem rgba(168,202,115,.16), 0 0 1.7rem rgba(152,203,99,.38); }

@keyframes button-glow {
  0%, 100% { box-shadow: 0 10px 25px rgba(7,26,19,.2), 0 0 0 0 rgba(152,203,99,.08), 0 0 .45rem rgba(152,203,99,.06); }
  50% { box-shadow: 0 14px 32px rgba(7,26,19,.24), 0 0 0 .42rem rgba(168,202,115,.15), 0 0 1.65rem rgba(152,203,99,.42); }
}

.button-ghost {
  border-color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.08);
  color: var(--white);
  backdrop-filter: blur(.4rem);
}

.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.16); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--forest-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(.25rem); }
.text-link-light { color: var(--white); }

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  transition: background .3s ease, box-shadow .3s ease, height .3s var(--ease);
}

.site-header.is-scrolled,
.site-header.nav-open,
.site-header.header-solid {
  background: rgba(7, 26, 19, .94);
  box-shadow: 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(1rem);
}

.header-inner {
  display: flex;
  width: min(var(--container), calc(100% - 2rem));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-inline: auto;
}

.brand { display: inline-flex; width: min(13.2rem, 52vw); align-items: center; }
.brand img { width: 100%; height: auto; }

.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }

.main-nav a {
  position: relative;
  padding-block: .7rem;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 730;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: .4rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--amber);
  content: "";
  transition: transform .25s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: .72rem 1.1rem !important;
  border: 1px solid var(--amber);
  border-radius: 999px;
  background: var(--amber);
  color: var(--forest-950) !important;
}

.nav-cta:hover { border-color: #ace078; background: #ace078; color: var(--forest-950); }

.main-nav .nav-news {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .52rem .75rem;
  border: 1px solid rgba(168,202,115,.34);
  border-radius: 999px;
  background: rgba(152,203,99,.1);
  color: var(--leaf-light);
  font-weight: 800;
  transition: color .22s ease, background .22s ease, border-color .22s ease;
}

.main-nav .nav-news::before { width: .42rem; height: .42rem; flex: 0 0 auto; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 .22rem rgba(152,203,99,.12); content: ""; }
.main-nav a.nav-news::after { display: none; }
.main-nav .nav-news:hover,
.main-nav .nav-news.is-active { border-color: rgba(168,202,115,.7); background: rgba(152,203,99,.2); color: var(--white); }

.menu-toggle {
  display: none;
  min-width: 3.25rem;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .5rem;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle-lines { display: grid; width: 1.4rem; gap: .28rem; }
.menu-toggle-lines i { display: block; width: 100%; height: 2px; background: currentColor; transition: transform .25s ease, opacity .2s ease; }
.menu-toggle-label { font-size: .78rem; font-weight: 760; }

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(1) { transform: translateY(.4rem) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(3) { transform: translateY(-.4rem) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  background: var(--forest-950);
  color: var(--white);
}

.hero-media,
.hero-shade { position: absolute; inset: 0; }

.hero-media {
  background: url("../img/hero-clubhaus.webp") center 42% / cover no-repeat;
  transform: scale(1.025);
  animation: hero-in 1.5s var(--ease) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5,21,15,.94) 0%, rgba(5,21,15,.77) 35%, rgba(5,21,15,.24) 72%, rgba(5,21,15,.36) 100%),
    linear-gradient(0deg, rgba(5,21,15,.82) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: clamp(5.5rem, 10vh, 8rem);
}

.hero-eyebrow { color: var(--leaf-light); white-space: nowrap; }

.hero h1 {
  max-width: 55rem;
  font-size: clamp(4rem, 10vw, 8.8rem);
  text-shadow: 0 10px 45px rgba(0,0,0,.24);
}

.hero h1 span { color: var(--amber); }

.hero-lead {
  max-width: 41rem;
  margin: 1.6rem 0 2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1.8rem;
  margin-top: 2rem;
  color: rgba(255,255,255,.74);
  font-size: .9rem;
}

.hero-meta a,
.open-status {
  display: inline-grid;
  grid-template-columns: 1.45rem minmax(0, auto);
  align-items: center;
  column-gap: .55rem;
}
.hero-meta a > svg,
.open-status > i { justify-self: center; }
.hero-meta a { text-decoration: none; }
.hero-meta a:hover { color: var(--white); }

.open-status i {
  width: .58rem;
  height: .58rem;
  border-radius: 50%;
  background: #9aa69f;
  box-shadow: 0 0 0 .32rem rgba(154,166,159,.14);
}
.open-status.is-open i { background: #72c25b; box-shadow: 0 0 0 .32rem rgba(114,194,91,.16); }
.open-status.is-before-open i { background: #e4b64f; box-shadow: 0 0 0 .32rem rgba(228,182,79,.16); }
.open-status.is-closed i { background: #dc625a; box-shadow: 0 0 0 .32rem rgba(220,98,90,.16); }

.hero-scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: max(1.05rem, env(safe-area-inset-bottom));
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  color: rgba(255,255,255,.9);
  transform: translateX(-50%);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll-label { white-space: nowrap; text-shadow: 0 5px 18px rgba(0,0,0,.4); }
.hero-scroll-arrows { display: flex; flex-direction: column; align-items: center; animation: cue-float 1.9s ease-in-out infinite; }
.hero-scroll-arrows span { width: .72rem; height: .72rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); }
.hero-scroll-arrows span + span { margin-top: -.34rem; opacity: .58; }
.hero-scroll-cue:hover { color: var(--white); }

@keyframes hero-in { from { opacity: .4; transform: scale(1.1); } to { opacity: 1; transform: scale(1.025); } }
@keyframes cue-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(.3rem); } }

/* Welcome */
.welcome { background: var(--cream); }

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(15rem, .5fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.welcome-copy { max-width: 44rem; }
.welcome-copy > p:not(.eyebrow):not(.section-lead):not(.signature) { color: var(--muted); }

.signature {
  margin: 2rem 0 0;
  padding-left: 1.2rem;
  border-left: 3px solid var(--amber);
  line-height: 1.45;
}

.signature strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 500; }

.portrait-card {
  position: relative;
  width: min(100%, 20rem);
  margin: 0;
  justify-self: center;
}

.portrait-card::before {
  position: absolute;
  z-index: 0;
  inset: -1rem 1rem 1rem -1rem;
  border: 1px solid rgba(20,60,44,.24);
  border-radius: var(--radius-lg);
  content: "";
}

.portrait-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: .65rem .85rem 1.9rem rgba(7, 26, 19, .2);
}

.portrait-card figcaption {
  position: absolute;
  z-index: 2;
  right: -1rem;
  bottom: 2rem;
  padding: .8rem 1rem;
  border-radius: .7rem 0 0 .7rem;
  background: rgba(152, 203, 99, .88);
  color: var(--forest-950);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  -webkit-backdrop-filter: blur(.2rem);
  backdrop-filter: blur(.2rem);
}

/* Hours */
.hours-section {
  position: relative;
  overflow: hidden;
  background: var(--forest-900);
  color: var(--white);
}

.hours-section::after {
  position: absolute;
  right: -12rem;
  bottom: -18rem;
  width: 38rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255,255,255,.02), 0 0 0 10rem rgba(255,255,255,.015);
  content: "";
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading > p { max-width: 25rem; margin: 0; color: var(--muted); }
.section-heading-light .eyebrow { color: var(--leaf-light); }
.section-heading-light > p { color: rgba(255,255,255,.65); }

.hours-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.hours-card {
  padding: clamp(1.4rem, 4vw, 2.3rem);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(.6rem);
}

.hours-list { margin: 0; }
.hours-list div { display: flex; justify-content: space-between; gap: 1rem; padding: .66rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hours-list dt { color: rgba(255,255,255,.7); }
.hours-list dd { margin: 0; font-weight: 800; text-align: right; }
.hours-list div.is-today { margin-inline: -.65rem; padding-inline: .65rem; border-radius: .55rem; background: rgba(152,203,99,.09); }
.hours-list div.is-today dt { color: var(--white); font-weight: 820; }
.hours-list div.is-today dd { color: var(--leaf-light); }

.facts-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }

.fact-card {
  min-height: 12.5rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--ink);
}

.fact-icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  margin-bottom: 1.55rem;
  border-radius: 50%;
  background: var(--sand);
  color: var(--forest-700);
}

.fact-card strong { display: block; font-size: 1.08rem; }
.fact-card p { margin: .35rem 0 0; color: var(--muted); font-size: .94rem; line-height: 1.5; }

/* Celebration */
.celebration { background: var(--white); }

.celebration-grid {
  display: grid;
  grid-template-columns: minmax(16rem, .72fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.celebration-image { position: relative; display: block; width: min(100%, 28rem); justify-self: center; color: inherit; text-decoration: none; }
.celebration-image::before { position: absolute; inset: 2rem -1.2rem -1.2rem 2rem; border-radius: var(--radius-lg); background: var(--sand); content: ""; }

.celebration-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center 58%;
  box-shadow: var(--shadow-lg);
  transition: filter .25s ease, transform .35s var(--ease);
}
.celebration-image:hover img { filter: brightness(1.06); transform: translateY(-2px); }

.image-note {
  position: absolute;
  z-index: 2;
  right: -1.2rem;
  bottom: 2rem;
  display: grid;
  min-width: 8.5rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: var(--amber);
  color: var(--forest-950);
  font-size: .8rem;
  font-weight: 760;
}
.image-note strong { font-family: Georgia, "Times New Roman", serif; font-size: 2.2rem; font-weight: 500; line-height: 1; }

.occasion-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem 1rem;
  margin: 1.8rem 0;
  padding: 0;
  list-style: none;
}

.occasion-list li { position: relative; padding-left: 1.2rem; font-size: .93rem; font-weight: 720; }
.occasion-list li::before { position: absolute; top: .65em; left: 0; width: .42rem; height: .42rem; border-radius: 50%; background: var(--leaf); content: ""; }
.celebration-copy > p:not(.eyebrow):not(.section-lead) { color: var(--muted); }

/* Speisen und Getränke */
.menu-section { padding-block: clamp(3rem, 6vw, 5rem); background: var(--forest-950); }

.menu-panel {
  padding: clamp(1.35rem, 3vw, 2.6rem);
  border: 1px solid rgba(152,203,99,.42);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 5%, rgba(152,203,99,.13), transparent 48%),
    var(--forest-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.menu-heading { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem); margin-bottom: clamp(1.4rem, 3vw, 2rem); }
.menu-mark {
  display: grid;
  width: clamp(4.2rem, 8vw, 6rem);
  flex: none;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--amber);
}
.menu-mark svg { width: 2.2rem; height: 2.2rem; }
.menu-copy .eyebrow { color: var(--leaf-light); }
.menu-copy h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; }
.menu-copy p:last-child { max-width: 43rem; margin: .8rem 0 0; color: rgba(255,255,255,.68); }
.menu-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 1rem; }
.menu-card { min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 1.15rem; background: rgba(255,255,255,.08); }
.menu-card[open] { border-color: rgba(168,202,115,.55); background: rgba(255,255,255,.12); }
.menu-card summary { display: flex; min-height: 5rem; align-items: center; gap: .9rem; padding: 1rem 1.2rem; list-style: none; cursor: pointer; transition: background .2s ease; }
.menu-card summary::-webkit-details-marker { display: none; }
.menu-card summary:hover { background: rgba(255,255,255,.07); }
.menu-card summary:focus-visible { outline: 2px solid var(--leaf-light); outline-offset: -4px; }
.menu-card-icon { display: grid; width: 2.9rem; height: 2.9rem; flex: none; place-items: center; border-radius: .85rem; background: rgba(168,202,115,.17); color: var(--leaf-light); }
.menu-card-icon svg { width: 1.45rem; height: 1.45rem; }
.menu-card-label { display: grid; flex: 1; gap: .05rem; }
.menu-card-label strong { font-size: 1.05rem; line-height: 1.3; }
.menu-card-label small { color: rgba(255,255,255,.7); font-size: .79rem; }
.menu-card-chevron { display: grid; width: 2rem; height: 2rem; flex: none; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; transition: transform .25s ease, background .25s ease; }
.menu-card[open] .menu-card-chevron { transform: rotate(180deg); background: rgba(168,202,115,.16); }
.menu-card-content { padding: 0 1rem 1rem; }
.menu-sheet-preview { display: block; max-width: 29rem; margin-inline: auto; overflow: hidden; border-radius: .65rem; background: #fff; box-shadow: 0 15px 32px rgba(0,0,0,.18); cursor: zoom-in; }
.menu-sheet-preview img { display: block; width: 100%; height: auto; }
.menu-price-note { margin: 1rem 0 0; color: rgba(255,255,255,.66); font-size: .72rem; line-height: 1.35; text-align: center; white-space: nowrap; }

/* Aktuelles */
.current-section { background: var(--sand); }
.testimonials + .current-section { padding-top: 0; }
.current-section-empty { padding-block: clamp(1.5rem, 2.5vw, 2.25rem); }
.current-empty { color: var(--muted); text-align: center; }
.current-empty .eyebrow { margin: 0 0 .2rem; color: var(--forest-700); font-size: .72rem; }
.current-empty p:last-child { margin: 0; font-size: .95rem; line-height: 1.5; }
.current-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.current-grid-1 { grid-template-columns: minmax(0, 46rem); justify-content: center; }
.current-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 58rem; margin-inline: auto; }
.current-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.current-card-heading { padding: 1rem 1.25rem .85rem; background: var(--white); }
.current-card-heading h3 { margin: 0; color: var(--forest-900); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2.4vw, 1.85rem); font-weight: 500; line-height: 1.15; }
.current-card-image { position: relative; display: block; width: 100%; min-height: 17rem; overflow: hidden; padding: 0; border: 0; background: var(--white); cursor: pointer; }
.current-card-image img { width: 100%; height: 21rem; object-fit: contain; transition: transform .55s var(--ease), filter .35s ease; }
.current-card-image > span { position: absolute; right: .8rem; bottom: .8rem; padding: .5rem .75rem; border-radius: 999px; background: rgba(255,255,255,.94); box-shadow: 0 8px 25px rgba(7,26,19,.2); color: var(--forest-950); font-size: .72rem; font-weight: 820; opacity: 0; transform: translateY(.4rem); transition: opacity .25s ease, transform .3s var(--ease); }
.current-card-image:hover img, .current-card-image:focus-visible img { transform: scale(1.025); filter: saturate(1.05) brightness(1.02); }
.current-card-image:hover > span, .current-card-image:focus-visible > span { opacity: 1; transform: none; }
.current-card-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: .8rem 1.25rem 1rem; background: var(--white); }
.current-card-body .eyebrow { margin: 0 0 .45rem; }
.current-card-body > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: .88rem; }
.current-card-body > p a,
.event-modal-text > p a { color: var(--forest-700); font-weight: 820; text-decoration-thickness: .1em; }
.current-card-body > p a:hover,
.event-modal-text > p a:hover { color: var(--forest-900); }

/* Popup für aktive Hinweise */
.event-modal { position: fixed; z-index: 2500; inset: 0; display: grid; place-items: center; padding: max(.65rem, env(safe-area-inset-top)) max(.65rem, env(safe-area-inset-right)) max(.65rem, env(safe-area-inset-bottom)) max(.65rem, env(safe-area-inset-left)); background: rgba(3,13,9,.8); -webkit-backdrop-filter: blur(.55rem); backdrop-filter: blur(.55rem); }
.event-dialog { position: relative; width: min(100%, 46rem); max-height: calc(100dvh - 1.3rem); overflow: auto; overscroll-behavior: contain; border: 1px solid rgba(255,255,255,.2); border-radius: 1.3rem; background: var(--cream); color: var(--ink); box-shadow: 0 30px 95px rgba(0,0,0,.45); animation: event-dialog-in .35s var(--ease) both; }
.event-modal-close { position: absolute; z-index: 3; top: .75rem; right: .75rem; display: grid; width: 2.75rem; height: 2.75rem; place-items: center; padding: 0 0 .12rem; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(7,26,19,.92); color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; }
.event-modal-close:hover { background: var(--forest-700); }
.event-modal-topline { display: flex; min-height: 4.25rem; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 4.4rem .75rem 1.25rem; }
.event-modal-topline .eyebrow { margin: 0; color: var(--forest-700); }
.event-modal-count { color: var(--muted); font-size: .72rem; font-weight: 800; }
.event-modal-image { position: relative; display: block; width: 100%; overflow: hidden; padding: 0; border: 0; background: #ebe7de; cursor: pointer; }
.event-modal-image img { display: block; width: 100%; max-height: min(58dvh, 40rem); object-fit: contain; transition: transform .35s var(--ease), filter .35s ease; }
.event-modal-image:hover img,
.event-modal-image:focus-visible img { transform: scale(1.008); filter: brightness(1.025) saturate(1.025); }
.event-modal-image-hint { position: absolute; z-index: 2; right: .75rem; bottom: .75rem; display: inline-flex; align-items: center; gap: .35rem; padding: .45rem .68rem; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(36,89,61,.82); box-shadow: 0 7px 24px rgba(0,0,0,.24); color: #fff; font-size: .7rem; font-weight: 820; opacity: .22; transform: translateY(.25rem); transition: opacity .22s ease, transform .25s var(--ease), background .22s ease; pointer-events: none; }
.event-modal-image:hover .event-modal-image-hint,
.event-modal-image:focus-visible .event-modal-image-hint { opacity: 1; transform: none; }
.event-modal-text { padding: 1.25rem 1.5rem 1.45rem; }
.event-modal-text .eyebrow { margin-bottom: .45rem; }
.event-modal-text h2 { margin: 0 0 .5rem; color: var(--forest-900); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 4vw, 2.25rem); font-weight: 500; }
.event-modal-text > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: .9rem; }
.event-modal-bottom { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .75rem 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; text-align: center; }
.event-modal-nav { display: grid; width: 2.55rem; height: 2.55rem; flex: 0 0 auto; place-items: center; padding: 0; border: 1px solid rgba(7,26,19,.18); border-radius: 50%; background: var(--forest-700); box-shadow: 0 5px 16px rgba(7,26,19,.18); color: #fff; font-size: 1.25rem; font-weight: 800; cursor: pointer; transition: background .2s ease, transform .2s var(--ease); }
.event-modal-nav:hover { background: var(--forest-800); transform: scale(1.05); }
@keyframes event-dialog-in { from { opacity: 0; transform: translateY(1rem) scale(.975); } to { opacity: 1; transform: none; } }

/* Gallery */
.gallery-preview { background: var(--cream); }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  align-items: start;
}

.preview-image { position: relative; display: block; overflow: hidden; padding: 0; border: 0; border-radius: var(--radius-md); background: var(--sand); cursor: pointer; transition: transform .28s var(--ease), box-shadow .28s ease, outline-color .28s ease; }
.preview-image img { display: block; width: 100%; height: auto; object-fit: contain; transition: transform .65s var(--ease), filter .4s ease; }
.preview-image::before { position: absolute; z-index: 3; right: .7rem; bottom: .65rem; padding: .42rem .72rem; border-radius: 999px; background: rgba(255,255,255,.94); box-shadow: 0 5px 18px rgba(0,0,0,.2); color: var(--forest-950); content: "⛶  Groß ansehen"; font-size: .7rem; font-weight: 820; line-height: 1.2; opacity: 0; transform: translateY(.45rem); transition: opacity .25s ease, transform .3s var(--ease); }
.preview-image::after { position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg, rgba(7,26,19,.18), transparent 45%); content: ""; opacity: 0; transition: opacity .35s ease; }
.preview-image:hover img { transform: scale(1.035); }
.preview-image:hover::after { opacity: 1; }
.preview-image.is-selected { z-index: 2; outline: 3px solid var(--amber); outline-offset: -3px; box-shadow: 0 14px 34px rgba(5,21,15,.22); transform: translateY(-3px); }
.js .preview-image.is-selected[data-reveal].is-visible { transform: translateY(-3px); }
.preview-image.is-selected img { transform: scale(1.045); filter: saturate(1.06) brightness(1.025); }
.preview-image.is-selected::before { opacity: 1; transform: none; }
.preview-image.is-selected::after { opacity: 1; }
.preview-image:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

/* Testimonials */
.testimonials { background: var(--sand); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.testimonial { display: flex; min-height: 19rem; flex-direction: column; justify-content: space-between; margin: 0; padding: clamp(1.5rem, 3vw, 2.2rem); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.testimonial::before { color: var(--amber-dark); content: "“"; font-family: Georgia, serif; font-size: 4.5rem; line-height: .55; }
.testimonial blockquote { margin: 2rem 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.35; }
.testimonial figcaption { display: flex; flex-direction: column; padding-top: 1rem; border-top: 1px solid var(--line); }
.testimonial figcaption strong { font-size: .92rem; }
.testimonial figcaption span { color: var(--muted); font-size: .78rem; }
.testimonial-featured { transform: translateY(-1.2rem); background: var(--forest-800); color: var(--white); }
.testimonial-featured figcaption { border-color: rgba(255,255,255,.14); }
.testimonial-featured figcaption span { color: rgba(255,255,255,.62); }

/* Contact */
.contact-section {
  scroll-margin-top: calc(0px - clamp(4rem, 7.5vw, 7.25rem));
  background: var(--forest-950);
  color: var(--white);
}
.contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(25rem, 1.05fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.contact-copy .eyebrow { color: var(--leaf-light); }
.contact-copy .section-lead { color: rgba(255,255,255,.7); }

.contact-options { display: grid; gap: .5rem; margin: 2.2rem 0; }
.contact-options > a { display: flex; align-items: center; gap: .9rem; padding: .75rem; border-radius: .9rem; text-decoration: none; transition: background .2s ease, transform .25s var(--ease); }
.contact-options > a:hover { transform: translateX(.25rem); background: rgba(255,255,255,.06); }
.contact-option-icon { display: grid; width: 2.8rem; height: 2.8rem; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; color: var(--amber); }
.contact-options small, .contact-options strong { display: block; }
.contact-options small { color: rgba(255,255,255,.5); font-size: .74rem; }
.contact-options strong { font-size: .95rem; overflow-wrap: anywhere; }

.route-link { display: flex; align-items: end; justify-content: space-between; gap: 1rem; padding: 1.1rem; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); color: rgba(255,255,255,.76); text-decoration: none; }
.route-link small { display: block; margin-bottom: .25rem; color: rgba(255,255,255,.52); font-size: .72rem; line-height: 1.4; }
.route-button { display: inline-flex; align-items: center; gap: .35rem; padding: .58rem .78rem; border: 1px solid rgba(161,199,164,.38); border-radius: 999px; background: rgba(91,139,99,.2); color: #d9ebd7; font-size: .84rem; white-space: nowrap; transition: background .2s ease, border-color .2s ease; }
.route-link:hover { border-color: rgba(255,255,255,.3); }
.route-link:hover .route-button { border-color: rgba(161,199,164,.58); background: rgba(91,139,99,.32); }

.contact-form {
  padding: clamp(1.35rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.form-heading { margin-bottom: 1.4rem; }
.form-heading > span { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 3vw, 2rem); }
.form-heading p { margin: .15rem 0 0; color: var(--muted); font-size: .78rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
.contact-form label { display: grid; gap: .42rem; margin-bottom: .9rem; }
.contact-form label > span:first-child { font-size: .82rem; font-weight: 760; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 3.1rem;
  padding: .72rem .9rem;
  border: 1px solid rgba(17,47,35,.18);
  border-radius: .7rem;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea { min-height: 9rem; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--forest-700); box-shadow: 0 0 0 .22rem rgba(36,89,61,.12); }

.privacy-check { grid-template-columns: auto 1fr !important; align-items: start; gap: .65rem !important; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.privacy-check input { width: 1.15rem; min-height: 1.15rem; margin-top: .15rem; accent-color: var(--forest-700); }
.privacy-check a { color: var(--forest-700); font-weight: 760; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.button-submit { min-width: 13rem; border: 0; }
.button-submit[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-status { min-height: 1.5rem; margin: .8rem 0 0; font-size: .84rem; font-weight: 700; }
.form-status.is-success { color: #236c36; }
.form-status.is-error { color: #a5352d; }

/* Footer */
.site-footer { padding: 3.25rem 0 1rem; background: #04110c; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .7fr; gap: 1.5rem; }
.footer-logo { width: min(13.2rem, 100%); height: auto; margin-bottom: .8rem; object-fit: contain; }
.footer-grid p, .footer-grid address { margin: 0; font-size: .88rem; font-style: normal; }
.footer-grid strong { display: block; margin-bottom: .5rem; color: var(--white); }
.footer-address-link { display: inline-flex; align-items: center; gap: .38rem; color: inherit; text-decoration: none; transition: color .2s ease; }
.footer-address-link:hover, .footer-address-link:focus-visible { color: var(--white); }
.footer-address-arrow { color: var(--leaf-light); font-size: .9rem; line-height: 1; transition: transform .2s ease; }
.footer-address-link:hover .footer-address-arrow, .footer-address-link:focus-visible .footer-address-arrow { transform: translate(.12rem, -.12rem); }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: .45rem; }
.footer-links a { text-decoration: none; font-size: .88rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .45rem 1.25rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; text-align: center; }
.footer-copyright { white-space: nowrap; }
.footer-legal { display: flex; justify-content: center; gap: 1rem; }
.footer-bottom a { text-decoration: none; }

.mobile-actions { display: none; }

.back-to-top {
  position: fixed;
  z-index: 890;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(7,26,19,.78);
  color: rgba(255,255,255,.78);
  box-shadow: 0 .45rem 1.35rem rgba(0,0,0,.18);
  backdrop-filter: blur(.7rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(.55rem);
  pointer-events: none;
  cursor: pointer;
  transition: opacity .24s ease, transform .3s var(--ease), visibility .3s, background .2s ease, color .2s ease;
}

.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover,
.back-to-top:focus-visible { background: rgba(7,26,19,.94); color: var(--white); }
.back-to-top:focus-visible { outline: 2px solid var(--leaf-light); outline-offset: 3px; }
.back-to-top svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.back-to-top-hint {
  position: absolute;
  right: calc(100% + .5rem);
  top: 50%;
  padding: .42rem .72rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(7,26,19,.93);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translate(.35rem,-50%);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.back-to-top.is-armed .back-to-top-hint { opacity: 1; visibility: visible; transform: translate(0,-50%); }

/* Gallery page */
.subpage-main { min-height: 70vh; padding-top: var(--header-height); }
.page-hero { padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem); background: var(--forest-900); color: var(--white); }
.page-hero .eyebrow { color: var(--leaf-light); }
.page-hero h1 { max-width: 54rem; font-size: clamp(3.6rem, 9vw, 7rem); }
.page-hero p:last-child { max-width: 42rem; margin: 1.4rem 0 0; color: rgba(255,255,255,.7); font-size: 1.1rem; }
.page-hero-gallery { position: relative; overflow: hidden; padding: clamp(2.5rem, 5vw, 4.25rem) 0 clamp(3rem, 6vw, 5rem); }
.page-hero-gallery::before, .page-hero-gallery::after { position: absolute; inset: 0; content: ""; }
.page-hero-gallery::before { z-index: 0; background: url("../img/gallery/20230204_194508-scaled.webp") center 52% / cover no-repeat; transform: scale(1.025); }
.page-hero-gallery::after { z-index: 1; background: linear-gradient(90deg, rgba(5,21,15,.94) 0%, rgba(5,21,15,.78) 55%, rgba(5,21,15,.58) 100%), linear-gradient(0deg, rgba(5,21,15,.5), rgba(5,21,15,.12)); }
.page-hero-gallery .container { position: relative; z-index: 2; }
.page-hero-gallery h1 { text-shadow: 0 10px 40px rgba(0,0,0,.3); }

.gallery-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.filter-list { display: flex; max-width: 100%; flex-wrap: nowrap; gap: .5rem; overflow-x: auto; scrollbar-width: none; }
.filter-list::-webkit-scrollbar { display: none; }
.filter-button { min-height: 2.8rem; flex: 0 0 auto; padding: .55rem .95rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); font-size: .82rem; font-weight: 760; white-space: nowrap; cursor: pointer; }
.filter-button:hover, .filter-button.is-active { border-color: var(--forest-800); background: var(--forest-800); color: var(--white); }
.gallery-count { color: var(--muted); font-size: .82rem; }

.gallery-grid { column-count: 3; column-gap: .9rem; }
.gallery-card { position: relative; display: inline-block; width: 100%; margin: 0 0 .9rem; break-inside: avoid; overflow: hidden; padding: 0; border: 0; border-radius: var(--radius-md); background: var(--forest-950); color: var(--white); cursor: pointer; vertical-align: top; transition: transform .28s var(--ease), box-shadow .28s ease, outline-color .28s ease; }
.gallery-card[hidden] { display: none; }
.gallery-card-panorama { display: block; width: 100%; column-span: all; }
.gallery-card img { display: block; width: 100%; height: auto; object-fit: contain; transition: transform .55s var(--ease), filter .35s ease; }
.gallery-card::before { position: absolute; z-index: 3; right: .7rem; bottom: .65rem; padding: .42rem .72rem; border-radius: 999px; background: rgba(255,255,255,.94); box-shadow: 0 5px 18px rgba(0,0,0,.2); color: var(--forest-950); content: "⛶  Groß ansehen"; font-size: .7rem; font-weight: 820; line-height: 1.2; opacity: 0; transform: translateY(.45rem); transition: opacity .25s ease, transform .3s var(--ease); }
.gallery-card::after { position: absolute; inset: 40% 0 0; background: linear-gradient(0deg, rgba(5,21,15,.82), transparent); content: ""; }
.gallery-card span { position: absolute; z-index: 2; right: 1rem; bottom: .85rem; left: 1rem; font-weight: 780; text-align: left; text-shadow: 0 2px 12px rgba(0,0,0,.28); transition: bottom .3s var(--ease); }
.gallery-card:hover img { transform: scale(1.025); filter: saturate(1.05) brightness(1.02); }
.gallery-card:hover { transform: translateY(-2px); }
.gallery-card.is-selected { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(7,26,19,.24); }
.gallery-card.is-selected img { transform: scale(1.04); filter: saturate(1.08) brightness(1.03); }
.gallery-card.is-selected::before { opacity: 1; transform: translateY(0); }
.gallery-card.is-selected span { bottom: 3.05rem; }
.gallery-card:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.gallery-viewer { width: 100vw; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; overflow: hidden; border: 0; background: rgba(2,12,8,.97); color: var(--white); overscroll-behavior: contain; }
.gallery-viewer:not([open]) { display: none; }
.gallery-viewer[open] { display: block; }
.gallery-viewer::backdrop { background: rgba(2,12,8,.9); backdrop-filter: blur(.45rem); }
.gallery-viewer-shell { position: relative; display: grid; width: 100%; height: 100%; place-items: center; padding: 3.75rem 5rem 1.5rem; }
.gallery-viewer-figure { display: flex; width: 100%; height: 100%; align-items: center; flex-direction: column; justify-content: center; gap: .85rem; margin: 0; }
.gallery-viewer-image-button { position: relative; display: block; max-width: 100%; max-height: calc(100dvh - 7.5rem); flex: 0 1 auto; padding: 0; border: 0; border-radius: .7rem; background: transparent; color: var(--white); cursor: pointer; }
.gallery-viewer-image { width: auto; max-width: 100%; height: auto; max-height: calc(100dvh - 7.5rem); border-radius: .7rem; object-fit: contain; box-shadow: 0 18px 70px rgba(0,0,0,.36); transition: transform .32s var(--ease), filter .32s ease; user-select: none; -webkit-user-drag: none; }
.gallery-viewer-image-button:hover .gallery-viewer-image,
.gallery-viewer-image-button:focus-visible .gallery-viewer-image { transform: scale(1.006); filter: brightness(1.025) saturate(1.025); }
.gallery-viewer-image-hint { position: absolute; z-index: 2; right: .75rem; bottom: .75rem; padding: .45rem .7rem; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(36,89,61,.84); box-shadow: 0 7px 24px rgba(0,0,0,.28); color: var(--white); font-size: .7rem; font-weight: 820; line-height: 1.2; opacity: .28; transform: translateY(.25rem); transition: opacity .22s ease, transform .25s var(--ease); pointer-events: none; }
.gallery-viewer-image-button:hover .gallery-viewer-image-hint,
.gallery-viewer-image-button:focus-visible .gallery-viewer-image-hint { opacity: 1; transform: none; }
.gallery-viewer-caption { display: flex; width: min(50rem, 100%); align-items: center; justify-content: center; gap: .8rem; color: rgba(255,255,255,.86); font-size: .88rem; font-weight: 700; text-align: center; }
.gallery-viewer-position { color: rgba(255,255,255,.48); font-size: .72rem; white-space: nowrap; }
.gallery-viewer-close,
.gallery-viewer-nav { position: absolute; z-index: 2; display: grid; width: 3.15rem; height: 3.15rem; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(7,26,19,.78); color: var(--white); cursor: pointer; backdrop-filter: blur(.75rem); transition: background .2s ease, transform .2s ease; }
.gallery-viewer-close:hover,
.gallery-viewer-nav:hover { background: var(--forest-700); transform: scale(1.05); }
.gallery-viewer-close { top: max(.85rem, env(safe-area-inset-top)); right: max(.85rem, env(safe-area-inset-right)); }
.gallery-viewer-nav { top: 50%; transform: translateY(-50%); }
.gallery-viewer-nav:hover { transform: translateY(-50%) scale(1.05); }
.gallery-viewer-prev { left: max(.85rem, env(safe-area-inset-left)); }
.gallery-viewer-next { right: max(.85rem, env(safe-area-inset-right)); }
.gallery-viewer-close svg,
.gallery-viewer-nav svg { width: 1.45rem; height: 1.45rem; }
.gallery-viewer.is-menu .gallery-viewer-shell { padding-bottom: 5rem; }
.gallery-viewer.is-menu .gallery-viewer-image-button,
.gallery-viewer.is-menu .gallery-viewer-image { max-height: calc(100dvh - 10.5rem); }
.gallery-viewer.is-menu .gallery-viewer-nav { top: auto; bottom: max(1rem, env(safe-area-inset-bottom)); transform: none; }
.gallery-viewer.is-menu .gallery-viewer-nav:hover { transform: scale(1.05); }

/* Legal and utility pages */
.legal-wrap { display: grid; max-width: 52rem; gap: 1.5rem; }
.legal-home-card { padding: clamp(1.35rem, 4vw, 2rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.55); }
.legal-home-card p { margin: 0 0 .9rem; color: var(--muted); }
.legal-home-card a { display: inline-flex; align-items: center; gap: .5rem; color: var(--forest-700); font-weight: 820; text-decoration: none; }
.legal-home-card a span { transition: transform .25s var(--ease); }
.legal-home-card a:hover span { transform: translateX(-.22rem); }
.legal-card { padding: clamp(1.4rem, 5vw, 3.5rem); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.legal-card h2 { margin-top: 2.7rem; font-family: inherit; font-size: 1.45rem; font-weight: 820; letter-spacing: -.02em; line-height: 1.25; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { margin: 1.8rem 0 .4rem; font-size: 1rem; }
.legal-card p, .legal-card li { color: #425049; }
.legal-card a { color: var(--forest-700); font-weight: 720; }
.legal-card address { font-style: normal; }
.legal-note { margin-top: 2rem; padding: 1rem; border-left: 3px solid var(--amber); background: #f1f8ec; font-size: .88rem; }

.not-found { display: grid; min-height: 75vh; place-items: center; padding: calc(var(--header-height) + 3rem) 1rem 4rem; background: var(--forest-900); color: var(--white); text-align: center; }
.not-found-inner { max-width: 43rem; }
.not-found-code { margin: 0; color: var(--amber); font-family: Georgia, serif; font-size: clamp(5rem, 22vw, 12rem); line-height: .8; }
.not-found h1 { margin: 1rem 0; font-size: clamp(2.5rem, 6vw, 4.5rem); }
.not-found p { margin: 0 auto 2rem; color: rgba(255,255,255,.7); }

/* Reveal motion */
.js [data-reveal] { opacity: 0; transform: translateY(1.7rem); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 64rem) {
  .welcome-grid,
  .celebration-grid,
  .contact-grid { gap: 3.5rem; }

  .main-nav { gap: 1rem; }
  .main-nav a { font-size: .8rem; }
  .hours-layout { grid-template-columns: .8fr 1.2fr; }
  .current-grid:not(.current-grid-1) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { column-count: 2; }
}

@media (max-width: 52rem) {
  :root { --header-height: 4.5rem; }

  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    z-index: -1;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: calc(100svh - var(--header-height));
    gap: 0;
    padding: .8rem 1rem 1.2rem;
    transform: translateY(-120%);
    overflow-y: auto;
    background: rgba(7,26,19,.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .25s ease, visibility .35s;
  }

  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .main-nav a { padding: 1rem .4rem; border-bottom: 1px solid rgba(255,255,255,.09); font-size: 1rem; }
  .main-nav .nav-news { margin: .35rem 0; padding: .85rem .75rem; border: 1px solid rgba(168,202,115,.32); border-radius: .8rem; }
  .nav-cta { margin-top: .8rem; border-color: var(--amber) !important; background: var(--amber); color: var(--forest-950) !important; text-align: center; }

  .welcome-grid,
  .celebration-grid,
  .contact-grid,
  .hours-layout { grid-template-columns: 1fr; }

  .welcome-copy { max-width: none; }
  .portrait-card { width: min(18rem, calc(100% - 2rem)); margin-inline: auto; }
  .celebration-image { order: 2; }
  .celebration-copy { order: 1; }
  .celebration-image { width: min(100%, 26rem); }

  .menu-list { grid-template-columns: 1fr; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial { min-height: 15rem; }
  .testimonial-featured { transform: none; }

  .contact-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 40rem) {
  body { padding-bottom: 0; }
  .container { width: min(var(--container), calc(100% - 1.35rem)); }
  .section { padding-block: 3.5rem; }
  .contact-section { scroll-margin-top: -3.5rem; }
  h2 { font-size: clamp(2.3rem, 13vw, 3.6rem); }

  .site-header { background: linear-gradient(180deg, rgba(5,21,15,.7), transparent); }
  .header-inner { width: calc(100% - 1.2rem); }
  .brand { width: 11.4rem; }

  .hero { min-height: 100svh; align-items: start; }
  .hero-media { background-position: 57% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,21,15,.97) 0%, rgba(5,21,15,.71) 57%, rgba(5,21,15,.34) 100%); }
  .hero-content { padding-top: calc(var(--header-height) + 1.35rem); padding-bottom: 7rem; }
  .hero-eyebrow { font-size: clamp(.65rem, 2.7vw, .76rem); letter-spacing: .11em; }
  .hero h1 { font-size: clamp(3.35rem, 16vw, 4.2rem); }
  .hero-lead { font-size: 1.02rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { padding-inline: .9rem; }
  .hero-meta { display: grid; gap: .75rem; margin-top: 1.5rem; }
  .hero-scroll-cue { bottom: max(.75rem, env(safe-area-inset-bottom)); font-size: .62rem; }

  .portrait-card figcaption { right: 0; }
  .section-heading { display: grid; gap: 1rem; align-items: start; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact-card { min-height: 0; }
  .occasion-list { grid-template-columns: 1fr; }

  .menu-panel { padding: 1.1rem; }
  .menu-heading { align-items: flex-start; gap: .85rem; }
  .menu-mark { width: 3.1rem; }
  .menu-mark svg { width: 1.55rem; height: 1.55rem; }
  .menu-copy h2 { font-size: clamp(1.75rem, 8vw, 2.7rem); }
  .menu-card summary { min-height: 4.6rem; padding: .85rem; }
  .menu-card-content { padding-inline: .7rem; }
  .menu-price-note { font-size: clamp(.6rem, 2.7vw, .72rem); }

  .preview-grid { grid-template-columns: 1fr 1fr; }

  .current-grid,
  .current-grid-2,
  .current-grid:not(.current-grid-1) { grid-template-columns: 1fr; }
  .current-card-image img { height: min(25rem, 65vh); }
  .event-dialog { border-radius: 1rem; }
  .event-modal-topline { min-height: 3.75rem; padding: .85rem 4rem .65rem 1rem; }
  .event-modal-image img { max-height: 56dvh; }
  .event-modal-text { padding: 1rem 1.1rem 1.2rem; }
  .event-modal-bottom { padding: .65rem .75rem; }
  .event-modal-bottom > span { max-width: 13rem; font-size: .62rem; line-height: 1.35; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { border-radius: var(--radius-md); }
  .contact-options > a { padding-inline: 0; }
  .route-link { align-items: start; flex-direction: column; }
  .button-submit { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .site-footer { padding-top: 2.75rem; padding-bottom: calc(5rem + env(safe-area-inset-bottom)); }
  .footer-bottom { align-items: center; flex-direction: column; }

  .mobile-actions {
    position: fixed;
    z-index: 900;
    inset: auto .55rem .55rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: .35rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(7,26,19,.96);
    box-shadow: 0 12px 35px rgba(0,0,0,.32);
    backdrop-filter: blur(1rem);
    transition: opacity .28s ease, transform .36s var(--ease), visibility .36s;
  }

  .js .mobile-actions { transform: translateY(calc(100% + 1.2rem)); opacity: 0; visibility: hidden; pointer-events: none; }
  .js .mobile-actions.is-visible { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .mobile-actions a { display: flex; min-height: 3rem; align-items: center; justify-content: center; gap: .45rem; border-radius: 999px; color: var(--white); text-decoration: none; font-size: .86rem; font-weight: 800; }
  .mobile-actions a:first-child { background: var(--amber); color: var(--forest-950); }
  .mobile-actions svg { width: 1rem; height: 1rem; }

  .back-to-top {
    z-index: 910;
    right: max(.75rem, env(safe-area-inset-right));
    bottom: calc(5.6rem + env(safe-area-inset-bottom));
    width: 2.45rem;
    height: 2.45rem;
  }

  .page-hero { padding-top: 4rem; }
  .page-hero-gallery { padding-top: 1.75rem; padding-bottom: 3.25rem; }
  .page-hero h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .gallery-toolbar { align-items: flex-start; flex-direction: column; }
  .gallery-grid { column-count: 2; column-gap: .7rem; }
  .gallery-card { margin-bottom: .7rem; border-radius: 1rem; }
  .gallery-card span { right: .65rem; bottom: .55rem; left: .65rem; font-size: .72rem; }
  .gallery-viewer-shell { padding: 3.6rem .5rem 1rem; }
  .gallery-viewer-image-button,
  .gallery-viewer-image { max-height: calc(100dvh - 7rem); border-radius: .45rem; }
  .gallery-viewer-caption { padding-inline: 3rem; font-size: .8rem; }
  .gallery-viewer-nav { top: auto; bottom: calc(1rem + env(safe-area-inset-bottom)); width: 2.8rem; height: 2.8rem; transform: none; }
  .gallery-viewer-nav:hover { transform: scale(1.05); }
}

@media (hover: none) {
  .event-modal-image-hint { opacity: .9; transform: none; }
  .gallery-viewer-image-hint { opacity: .9; transform: none; }
  .gallery-card::before,
  .preview-image::before { display: grid; width: 2rem; height: 2rem; right: .5rem; bottom: .45rem; place-items: center; padding: 0; content: "⛶"; font-size: .9rem; opacity: 0; transform: translateY(.35rem); }
  .gallery-card span { right: .65rem; bottom: .58rem; }
  .gallery-card:hover span { bottom: .58rem; }
  .gallery-card.is-selected::before,
  .preview-image.is-selected::before { opacity: 1; transform: translateY(0); }
  .gallery-card.is-selected span { right: 2.8rem; bottom: .58rem; }
}

@media (max-width: 23rem) {
  .gallery-grid { column-count: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .event-dialog { animation: none; }
}

@media (forced-colors: active) {
  .hero-shade { background: rgba(0,0,0,.65); }
  .button, .filter-button { border: 1px solid ButtonText; }
}
