:root {
  --ink: #24302a;
  --muted: #66746d;
  --paper: #fffaf2;
  --surface: #ffffff;
  --sand: #e9d8bd;
  --stone: #d2cbc0;
  --olive: #5e7555;
  --olive-dark: #34483b;
  --terracotta: #b9643d;
  --terracotta-dark: #8f4628;
  --sky: #dbe9ee;
  --line: rgba(36, 48, 42, 0.14);
  --shadow: 0 18px 45px rgba(36, 48, 42, 0.16);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--olive-dark);
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a {
  padding: 8px 12px;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.main-nav .nav-cta,
.main-nav a.is-active {
  padding: 8px 12px;
  color: #fff;
  border-radius: var(--radius);
  background: var(--terracotta);
}

.main-nav .nav-cta:not(.is-active) {
  color: var(--muted);
  background: transparent;
}

.main-nav .nav-cta:hover,
.main-nav a.is-active:hover {
  color: #fff;
  background: var(--terracotta-dark);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--olive-dark);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(26, 31, 27, 0.72), rgba(26, 31, 27, 0.18) 58%, rgba(26, 31, 27, 0.1)),
    linear-gradient(0deg, rgba(26, 31, 27, 0.62), rgba(26, 31, 27, 0.02) 46%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 54px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd9b9;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 0.88;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.03rem;
}

.hero-lead {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--terracotta);
}

.button.primary:hover {
  background: var(--terracotta-dark);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.button.wide {
  width: 100%;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.quick-facts div {
  padding: 14px 16px;
  background: rgba(24, 35, 29, 0.28);
}

.quick-facts dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.quick-facts dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.booking-strip {
  width: min(var(--max), calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.compact-booking,
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
}

.compact-booking {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[name="couponCode"] {
  text-transform: uppercase;
}

.field-option {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.field-option input {
  width: 18px;
  min-height: 18px;
}

.compact-option {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(94, 117, 85, 0.08);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(185, 100, 61, 0.2);
  border-color: var(--terracotta);
}

.strip-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-strip {
  width: min(var(--max), calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px auto 0;
}

.trust-strip article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.section-copy p,
.section-heading p,
.image-band p,
.booking-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-grid article,
.faq-grid article,
.review-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.feature-grid p,
.faq-grid p,
.review-grid p {
  margin: 0;
  color: var(--muted);
}

.image-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 520px;
  background: var(--olive-dark);
  color: #fff;
}

.image-band img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.image-band div {
  display: grid;
  align-content: center;
  padding: clamp(32px, 6vw, 84px);
}

.image-band p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amenity-list span {
  padding: 10px 14px;
  border: 1px solid rgba(94, 117, 85, 0.24);
  border-radius: 999px;
  background: rgba(94, 117, 85, 0.08);
  font-weight: 800;
}

.amenity-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.amenity-detail-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.amenity-detail-grid p {
  margin: 0;
  color: var(--muted);
}

.gallery-section {
  padding: 90px clamp(18px, 4vw, 48px);
  background: #f3eadb;
}

.gallery-section .section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 30px;
}

.gallery-folders {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.gallery-folder {
  overflow: hidden;
  border: 1px solid rgba(36, 48, 42, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.gallery-folder summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}

.gallery-folder summary::-webkit-details-marker {
  display: none;
}

.gallery-folder summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--olive-dark);
}

.gallery-folder[open] summary::after {
  content: "-";
}

.gallery-folder summary small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.gallery-folder .gallery {
  width: 100%;
  padding: 0 14px 14px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-folder .gallery figure.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery figure {
  min-height: 250px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
}

.gallery figure.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery figure:hover img {
  transform: scale(1.025);
}

.gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: #fff;
  border-radius: var(--radius);
  background: rgba(20, 28, 24, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.prices {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 5vw, 60px);
}

.price-table {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.price-table > div {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: 12px;
  padding: 15px 18px;
  border-top: 1px solid var(--line);
}

.price-table > div:first-child {
  border-top: 0;
}

.table-head {
  color: #fff;
  background: var(--olive-dark);
  font-weight: 900;
}

.price-notes {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.price-notes p {
  margin: 0;
  padding: 16px;
  border-left: 4px solid var(--terracotta);
  background: rgba(255, 255, 255, 0.72);
}

.booking-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 5vw, 66px);
  padding: 90px max(18px, calc((100vw - var(--max)) / 2));
  background: var(--sky);
}

.booking-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-grid {
  grid-template-columns: repeat(2, 1fr);
}

.full {
  margin-top: 12px;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin: 14px 0;
  color: var(--ink);
  font-weight: 650;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.step-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 12px 14px;
  border-left: 4px solid var(--olive);
  background: rgba(255, 255, 255, 0.5);
}

.step-number {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--olive-dark);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
}

.step-list strong {
  display: block;
}

.step-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-result {
  display: none;
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #f6fbf4;
  scroll-margin-bottom: 90px;
}

.compact-result {
  margin-top: 14px;
  box-shadow: none;
  background: #fbf7ef;
}

.booking-result.is-visible {
  display: block;
}

.booking-result strong {
  display: block;
  margin-bottom: 8px;
}

.booking-result .result-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.result-lines {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.compact-result .result-lines {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-lines div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
  border-top: 1px solid rgba(36, 48, 42, 0.1);
}

.guide-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.guide-item {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.guide-item img {
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.guide-item div {
  padding: 22px;
  align-self: center;
}

.guide-item p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--terracotta-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trip-links {
  width: min(var(--max), 100%);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trip-links a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.trip-links strong,
.trip-links span {
  display: block;
}

.trip-links span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.trip-categories {
  width: min(var(--max), 100%);
  margin: 24px auto 0;
  display: grid;
  gap: 14px;
}

.trip-category {
  overflow: hidden;
  border: 1px solid rgba(36, 48, 42, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.trip-category summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}

.trip-category summary::-webkit-details-marker {
  display: none;
}

.trip-category summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--olive-dark);
}

.trip-category[open] summary::after {
  content: "-";
}

.trip-category summary small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.trip-category .trip-links {
  width: 100%;
  margin: 0;
  padding: 0 14px 14px;
}

.guide-video {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1.3fr);
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.guide-video h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.guide-video p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.guide-video-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 14px;
}

.guide-video video {
  width: 100%;
  max-height: 440px;
  border-radius: var(--radius);
  background: #1d241f;
}

.location-map {
  width: min(var(--max), 100%);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1.3fr);
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.location-map h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.location-map p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.day-grid article {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.day-time {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(185, 100, 61, 0.12);
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.day-grid p {
  margin: 0;
  color: var(--muted);
}

.reviews {
  padding: 90px max(18px, calc((100vw - var(--max)) / 2));
  background: var(--olive-dark);
  color: #fff;
}

.reviews .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.review-grid p {
  color: rgba(255, 255, 255, 0.86);
}

.stars {
  color: #ffd166;
  margin-bottom: 14px;
  letter-spacing: 0;
}

.review-grid footer {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.78);
  background: #1d2721;
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

.mobile-booking-cta {
  display: none;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .main-nav {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    min-width: max-content;
  }

  .site-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 28px;
    background: linear-gradient(to right, rgba(255, 250, 242, 0), rgba(255, 250, 242, 0.95) 65%);
    pointer-events: none;
  }

  .intro,
  .image-band,
  .prices,
  .booking-section,
  .guide-grid,
  .review-grid,
  .amenity-detail-grid,
  .trust-strip,
  .day-grid,
  .location-map {
    grid-template-columns: 1fr;
  }

  .compact-booking {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-booking .button {
    grid-column: 1 / -1;
  }

  .price-notes {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .gallery,
  .gallery-folder .gallery,
  .trip-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-band img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 74px;
  }

  html {
    scroll-padding-top: 112px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .main-nav {
    gap: 8px;
    font-size: 0.86rem;
  }

  .main-nav a {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 28px));
    padding: 84px 0 28px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.75rem, 10vw, 2.65rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .quick-facts div {
    padding: 12px;
  }

  .booking-strip {
    width: calc(100% - 24px);
    margin-top: -18px;
    padding: 14px;
  }

  .booking-strip .button {
    width: 100%;
  }

  .compact-booking {
    grid-template-columns: 1fr;
  }

  .compact-booking .button {
    grid-column: auto;
  }

  input,
  select,
  textarea,
  .button {
    min-height: 48px;
  }

  .strip-note,
  .trust-strip span,
  .booking-result,
  .section-copy p,
  .section-heading p,
  .image-band p,
  .booking-copy p {
    font-size: 0.96rem;
  }

  .feature-grid,
  .faq-grid,
  .gallery,
  .gallery-folder .gallery,
  .form-grid,
  .price-table > div,
  .guide-item,
  .trip-links,
  .guide-video {
    grid-template-columns: 1fr;
  }

  .gallery figure.large,
  .gallery-folder .gallery figure.large {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-folder summary {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 14px;
  }

  .gallery-folder summary small {
    width: 100%;
    margin-left: 0;
  }

  .gallery figure,
  .gallery img {
    min-height: 230px;
  }

  .compact-result .result-lines {
    grid-template-columns: 1fr;
  }

  .section,
  .gallery-section,
  .booking-section,
  .reviews {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .mobile-booking-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    color: #fff;
    border-radius: var(--radius);
    background: var(--terracotta);
    box-shadow: 0 12px 28px rgba(36, 48, 42, 0.28);
    font-weight: 900;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

.gallery figure {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: rgba(15, 20, 17, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  width: auto;
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 160ms ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Adminbereich: Verfuegbarkeit verwalten */

.admin-main {
  width: min(760px, 100%);
  margin: 48px auto;
  padding: 0 20px 64px;
}

.admin-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.admin-panel h1 {
  margin-top: 0;
  max-width: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  font-weight: 500;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-panel-head h1 {
  margin-bottom: 0;
}

.admin-form {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.admin-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  font-size: 0.92rem;
}

.admin-form input {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.admin-form-full {
  grid-column: 1 / -1;
}

.admin-optional {
  font-weight: 400;
  color: var(--muted);
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-error {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(143, 70, 40, 0.35);
  background: rgba(143, 70, 40, 0.08);
  color: var(--terracotta-dark);
  font-weight: 700;
}

.admin-success {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(94, 117, 85, 0.35);
  background: rgba(94, 117, 85, 0.1);
  color: var(--olive-dark);
  font-weight: 700;
}

.admin-notice {
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  border: 1px dashed var(--terracotta);
  background: rgba(185, 100, 61, 0.08);
  color: var(--terracotta-dark);
  font-size: 0.92rem;
}

.admin-panel h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.admin-list-head {
  margin-top: 32px;
}

.admin-block-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.admin-block-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
}

.admin-block-reason {
  margin: 4px 0 0;
  color: var(--muted);
}

.admin-block-actions {
  display: flex;
  gap: 10px;
}

.admin-danger {
  color: var(--terracotta-dark);
  border-color: rgba(143, 70, 40, 0.4);
}

.admin-muted {
  color: var(--muted);
}

.admin-past {
  margin-top: 24px;
}

.admin-past summary {
  cursor: pointer;
  font-weight: 800;
}

@media (max-width: 620px) {
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-block-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.legal-page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
  color: var(--ink);
}

.legal-page h1 {
  margin: 0 0 18px;
}

.legal-page h2 {
  margin: 32px 0 10px;
}

.legal-page p {
  color: var(--muted);
  line-height: 1.7;
}
