@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --font-main: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #071019;
  --ink: #f7f1e6;
  --muted: #e4d8bf;
  --dim: #b5a586;
  --gold: #e8ad3e;
  --gold-2: #ffe1a0;
  --amber: #bf7d26;
  --line: rgba(232, 173, 62, .66);
  --glass: rgba(10, 20, 28, .70);
  --glass-2: rgba(9, 18, 26, .86);
  --shadow: 0 22px 46px rgba(0, 0, 0, .28);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 47% 19%, rgba(232, 173, 62, .18), transparent 26%),
    radial-gradient(circle at 70% 4%, rgba(255, 225, 160, .12), transparent 24%),
    linear-gradient(120deg, #071019 0%, #0d2130 44%, #08111a 100%);
  color: var(--ink);
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 209, 122, .28), transparent 18%),
    radial-gradient(circle at 50% 25%, rgba(232, 173, 62, .16), transparent 24%),
    linear-gradient(90deg, rgba(6, 16, 25, .82), rgba(16, 30, 42, .30) 42%, rgba(8, 18, 27, .72));
  opacity: .72;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 0 50%, rgba(4, 10, 17, .34) 100%);
  z-index: -1;
}

a {
  color: inherit;
}

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

.poster-page {
  width: min(1800px, 100%);
  margin: 0 auto;
  padding: 8px clamp(14px, 2.4vw, 30px) 16px;
}

.poster-top {
  display: grid;
  grid-template-columns: 210px minmax(420px, 1fr) auto 240px;
  gap: 12px;
  align-items: start;
}

.poster-top.site-header,
.home-shell .poster-top {
  grid-template-columns: 190px minmax(680px, 1fr) 240px;
  align-items: center;
}

.subpage-shell .site-header {
  position: relative;
  top: auto;
  z-index: 30;
  padding: 8px clamp(14px, 2.4vw, 30px) 0;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.poster-logo {
  display: grid;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: 0;
  line-height: .74;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .44));
}

.poster-logo img {
  display: block;
  width: clamp(126px, 12.8vw, 185px);
  height: auto;
}

.poster-logo span,
.poster-logo strong {
  font-size: clamp(34px, 3.7vw, 58px);
  font-weight: 600;
}

.poster-logo span span {
  font-size: 1.55em;
  line-height: 0;
}

.poster-logo em {
  margin-top: 9px;
  color: var(--gold);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-height: 44px;
}

.proof-bar a {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 0 8px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, .24);
}

.proof-bar span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 20px;
}

.proof-bar strong {
  font-size: 12px;
  line-height: 1.12;
}

.proof-bar small {
  color: #fff;
  font-size: 11px;
  line-height: 1.15;
}

.home-menu-buttons {
  display: flex;
  min-height: 44px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.home-menu-buttons a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(232, 173, 62, .62);
  border-radius: 9px;
  background: rgba(255, 255, 255, .045);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.home-menu-buttons a:hover,
.home-menu-buttons a:focus-visible {
  border-color: rgba(255, 214, 111, .9);
  background: rgba(232, 173, 62, .16);
  color: var(--gold);
  transform: translateY(-1px);
}

.home-menu-buttons .directions-button {
  border-color: rgba(255, 195, 68, .95);
  background: linear-gradient(180deg, #ffd66e, #e4a72e);
  color: #0b141c;
  box-shadow: 0 10px 24px rgba(232, 173, 62, .22);
}

.home-menu-buttons .directions-button:hover,
.home-menu-buttons .directions-button:focus-visible {
  border-color: #ffe39a;
  background: linear-gradient(180deg, #ffe08a, #efb23d);
  color: #0b141c;
}

.home-menu-buttons .google-rating-menu {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(232, 173, 62, .34);
  border-radius: 9px;
  background: rgba(255, 255, 255, .035);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.reservation-online-module {
  max-width: 520px;
  margin: 8px 0 14px;
  padding: 12px 18px;
  border: 1px solid rgba(232, 173, 62, .58);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(232, 173, 62, .18), rgba(255, 255, 255, .045)),
    rgba(6, 18, 27, .68);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

.reservation-online-module p {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.choose-room-title {
  margin: 10px 0 8px;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.reservation-page .poster-grid {
  margin-top: 0;
}

.reservation-page .poster-hero {
  min-height: clamp(170px, 24vh, 250px);
  padding-bottom: 0;
}

.reservation-page .hero-castle-art {
  bottom: -94px;
  height: clamp(280px, 38vh, 410px);
}

.reservation-page .poster-hero::after {
  bottom: 96px;
}

.reservation-page .choose-room-title {
  margin-top: -8px;
  margin-bottom: 10px;
}

.reservation-page .audience-grid {
  margin-top: 0;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  min-height: 44px;
}

.header-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 214, 111, .78);
  border-radius: 9px;
  background: linear-gradient(180deg, #ffd66f, #d99522);
  color: #100b04;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .24);
}

.social-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-transform: uppercase;
}

.social-bar span {
  width: 100%;
  text-align: right;
  font-size: 12px;
}

.social-bar a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.social-bar svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.poster-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 10px;
  margin-top: 8px;
}

.poster-main {
  min-width: 0;
}

.poster-hero {
  position: relative;
  min-height: clamp(360px, 50vh, 500px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: 14px;
  padding: 4px 6px 8px 6px;
  overflow: hidden;
}

.poster-hero::before {
  content: none;
}

.hero-castle-art {
  position: absolute;
  left: 24%;
  bottom: -22px;
  width: min(58vw, 780px);
  height: clamp(360px, 51vh, 520px);
  object-fit: cover;
  object-position: 72% center;
  opacity: .88;
  filter: saturate(.9) contrast(1.05) brightness(.86);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 28%, #000 46%, #000 75%, transparent 92%);
  z-index: 0;
}

.poster-hero::after {
  content: "";
  position: absolute;
  left: 31%;
  right: 350px;
  bottom: 220px;
  height: 42px;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 217, 140, .9) 0 2px, transparent 3px) 10% 42% / 40px 20px,
    radial-gradient(circle, rgba(232, 173, 62, .7) 0 1px, transparent 3px) 70% 35% / 34px 18px;
  opacity: .7;
}

.hero-text p,
.eyebrow {
  margin: 0 0 7px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-text {
  position: relative;
  z-index: 2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-text h1 {
  max-width: 930px;
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-main);
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 6px 20px rgba(0, 0, 0, .64);
}

.hero-text h1 span {
  color: var(--gold);
  background: linear-gradient(180deg, #ffd66f 0%, #d89022 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text strong {
  display: block;
  max-width: 720px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .56);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.audience-card,
.castle-card,
.reviews-panel,
.contact-panel,
.bottom-offers article {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 31, 43, .72), rgba(8, 18, 27, .82));
  box-shadow: var(--shadow);
}

.audience-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 14px 12px 18px;
  color: #fff;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.audience-card > * {
  min-width: 0;
}

.audience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 27, .06) 0%, rgba(12, 24, 34, .18) 42%, rgba(8, 18, 27, .78) 100%);
  z-index: 1;
  transition: background .22s ease;
}

.scene-mockup {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 220, 144, .22), transparent 28%),
    linear-gradient(180deg, #142635, #071018);
}

.scene-mockup::before,
.scene-mockup::after {
  content: "";
  position: absolute;
  inset: 0;
}

.voucher-photo {
  object-position: center top;
}

.scene-mockup::after {
  background:
    linear-gradient(180deg, transparent 0 44%, rgba(7, 16, 24, .10) 52%, rgba(7, 16, 24, .62) 100%),
    radial-gradient(circle at 50% 30%, rgba(255, 220, 144, .12), transparent 36%);
}

.audience-card > :not(.scene-mockup) {
  position: relative;
  z-index: 2;
}

.round-icon {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 7px;
  border: 2px solid #f5c556;
  border-radius: 999px;
  background: radial-gradient(circle, #d9a337, #8a5a10);
  color: #fff;
  font-size: 19px;
}

.audience-card h2 {
  min-height: 48px;
  margin: 0;
  font-family: var(--font-main);
  font-size: 21px;
  line-height: 1.06;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 8px 18px rgba(0, 0, 0, .62);
  transition: transform .22s ease;
}

.audience-card p {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  min-height: 0;
  margin: 0;
  color: #fff;
  font-size: 13px;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease;
  z-index: 3;
  pointer-events: none;
}

.audience-card b,
.gold-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 13px;
}

.audience-card b {
  display: none;
}

.audience-card:hover,
.audience-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(245, 197, 86, .86);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .38);
}

.audience-card:hover::after,
.audience-card:focus-visible::after {
  background: linear-gradient(180deg, rgba(8, 18, 27, .12) 0%, rgba(8, 18, 27, .34) 42%, rgba(8, 18, 27, .92) 100%);
}

.audience-card:hover h2,
.audience-card:focus-visible h2 {
  transform: translateY(-42px);
}

.audience-card:hover p,
.audience-card:focus-visible p {
  opacity: 1;
  transform: translateY(0);
}

.voucher-tile {
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 225, 160, .16), transparent 26%),
    linear-gradient(150deg, #111b25, #0a141d);
}

.voucher-tile .gift-visual {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background:
    linear-gradient(90deg, transparent 45%, rgba(232, 173, 62, .82) 46% 53%, transparent 54%),
    linear-gradient(0deg, transparent 44%, rgba(232, 173, 62, .82) 45% 53%, transparent 54%),
    linear-gradient(135deg, #111d28, #2c2418);
  color: var(--gold);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 16px 26px rgba(0, 0, 0, .32);
}

.voucher-tile .gift-visual span {
  font-size: 1.5em;
}

.bottom-offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 9px;
}

.bottom-offers article {
  min-height: 70px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 9px 12px;
}

.bottom-offers article:first-child {
  grid-template-columns: 138px 1fr;
}

.bottom-offers article:nth-child(2) {
  grid-template-columns: 148px 1fr auto;
}

.legend-visual,
.voucher-band-visual {
  display: block;
  width: 100%;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(.95) contrast(1.04) brightness(.92);
}

.bottom-offers h2 {
  margin-bottom: 3px;
  color: var(--gold);
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 0;
}

.bottom-offers p {
  margin: 0;
  color: #fff;
  font-size: 13px;
}

.moon,
.gift-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--gold);
  font-size: 32px;
}

.poster-side {
  display: grid;
  align-content: start;
  gap: 7px;
}

.home-side-banner {
  position: relative;
  top: auto;
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 300px;
}

.castle-card {
  position: relative;
  overflow: hidden;
  min-height: 254px;
  padding: 15px 18px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 218, 139, .20), transparent 18%),
    linear-gradient(180deg, rgba(15, 30, 42, .40), rgba(8, 18, 27, .88)),
    linear-gradient(#8c5c24, #8c5c24) 78% 30% / 54px 132px no-repeat,
    linear-gradient(#8c5c24, #8c5c24) 61% 42% / 48px 96px no-repeat,
    radial-gradient(circle at 78% 25%, #c99645 0 28px, transparent 29px),
    radial-gradient(circle at 61% 38%, #c99645 0 24px, transparent 25px),
    linear-gradient(180deg, #142635, #071018);
}

.castle-detail {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 132px;
  height: 104px;
  object-fit: cover;
  border: 1px solid rgba(232, 173, 62, .45);
  border-radius: 10px;
  opacity: .9;
  filter: saturate(.9) contrast(1.05) brightness(.82);
}

.castle-card > :not(.castle-detail) {
  position: relative;
  z-index: 1;
}

.ribbon {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 13px;
  background: linear-gradient(180deg, #e0a83a, #9f6813);
  color: #090704;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%, 8% 50%);
}

.castle-card h2 {
  margin: 0 0 9px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 36px;
  line-height: 1.04;
  text-transform: uppercase;
}

.castle-card p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 8px;
}

.room-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 10px 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
}

.room-facts span {
  display: grid;
  gap: 6px;
}

.gold-button {
  width: 100%;
  background: linear-gradient(180deg, #ffd66f, #d99522);
  color: #100b04;
}

.reviews-panel,
.contact-panel {
  padding: 12px 15px;
}

.reviews-panel h2,
.contact-panel h2 {
  margin-bottom: 9px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.ratings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.ratings div {
  display: grid;
  gap: 2px;
  color: #fff;
}

.ratings div + div {
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.ratings strong {
  color: var(--gold);
  font-size: 20px;
}

.ratings span {
  font-size: 20px;
  font-weight: 600;
}

.ratings em {
  color: var(--gold);
  font-style: normal;
}

.ratings small {
  color: #fff;
  font-size: 11px;
}

blockquote {
  margin: 8px 0 0;
  color: #fff;
  font-style: italic;
  font-size: 13px;
}

blockquote::before,
blockquote::after {
  color: var(--gold);
  font-size: 20px;
  line-height: 0;
}

blockquote::before {
  content: "“ ";
}

blockquote::after {
  content: " ”";
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  line-height: 1.34;
}

.outline-button {
  width: 50%;
  margin-top: 6px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

label {
  display: grid;
  gap: 6px;
  color: #fff;
}

select,
input,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(235, 169, 39, .54);
  border-radius: 7px;
  background: #081014;
  color: #fff;
}

button {
  cursor: pointer;
}

.admin-filters button,
.promo-form button,
.hero-feature button {
  min-height: 44px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(180deg, #ffd66f, #d99522);
  color: #100b04;
  font-weight: 600;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #061014;
  color: #fff;
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(7, 16, 24, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.actions,
.site-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand,
.nav a,
.header-cta,
.btn,
.sales-card,
.room-card a {
  color: #fff;
  text-decoration: none;
}

.brand {
  color: #fff;
  font-weight: 600;
}

.brand span,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--gold);
  color: #080604;
  font-size: 12px;
  font-weight: 600;
}

.nav {
  color: #fff;
  font-size: 14px;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(180deg, #ffd66f, #d99522);
  color: #100b04;
  font-weight: 600;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.section,
.admin-panel {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 58px);
}

.section-head {
  max-width: 840px;
  margin-bottom: 28px;
}

.section-head p,
.room-card p,
.sales-card p,
.check-list,
.summary p,
.reviews p,
.contact-strip p {
  color: var(--muted);
}

.rooms-grid,
.sales-grid,
.price-grid,
.reviews,
.voucher-band,
.contact-strip,
.booking-layout {
  display: grid;
  gap: 18px;
}

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

.room-card,
.review-placeholder,
.sales-card,
.booking-form,
.summary,
.price-grid article,
.map-box,
.entrance-box {
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  color: #fff;
  box-shadow: var(--shadow);
}

.room-card.featured {
  grid-column: span 2;
}

.room-card .room-visual {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 190px;
  overflow: hidden;
  object-fit: cover;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 220, 144, .22), transparent 28%),
    linear-gradient(180deg, #142635, #071018);
}

.room-card .room-visual::before,
.room-card .room-visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.room-card .room-visual::after {
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(7, 16, 24, .12) 52%, rgba(7, 16, 24, .72) 100%),
    radial-gradient(circle at 50% 28%, rgba(255, 220, 144, .14), transparent 38%);
}

.room-visual-castle {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 220, 144, .26), transparent 22%),
    linear-gradient(#8c5c24, #8c5c24) 66% 35% / 82px 170px no-repeat,
    linear-gradient(#8c5c24, #8c5c24) 45% 48% / 70px 130px no-repeat,
    radial-gradient(circle at 66% 29%, #c99645 0 42px, transparent 43px),
    radial-gradient(circle at 45% 42%, #c99645 0 35px, transparent 36px),
    linear-gradient(180deg, #172632, #071018);
}

.room-visual-ocean {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 225, 160, .70) 0 18px, transparent 19px),
    radial-gradient(ellipse at 50% 72%, rgba(17, 127, 149, .70) 0 28%, transparent 30%),
    linear-gradient(180deg, #102b3a, #071018);
}

.room-visual-nanosalt {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 225, 160, .44) 0 24px, transparent 25px),
    linear-gradient(135deg, transparent 36%, rgba(232, 173, 62, .30) 37% 40%, transparent 41%),
    linear-gradient(180deg, #182c3c, #071018);
}

.room-visual-pirate {
  background:
    radial-gradient(circle at 44% 38%, rgba(255, 220, 144, .50) 0 26px, transparent 27px),
    linear-gradient(#8c5c24, #8c5c24) 48% 62% / 120px 40px no-repeat,
    linear-gradient(180deg, #182c3c, #071018);
}

.room-visual-magic {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 225, 160, .66) 0 22px, transparent 23px),
    radial-gradient(circle at 28% 22%, rgba(232, 173, 62, .54) 0 3px, transparent 4px),
    radial-gradient(circle at 70% 26%, rgba(255, 225, 160, .48) 0 3px, transparent 4px),
    linear-gradient(180deg, #182c3c, #071018);
}

.room-body,
.review-placeholder,
.sales-card,
.booking-form,
.summary,
.price-grid article,
.map-box,
.entrance-box {
  padding: 22px;
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 13px;
}

.room-tags span:not(.badge) {
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
}

.directions-panel {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(320px, 1.25fr);
  align-items: stretch;
  gap: 18px;
}

.directions-map {
  min-height: 360px;
  padding: 0;
}

.directions-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.room-card a,
.price-grid strong {
  color: var(--gold);
  font-weight: 600;
}

.reviews,
.voucher-band,
.contact-strip,
.booking-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
}

.reviews h2 {
  color: var(--gold);
}

.voucher-band {
  background: linear-gradient(120deg, rgba(5, 11, 14, .92), rgba(75, 49, 10, .88));
  color: #fff;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 22px 22px 22px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #fff;
}

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

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

.sales-card {
  min-height: 250px;
  align-content: start;
  text-decoration: none;
}

.sales-card span {
  color: var(--gold);
  font-weight: 600;
}

.contact-strip {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) minmax(220px, 320px);
}

.map-box,
.entrance-box {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.site-footer {
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 28px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.subpage-shell {
  min-height: 100vh;
}

.subpage-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 10px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(232, 173, 62, .48);
  background: rgba(7, 16, 24, .93);
  backdrop-filter: blur(16px);
}

.subpage-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.subpage-logo img {
  display: block;
  width: 150px;
  height: auto;
}

.subpage-nav,
.subpage-socials,
.footer-nav,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.subpage-nav a,
.subpage-socials a,
.footer-nav a,
.footer-socials a {
  color: #fff;
  text-decoration: none;
}

.subpage-nav {
  justify-content: center;
  font-size: 14px;
  text-transform: uppercase;
}

.subpage-nav a {
  color: var(--muted);
}

.subpage-nav a:hover,
.footer-nav a:hover {
  color: var(--gold);
}

.subpage-socials {
  justify-content: flex-end;
}

.subpage-socials a,
.footer-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 600;
}

.subpage-gift,
.sidebar-actions a,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffd66f, #d99522);
  color: #100b04;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

.subpage-wrap {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 10px clamp(18px, 4vw, 54px) clamp(18px, 3vw, 34px);
}

.subpage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: start;
}

.subpage-layout-wide {
  grid-template-columns: minmax(0, 1fr);
}

.subpage-content {
  min-width: 0;
}

.subpage-hero,
.content-panel,
.subpage-sidebar,
.subpage-footer,
.info-card,
.route-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 31, 43, .76), rgba(8, 18, 27, .86));
  box-shadow: var(--shadow);
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  max-height: 140px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  align-items: center;
  align-content: center;
  gap: 3px 18px;
  padding: 12px 18px;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 12px;
  bottom: 10px;
  width: min(180px, 24%);
  background:
    linear-gradient(90deg, rgba(7, 16, 24, .12), rgba(7, 16, 24, .42)),
    var(--hero-image, none);
  background-size: cover;
  background-position: center;
  border-left: 1px solid rgba(232, 173, 62, .28);
  border-radius: 10px;
  opacity: .42;
  mask-image: linear-gradient(90deg, transparent 0%, #000 26%);
}

.subpage-hero > * {
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  grid-column: 1;
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: var(--font-main);
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

.subpage-hero .lead {
  grid-column: 1;
  max-width: 760px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-size: clamp(13px, 1.15vw, 15px);
}

.subpage-hero .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
  font-size: 11px;
}

.room-title-hero {
  min-height: 86px;
  max-height: 110px;
}

.room-title-hero h1 {
  align-self: center;
}

.photo-title-hero {
  min-height: 104px;
  max-height: 118px;
  background:
    linear-gradient(90deg, rgba(5, 13, 20, .9), rgba(5, 13, 20, .52), rgba(5, 13, 20, .72)),
    var(--hero-image);
  background-size: cover;
  background-position: center 46%;
  overflow: hidden;
}

.photo-title-hero::before {
  display: none;
}

.photo-title-hero h1 {
  text-shadow: 0 10px 24px rgba(0, 0, 0, .45);
}

.voucher-compact-hero {
  min-height: 118px;
  max-height: 140px;
  padding: 12px 18px;
}

.voucher-compact-hero h1 {
  max-width: 760px;
  font-size: clamp(26px, 3.2vw, 36px);
}

.voucher-compact-hero .lead {
  max-width: 720px;
  margin-bottom: 0;
}

.subpage-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  min-width: max-content;
}

.subpage-actions .btn {
  min-height: 34px;
  padding: 0 13px;
  font-size: 12px;
}

.content-panel {
  margin-top: 10px;
  padding: clamp(16px, 2vw, 22px);
}

.content-panel h2,
.info-card h2,
.route-card h2,
.subpage-sidebar h2 {
  margin-top: 0;
  color: var(--gold);
}

.content-panel p,
.content-panel li,
.info-card p,
.route-card p,
.subpage-sidebar p,
.subpage-sidebar li {
  color: var(--muted);
}

.content-grid,
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.rooms-hero::before {
  width: min(220px, 28%);
  opacity: .5;
}

.rooms-showcase h2 {
  margin-bottom: 16px;
}

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

.adventure-card {
  overflow: hidden;
  border: 1.5px solid rgba(232, 173, 62, .48);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 32, 43, .82), rgba(8, 18, 27, .92));
  box-shadow: var(--shadow);
}

.adventure-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1fr);
}

.adventure-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.adventure-card-featured img {
  height: 100%;
  min-height: 330px;
}

.adventure-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(18px, 2.3vw, 26px);
}

.adventure-card-top {
  min-height: 24px;
}

.adventure-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.08;
}

.adventure-card p {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
}

.adventure-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.adventure-facts div {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.adventure-facts dt {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.adventure-facts dd {
  margin: 3px 0 0;
  color: #fff;
  font-weight: 600;
}

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

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

.choice-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(232, 173, 62, .44);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  color: #fff;
  text-decoration: none;
}

.choice-grid span {
  font-size: 30px;
}

.choice-grid strong {
  font-size: 18px;
  line-height: 1.2;
}

.choice-grid em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.reason-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.reason-row span {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(232, 173, 62, .36);
  border-radius: 8px;
  color: #fff;
  text-align: center;
  background: rgba(255, 255, 255, .035);
}

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

.rooms-review-grid blockquote {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(232, 173, 62, .36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
}

.rooms-review-grid strong {
  color: var(--gold);
}

.rooms-review-grid p {
  margin: 8px 0 0;
}

.voucher-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 214, 111, .18), transparent 30%),
    linear-gradient(180deg, rgba(16, 32, 43, .82), rgba(8, 18, 27, .92));
}

.voucher-cta-panel h2 {
  margin-bottom: 6px;
}

.room-story-reviews {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 14px;
  align-items: start;
}

.room-story-reviews.content-panel {
  padding: 16px;
}

.room-story-reviews .detail-list {
  margin-top: 8px;
}

.room-story-reviews .detail-list li {
  padding-block: 5px;
}

.room-story-reviews p {
  margin-bottom: 10px;
  line-height: 1.45;
}

.room-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-quick-facts span {
  flex: 1 1 140px;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(232, 173, 62, .32);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.room-quick-facts strong {
  display: block;
  color: #fff;
  font-weight: 600;
}

.room-quick-facts b {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
}

.room-opinions-inline {
  display: grid;
  gap: 10px;
}

.room-opinions-compact {
  position: relative;
  display: block;
  min-height: 168px;
  padding-left: 116px;
}

.room-opinions-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.room-opinions-copy h2 {
  margin-bottom: 0;
}

.room-opinions-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.room-opinions-row h2 {
  grid-column: 1 / -1;
  font-size: 17px;
}

.room-panel-photo {
  width: 100%;
  height: 100%;
  min-height: 218px;
  max-height: 244px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(232, 173, 62, .36);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

.room-panel-photo-large {
  align-self: stretch;
}

.room-opinions-inline blockquote {
  margin: 0;
  padding: 7px 9px;
  border: 1px solid rgba(232, 173, 62, .36);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
}

.room-opinions-inline strong {
  color: var(--gold);
}

.room-opinions-inline p {
  margin: 3px 0 0;
  font-size: 12px;
  line-height: 1.3;
}

.lockme-booking-section > h2:only-child,
.lockme-booking-section h2 {
  margin-bottom: 14px;
}

.lockme-calendar-frame {
  display: block;
  overflow: hidden;
  border: 1.5px solid rgba(232, 173, 62, .44);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
}

.lockme-calendar-frame iframe {
  display: block;
  width: 100%;
  min-height: 650px;
  border: none;
  border-radius: 18px;
  background: #fff;
}

.lockme-calendar-fallback {
  display: grid;
  gap: 10px;
  min-height: 220px;
  align-content: center;
  padding: clamp(18px, 3vw, 32px);
  color: var(--muted);
}

.lockme-calendar-fallback strong {
  color: #fff;
}

.lockme-calendar-fallback code {
  color: var(--gold);
}

.info-card,
.route-card {
  padding: 20px;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 10px 0 10px 18px;
  border-left: 3px solid rgba(232, 173, 62, .72);
  color: var(--muted);
}

.detail-list strong {
  color: #fff;
}

.route-card {
  text-decoration: none;
  color: #fff;
}

.route-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.subpage-sidebar {
  position: sticky;
  top: 88px;
  z-index: 25;
  overflow: hidden;
  padding: 13px;
}

.sidebar-logo {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}

.sidebar-logo img {
  display: block;
  width: min(132px, 100%);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35));
}

.sidebar-contact {
  margin-top: 9px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.sidebar-contact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.48;
}

.sidebar-contact strong {
  color: #fff;
}

.sidebar-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 10px;
}

.sidebar-actions a {
  min-height: 34px;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 13px;
}

.sidebar-actions a:nth-child(n + 3) {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.voucher-modal-open {
  overflow: hidden;
}

.voucher-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background:
    radial-gradient(circle at 70% 8%, rgba(216, 166, 61, .18), transparent 34%),
    rgba(3, 10, 15, .82);
  backdrop-filter: blur(12px);
}

.voucher-modal-overlay[hidden] {
  display: none;
}

.voucher-modal {
  position: relative;
  width: min(920px, 100%);
  max-height: min(860px, calc(100vh - 28px));
  overflow: auto;
  border: 1px solid rgba(216, 166, 61, .56);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(8, 21, 31, .98), rgba(14, 33, 47, .98)),
    var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .48);
}

.voucher-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(216, 166, 61, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.voucher-modal-content {
  padding: clamp(22px, 4vw, 42px);
}

.voucher-modal-header {
  padding-right: 44px;
}

.voucher-modal-header h2,
.voucher-modal-success h2 {
  margin: 4px 0 8px;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.voucher-modal-buy-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5c45a, #d29323);
  color: #111;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(216, 166, 61, .2);
}

.voucher-modal-intro {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 166, 61, .28);
  border-radius: 16px;
  background: rgba(255, 255, 255, .035);
}

.voucher-modal-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

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

.voucher-modal-benefits div {
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(216, 166, 61, .34);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
}

.voucher-modal-benefits span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.voucher-modal-benefits strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
}

.voucher-modal-form {
  margin-top: 16px;
}

.voucher-modal-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.voucher-modal-fields label,
.voucher-modal-consent {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.voucher-modal-fields input,
.voucher-modal-fields textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font: inherit;
  padding: 12px 13px;
  outline: none;
}

.voucher-modal-fields input:focus,
.voucher-modal-fields textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 166, 61, .16);
}

.voucher-modal-wide {
  grid-column: 1 / -1;
}

.voucher-modal-consent {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 100%;
}

.voucher-modal-consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--gold);
  justify-self: start;
  flex: 0 0 auto;
}

.voucher-modal-consent span {
  display: block;
  min-width: 0;
  max-width: 680px;
  overflow-wrap: anywhere;
}

.voucher-modal-consent a {
  color: #fff;
}

.voucher-modal-error {
  margin: 14px 0 0;
  color: #ffd4d4;
}

.payment-return-panel {
  max-width: 860px;
  margin: 42px auto;
}

.payment-return-status {
  display: inline-flex;
  margin: 18px 0 8px;
  padding: 10px 14px;
  border: 1px solid rgba(216, 166, 61, .36);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: var(--gold);
  font-weight: 600;
}

.voucher-modal-submit,
.voucher-modal-back,
.voucher-modal-success-actions button,
.voucher-modal-success-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5c45a, #d29323);
  color: #111;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(216, 166, 61, .22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.voucher-modal-submit {
  width: 100%;
}

.voucher-modal-submit:hover,
.voucher-modal-back:hover,
.voucher-modal-success-actions button:hover,
.voucher-modal-success-actions a:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(216, 166, 61, .3);
}

.voucher-modal-submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.voucher-modal-back {
  width: 100%;
  margin-top: 10px;
  border: 1px solid rgba(216, 166, 61, .42);
  background: transparent;
  color: var(--gold);
  box-shadow: none;
}

.voucher-modal-payment h2 {
  margin: 4px 0 10px;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.voucher-modal-payment p {
  max-width: 680px;
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.voucher-modal-payment dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 4px;
}

.voucher-modal-payment dl div {
  padding: 13px;
  border: 1px solid rgba(216, 166, 61, .34);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
}

.voucher-modal-payment dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.voucher-modal-payment dd {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 600;
}

.voucher-modal-success {
  text-align: center;
}

.voucher-modal-check {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(216, 166, 61, .16);
  border: 1px solid rgba(216, 166, 61, .55);
  color: var(--gold);
  font-size: 44px;
  font-weight: 700;
}

.voucher-modal-success p {
  color: var(--muted);
  margin: 0 auto 18px;
}

.voucher-modal-success dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px auto 2px;
  max-width: 520px;
}

.voucher-modal-success dl div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(216, 166, 61, .2);
}

.voucher-modal-success dt {
  color: var(--muted);
  font-size: 13px;
}

.voucher-modal-success dd {
  margin: 3px 0 0;
  color: #fff;
  font-weight: 700;
}

.voucher-modal-success-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.voucher-modal-success-actions button,
.voucher-modal-success-actions a {
  min-width: 190px;
  margin-top: 0;
  padding: 0 18px;
}

@media (max-width: 720px) {
  .voucher-modal-overlay {
    align-items: end;
    padding: 10px;
  }

  .voucher-modal {
    max-height: calc(100vh - 20px);
    border-radius: 18px;
  }

  .voucher-modal-content {
    padding: 20px;
  }

  .voucher-modal-header {
    padding-right: 38px;
  }

  .voucher-modal-intro,
  .voucher-modal-benefits,
  .voucher-modal-fields,
  .voucher-modal-payment dl,
  .voucher-modal-success dl {
    grid-template-columns: 1fr;
  }

  .voucher-modal-success-actions {
    display: grid;
  }

  .voucher-modal-success-actions button,
  .voucher-modal-success-actions a {
    width: 100%;
  }
}

.subpage-footer {
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto 22px;
  padding: 22px clamp(18px, 4vw, 34px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 260px 190px;
  gap: 22px;
  align-items: start;
}

.footer-logo img {
  width: 148px;
  height: auto;
}

.footer-nav,
.footer-socials {
  align-items: flex-start;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-contact {
  color: var(--muted);
  font-size: 14px;
}

.footer-contact strong {
  color: #fff;
}

.voucher-hero-card {
  width: min(300px, 100%);
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
  margin: 0;
  padding: 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 16, 24, .78);
}

.voucher-hero-card span,
.voucher-summary span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.voucher-hero-card strong,
.voucher-summary strong {
  display: block;
  color: #fff;
  font-family: var(--font-main);
  font-size: 36px;
  line-height: 1;
}

.voucher-hero-card ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.voucher-hero-card li {
  font-size: 13px;
}

.voucher-hero-card li,
.steps-list li {
  color: #fff;
}

.voucher-hero-card li::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 600;
}

.voucher-room-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.voucher-room-list .route-card {
  padding: 12px;
}

.voucher-room-list .route-card h2 {
  font-size: 18px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  counter-increment: steps;
  min-height: 120px;
  padding: 18px;
  border: 1.5px solid rgba(232, 173, 62, .52);
  border-radius: var(--radius);
  background: rgba(7, 16, 24, .54);
}

.steps-list li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #100b04;
  font-weight: 600;
}

.voucher-order-panel {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1.18fr);
  gap: 24px;
  align-items: start;
}

.voucher-fast-buy {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(320px, .68fr);
  gap: 18px;
  align-items: start;
  margin-top: 12px;
}

.voucher-form-column h2 {
  margin-bottom: 6px;
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
}

.voucher-fast-price {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--font-main);
  font-size: 38px;
  line-height: 1;
}

.voucher-fast-buy .voucher-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.voucher-fast-buy .voucher-form fieldset {
  padding: 12px;
}

.voucher-fast-buy .voucher-form .consents,
.voucher-fast-buy .voucher-summary,
.voucher-fast-buy .voucher-form button,
.voucher-fast-buy .form-message {
  grid-column: 1 / -1;
}

.voucher-fast-buy .voucher-form label {
  gap: 5px;
  font-size: 13px;
}

.voucher-fast-buy .voucher-form input,
.voucher-fast-buy .voucher-form textarea {
  min-height: 36px;
  padding: 7px 9px;
}

.voucher-fast-buy .voucher-form textarea {
  min-height: 52px;
}

.voucher-fast-buy .voucher-summary {
  padding: 12px;
}

.voucher-fast-buy .voucher-form .consents {
  grid-column: 1;
  grid-row: 2;
}

.voucher-fast-buy .voucher-summary {
  grid-column: 2;
  grid-row: 2;
}

.voucher-fast-buy .voucher-form button {
  grid-column: 2;
  grid-row: 3;
  min-height: 42px;
}

.voucher-fast-buy .form-message {
  grid-column: 1 / -1;
}

.voucher-fast-buy .voucher-summary strong {
  font-size: 32px;
}

.voucher-info-column {
  display: grid;
  gap: 12px;
}

.voucher-info-column article {
  padding: 15px;
  border: 1px solid rgba(232, 173, 62, .42);
  border-radius: var(--radius);
  background: rgba(7, 16, 24, .54);
}

.voucher-info-column h2 {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 18px;
}

.voucher-info-column ul,
.voucher-info-column ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
}

.voucher-info-column li {
  color: #fff;
}

.voucher-form {
  display: grid;
  gap: 16px;
}

.voucher-form fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(232, 173, 62, .42);
  border-radius: var(--radius);
}

.voucher-form legend {
  padding: 0 8px;
  color: var(--gold);
  font-weight: 600;
}

.voucher-form textarea {
  min-height: 92px;
  resize: vertical;
}

.voucher-form .consents label {
  grid-template-columns: 20px 1fr;
  align-items: start;
}

.voucher-form .consents input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.voucher-summary {
  padding: 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 16, 24, .68);
}

.voucher-summary p,
.form-message {
  margin: 8px 0 0;
  color: var(--muted);
}

.voucher-form button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffd66f, #d99522);
  color: #100b04;
  font-weight: 600;
  text-transform: uppercase;
}

.form-message {
  padding: 14px 16px;
  border: 1px solid rgba(232, 173, 62, .52);
  border-radius: 8px;
  background: rgba(232, 173, 62, .12);
  color: #fff;
}

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

.faq-list details {
  padding: 16px;
  border: 1px solid rgba(232, 173, 62, .42);
  border-radius: var(--radius);
  background: rgba(7, 16, 24, .44);
}

.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-weight: 600;
}

.albin-assistant {
  position: fixed;
  top: auto;
  right: max(4px, env(safe-area-inset-right));
  bottom: max(8px, env(safe-area-inset-bottom));
  z-index: 18;
  display: grid;
  grid-template-columns: minmax(0, 285px) 56px;
  gap: 6px;
  align-items: end;
  pointer-events: none;
  max-width: min(347px, calc(100vw - 8px));
}

.albin-assistant-toggle {
  grid-column: 2;
  grid-row: 1;
  width: 56px;
  height: 72px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  animation: albin-float 5.4s ease-in-out infinite;
}

.albin-assistant-toggle img {
  width: 56px;
  height: 72px;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, .42));
  border-radius: 999px;
}

.albin-assistant-toggle::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 24px;
  height: 8px;
  border-radius: 999px;
  background: rgba(246, 238, 220, .72);
  opacity: 0;
  transform: scaleY(.2);
  animation: albin-blink 6.5s ease-in-out infinite;
  z-index: 2;
}

.albin-assistant-toggle::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 37px;
  width: 27px;
  height: 8px;
  border-radius: 50%;
  border-bottom: 2px solid rgba(210, 204, 190, .75);
  opacity: .58;
  transform-origin: center;
  animation: albin-moustache 4.8s ease-in-out infinite;
  z-index: 2;
}

.albin-assistant-bubble {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 285px;
  padding: 8px 10px;
  border: 1px solid rgba(232, 173, 62, .35);
  border-radius: 24px 24px 18px 24px;
  background: #eee9df;
  color: #17202a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
  pointer-events: auto;
  transform-origin: right bottom;
  animation: albin-bubble-sway 5.8s ease-in-out infinite;
}

.albin-assistant-bubble::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: 22px;
  width: 22px;
  height: 22px;
  background: #eee9df;
  border-right: 1px solid rgba(232, 173, 62, .28);
  border-bottom: 1px solid rgba(232, 173, 62, .28);
  border-radius: 0 0 18px 0;
  transform: rotate(-28deg);
}

.albin-assistant-bubble p {
  margin: 0 0 5px;
  color: #17202a;
  font-size: 10.5px;
  line-height: 1.28;
  font-weight: 500;
}

.albin-assistant-bubble nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.albin-assistant-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 5px;
}

.albin-assistant-bubble a,
.albin-assistant-bubble nav button,
.albin-assistant-controls button {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0 7px;
  border: 1px solid rgba(145, 100, 26, .34);
  border-radius: 999px;
  background: rgba(255, 246, 224, .9);
  color: #7b510d;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.albin-assistant-controls button[data-albin-speak] {
  background: linear-gradient(180deg, #ffd66f, #d99522);
  color: #100b04;
}

.albin-assistant-controls button[data-albin-dismiss] {
  border-color: rgba(40, 45, 50, .18);
  color: #53606b;
}

.albin-assistant-bubble a:hover,
.albin-assistant-bubble nav button:hover,
.albin-assistant-controls button:hover {
  background: #f1d9a4;
  color: #18130b;
}

.albin-assistant-story {
  max-height: 48px;
  overflow: auto;
  padding-top: 5px;
  border-top: 1px solid rgba(40, 45, 50, .12);
  color: #45515c;
  font-size: 10.5px;
  font-weight: 500;
}

.albin-assistant.is-collapsed .albin-assistant-bubble {
  display: block;
}

.albin-assistant.is-collapsed {
  grid-template-columns: minmax(0, 285px) 56px;
}

.albin-assistant.is-collapsed .albin-assistant-toggle {
  grid-column: 2;
}

.albin-assistant.is-speaking .albin-assistant-toggle img {
  animation-duration: 2.4s;
}

@keyframes albin-idle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  45% {
    transform: translateY(-4px) rotate(-1deg);
  }

  55% {
    transform: translateY(-4px) rotate(1deg);
  }
}

@keyframes albin-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes albin-blink {
  0%,
  46%,
  50%,
  100% {
    opacity: 0;
    transform: scaleY(.2);
  }

  48% {
    opacity: .82;
    transform: scaleY(1);
  }
}

@keyframes albin-moustache {
  0%,
  100% {
    transform: rotate(0deg) scaleX(1);
  }

  50% {
    transform: rotate(-2deg) scaleX(1.04);
  }
}

@keyframes albin-bubble-sway {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes albin-bubble-in {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.admin-filters,
.promo-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
}

.voucher-table {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
}

.voucher-row {
  min-width: 1320px;
  display: grid;
  grid-template-columns: 170px 110px 150px 150px 130px 170px 150px 120px 90px 140px 1fr;
  border-bottom: 1px solid rgba(235, 169, 39, .28);
}

.voucher-row span {
  padding: 12px;
  border-right: 1px solid rgba(235, 169, 39, .28);
}

.voucher-head span {
  background: rgba(235, 169, 39, .2);
  color: #fff;
  font-weight: 500;
}

.status-pill {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 999px;
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
}

.status-pill.active {
  background: rgba(102, 125, 88, .28);
  color: #d8ffd1;
}

.status-pill.redeemed {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.status-pill.pending {
  background: rgba(235, 169, 39, .22);
  color: var(--gold-2);
}

@media (max-height: 800px) and (min-width: 1181px) {
  .poster-page {
    padding-top: 6px;
  }

  .poster-logo span,
  .poster-logo strong {
    font-size: clamp(31px, 3.3vw, 52px);
  }

  .poster-logo em,
  .hero-text p,
  .eyebrow {
    font-size: 12px;
  }

  .poster-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .poster-hero {
    min-height: 300px;
  }

  .hero-castle-art {
    width: min(58vw, 760px);
    height: 340px;
  }

  .poster-hero::after {
    bottom: 168px;
  }

  .hero-text h1 {
    font-size: clamp(31px, 3.7vw, 48px);
  }

  .hero-text strong {
    font-size: 15px;
  }

  .audience-card {
    min-height: 174px;
    padding: 9px 10px 10px;
  }

  .round-icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .audience-card h2 {
    min-height: 36px;
    font-size: 18px;
  }

  .voucher-tile .gift-visual {
    height: 70px;
    font-size: 17px;
  }

  .bottom-offers article {
    min-height: 62px;
  }

  .bottom-offers h2 {
    font-size: 19px;
  }

  .bottom-offers p,
  .contact-grid,
  blockquote {
    font-size: 12px;
  }

  .castle-card {
    min-height: 226px;
  }

  .castle-card h2 {
    font-size: 32px;
  }

  .castle-card p,
  .room-facts {
    font-size: 12px;
  }

  .ratings strong,
  .ratings span {
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  .albin-assistant {
    grid-template-columns: minmax(0, 238px) 48px;
    right: 4px;
    bottom: 8px;
    max-width: min(292px, calc(100vw - 8px));
  }

  .albin-assistant-toggle,
  .albin-assistant-toggle img {
    width: 48px;
    height: 62px;
  }

  .albin-assistant-toggle::before {
    left: 21px;
    top: 27px;
    width: 27px;
  }

  .albin-assistant-toggle::after {
    left: 20px;
    top: 42px;
    width: 30px;
  }

  .albin-assistant:not(.is-collapsed) {
    grid-template-columns: minmax(0, 238px) 48px;
  }

  .albin-assistant-bubble {
    max-width: 238px;
    padding: 8px 9px;
  }

  .albin-assistant:not(.is-collapsed) .albin-assistant-toggle {
    grid-column: 2;
  }

  .albin-assistant.is-collapsed .albin-assistant-bubble {
    display: block;
  }

  .albin-assistant.is-collapsed .albin-assistant-toggle {
    grid-column: 2;
  }
}

@media (max-width: 1180px) {
  .poster-top {
    grid-template-columns: 240px 1fr;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .social-bar {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .social-bar span {
    width: auto;
    text-align: left;
  }

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

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

@media (max-width: 1100px) {
  .subpage-header,
  .subpage-layout,
  .directions-panel,
  .voucher-order-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .subpage-logo,
  .subpage-nav,
  .subpage-socials {
    justify-content: center;
  }

  .subpage-gift {
    width: 100%;
  }

  .subpage-sidebar {
    position: relative;
    top: auto;
  }

  .subpage-hero {
    min-height: 130px;
    max-height: 160px;
  }

  .voucher-fast-buy {
    grid-template-columns: 1fr;
  }

  .voucher-fast-buy .voucher-form {
    grid-template-columns: 1fr;
  }

  .voucher-fast-buy .voucher-form .consents,
  .voucher-fast-buy .voucher-summary,
  .voucher-fast-buy .voucher-form button,
  .voucher-fast-buy .form-message {
    grid-column: 1;
    grid-row: auto;
  }

  .poster-top,
  .poster-hero,
  .bottom-offers,
  .poster-side,
  .reviews,
  .voucher-band,
  .contact-strip,
  .booking-layout,
  .sales-grid,
  .price-grid,
  .admin-filters,
  .promo-form {
    grid-template-columns: 1fr;
  }

  .voucher-room-list,
  .steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-bar,
  .audience-grid,
  .rooms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .adventure-card-featured,
  .adventure-grid,
  .choice-grid,
  .rooms-review-grid,
  .room-story-reviews {
    grid-template-columns: 1fr;
  }

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

  .adventure-card-featured img {
    min-height: 0;
    height: 280px;
  }

  .room-card.featured {
    grid-column: span 1;
  }

  .bottom-offers article {
    grid-template-columns: 90px 1fr;
  }

  .bottom-offers .gold-button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .poster-page {
    padding: 14px;
  }

  .proof-bar,
  .audience-grid,
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .poster-logo span,
  .poster-logo strong {
    font-size: 52px;
  }

  .social-bar {
    flex-wrap: wrap;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions a {
    width: 100%;
  }

  .hero-text h1 {
    font-size: 46px;
  }

  .hero-text strong {
    font-size: 20px;
  }

  .audience-card {
    min-height: 460px;
  }

  .castle-card h2 {
    font-size: 44px;
  }

  .room-facts,
  .ratings,
  .contact-grid,
  .content-grid,
  .route-grid,
  .adventure-facts,
  .reason-row,
  .footer-nav,
  .sidebar-actions {
    grid-template-columns: 1fr;
  }

  .voucher-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .adventure-card img,
  .adventure-card-featured img {
    height: 220px;
  }

  .subpage-header {
    padding: 12px 14px;
  }

  .subpage-wrap {
    padding: 10px 14px 18px;
  }

  .subpage-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    min-height: 146px;
    max-height: 180px;
    padding: 12px;
  }

  .subpage-hero h1 {
    font-size: 27px;
  }

  .subpage-hero .lead {
    -webkit-line-clamp: 2;
    font-size: 13px;
  }

  .subpage-hero::before {
    width: 42%;
    opacity: .22;
  }

  .subpage-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    min-width: 0;
  }

  .subpage-actions .btn {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .voucher-hero-card {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .voucher-hero-card ul,
  .voucher-room-list,
  .steps-list {
    grid-template-columns: 1fr;
  }

  .albin-assistant {
    top: auto;
    left: auto;
    right: 4px;
    bottom: 8px;
    grid-template-columns: minmax(0, 224px) 46px;
    max-width: min(276px, calc(100vw - 8px));
  }

  .albin-assistant:not(.is-collapsed) {
    grid-template-columns: minmax(0, 224px) 46px;
  }

  .albin-assistant-toggle,
  .albin-assistant-toggle img {
    width: 46px;
    height: 60px;
  }

  .albin-assistant-bubble {
    max-width: 224px;
    padding: 8px 9px;
  }

  .albin-assistant-bubble p {
    font-size: 10px;
    line-height: 1.24;
  }

  .albin-assistant-bubble a,
  .albin-assistant-bubble nav button,
  .albin-assistant-controls button {
    min-height: 21px;
    font-size: 10px;
  }

  .albin-assistant.is-collapsed {
    grid-template-columns: minmax(0, 224px) 46px;
  }
}

@media (max-width: 680px) {
  .albin-assistant {
    right: 4px;
    bottom: 6px;
    grid-template-columns: minmax(0, 174px) 38px;
    gap: 4px;
    max-width: min(218px, calc(100vw - 8px));
  }

  .albin-assistant:not(.is-collapsed),
  .albin-assistant.is-collapsed {
    grid-template-columns: minmax(0, 174px) 38px;
  }

  .albin-assistant-toggle,
  .albin-assistant-toggle img {
    width: 38px;
    height: 50px;
  }

  .albin-assistant-toggle::before,
  .albin-assistant-toggle::after {
    display: none;
  }

  .albin-assistant-bubble {
    max-width: 174px;
    padding: 7px;
    border-radius: 16px 16px 12px 16px;
  }

  .albin-assistant-bubble::after {
    right: -6px;
    bottom: 14px;
    width: 14px;
    height: 14px;
  }

  .albin-assistant-bubble p {
    margin-bottom: 5px;
    font-size: 9.5px;
    line-height: 1.25;
  }

  .albin-assistant-controls,
  .albin-assistant-bubble nav {
    gap: 4px;
    margin-bottom: 5px;
  }

  .albin-assistant-bubble a,
  .albin-assistant-bubble nav button,
  .albin-assistant-controls button {
    min-height: 20px;
    padding: 0 6px;
    font-size: 8.8px;
  }

  .albin-assistant-story {
    max-height: 42px;
    font-size: 9.5px;
  }
}

.birthday-flow .detail-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.birthday-flow .detail-list li,
.birthday-mini-card,
.birthday-contact-card,
.birthday-attraction-card {
  border: 1px solid rgba(214, 162, 64, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.birthday-flow .detail-list li {
  padding: 12px;
}

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

.birthday-mini-card {
  padding: 16px;
}

.birthday-mini-card h3,
.birthday-attraction-card h3,
.birthday-contact-card h3 {
  margin: 0 0 8px;
}

.birthday-mini-card p,
.birthday-attraction-card p,
.birthday-contact-card p {
  margin: 0;
}

.birthday-catering-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 20px;
  align-items: start;
}

.birthday-contact-card {
  padding: 18px;
}

.birthday-contact-card dl {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.birthday-contact-card dt {
  color: var(--muted);
  font-size: 12px;
}

.birthday-contact-card dd {
  margin: 0;
}

.birthday-contact-card a:not(.btn),
.birthday-attraction-card a {
  color: var(--gold);
}

.birthday-attraction-card {
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.birthday-attraction-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.birthday-attraction-card h3,
.birthday-attraction-card p,
.birthday-attraction-card a {
  margin-inline: 14px;
}

.birthday-attraction-card h3 {
  margin-top: 14px;
}

.birthday-attraction-card a {
  margin-top: auto;
  margin-bottom: 14px;
  font-weight: 600;
  text-decoration: none;
}

.birthday-form-panel {
  scroll-margin-top: 90px;
}

.birthday-inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.birthday-inquiry-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.birthday-inquiry-form input,
.birthday-inquiry-form select,
.birthday-inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  padding: 12px;
}

.birthday-form-wide,
.birthday-inquiry-form button {
  grid-column: 1 / -1;
}

.birthday-inquiry-form button {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #f2c368, #c98b20);
  color: #14110b;
  cursor: pointer;
  padding: 14px 18px;
}

@media (max-width: 1100px) {
  .birthday-flow .detail-list,
  .birthday-card-grid,
  .birthday-attractions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .birthday-catering-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .birthday-flow .detail-list,
  .birthday-card-grid,
  .birthday-attractions-grid,
  .birthday-inquiry-form {
    grid-template-columns: 1fr;
  }
}

.school-benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.school-benefits-grid article {
  display: grid;
  min-height: 86px;
  place-items: center;
  gap: 6px;
  border: 1px solid rgba(214, 162, 64, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
  padding: 12px 10px;
}

.school-benefits-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(214, 162, 64, 0.18);
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
}

.school-benefits-grid h3 {
  margin: 0;
  font-size: 14px;
}

.school-organization-panel p {
  margin: 8px 0 0;
}

.school-catering-panel {
  align-items: stretch;
}

@media (max-width: 1100px) {
  .school-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .school-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Global typography: premium, lighter Manrope system */
body,
button,
input,
select,
textarea {
  font-family: var(--font-main);
}

body {
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

h1,
.hero-text h1,
.subpage-hero h1 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

h2,
.audience-card h2,
.bottom-offers h2,
.castle-card h2,
.content-panel h2,
.info-card h2,
.route-card h2,
.subpage-sidebar h2,
.voucher-form-column h2,
.voucher-info-column h2 {
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

h3,
.room-card h3 {
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0;
}

p,
li,
dd,
blockquote,
.lead,
.subpage-hero .lead,
.content-panel p,
.content-panel li,
.info-card p,
.route-card p,
.subpage-sidebar p,
.subpage-sidebar li,
.footer-contact,
.form-message {
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

p,
.lead,
.content-panel p,
.subpage-hero .lead,
.section-head,
.section-head p {
  max-width: 75ch;
}

.nav,
.nav a,
.subpage-nav,
.subpage-nav a,
.footer-nav,
.footer-nav a,
.proof-bar a {
  font-weight: 500;
  letter-spacing: 0;
}

button,
.btn,
.header-cta,
.subpage-gift,
.footer-cta,
.gold-button,
.outline-button,
.audience-card b,
.room-card a,
.sidebar-actions a,
.voucher-form button,
.albin-assistant-bubble a,
.albin-assistant-bubble nav button,
.albin-assistant-controls button {
  font-family: var(--font-main);
  font-weight: 600;
  letter-spacing: 0;
}

.eyebrow,
.hero-text p,
.voucher-hero-card span,
.voucher-summary span,
.badge,
.ribbon,
small {
  font-weight: 400;
  letter-spacing: 0;
}
