/* ==========================================================================
   Hotel Kriemhilde Worms – Nachbau
   Schriften: Lora (Headlines/Navigation), Open Sans (Fließtext)
   ========================================================================== */

:root {
  --c-primary: #580c0c;
  --c-primary-dark: #4e1208;
  --c-primary-86: rgba(88, 12, 12, 0.86);
  --c-text: #666666;
  --c-heading: #3b3b3b;
  --c-light: #f8f8f8;
  --c-light-2: #f2f2f2;
  --c-footer: #454545;
  --c-border: #e5e5e5;
  --c-white: #ffffff;

  --font-head: "Lora", "Times New Roman", Georgia, serif;
  --font-body: "Open Sans", Arial, Helvetica, sans-serif;

  --container: 1170px;
  --nav-h: 70px;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 32px;
  --sp-6: 48px;
  --sp-7: 64px;
  --sp-8: 96px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--c-heading);
  margin: 0 0 var(--sp-4);
  line-height: 1.25;
}

p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

ul { margin: 0 0 var(--sp-4); padding-left: 1.2em; }

hr {
  border: 0;
  border-top: 1px solid var(--c-border);
  margin: var(--sp-6) 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.container--wide { max-width: 1460px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--c-primary);
  color: #fff;
  padding: 12px 20px;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------- Kopfbereich */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--c-primary);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 92px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 20px;
  line-height: var(--nav-h);
  color: #fff;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a:focus,
.nav-list a[aria-current="page"] { color: rgba(255, 255, 255, .72); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.logo-bar {
  background: #fff;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
}

.logo-bar img {
  width: 360px;
  max-width: 70%;
  margin: 0 auto;
}

/* ------------------------------------------------------------ Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 14px 26px;
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.2;
  border: 1px solid currentColor;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.btn:hover,
.btn:focus { background: #fff; color: var(--c-primary); }

.btn--solid {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  padding: 16px 34px;
}
.btn--solid:hover,
.btn--solid:focus { background: var(--c-primary-dark); border-color: var(--c-primary-dark); color: #fff; }

.btn--dark { color: var(--c-heading); border-color: var(--c-heading); }
.btn--dark:hover, .btn--dark:focus { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 18px;
}
.link-arrow i { font-size: 22px; }
.link-arrow:hover { opacity: .8; }

/* --------------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: #2b2b2b center / cover no-repeat;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  opacity: 0;
  transition: opacity .6s ease;
}
.hero__slide.is-active { opacity: 1; }

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__box {
  background: var(--c-primary);
  color: #fff;
  max-width: 490px;
  padding: 54px 46px 60px;
}

.hero__box h1,
.hero__box h2 {
  color: #fff;
  font-size: 48px;
  line-height: 1.55;
  margin-bottom: var(--sp-5);
}

.hero__box p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: var(--sp-5);
}

.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  background: rgba(0, 0, 0, .25);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.hero__nav:hover { background: rgba(0, 0, 0, .45); }
.hero__nav--prev { left: 12px; }
.hero__nav--next { right: 12px; }

.hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero__dots button {
  width: 10px; height: 10px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.hero__dots button[aria-current="true"] { background: #fff; }

/* ------------------------------------------------------- Buchungsleiste */
.booking-bar {
  background: var(--c-primary);
  padding: 40px 0;
}

.booking-bar .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.booking-bar h2 {
  color: #fff;
  font-size: 40px;
  margin: 0;
  margin-right: auto;
}

.booking-bar .btn {
  gap: 18px;
  padding: 13px 18px;
  font-size: 17px;
  white-space: nowrap;
}

/* -------------------------------------------------------------- Karten */
.cards {
  background: var(--c-light);
  padding: 72px 0;
}

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

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
}

.card__media {
  display: block;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .35s ease;
}
.card__media:hover img { transform: scale(1.04); }

.card__body {
  padding: 26px 20px 34px;
  text-align: center;
}

.card__body h3 {
  font-size: 26px;
  margin: 0;
}
.card__body h3 a:hover { color: var(--c-primary); }

.card--accent {
  background: var(--c-primary);
  color: #fff;
  justify-content: flex-start;
  padding: 36px 32px 40px;
}

.card--accent h2,
.card--accent h3 {
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.card--accent p { font-size: 17px; }

/* -------------------------------------------------------- Split-Sektion */
.split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.split__media {
  flex: 1 1 50%;
  min-height: 520px;
  background: center / cover no-repeat;
}

.split__body {
  flex: 1 1 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 80px 90px;
}

.split__body .inner { max-width: 560px; }

.split__body h2 {
  color: #fff;
  font-size: 48px;
  line-height: 1.5;
  margin-bottom: var(--sp-4);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: inherit;
  margin: 0 0 var(--sp-4);
}

/* ------------------------------------------------------------ Rezeption */
.info-cols {
  padding: 80px 0;
}

.info-cols .container {
  display: grid;
  grid-template-columns: 677fr 459fr;
  gap: 34px;
  align-items: center;
}

.info-cols h2 {
  font-size: 48px;
  margin-bottom: var(--sp-2);
}

.info-cols .eyebrow { color: #8c8c8c; }

.info-cols h3 {
  font-size: 24px;
  margin-bottom: var(--sp-4);
}

.info-cols .phone {
  font-size: 20px;
  font-weight: 600;
  color: #7c7c7c;
}

/* ----------------------------------------------- Hotelseite: Einleitung */
.intro { padding: 80px 0 60px; }

.intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 62px;
}

.intro h1 {
  font-size: 56px;
  line-height: 1.25;
  margin: 0;
}

.parking {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: var(--sp-4);
}

.parking__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  font-family: var(--font-head);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parking h3 { font-size: 20px; margin-bottom: var(--sp-2); }

/* ------------------------------------------------------- Zahlen-Sektion */
.stats {
  position: relative;
  padding: 78px 0 84px;
  background: url("../images/bg.jpg") center / cover no-repeat fixed;
  color: #fff;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-primary-86);
}

.stats .container { position: relative; z-index: 1; }

.stats h2 {
  color: #fff;
  font-size: 40px;
  text-align: center;
  margin-bottom: var(--sp-6);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats__num {
  font-family: var(--font-head);
  font-size: 44px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 var(--sp-2);
}

.stats__label { font-size: 18px; margin: 0; }

/* ------------------------------------------------------ Sektionsköpfe */
.section-head {
  background: var(--c-light-2);
  text-align: center;
  padding: 46px 0 56px;
}

.section-head .eyebrow { color: #7a7a7a; }

.section-head h2 {
  font-size: 56px;
  margin: 0;
}

/* -------------------------------------------------------------- Zimmer */
.room-banner {
  min-height: 215px;
  display: flex;
  align-items: center;
  /* Parallax wie im Original: der sichtbare Bildausschnitt wandert beim Scrollen */
  background: #6b5a44 url("../images/184515790.jpg") center / cover no-repeat fixed;
}

.room-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.room-banner h2 {
  color: #fff;
  font-size: 48px;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}

.room-banner .price {
  font-family: var(--font-head);
  font-size: 40px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}

.room { padding: 64px 0 24px; }

.room__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.room__pano {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  display: block;
  background: #dcdcdc;
}

.room__facts {
  display: flex;
  flex-direction: column;
  gap: 34px;
  text-align: center;
}

.fact i,
.fact img {
  font-size: 30px;
  color: #1c1c1c;
  margin: 0 auto var(--sp-2);
  display: block;
}
.fact img { width: 34px; }

.fact p {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--c-heading);
  margin: 0;
}

.room__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: var(--sp-6);
  max-width: 880px;
}

.room__thumbs img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.room__text { max-width: 880px; }

.service h2 { font-size: 40px; margin-bottom: var(--sp-6); }

.service__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 44px;
}

.service__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--c-heading);
  max-width: 260px;
}

.service__item i { font-size: 24px; color: #1c1c1c; }
.service__item img { width: 28px; }

/* ------------------------------------------------- Veranstaltungen-Hero */
.hero-overlay {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 80px 0;
  background: #333 center / cover no-repeat;
}

.hero-overlay__box {
  background: var(--c-primary-86);
  color: #fff;
  text-align: center;
  padding: 56px 60px 64px;
}

.hero-overlay__box h1,
.hero-overlay__box h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: var(--sp-5);
}

.hero-overlay__box .eyebrow { color: #fff; margin-bottom: var(--sp-2); }

.hero-overlay__box p { margin-bottom: var(--sp-4); }

/* --------------------------------------------------------- Event-Blöcke */
.events { padding: 70px 0; }

.event {
  display: grid;
  grid-template-columns: 590px 1fr;
  gap: 30px;
  align-items: start;
}

.event h2 { font-size: 40px; margin-bottom: var(--sp-4); }
.event img { width: 100%; height: 290px; object-fit: cover; }

/* ---------------------------------------------------------- Buchen-Seite */
.booking-page {
  min-height: 100vh;
  padding: 70px 0 90px;
  background: #4a4a4a center / cover no-repeat fixed;
}

.booking-card {
  background: rgba(255, 255, 255, .87);
  padding: 54px 46px 60px;
}

.booking-card h1 {
  font-size: 60px;
  text-align: center;
  margin-bottom: var(--sp-3);
}

.booking-card h2 {
  font-size: 34px;
  text-align: center;
  margin-bottom: var(--sp-3);
}

.booking-card .lead { text-align: center; margin-bottom: var(--sp-6); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 34px;
}

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

.field { display: flex; flex-direction: column; margin-bottom: var(--sp-3); }

.field label {
  font-family: var(--font-head);
  font-size: 21px;
  color: #6f6f6f;
  margin-bottom: var(--sp-2);
}

.field .req { color: var(--c-heading); }

.field input {
  min-height: 44px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: #333;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

.field input:focus {
  outline: 2px solid var(--c-primary);
  outline-offset: 1px;
}

.field .error {
  color: #a12020;
  font-size: 14px;
  margin: 6px 0 0;
  min-height: 1em;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: var(--sp-5) 0 var(--sp-3);
}

.captcha__label {
  font-family: var(--font-head);
  font-size: 21px;
  color: #6f6f6f;
}

.captcha__task {
  font-family: var(--font-head);
  font-size: 40px;
  color: var(--c-heading);
}

.form-submit {
  width: 100%;
  min-height: 56px;
  border: 0;
  background: #5c2483;
  color: #fff;
  font-family: var(--font-head);
  font-size: 20px;
  cursor: pointer;
  transition: background-color .2s ease;
}
.form-submit:hover { background: #47186a; }

.form-status {
  margin-top: var(--sp-3);
  padding: 14px 18px;
  background: #e6f4e6;
  border: 1px solid #9fca9f;
  color: #2c6b2c;
}
.form-status[hidden] { display: none; }

.form-status--fehler {
  background: #fbeaea;
  border-color: #d7a3a3;
  color: #8c2020;
}

/* Bot-Falle – für Nutzer und Screenreader unsichtbar */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ------------------------------------------------------------ Textseiten */
.page { padding: 70px 0 90px; }

.page h1 { font-size: 56px; margin-bottom: var(--sp-6); }
.page h2 { font-size: 34px; margin-top: var(--sp-6); }
.page h3 { font-size: 24px; margin-top: var(--sp-5); }
.page h4 { font-size: 20px; margin-top: var(--sp-5); margin-bottom: var(--sp-2); }
.page p, .page li { font-size: 17px; line-height: 1.65; }
.page a { color: var(--c-primary); text-decoration: underline; }

/* ------------------------------------------------------------------ 404 */
.error-page {
  text-align: center;
  padding: 120px 0 140px;
}
.error-page h1 { font-size: 110px; color: var(--c-primary); margin-bottom: var(--sp-3); }
.error-page h2 { font-size: 34px; margin-bottom: var(--sp-4); }
.error-page p { margin-bottom: var(--sp-6); }

/* --------------------------------------------------------------- Footer */
.site-footer {
  background: var(--c-footer);
  color: #fff;
  text-align: center;
  padding: 54px 0 40px;
  font-size: 17px;
}

.site-footer p { margin-bottom: var(--sp-4); }
.site-footer strong { font-family: var(--font-head); font-weight: 700; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #e0bcbc; }

.footer-legal {
  font-family: var(--font-head);
  font-weight: 700;
  margin-top: var(--sp-6);
}

.footer-copy { font-size: 15px; }

.agency-branding p { margin: 0; font-size: 15px; }
.agency-branding a { text-decoration: underline; }

/* ---------------------------------------------------------- Nach oben */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.to-top.is-visible { opacity: .9; visibility: visible; }
.to-top:hover { opacity: 1; }

/* ---------------------------------------------------------- Cookie-Bar */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  background: rgba(30, 30, 30, .96);
  color: #fff;
  padding: 18px 0;
  font-size: 15px;
}
.cookie-bar[hidden] { display: none; }

.cookie-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  text-align: center;
}

.cookie-bar p { margin: 0; }
.cookie-bar a { text-decoration: underline; }

.cookie-bar .btn { min-height: 40px; padding: 8px 22px; font-size: 16px; }
.cookie-bar .btn--accept { background: var(--c-primary); border-color: var(--c-primary); }
.cookie-bar .btn--accept:hover { background: #fff; color: var(--c-primary); }

/* ------------------------------------------------- Hintergrundbilder */
.bg-schild        { background-image: url("../images/bg.jpg"); }
.bg-lutherdenkmal { background-image: url("../images/lutherdenkmal.jpg"); }
.bg-worms-luther  { background-image: url("../images/worms-lutherdenkmal.jpeg"); }
.bg-buchen        { background-image: url("../images/184515834.jpg"); }

/* -------------------------------------------------- Scroll-Animationen */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =====================================================================
   Responsive
   ===================================================================== */

@media (max-width: 1200px) {
  .nav-list { gap: 40px; }
  .split__body { padding: 64px 50px; }
  .event { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }

  .nav-list {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    bottom: 0;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px 26px 40px;
    background: var(--c-primary);
    transform: translateX(105%);
    transition: transform .3s ease;
    overflow-y: auto;
  }

  .nav-list.is-open { transform: none; }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block;
    width: 100%;
    line-height: 1.4;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  body.nav-open { overflow: hidden; }

  .hero { min-height: 520px; }
  .hero__box { max-width: 100%; padding: 40px 30px 44px; }
  .hero__box h1,
  .hero__box h2 { font-size: 38px; line-height: 1.35; }

  .cards__grid { grid-template-columns: repeat(2, 1fr); }
  .intro .container { grid-template-columns: 1fr; gap: 28px; }
  .intro h1 { font-size: 44px; }
  .room__grid { grid-template-columns: 1fr; gap: 40px; }
  .room__facts { flex-direction: row; justify-content: space-around; flex-wrap: wrap; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .info-cols .container { grid-template-columns: 1fr; gap: 32px; }
  .split__media { min-height: 320px; flex-basis: 100%; }
  .split__body { flex-basis: 100%; padding: 52px 30px; }
  .split__body h2 { font-size: 38px; line-height: 1.35; }
  .form-grid, .form-grid--4 { grid-template-columns: repeat(2, 1fr); }

  /* background-attachment: fixed ist auf Touch-Geräten unzuverlässig */
  .room-banner,
  .stats,
  .booking-page { background-attachment: scroll; }
}

@media (max-width: 767px) {
  body { font-size: 17px; }

  .logo-bar img { width: 240px; }

  .booking-bar .container { flex-direction: column; align-items: stretch; }
  .booking-bar h2 { margin-right: 0; text-align: center; font-size: 34px; }
  .booking-bar .btn { width: 100%; }

  .cards { padding: 48px 0; }
  .cards__grid { grid-template-columns: 1fr; }
  .card--accent h2, .card--accent h3 { font-size: 32px; }

  .section-head h2 { font-size: 38px; }
  .room-banner { min-height: 170px; }
  .room-banner h2 { font-size: 32px; }
  .room-banner .price { font-size: 26px; }
  .room__thumbs { grid-template-columns: 1fr; gap: 16px; }
  .room__thumbs img { height: 200px; }
  .service h2 { font-size: 32px; }
  .service__item { font-size: 19px; max-width: 100%; }

  .stats h2 { font-size: 32px; }
  .stats__num { font-size: 36px; }

  .info-cols h2 { font-size: 36px; }
  .page h1 { font-size: 38px; }

  .hero-overlay { min-height: 480px; }
  .hero-overlay__box { padding: 36px 24px 40px; }
  .hero-overlay__box h2 { font-size: 34px; }

  .event { grid-template-columns: 1fr; gap: 22px; }
  .event h2 { font-size: 30px; }

  .booking-card { padding: 34px 20px 40px; }
  .booking-card h1 { font-size: 38px; }
  .booking-card h2 { font-size: 26px; }
  .form-grid, .form-grid--4, .form-grid--2 { grid-template-columns: 1fr; gap: 0; }
  .captcha { flex-direction: column; align-items: flex-start; gap: 10px; }
}
