:root {
  --ink: #050504;
  --coal: #0b0907;
  --charcoal: #14110e;
  --wood: #2a160b;
  --rust: #7a2c14;
  --copper: #c45a22;
  --amber: #f0b735;
  --bone: #eadcc8;
  --muted: #a99b88;
  --stone: #3a3428;
  --green: #21b681;
  --blue: #1d4f8f;
  --red: #d43720;
  --max: 1180px;
  --shell: 1180px;
  --page-gutter: clamp(1rem, 4vw, 3.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--bone);
  background:
    radial-gradient(circle at 78% 9%, rgba(196, 90, 34, 0.22), transparent 24rem),
    radial-gradient(circle at 12% 58%, rgba(29, 79, 143, 0.14), transparent 19rem),
    linear-gradient(180deg, #050504 0%, #0b0907 44%, #120d09 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mix-blend-mode: overlay;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem max(var(--page-gutter), calc((100vw - var(--shell)) / 2));
  background: rgba(5, 5, 4, 0.78);
  border-bottom: 1px solid rgba(234, 220, 200, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.92rem;
}

.brand img {
  width: 54px;
  height: 42px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(0.55rem, 1.7vw, 1.35rem);
}

.main-nav a {
  position: relative;
  color: rgba(234, 220, 200, 0.72);
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.35rem;
  height: 1px;
  background: var(--amber);
  transition: right 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--bone);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.hero,
.subhero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding:
    clamp(6rem, 12vh, 9rem)
    max(clamp(1.15rem, 5vw, 4rem), calc((100vw - var(--shell)) / 2))
    clamp(3rem, 8vh, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(5,5,4,0.34) 0%, rgba(5,5,4,0.18) 50%, rgba(5,5,4,0.08) 100%),
    linear-gradient(180deg, rgba(5,5,4,0.04) 48%, var(--ink) 100%),
    url("graphs/baner.png") center center / cover no-repeat;
}

.home-hero::before,
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 74% 38%, rgba(212, 55, 32, 0.18), transparent 15rem),
    linear-gradient(180deg, rgba(5,5,4,0), rgba(5,5,4,0.8));
}

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

.home-hero .hero-copy {
  max-width: 560px;
  margin-top: auto;
}

.home-hero .hero-actions {
  margin-top: 0;
}

.kicker {
  margin: 0 0 0.9rem;
  color: var(--amber);
  font-size: 0.74rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 600;
}

h1 {
  max-width: 920px;
  font-size: clamp(4rem, 12vw, 9.8rem);
  line-height: 0.86;
}

h2 {
  font-size: clamp(2.4rem, 5.8vw, 5.2rem);
  line-height: 0.94;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
}

.lead,
.subhero p:not(.kicker),
.intro-text,
.room-copy p,
.legal-content p {
  color: rgba(234, 220, 200, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.75;
}

.lead {
  max-width: 620px;
  margin: 1.35rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(234, 220, 200, 0.22);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #120b07;
  background: linear-gradient(135deg, var(--amber), var(--copper));
  border-color: rgba(240, 183, 53, 0.9);
}

.button.ghost {
  background: rgba(5, 5, 4, 0.35);
}

.hero-mark {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: clamp(1rem, 6vh, 4rem);
  color: var(--red);
  font-family: "Courier New", monospace;
  font-size: clamp(1.4rem, 4vw, 3.5rem);
  text-shadow: 0 0 24px rgba(212, 55, 32, 0.74);
}

.room-description {
  width: min(var(--max), calc(100% - 2rem));
  margin: clamp(4rem, 8vw, 7rem) auto;
  padding: clamp(1.4rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(58, 52, 40, 0.78), rgba(18, 13, 9, 0.86)),
    linear-gradient(90deg, rgba(240,183,53,0.1), transparent);
  border: 1px solid rgba(234, 220, 200, 0.13);
}

.room-description h2 {
  max-width: 820px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.18;
  margin-bottom: 1rem;
}

.room-description p:not(.kicker) {
  max-width: 820px;
  color: rgba(234, 220, 200, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.75;
}

.scenario-slider {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(4rem, 8vw, 7rem) auto;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 0.75rem;
}

.gallery-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 183, 53, 0.08), transparent 28rem),
    #050504;
  border: 1px solid rgba(234, 220, 200, 0.13);
}

.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.99);
  filter: saturate(0.95) contrast(1.04) brightness(0.86);
  transition: opacity 220ms ease, transform 300ms ease;
}

.gallery-image.active {
  opacity: 1;
  transform: scale(1);
}

.gallery-btn {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(234, 220, 200, 0.24);
  color: var(--bone);
  background: rgba(5, 5, 4, 0.78);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.gallery-btn:hover {
  color: var(--amber);
  border-color: var(--amber);
  transform: translateY(-1px);
}

.section-grid {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(2rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(234, 220, 200, 0.11);
}

.intro-text p {
  margin: 0 0 1.2rem;
}

.image-band {
  width: min(var(--shell), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.75rem;
}

.band-tile {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.band-tile.wide {
  min-height: 520px;
}

.band-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.12) brightness(0.76);
}

.band-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,5,4,0.76));
}

.band-tile figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--bone);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list article,
.contact-card,
.voucher-card,
.voucher-note,
.map-panel,
.legal-content {
  background:
    linear-gradient(135deg, rgba(58, 52, 40, 0.78), rgba(18, 13, 9, 0.86)),
    linear-gradient(90deg, rgba(240,183,53,0.1), transparent);
  border: 1px solid rgba(234, 220, 200, 0.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.feature-list article {
  padding: clamp(1.15rem, 3vw, 2rem);
}

.feature-list span,
.contact-card span,
.spec-panel span {
  display: block;
  color: var(--green);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 0.7rem;
}

.feature-list p,
.contact-card p,
.voucher-card p,
.voucher-note {
  color: rgba(234, 220, 200, 0.74);
  line-height: 1.7;
}

.room-strip {
  width: min(var(--shell), calc(100% - 2rem));
  margin: clamp(5rem, 10vw, 9rem) auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
}

.room-copy {
  padding: clamp(1rem, 4vw, 3rem) 0;
}

.room-strip img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: contrast(1.12) brightness(0.72);
}

.text-link {
  color: var(--amber);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.8rem;
}

.booking-callout {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto clamp(5rem, 10vw, 8rem);
  padding: clamp(2rem, 6vw, 5rem);
  border-top: 1px solid rgba(240, 183, 53, 0.45);
  border-bottom: 1px solid rgba(240, 183, 53, 0.22);
  background: radial-gradient(circle at 78% 34%, rgba(33, 182, 129, 0.13), transparent 20rem);
}

.booking-callout .button {
  margin-top: 1.8rem;
}

.subhero {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.scenario-hero {
  background:
    linear-gradient(90deg, rgba(5,5,4,0.94), rgba(5,5,4,0.35)),
    url("graphs/ksiega.png") center / cover no-repeat;
}

.booking-hero {
  background:
    linear-gradient(90deg, rgba(5,5,4,0.95), rgba(5,5,4,0.28)),
    url("graphs/crystals.png") center / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(5,5,4,0.94), rgba(5,5,4,0.36)),
    url("graphs/candles.png") center / cover no-repeat;
}

.voucher-hero {
  background:
    linear-gradient(90deg, rgba(5,5,4,0.94), rgba(5,5,4,0.35)),
    url("graphs/window.png") center / cover no-repeat;
}

.subhero h1 {
  font-size: clamp(2.25rem, 5.4vw, 4.9rem);
  line-height: 1.02;
  margin: 0;
}

.subhero .kicker {
  margin: 0 0 0.55rem;
}

.subhero p:not(.kicker) {
  max-width: 680px;
  margin: 0.8rem 0 0;
}

.story-layout,
.contact-grid,
.voucher-layout,
.booking-widget-shell,
.legal-content,
.map-panel,
.spec-panel {
  width: min(var(--max), calc(100% - 2rem));
  margin: clamp(4rem, 8vw, 7rem) auto;
}

.story-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(234, 220, 200, 0.13);
}

.story-layout article {
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(20,17,14,0.98), rgba(42,22,11,0.82));
}

.story-layout p {
  color: rgba(234, 220, 200, 0.74);
  line-height: 1.75;
}

.spec-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(234, 220, 200, 0.13);
}

.spec-panel div {
  padding: 1.2rem;
  background: rgba(5, 5, 4, 0.8);
}

.spec-panel strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
}

.booking-widget-shell {
  min-height: 520px;
}

.lockme-widget {
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  background: #050504;
  border: 1px solid rgba(240, 183, 53, 0.24);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.lockme-widget iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
  background: #050504;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.contact-card {
  padding: 1.35rem;
  min-height: 150px;
}

.contact-card a {
  overflow-wrap: anywhere;
  color: var(--bone);
  font-weight: 400;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: stretch;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.map-panel > .kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

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

.location-note img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 1.25rem;
  filter: contrast(1.08) brightness(0.82);
}

.location-note h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.location-note p {
  color: rgba(234, 220, 200, 0.74);
  line-height: 1.7;
  margin: 0;
}

.voucher-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.voucher-card,
.voucher-note {
  padding: clamp(1.4rem, 4vw, 3rem);
}

.voucher-preview {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto clamp(5rem, 10vw, 8rem);
}

.voucher-preview img {
  width: 100%;
  border: 1px solid rgba(234, 220, 200, 0.13);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.voucher-note ol {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  line-height: 1.9;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem max(var(--page-gutter), calc((100vw - var(--shell)) / 2));
  border-top: 1px solid rgba(234, 220, 200, 0.12);
  color: rgba(234, 220, 200, 0.7);
  background: #050504;
}

.site-footer img {
  width: 54px;
  height: 42px;
  object-fit: contain;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.site-footer p {
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.8rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-footer a {
  color: rgba(234, 220, 200, 0.66);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(234, 220, 200, 0.24);
  color: var(--bone);
  text-decoration: none;
  overflow: hidden;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

.lockme-icon img {
  transform: scale(1.12);
}

.social-icon:hover {
  color: var(--amber);
  border-color: var(--amber);
}

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

  .main-nav {
    justify-content: flex-start;
  }

  .section-grid,
  .room-strip,
  .voucher-layout {
    grid-template-columns: 1fr;
  }

  .image-band,
  .story-layout,
  .spec-panel,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .room-strip img,
  .band-tile,
  .band-tile.wide {
    min-height: 340px;
  }

  .scenario-slider {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-frame {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-prev {
    justify-self: end;
  }

  .gallery-next {
    justify-self: start;
  }

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

  .map-embed iframe {
  min-height: 360px;
  }

  .lockme-widget iframe {
    min-height: 620px;
  }
}

@media (max-width: 620px) {
  .home-hero {
    background:
      linear-gradient(180deg, rgba(5,5,4,0) 54%, var(--ink) 100%),
      url("graphs/baner_mobile2.png") center top / cover no-repeat;
  }

  .brand img {
    width: 46px;
    height: 36px;
  }

  .main-nav {
    gap: 0.65rem 0.9rem;
  }

  .main-nav a {
    font-size: 0.72rem;
  }

  .hero,
  .subhero {
    min-height: 78vh;
    padding-top: 7rem;
  }

  .subhero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: clamp(4rem, 16vh, 7rem);
  }

  .subhero .kicker {
    margin: 0 0 0.45rem;
  }

  .subhero h1 {
    margin: 0;
    line-height: 0.92;
  }

  .subhero p:not(.kicker) {
    margin: 0.65rem 0 0;
    line-height: 1.45;
  }

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

  .button {
    width: 100%;
  }

  .image-band,
  .story-layout,
  .spec-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    opacity: 0.28;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
