:root {
  --bg: #0b1115;
  --ink: #f5f4f0;
  --muted: #c8d0cf;
  --line: rgba(232, 235, 231, 0.19);
  --accent: #d5a25a;
  --accent-deep: #b97e36;
  --band: #f3f1eb;
  --band-ink: #152127;
  --band-muted: #58666a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 280px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 48px));
  height: 78px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 27px;
  font-weight: 650;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.header-contact:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, 83vh);
  padding-top: 82px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 16, 0.96) 0%, rgba(8, 13, 16, 0.78) 35%, rgba(8, 13, 16, 0.18) 70%),
    linear-gradient(0deg, rgba(8, 13, 16, 0.3), rgba(8, 13, 16, 0.3)),
    url("assets/ewo-tr-hero.jpg") center right / cover no-repeat;
}

.hero-inner {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 66px;
}

.availability {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #d9dbd6;
  font-size: 15px;
  font-weight: 500;
}

.availability span {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

h1 {
  max-width: 100%;
  margin: 0;
  font-size: 136px;
  line-height: 0.96;
  font-weight: 690;
}

.hero-copy {
  max-width: 445px;
  margin: 25px 0 39px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 29px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--accent);
  color: #171512;
}

.button-primary:hover {
  background: #e0ae68;
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
}

.highlights {
  background: #162329;
  border-top: 1px solid rgba(232, 235, 231, 0.12);
}

.highlights-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0;
}

.highlight {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 78px;
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.highlight:first-child {
  padding-left: 0;
  border-left: 0;
}

.highlight-value {
  color: var(--ink);
  font-size: 31px;
  line-height: 1;
  font-weight: 640;
}

.highlight-label {
  color: var(--muted);
  font-size: 15px;
}

.offer {
  background: var(--band);
  color: var(--band-ink);
}

.offer-inner {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(300px, 0.85fr);
  gap: 86px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 96px;
}

.section-kicker {
  margin: 0 0 15px;
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 650;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 22px;
  color: var(--band-ink);
  font-size: 51px;
  line-height: 1.12;
  font-weight: 650;
}

.offer-copy > p:last-child {
  max-width: 535px;
  margin: 0;
  color: var(--band-muted);
  font-size: 18px;
  line-height: 1.65;
}

.offer-copy strong {
  color: var(--band-ink);
}

.contact {
  align-self: center;
  padding-left: 42px;
  border-left: 1px solid #d4d0c7;
}

.contact-label {
  margin: 0 0 12px;
  color: var(--band-muted);
  font-size: 14px;
  font-weight: 600;
}

.email {
  display: block;
  margin-bottom: 29px;
  color: var(--band-ink);
  font-size: 23px;
  word-break: break-word;
}

.contact-button {
  width: fit-content;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 27px 0;
  color: #b8c1c1;
  font-size: 14px;
}

@media (max-width: 720px) {
  .site-header,
  .hero-inner,
  .highlights-inner,
  .offer-inner,
  .site-footer {
    width: min(100% - 36px, 1200px);
  }

  .site-header {
    height: 68px;
  }

  .brand {
    font-size: 24px;
  }

  .header-contact {
    height: 42px;
    padding: 0 15px;
  }

  .hero {
    min-height: 76vh;
    align-items: end;
    padding-top: 76px;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(8, 13, 16, 0.97) 12%, rgba(8, 13, 16, 0.65) 60%, rgba(8, 13, 16, 0.36) 100%),
      url("assets/ewo-tr-hero.jpg") 72% center / cover no-repeat;
  }

  .hero-inner {
    padding: 100px 0 43px;
  }

  h1 {
    font-size: 64px;
  }

  .hero-copy {
    margin: 20px 0 29px;
    font-size: 17px;
  }

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

  .button-primary,
  .button-secondary {
    min-height: 50px;
    padding: 0 13px;
  }

  .highlights-inner {
    grid-template-columns: 1fr;
    gap: 21px;
    padding: 30px 0;
  }

  .highlight,
  .highlight:first-child {
    min-height: 0;
    padding: 0 0 0 17px;
    border-left: 1px solid var(--line);
  }

  .highlight-value {
    font-size: 27px;
  }

  .offer-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 57px 0 63px;
  }

  .offer-copy > p:last-child {
    font-size: 16px;
  }

  h2 {
    font-size: 38px;
  }

  .email {
    font-size: 18px;
  }

  .contact {
    padding: 29px 0 0;
    border-top: 1px solid #d4d0c7;
    border-left: 0;
  }

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

@media (min-width: 721px) and (max-width: 980px) {
  h1 {
    font-size: 104px;
  }

  h2 {
    font-size: 43px;
  }
}
