:root {
  --paper: #efe0bd;
  --paper-dark: #d8bc83;
  --ink: #201d18;
  --muted: #6c5945;
  --red: #9f2217;
  --red-dark: #68170f;
  --gold: #c99a3d;
  --green: #344b3b;
  --blue: #314f5d;
  --line: rgba(83, 47, 25, 0.24);
  --shadow: 0 18px 42px rgba(70, 35, 14, 0.18);
  --max: 1180px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,0.35), transparent 22rem),
    radial-gradient(circle at 80% 0%, rgba(119, 58, 24, 0.16), transparent 24rem),
    linear-gradient(90deg, rgba(92, 45, 20, 0.04) 1px, transparent 1px),
    linear-gradient(var(--paper), #ead7ac);
  background-size: auto, auto, 22px 22px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    radial-gradient(rgba(69, 37, 18, 0.17) 0.8px, transparent 0.8px),
    radial-gradient(rgba(255, 255, 255, 0.24) 0.8px, transparent 0.8px);
  background-position: 0 0, 9px 9px;
  background-size: 18px 18px;
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(239, 224, 189, 0.94);
  border-bottom: 3px solid var(--red);
  backdrop-filter: blur(10px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: var(--red);
}

.brand-name {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.88;
  letter-spacing: 0;
  color: var(--red);
  text-transform: uppercase;
}

.brand-kicker {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.8rem);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav a {
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 3px solid transparent;
}

.nav a[aria-current="page"],
.nav a:hover,
.nav a:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.language-note {
  display: inline-flex;
  gap: 0.35rem;
  font-family: var(--display);
  font-size: 1rem;
  white-space: nowrap;
}

.language-note button {
  border: 0;
  background: transparent;
  padding: 0.25rem 0.15rem;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
}

.language-note button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--red);
  padding-inline: 0.45rem;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--red);
  background: transparent;
  color: var(--red);
  font-family: var(--display);
  cursor: pointer;
}

.poster-star {
  display: inline-block;
  color: var(--red);
}

.hero {
  position: relative;
  overflow: clip;
  border-bottom: 4px solid var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(239,224,189,0.98) 0%, rgba(239,224,189,0.9) 28%, rgba(239,224,189,0.22) 58%, rgba(239,224,189,0.04) 100%),
    repeating-linear-gradient(12deg, rgba(105, 23, 15, 0.08) 0 2px, transparent 2px 12px);
}

.hero .section-inner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 4.25rem 0 3.25rem;
}

.hero-copy {
  width: min(620px, 100%);
}

@media (min-width: 1800px) {
  .hero-media img {
    object-fit: contain;
    object-position: right center;
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--red);
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.2rem;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 70px;
  height: 3px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.2rem, 7.2vw, 6.2rem);
  color: var(--red);
  margin-top: 1rem;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.lead {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.35;
  font-weight: 800;
  max-width: 760px;
  color: var(--ink);
}

.hero .lead {
  max-width: 560px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border: 3px solid var(--red);
  background: var(--red);
  color: var(--paper);
  font-family: var(--display);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.08rem;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn.secondary {
  background: rgba(239, 224, 189, 0.78);
  color: var(--red);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: var(--red);
}

.proof-strip {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 3px solid var(--red);
}

.proof-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-item {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border-left: 1px solid rgba(239, 224, 189, 0.18);
}

.proof-item:last-child {
  border-right: 1px solid rgba(239, 224, 189, 0.18);
}

.proof-icon,
.card-icon {
  color: var(--gold);
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.proof-item strong {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.25rem;
}

.proof-item span {
  display: block;
  margin-top: 0.2rem;
  color: #e6d3a8;
}

.section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.section.alt {
  background: rgba(129, 82, 43, 0.08);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.dark {
  background: var(--ink);
  color: var(--paper);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--red);
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.dark .section-head h2,
.dark h2,
.dark h3 {
  color: var(--gold);
}

.dark .section-head p {
  color: #e6d3a8;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card,
.info-tile,
.notice-card {
  background: rgba(249, 235, 198, 0.74);
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
}

.card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card-media {
  aspect-ratio: 4 / 3;
  min-height: 0;
  background:
    radial-gradient(circle at center, rgba(255,244,214,0.78), rgba(239,224,189,0.92)),
    var(--paper);
  border-bottom: 2px solid var(--line);
  position: relative;
  overflow: hidden;
}

.card-media.product {
  aspect-ratio: 1 / 1;
}

.card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.card-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.card h3,
.info-tile h3,
.notice-card h3 {
  color: var(--red);
  font-size: 1.55rem;
}

.card p,
.info-tile p,
.notice-card p,
.text-block p,
.text-block li {
  line-height: 1.5;
}

.card p,
.info-tile p,
.notice-card p {
  margin: 0;
  color: var(--ink);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 30px;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--line);
  background: rgba(255, 244, 214, 0.65);
  color: var(--ink);
  font-weight: 800;
}

.price {
  font-family: var(--display);
  color: var(--red);
  font-size: 1.75rem;
}

.split-poster {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.5fr);
  min-height: 360px;
  border: 3px solid var(--red);
  background: var(--red);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.split-poster-copy {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--paper);
  align-self: center;
}

.split-poster-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--paper);
}

.split-poster-copy p {
  line-height: 1.5;
  font-size: 1.1rem;
  font-weight: 700;
}

.split-poster-img {
  min-height: 360px;
  background: url("../img/generated/hero-rooms.jpg") center/cover;
}

.info-tile,
.notice-card {
  padding: 1.25rem;
  min-width: 0;
}

.info-tile {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.notice-card {
  display: grid;
  gap: 0.8rem;
}

.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 3px solid var(--red);
  background-image:
    linear-gradient(90deg, rgba(239,224,189,0.98), rgba(239,224,189,0.5)),
    var(--hero-image);
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: 100% 100%, contain;
}

.page-hero.tours {
  background-image:
    linear-gradient(90deg, rgba(239,224,189,0.98), rgba(239,224,189,0.48)),
    var(--hero-image);
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: 100% 100%, contain;
}

.page-hero-media {
  display: none;
}

.page-hero h1 {
  max-width: 780px;
  color: var(--red);
}

.page-hero .lead {
  max-width: 680px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 1.2rem;
  align-items: start;
}

.text-block {
  background: rgba(249, 235, 198, 0.66);
  border: 2px solid var(--line);
  padding: clamp(1.2rem, 2vw, 1.8rem);
}

.text-block h2,
.text-block h3 {
  color: var(--red);
  margin-top: 1.5rem;
}

.text-block h2:first-child,
.text-block h3:first-child {
  margin-top: 0;
}

.text-block ul,
.text-block ol {
  padding-left: 1.25rem;
}

.text-block li + li {
  margin-top: 0.45rem;
}

.side-stack {
  display: grid;
  gap: 1rem;
}

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

.contact-band {
  border-top: 3px solid var(--red);
  background: var(--ink);
  color: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo .brand-name {
  color: var(--paper);
}

.footer-logo .brand-kicker {
  color: #e6d3a8;
}

.footer-col h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.footer-col a {
  display: block;
  color: var(--paper);
  text-decoration: none;
  margin: 0.4rem 0;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--gold);
}

.floating-action,
.back-top {
  position: fixed;
  z-index: 30;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(239,224,189,0.85);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.24);
  text-decoration: none;
}

.floating-action {
  left: 18px;
  bottom: 20px;
  background: var(--green);
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-action[data-visible] {
  opacity: 1;
  pointer-events: auto;
}

.back-top {
  right: 18px;
  bottom: 20px;
  background: var(--red);
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  border-radius: 999px;
  cursor: pointer;
}

.back-top[data-visible] {
  opacity: 1;
  pointer-events: auto;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 35;
  max-width: min(360px, calc(100vw - 36px));
  padding: 0.85rem 1rem;
  border: 2px solid rgba(239,224,189,0.8);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 16px 30px rgba(0,0,0,0.28);
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.toast[data-visible] {
  opacity: 1;
  transform: translateY(0);
}

.live-region {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 1000px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: grid;
    gap: 0;
    padding: 0.5rem 20px 1rem;
    background: rgba(239, 224, 189, 0.98);
    border-bottom: 3px solid var(--red);
    clip-path: inset(0 0 100% 0);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .nav[data-open] {
    clip-path: inset(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    grid-column: 2;
  }

  .language-note {
    display: none;
  }

  .proof-grid,
  .grid.four,
  .grid.three,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .split-poster-copy {
    order: 2;
  }

  .split-poster-img {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .proof-grid {
    width: min(100% - 28px, var(--max));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .brand-kicker {
    font-size: 0.78rem;
  }

  .hero .section-inner {
    min-height: 0;
    align-items: stretch;
    padding: 1rem 0 1.25rem;
  }

  .hero-media {
    position: relative;
    aspect-ratio: 7 / 4;
    background: var(--paper);
  }

  .hero-media img {
    object-fit: contain;
    object-position: center;
    filter: saturate(1.08) contrast(1.06);
  }

  .hero-media::after {
    background:
      repeating-linear-gradient(12deg, rgba(105, 23, 15, 0.035) 0 1px, transparent 1px 12px);
  }

  .hero-copy {
    width: 100%;
    margin: 0;
    background: transparent;
    border: 0;
    padding: 0;
  }

  .hero-copy .eyebrow {
    gap: 0.45rem;
    font-size: 0.82rem;
  }

  .hero-copy .eyebrow::before,
  .hero-copy .eyebrow::after {
    width: 24px;
  }

  .hero-copy h1 {
    margin-top: 0.65rem;
    font-size: 2.55rem;
  }

  .hero-copy .lead {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .hero-copy .button-row {
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .hero-copy .btn {
    min-height: 44px;
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
  }

  .eyebrow {
    font-size: 1rem;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 38px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .lead {
    font-size: 1.12rem;
  }

  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .proof-grid,
  .grid.four,
  .grid.three,
  .grid.two,
  .footer-inner,
  .rule-list {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 72px;
    padding: 0.9rem 0.5rem;
  }

  .section-head {
    display: grid;
  }

  .page-hero,
  .page-hero.tours {
    padding: 0;
    background: none;
  }

  .page-hero-media {
    display: block;
    aspect-ratio: 16 / 9;
    background: var(--paper);
    border-bottom: 2px solid var(--red);
    overflow: hidden;
  }

  .page-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: saturate(1.08) contrast(1.06);
  }

  .page-hero > .section-inner {
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
  }

  .card-media {
    min-height: 0;
  }

  .info-tile {
    align-items: center;
  }

  .floating-action,
  .back-top {
    width: 48px;
    height: 48px;
  }

  .floating-action {
    bottom: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
