:root {
  --text: #f7efe2;
  --muted: #d8c7b0;
  --gold: #ffb447;
  --gold-deep: #cb6c14;
  --line: rgba(255, 180, 71, 0.18);
  --panel: rgba(25, 18, 12, 0.82);
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 180, 71, 0.16), transparent 20%),
    linear-gradient(180deg, #100c09 0%, #0b0907 100%);
}

.page {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 44px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 10, 7, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1b1009;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.14em;
  font-size: 1.3rem;
}

.brand-copy small {
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.back-link {
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

main {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.hero,
.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.content {
  display: grid;
  gap: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

p,
li,
span {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  font-size: 1.05rem;
}

.hero-card,
.content-card,
.zone-link,
.contact-strip {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.hero-card {
  overflow: hidden;
  min-height: 100%;
}

.hero-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.content-card {
  padding: 26px;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

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

.faq-item {
  padding-top: 2px;
}

.faq-item p {
  margin: 10px 0 0;
}

.zones-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.zone-link {
  display: grid;
  gap: 6px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.zone-link strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--text);
}

.cta-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button {
  color: #1b1009;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 180, 71, 0.16);
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
}

.contact-strip p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.contact-actions a {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 180, 71, 0.16);
}

@media (max-width: 980px) {
  .hero,
  .two-columns,
  .zones-links {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    min-height: 320px;
  }

  .contact-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(calc(100% - 24px), var(--max-width));
    padding-top: 12px;
  }

  .topbar {
    padding: 14px 16px;
    border-radius: 28px;
  }

  .brand-copy strong {
    font-size: 1.15rem;
  }

  .back-link {
    font-size: 0.92rem;
  }

  main {
    gap: 18px;
    margin-top: 18px;
  }

  .content-card {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-card,
  .contact-strip,
  .zone-link {
    border-radius: 22px;
  }

  .hero-card img {
    min-height: 260px;
  }

  .cta-row,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .contact-actions a {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .page {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }

  .back-link {
    width: 100%;
  }

  .content-card {
    padding: 18px;
  }

  .contact-strip {
    padding: 18px;
  }
}
