:root {
  --ink: #202427;
  --muted: #66717a;
  --line: #d8dde0;
  --paper: #f7f8f6;
  --white: #fff;
  --blue: #234f68;
  --blue-dark: #183644;
  --red: #a5453f;
  --gold: #c49a45;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
}
.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  background: var(--blue-dark);
  color: #fff;
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}
header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 24px;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.brand span {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 13px;
}
nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
h1 {
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}
h2 {
  margin: 0 0 20px;
  font-size: 31px;
  line-height: 1.18;
}
h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
p {
  margin: 0 0 14px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.lead {
  font-size: 19px;
  color: #48545c;
  max-width: 760px;
}
.hero {
  padding: 42px 0 32px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.hero img,
.photo,
.side-photo {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 37, 48, 0.12);
}
.hero img {
  height: 430px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn {
  display: inline-block;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}
.primary {
  background: var(--blue);
  color: #fff;
}
.secondary {
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.section {
  padding: 44px 0;
}
.light {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card,
.box,
.price-row,
details,
.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}
.card p,
.price-row p,
.small {
  color: var(--muted);
}
.split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}
.photo-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
}
.photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.photo-strip img:first-child {
  height: 454px;
  grid-row: span 2;
}
.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.process li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
.price-list {
  display: grid;
  gap: 12px;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 14px;
  align-items: start;
}
.price {
  color: var(--red);
  font-weight: 800;
}
.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
summary {
  cursor: pointer;
  font-weight: 800;
}
.page-head {
  padding: 42px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.content {
  max-width: 860px;
}
.content p,
.content li {
  font-size: 18px;
}
.content ul {
  padding-left: 22px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.data-list {
  display: grid;
  gap: 10px;
}
.data-list div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.data-list strong {
  display: block;
}
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  font-weight: 800;
}
input,
textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px;
  font: inherit;
  background: #fff;
}
textarea,
.full {
  grid-column: 1 / -1;
}
button {
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}
.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}
footer {
  background: var(--blue-dark);
  color: #fff;
  margin-top: 36px;
}
.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 30px 0;
}
.footer p {
  color: #d9e3e8;
  margin: 4px 0;
}
.footer a {
  color: #fff;
  display: inline-block;
  margin: 0 12px 8px 0;
}

@media (max-width: 880px) {
  .nav,
  .hero-grid,
  .split,
  .contact-grid,
  .footer {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 27px;
  }
  .cards,
  .photo-strip,
  .faq,
  form {
    grid-template-columns: 1fr;
  }
  .hero img,
  .photo-strip img,
  .photo-strip img:first-child {
    height: auto;
  }
  .price-row {
    grid-template-columns: 1fr;
  }
}
