:root {
  --ink: #15161a;
  --muted: #646b75;
  --line: #e8e4dc;
  --paper: #fffdf9;
  --soft: #f5f3ee;
  --gold: #c49a32;
  --teal: #0f766e;
  --coral: #b4533a;
  --white: #ffffff;
  --shadow: 0 20px 42px rgba(21, 22, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.93);
  border-bottom: 1px solid rgba(21, 22, 26, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  letter-spacing: 0;
}

.brand__text {
  max-width: 180px;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.compliance-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
}

.compliance-bar strong {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  min-width: 40px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  color: var(--gold);
}

.compliance-bar span {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.78);
}

.compliance-bar a {
  flex: 0 0 auto;
  color: var(--white);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(72px, 10vw, 120px) clamp(18px, 4vw, 56px);
  overflow: hidden;
  color: var(--white);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(12, 13, 16, 0.88), rgba(12, 13, 16, 0.62) 42%, rgba(12, 13, 16, 0.28)),
    linear-gradient(0deg, rgba(12, 13, 16, 0.42), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.note-band h2,
.contact h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 82px);
}

.hero__lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  color: var(--white);
  background: var(--gold);
}

.button--primary:hover {
  background: #a87d1e;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.09);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button--small {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
}

.button--text {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button--compact {
  min-height: 40px;
  padding: 8px 16px;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-strip div {
  padding: 24px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong {
  display: block;
  color: var(--teal);
  font-size: 30px;
  line-height: 1;
}

.quick-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.intro,
.hotels-section,
.faq,
.contact {
  padding: clamp(70px, 9vw, 116px) clamp(18px, 4vw, 56px);
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.note-band h2,
.contact h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.collection-card,
.hotel-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.collection-card img {
  height: 210px;
  object-fit: cover;
}

.collection-card div {
  padding: 22px;
}

.collection-card span,
.hotel-card__meta {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.collection-card h3,
.hotel-card h3 {
  margin: 8px 0 10px;
  line-height: 1.15;
}

.collection-card p,
.hotel-card p,
.hotel-card li,
.faq p,
.contact p,
.site-footer p {
  color: var(--muted);
}

.hotels-section {
  background: var(--soft);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 15px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.filter-button.is-active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

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

.hotel-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.hotel-card.is-hidden {
  display: none;
}

.hotel-card > img {
  height: 240px;
  object-fit: cover;
}

.hotel-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.hotel-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.hotel-card h3 {
  font-size: 24px;
}

.hotel-card p {
  margin: 0 0 16px;
}

.hotel-card ul {
  margin: 0 0 22px;
  padding-left: 18px;
}

.hotel-card li {
  margin-bottom: 7px;
}

.hotel-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hotel-card__footer strong {
  font-size: 15px;
}

.hotel-card--accent {
  border-color: rgba(196, 154, 50, 0.7);
}

.age-note {
  padding: 12px;
  border: 1px solid rgba(196, 154, 50, 0.45);
  border-radius: 8px;
  background: rgba(196, 154, 50, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.note-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: clamp(54px, 8vw, 88px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--ink);
}

.note-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.note-band__link {
  margin-top: 20px;
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
}

details {
  border-top: 1px solid var(--line);
  background: var(--white);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 22px 0;
  font-size: 19px;
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: -6px 0 22px;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  background: var(--white);
}

address {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-style: normal;
}

address a,
address span,
.department-links a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.department-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.department-links a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--teal);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 44px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: #0d0e11;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.page-hero {
  padding: clamp(76px, 10vw, 122px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(21, 22, 26, 0.96), rgba(21, 22, 26, 0.76)),
    url("../img/hero-img.webp") center/cover;
}

.page-hero__content {
  width: min(860px, 100%);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
}

.content-section {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.content-section--soft {
  background: var(--soft);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.content-copy {
  max-width: 920px;
}

.content-copy h2,
.content-copy h3 {
  margin: 0 0 14px;
  line-height: 1.18;
}

.content-copy h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.content-copy h3 {
  margin-top: 28px;
  font-size: 24px;
}

.content-copy p,
.content-copy li {
  color: var(--muted);
}

.content-copy p {
  margin: 0 0 16px;
}

.content-copy ul,
.content-copy ol {
  margin: 0 0 22px;
  padding-left: 22px;
}

.content-copy li {
  margin-bottom: 10px;
}

.info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-card h3 {
  margin-top: 0;
}

.info-card--dark {
  color: var(--white);
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.14);
}

.info-card--dark p,
.info-card--dark li {
  color: rgba(255, 255, 255, 0.76);
}

.info-card--warning {
  border-color: rgba(180, 83, 58, 0.35);
  background: rgba(180, 83, 58, 0.08);
}

.policy-list {
  display: grid;
  gap: 16px;
}

.policy-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.policy-list h3 {
  margin-top: 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.responsible-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.responsible-strip div {
  padding: 20px;
  border: 1px solid rgba(196, 154, 50, 0.35);
  border-radius: 8px;
  background: rgba(196, 154, 50, 0.08);
}

.responsible-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.source-links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-banner div {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

@media (max-width: 1120px) {
  .collection-grid,
  .hotel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand__text {
    max-width: 150px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 67px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    font-size: 18px;
  }

  .compliance-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero {
    min-height: 82svh;
    padding-top: 84px;
    padding-bottom: 72px;
  }

  .hero__overlay {
    background: linear-gradient(0deg, rgba(12, 13, 16, 0.82), rgba(12, 13, 16, 0.56));
  }

  .quick-strip,
  .collection-grid,
  .hotel-grid,
  .note-band,
  .contact,
  .site-footer,
  .content-grid,
  .contact-page-grid,
  .responsible-strip {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip div:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .section-heading--left {
    text-align: left;
  }

  .hotel-card > img,
  .collection-card img {
    height: 220px;
  }

  .hotel-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hotel-card__footer .button {
    width: 100%;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .filter-button {
    width: 100%;
  }
}
