:root {
  --bg: #071a15;
  --bg-soft: #0d2b23;
  --panel: rgba(10, 33, 28, 0.72);
  --panel-strong: rgba(10, 33, 28, 0.88);
  --line: rgba(222, 189, 109, 0.24);
  --line-strong: rgba(222, 189, 109, 0.4);
  --text: #f6efdf;
  --muted: #cdbf9d;
  --accent: #debd6d;
  --accent-deep: #b98a2d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 26px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Tahoma, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(17, 78, 60, 0.35), transparent 34%),
    linear-gradient(180deg, #05130f 0%, #081d17 48%, #05130f 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 56px 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-backdrop {
  position: absolute;
  inset: 0;

  background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(5, 19, 15, 0.82) 100%),
        url("../img/hero-background-luxury.png") center center / cover no-repeat;
  filter: saturate(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #071a15 92%);
}

.hero-grid,
.selection-grid,
.contact-strip {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 44px;
}

.hero-grid-single {
  grid-template-columns: 1fr;
}

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

.hero-grid-single .hero-copy {
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: clamp(140px, 20vw, 240px);
  height: auto;
  margin: 0 auto 22px;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.35));
}

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

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.18;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.35;
}

.lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 34ch;
}

.selection {
  background:
    linear-gradient(180deg, rgba(4, 16, 12, 0) 0%, rgba(10, 33, 27, 0.44) 100%);
}

.selection-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: center;
}

.section-label {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.9rem;
}

.section-text {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.95;
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.feature-item {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(222, 189, 109, 0.14);
}

.feature-item p {
  color: var(--muted);
  line-height: 1.9;
}

.selection-visual {
  min-height: 100%;
}

.selection-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(222, 189, 109, 0.16);
  box-shadow: var(--shadow);
}

.contact-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 34px 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(16, 62, 49, 0.76), rgba(9, 28, 23, 0.92));
  border: 1px solid rgba(222, 189, 109, 0.22);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.contact-copy p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 42ch;
  margin-inline: auto;
}

.contact-links {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.contact-links a {
  color: var(--text);
  font-size: 1.05rem;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer {
  padding: 22px 0 calc(env(safe-area-inset-bottom, 0px) + 28px);
}

.footer-row {
  display: flex;
  justify-content: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-row small {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .selection-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 32px;
  }

  .hero-copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 24px, 100vw - 24px);
    --radius: 22px;
  }

  .section {
    padding: 40px 0;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 4rem);
  }

  h2 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .lead,
  .feature-item p,
  .section-text,
  .contact-copy p,
  .contact-links a {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .feature-item {
    padding: 14px 0;
  }

  .contact-strip {
    display: grid;
    grid-template-columns: 1fr;
    padding: 26px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
