:root {
  --ink: #16191e;
  --muted: #62666d;
  --paper: #f1efe9;
  --surface: #ffffff;
  --charcoal: #1d2128;
  --line: #d7d4cd;
  --red: #c93b32;
  --red-dark: #9e2b25;
  --warm: #e9dfd1;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

a:hover {
  color: var(--red);
}

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 11px;
  font-size: 1.28rem;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--charcoal);
  color: #fff;
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand span {
  color: var(--red);
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav a[aria-current="page"] {
  color: #ff766d;
}

.hero {
  padding: 0 0 90px;
  background: var(--charcoal);
  color: #fff;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 530px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 8vw 76px max(24px, calc((100vw - 1200px) / 2));
}

.hero-copy h1 {
  max-width: 620px;
}

.hero-copy .lead {
  color: #cdd0d3;
}

.hero-media,
.hero-media img {
  min-height: 530px;
  height: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button:hover {
  border-color: #e65b51;
  background: #e65b51;
  color: #fff;
}

.button--line {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
}

.button--light {
  border-color: var(--charcoal);
  background: transparent;
  color: var(--charcoal);
}

.button--light:hover {
  background: var(--charcoal);
  color: #fff;
}

.metrics {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: -44px auto 0;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.metric {
  padding: 25px 30px;
  border-right: 1px solid var(--line);
}

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

.metric strong {
  display: block;
  margin-bottom: 3px;
  color: var(--red-dark);
  font-size: 1.12rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.91rem;
}

.section {
  padding: 92px 0;
}

.section--white {
  background: var(--surface);
}

.section--warm {
  background: var(--warm);
}

.section-title {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-title .lead {
  margin-bottom: 0;
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-item {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-number {
  margin-bottom: auto;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-item p {
  color: var(--muted);
  font-size: 0.93rem;
}

.service-item a {
  color: var(--red-dark);
  font-size: 0.87rem;
  font-weight: 800;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.editorial-image {
  height: 350px;
}

.editorial-image img {
  height: 350px;
}

.rule-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.rule-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(22, 25, 30, 0.2);
}

.quote {
  padding: 42px;
  border-left: 7px solid var(--red);
  background: var(--charcoal);
  color: #fff;
}

.quote p {
  margin-bottom: 14px;
  font-size: 1.32rem;
  line-height: 1.5;
}

.quote cite {
  color: #b9bdc2;
  font-size: 0.9rem;
  font-style: normal;
}

.page-head {
  padding: 80px 0 64px;
  background: var(--charcoal);
  color: #fff;
}

.page-head h1 {
  max-width: 880px;
}

.page-head .lead {
  color: #cdd0d3;
}

.page-media {
  height: 370px;
  margin-bottom: 46px;
}

.page-media img {
  height: 370px;
}

.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.content-card {
  padding: 31px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.content-card p:last-child {
  margin-bottom: 0;
}

.price-list {
  border-top: 2px solid var(--charcoal);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 24px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.price-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.price {
  color: var(--red-dark);
  font-weight: 900;
  white-space: nowrap;
}

.note-box {
  padding: 34px;
  background: var(--warm);
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-detail {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-detail strong {
  display: block;
  color: var(--red-dark);
}

.contact-photo,
.contact-photo img {
  height: 315px;
  margin-top: 28px;
}

.form-card {
  padding: 35px;
  background: var(--charcoal);
  color: #fff;
}

.form-card h2 {
  color: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 16px;
  color: #e8e9e9;
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid #6d7279;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 122px;
  resize: vertical;
}

.form-card .button {
  width: 100%;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin-top: 42px;
  font-size: 1.65rem;
}

.site-footer {
  padding: 62px 0 24px;
  background: #101318;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1fr;
  gap: 32px;
  padding-bottom: 42px;
}

.site-footer p,
.site-footer address,
.site-footer li {
  margin: 0;
  color: #abb0b7;
  font-size: 0.9rem;
  font-style: normal;
}

.footer-title {
  margin-bottom: 13px !important;
  color: #fff !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #42474e;
  color: #abb0b7;
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

@media (max-width: 860px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero-shell,
  .section-title,
  .editorial-grid,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 64px 24px 46px;
  }

  .hero-media,
  .hero-media img {
    min-height: 0;
    height: 360px;
  }

  .service-rail {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .container,
  .metrics {
    width: min(100% - 28px, 1200px);
  }

  .section {
    padding: 64px 0;
  }

  .metrics-grid,
  .service-rail,
  .content-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .price-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
