:root {
  --brand: #5ab4c8;
  --brand-dark: #268ea6;
  --ink: #101214;
  --muted: #5f666c;
  --line: #dfe5e7;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --shadow: 0 18px 45px rgba(10, 18, 22, 0.16);
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  height: 82px;
  padding: 0 clamp(22px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 18, 20, 0.08);
}

.brand {
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.22em;
}

.brand-main {
  font-size: clamp(25px, 2.8vw, 36px);
  font-weight: 800;
}

.brand-sub {
  margin-top: 6px;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.header-cta,
.primary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  padding: 0 26px;
  border: 1px solid var(--brand);
  color: var(--brand-dark);
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 650px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: center 45%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 33%, rgba(255, 255, 255, 0.18) 62%, rgba(255, 255, 255, 0.02) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 56px));
  min-height: 570px;
  margin: 0 auto;
  padding: 68px 0 120px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 390px);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
  font-weight: 800;
}

.hero-text {
  max-width: 520px;
  margin: 26px 0 0;
  color: #2f3336;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.lead-card {
  width: 100%;
  margin-top: 2px;
  padding: 30px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.lead-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.lead-card p {
  margin: 10px 0 22px;
  color: var(--muted);
  line-height: 1.5;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
}

.field span,
.privacy {
  font-size: 13px;
  color: #353a3e;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd8dc;
  border-radius: 3px;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

.field input:focus,
.field select:focus,
.privacy input:focus,
.header-cta:focus,
.primary-button:focus {
  outline: 3px solid rgba(90, 180, 200, 0.32);
  outline-offset: 2px;
}

.privacy {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin: 16px 0 20px;
  line-height: 1.45;
}

.privacy a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.primary-button {
  width: 100%;
  border: 0;
  padding: 0 24px;
  color: var(--paper);
  background: var(--brand);
  cursor: pointer;
  font: inherit;
  transition: background 0.18s ease, transform 0.18s ease;
}

.primary-button:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.primary-button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-note,
.form-status {
  text-align: center;
  font-size: 13px;
}

.form-status {
  min-height: 20px;
}

.form-status.is-error {
  color: #9a2b2b;
}

.form-status.is-success {
  color: #1f6d3d;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.fact-row {
  position: relative;
  z-index: 3;
  width: min(980px, calc(100% - 40px));
  margin: -84px auto 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.fact-chip {
  min-height: 64px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(20, 29, 33, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-weight: 700;
  text-align: center;
}

.fact-chip svg,
.benefit svg {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact-chip svg {
  color: var(--ink);
}

.benefits-section,
.gallery-section,
.final-cta {
  padding: 56px 0;
}

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

.benefits-section h2 {
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(30px, 3vw, 40px);
}

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

.benefit {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 4px 26px;
  border-right: 1px solid var(--line);
}

.benefit:last-child {
  border-right: 0;
}

.benefit svg {
  width: 48px;
  height: 48px;
  color: var(--brand);
}

.benefit h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.gallery-section {
  padding-top: 24px;
}

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

.gallery-item {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 3px;
  background: var(--soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta {
  padding-top: 28px;
}

.final-inner {
  width: min(var(--max), calc(100% - 56px));
  min-height: 210px;
  margin: 0 auto;
  padding: 44px 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 30px;
  align-items: center;
}

.final-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3vw, 40px);
}

.final-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.final-button {
  min-height: 56px;
}

.site-footer {
  padding: 26px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.site-footer a {
  color: var(--brand-dark);
  text-decoration: none;
}

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

  .hero-shade {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.62) 44%, rgba(255, 255, 255, 0.18) 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 48px 0 112px;
  }

  .lead-card {
    max-width: 520px;
  }

  .fact-row,
  .benefit-grid,
  .gallery-grid,
  .final-inner {
    grid-template-columns: 1fr;
  }

  .fact-row {
    margin-top: -72px;
    gap: 12px;
  }

  .benefit {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 26px;
  }

  .benefit:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero-media {
    background-position: center top;
  }

  .hero-inner,
  .section-inner,
  .final-inner {
    width: min(100% - 32px, var(--max));
  }

  .hero-inner {
    padding-top: 38px;
    gap: 30px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .lead-card {
    padding: 22px;
  }

  .fact-row {
    width: min(100% - 32px, 430px);
  }

  .fact-chip {
    justify-content: flex-start;
  }

  .benefits-section,
  .gallery-section,
  .final-cta {
    padding: 42px 0;
  }

  .final-inner {
    padding: 30px 22px;
  }
}
