:root {
  --bg: #f4f1e8;
  --text: #17231f;
  --muted: #68746f;
  --surface: #ffffff;
  --line: #dce2dc;
  --green: #267455;
  --green-dark: #16372d;
  --gold: #c88b30;
  --shadow: 0 22px 56px rgba(20, 35, 29, .16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.language-switch {
  position: fixed;
  z-index: 50;
  top: 16px;
  right: 16px;
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 34px rgba(21, 46, 36, .14);
  backdrop-filter: blur(14px);
}

.language-switch a {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 34px;
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
}

.language-switch a.is-active {
  background: var(--green-dark);
  color: #fff;
}

main {
  width: min(980px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.resource-select-page main {
  width: min(1320px, calc(100% - 28px));
}

.hero {
  min-height: 590px;
  display: flex;
  align-items: end;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(rgba(22, 55, 45, .18), rgba(22, 55, 45, .82)), url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  color: #fff;
}

.hero-content {
  max-width: 640px;
  padding-bottom: 10px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #edf7ef;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(44px, 12vw, 86px);
  line-height: .96;
}

p {
  margin-top: 0;
  color: inherit;
  font-size: 19px;
  line-height: 1.45;
}

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

.contact-request {
  display: grid;
  gap: 9px;
  max-width: 540px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(12px);
}

.contact-request strong {
  font-size: 18px;
}

.contact-request span {
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.4;
}

.contact-request div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-request a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 950;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 900;
}

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

.button.secondary {
  background: #fff;
  color: var(--green-dark);
  border: 1px solid var(--line);
}

.button.compact {
  min-height: 44px;
  padding: 10px 14px;
}

.inline-link {
  color: var(--green);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.steps article,
.notice,
.status-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.steps article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 16px;
}

.steps strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
}

.notice {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding: 18px;
}

.guest-guide-page main {
  width: min(1120px, calc(100% - 28px));
}

.guest-guide-hero {
  min-height: 390px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(rgba(22, 55, 45, .18), rgba(22, 55, 45, .84)), url("https://haeppy-life.cloud/assets/uploads/website/campingplatz.webp");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  color: #fff;
}

.guest-guide-hero.compact {
  min-height: 300px;
}

.guest-guide-hero > div {
  max-width: 760px;
}

.guest-guide-hero h1,
.guide-panel h1 {
  margin-bottom: 12px;
}

.guest-guide-hero p {
  max-width: 690px;
}

.guide-panel,
.guide-grid article,
.guide-grid a,
.guide-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.guide-panel {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-top: 14px;
  padding: 22px;
}

.guide-panel.centered {
  min-height: 460px;
  display: grid;
  justify-items: start;
  align-content: center;
}

.guide-panel h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.guide-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.guide-access-form {
  display: grid;
  gap: 10px;
  width: min(420px, 100%);
}

.guide-access-form label {
  color: var(--green-dark);
  font-weight: 950;
}

.guide-access-form input {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.guide-grid,
.guide-cards {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

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

.guide-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-grid article,
.guide-grid a,
.guide-cards article {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 18px;
}

.guide-grid strong,
.guide-cards strong {
  font-size: 22px;
  color: var(--green-dark);
}

.guide-grid span,
.guide-cards span {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.4;
}

.portal-section {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.portal-section-head span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.portal-section-head h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.portal-split,
.portal-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.portal-card,
.portal-note-grid article,
.portal-menu-preview article,
.portal-event-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.portal-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 190px;
  padding: 22px;
}

.portal-card > span,
.guest-price-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.portal-card strong {
  color: var(--green-dark);
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1;
}

.portal-card p,
.portal-note-grid p,
.portal-menu-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.portal-card form {
  margin-top: 4px;
}

.portal-card .button {
  width: fit-content;
}

.portal-payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-payment-actions form {
  margin-top: 0;
}

.portal-card-strong {
  background: var(--green-dark);
  color: #fff;
}

.portal-card-strong span,
.portal-card-strong p,
.portal-card-strong strong {
  color: #fff;
}

.guest-price-list {
  display: grid;
  gap: 8px;
}

.guest-price-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.guest-price-list small {
  color: var(--muted);
  font-weight: 800;
}

.guest-price-list strong {
  color: var(--green-dark);
  font-size: 18px;
}

.guest-price-total {
  background: #ecf4ee !important;
}

.portal-quick-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-quick-grid .button {
  width: fit-content;
  min-height: 42px;
}

.portal-note-grid article {
  padding: 20px;
}

.portal-note-grid h3,
.portal-menu-preview h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 23px;
}

.portal-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portal-menu-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.portal-menu-preview article {
  padding: 18px;
}

.portal-menu-preview article > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.portal-menu-preview article > div span {
  color: var(--text);
  font-weight: 850;
}

.portal-menu-preview article > div strong {
  color: var(--green-dark);
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-event-list {
  display: grid;
  gap: 10px;
}

.portal-event-list article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.portal-event-list time {
  display: grid;
  place-items: center;
  min-height: 64px;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 950;
}

.portal-event-list strong {
  display: block;
  color: var(--green-dark);
  font-size: 19px;
}

.portal-event-list span {
  color: var(--muted);
  font-weight: 800;
}

.notice span,
.status-card span,
.status-card p {
  color: var(--muted);
}

.status-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.review-page {
  justify-content: flex-start;
  padding-top: 34px;
}

.form-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 34px;
}

.form-intro {
  position: sticky;
  top: 28px;
  padding: 28px;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.form-intro h1 {
  max-width: 100%;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.02;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}

.form-intro p {
  font-size: 18px;
  font-weight: 850;
}

.checkin-form {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.checkin-form label {
  display: grid;
  gap: 9px;
  color: var(--text);
  font-weight: 850;
}

.checkin-form label > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  line-height: 1.25;
}

.checkin-form label > span small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.checkin-form input,
.checkin-form textarea,
.checkin-form select {
  width: 100%;
  min-height: 52px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
}

.checkin-form textarea {
  resize: vertical;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.checkbox-row input {
  width: 22px;
  min-height: 22px;
  order: -1;
}

.field-error,
.form-errors {
  color: #a53f31;
  font-weight: 800;
}

.status-page .eyebrow {
  color: var(--green);
}

.status-card {
  padding: 24px;
}

.status-card.subtle {
  box-shadow: none;
}

.status-card strong {
  display: block;
  margin: 4px 0 18px;
  font-size: 34px;
}

.booking-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.booking-detail-list div {
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf6;
}

.booking-detail-list dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.booking-detail-list dd {
  margin: 0;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 950;
}

.copy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.copy-row code {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf6;
  color: var(--green-dark);
  font-family: inherit;
  font-size: 18px;
  font-weight: 950;
}

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

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

.summary-grid article {
  display: grid;
  gap: 8px;
  min-height: 104px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 35, 29, .1);
}

.summary-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.summary-grid strong {
  overflow-wrap: anywhere;
  font-size: 19px;
  line-height: 1.25;
}

.review-section {
  display: grid;
  gap: 12px;
}

.review-section h2 {
  margin: 10px 0 0;
  color: var(--green-dark);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.price-table,
.payment-choice-grid {
  display: grid;
  gap: 12px;
}

.price-table article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 35, 29, .09);
}

.price-table strong {
  color: var(--green-dark);
  font-size: 18px;
}

.price-table span {
  color: var(--muted);
  font-weight: 850;
}

.price-table b {
  color: var(--green-dark);
  font-size: 20px;
}

.price-table .price-total {
  background: var(--green-dark);
  color: #fff;
}

.price-table .price-total strong,
.price-table .price-total b,
.price-table .price-total span {
  color: #fff;
}

.payment-choice-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.payment-choice-grid .status-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.payment-choice-grid .status-card strong {
  margin-bottom: 0;
}

.address-hint {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid #d9e7dd;
  border-radius: 8px;
  background: #eef8f1;
  color: var(--green-dark);
}

.address-hint span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.booking-action-details summary {
  display: inline-grid;
  min-height: 52px;
  place-items: center;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-weight: 950;
  list-style: none;
  box-shadow: 0 10px 24px rgba(20, 35, 29, .14);
}

.booking-action-details summary::-webkit-details-marker {
  display: none;
}

.booking-action-details[open] summary {
  background: var(--green-dark);
}

.booking-action-details form {
  display: grid;
  gap: 12px;
}

.compact-form-fields {
  display: grid;
  gap: 10px;
}

.compact-form-fields label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-weight: 850;
}

.compact-form-fields input,
.compact-form-fields select,
.compact-form-fields textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
}

.code {
  display: inline-grid;
  min-width: 150px;
  min-height: 82px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: .12em;
}

.code.muted {
  background: #e5ebe6;
  color: var(--muted);
}

.small-copy {
  margin: 14px 0 0;
  font-size: 15px;
}

.soft-line {
  width: 100%;
  margin: 20px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.plan-page {
  grid-template-columns: 1fr;
  gap: 16px;
}

.plan-page .form-intro {
  position: static;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.plan-page .form-intro h1 {
  font-size: clamp(38px, 7vw, 64px);
}

.plan-page .form-intro p {
  color: var(--muted);
  font-weight: 800;
}

.availability-badge {
  display: inline-grid;
  gap: 3px;
  margin: 0 0 2px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef8f1;
  color: var(--green-dark);
  font-weight: 900;
}

.availability-badge span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.availability-badge.few {
  background: #fff7df;
  color: #8a5b00;
}

.availability-badge.none {
  background: #fcecec;
  color: #9b1c1c;
}

.plan-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(20, 35, 29, .10);
}

.plan-preview img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f5f3e8;
}

.plan-preview figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-form {
  gap: 18px;
  padding: 16px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.resource-card {
  cursor: pointer;
}

.resource-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.resource-card span {
  display: grid;
  min-height: 132px;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #f9fbf7;
  box-shadow: 0 10px 28px rgba(20, 35, 29, .08);
  transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.resource-card strong {
  font-size: 22px;
}

.resource-card small,
.resource-card em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 750;
}

.resource-card:hover span {
  transform: translateY(-1px);
  border-color: rgba(38, 116, 85, .45);
  box-shadow: 0 16px 34px rgba(20, 35, 29, .12);
}

.resource-card input:checked + span {
  border-color: var(--green);
  background: #eef8f1;
  box-shadow: 0 0 0 3px rgba(38, 116, 85, .16), 0 16px 34px rgba(20, 35, 29, .14);
}

.empty-card {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbf7;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.pitch-select-panel {
  display: grid;
  gap: 16px;
}

.pitch-select-panel label {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbf7;
  box-shadow: 0 10px 28px rgba(20, 35, 29, .08);
}

.pitch-select-panel label > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.pitch-select-panel select {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
}

.booking-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(38, 116, 85, .18);
  border-radius: 8px;
  background: #eef8f1;
}

.booking-benefits strong,
.booking-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.message-stack {
  width: min(920px, calc(100% - 32px));
  margin: 18px auto 0;
}

.message {
  margin: 0 0 10px;
  padding: 14px 16px;
  border: 1px solid #d9b7aa;
  border-radius: 8px;
  background: #fff5ef;
  color: #7b2e1f;
  font-weight: 850;
}

.message.success {
  border-color: #b9d8c3;
  background: #f0faf3;
  color: var(--green-dark);
}

.info-page main {
  width: min(1120px, calc(100% - 28px));
}

.info-home {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.info-home-head {
  display: grid;
  gap: 8px;
}

.info-home-head span,
.info-strip span,
.event-list article > div > span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.info-home h1 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(38px, 7vw, 76px);
  line-height: .94;
}

.info-back {
  margin: 18px 0 14px;
}

.info-back a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(20, 35, 29, .08);
}

.info-detail-head {
  display: grid;
  gap: 10px;
  padding: 26px;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.info-detail-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.info-detail-head h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 72px);
  line-height: .96;
}

.info-detail-head p {
  max-width: 760px;
  color: #edf7ef;
}

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

.info-tile {
  display: grid;
  min-height: 166px;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(20, 35, 29, .1);
  color: var(--text);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.info-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(52, 116, 76, .38);
  box-shadow: 0 22px 52px rgba(20, 35, 29, .14);
}

.info-tile span {
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
}

.info-tile strong {
  display: block;
  font-size: 23px;
  line-height: 1.05;
}

.info-tile small {
  color: var(--muted);
  font-weight: 900;
  line-height: 1.35;
}

.info-tile-primary {
  background: var(--green-dark);
  color: #fff;
}

.info-tile-primary span,
.info-tile-primary small {
  color: #edf7ef;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.info-strip article,
.info-card-grid article,
.cms-info-card,
.power-table article,
.event-list article,
.info-note,
.info-link-list a,
.menu-page,
.story-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(20, 35, 29, .11);
}

.info-strip article {
  padding: 18px;
}

.info-strip strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
}

.info-section {
  margin-top: 46px;
}

.info-section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.info-section h2,
.split-info h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
}

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

.cms-info-sections {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.info-card-grid article,
.cms-info-card,
.power-table article,
.info-note {
  padding: 18px;
}

.info-card-grid h3,
.cms-info-card h3,
.event-list h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.info-card-grid p,
.cms-info-card p,
.power-table p,
.split-info p,
.info-note p,
.event-list p {
  color: var(--muted);
  font-size: 16px;
}

.cms-info-card {
  overflow: hidden;
}

.cms-info-card img {
  display: block;
  width: calc(100% + 36px);
  height: 170px;
  object-fit: cover;
  margin: -18px -18px 16px;
}

.cms-info-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 950;
}

.cms-info-sections .map-panel,
.cms-info-sections .info-note {
  grid-column: 1 / -1;
}

.cms-info-sections .timeline-list {
  grid-column: 1 / -1;
}

.map-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.map-panel img {
  display: block;
  width: 100%;
  max-height: 860px;
  object-fit: contain;
  background: #f8faf7;
}

.map-panel figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 850;
}

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

.power-table strong {
  display: block;
  font-size: 21px;
}

.power-table span {
  display: block;
  margin: 8px 0;
  color: var(--green-dark);
  font-weight: 950;
}

.split-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  gap: 18px;
  align-items: stretch;
  padding: 24px;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.split-info h2 {
  color: #fff;
}

.split-info p {
  color: #edf7ef;
}

.info-note {
  background: #fff7e6;
  color: var(--text);
}

.menu-pages {
  display: grid;
  gap: 18px;
}

.menu-page {
  margin: 0;
  overflow: hidden;
  background: #2f322e;
}

.menu-page img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-page figcaption {
  padding: 14px 16px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 950;
}

.story-panel {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.story-panel article + article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.story-panel h2 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.05;
}

.story-panel p {
  max-width: 860px;
  color: var(--muted);
  font-size: 17px;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-list article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
}

.timeline-list {
  display: grid;
  gap: 12px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(20, 35, 29, .11);
}

.timeline-list time {
  display: grid;
  min-height: 74px;
  place-items: center;
  align-content: center;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  text-align: center;
}

.timeline-list h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 23px;
}

.timeline-list p {
  color: var(--muted);
  font-size: 16px;
}

.event-list time {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 94px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}

.event-list time strong {
  font-size: 28px;
}

.event-list a {
  color: var(--green);
  font-weight: 950;
}

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

.info-link-list a {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px;
  color: var(--green-dark);
  font-size: 17px;
  font-weight: 950;
}

.info-link-list a:hover {
  border-color: rgba(38, 116, 85, .45);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .language-switch {
    top: 10px;
    right: 10px;
  }

  .language-switch a {
    min-width: 36px;
    min-height: 30px;
    font-size: 12px;
  }

  .hero {
    min-height: 560px;
  }

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

  .guest-guide-hero,
  .guide-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .guest-guide-hero {
    min-height: 520px;
  }

  .guest-guide-hero.compact {
    min-height: 420px;
  }

  .guest-guide-hero h1,
  .guide-panel h1 {
    font-size: clamp(42px, 14vw, 68px);
  }

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

  .portal-split,
  .portal-note-grid,
  .portal-quick-grid,
  .portal-info-grid,
  .portal-menu-preview {
    grid-template-columns: 1fr;
  }

  .guest-price-list article {
    grid-template-columns: 1fr;
  }

  .portal-card .button,
  .portal-card form,
  .portal-card button {
    width: 100%;
  }

  .form-page {
    grid-template-columns: 1fr;
  }

  .form-intro {
    position: static;
  }

  .plan-form {
    padding: 12px;
  }

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

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

  .price-table article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .actions .button {
    width: 100%;
  }

  .info-tile-grid,
  .info-strip,
  .info-card-grid,
  .cms-info-sections,
  .power-table,
  .split-info,
  .info-link-list {
    grid-template-columns: 1fr;
  }

  .info-tile {
    min-height: 138px;
  }

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

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

  .event-list time {
    min-height: 74px;
    justify-items: start;
    padding: 14px;
  }
}
