:root {
  --ink: #17202a;
  --muted: #5c6670;
  --line: #d9e0e7;
  --brand: #d93025;
  --brand-dark: #a61f18;
  --accent: #0f766e;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --warm: #fff7ed;
  --shadow: 0 16px 48px rgba(23, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}

.topbar-inner,
.nav,
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand strong {
  color: var(--brand);
  font-size: 22px;
  line-height: 1.2;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
}

.menu a {
  text-decoration: none;
  color: var(--ink);
}

.menu a:hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.button:hover {
  background: var(--brand-dark);
}

.button.secondary {
  background: #fff;
  color: var(--brand);
  border-color: var(--brand);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 13, 18, 0.86), rgba(8, 13, 18, 0.45) 52%, rgba(8, 13, 18, 0.16));
  z-index: -1;
}

.hero-content {
  width: min(760px, calc(100% - 32px));
  margin-left: max(16px, calc((100vw - 1120px) / 2));
  padding: 88px 0 118px;
}

.eyebrow {
  color: #ffe1dd;
  font-weight: 700;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  line-height: 1.28;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(34px, 6vw, 58px);
  max-width: 720px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 21px;
}

p {
  margin: 0 0 16px;
}

.lead {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.section {
  padding: 72px 0;
}

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

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

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

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(23, 32, 42, 0.04);
}

.card strong {
  color: var(--brand);
}

.list {
  padding-left: 22px;
  margin: 0;
}

.list li {
  margin: 8px 0;
}

.service-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.notice {
  border-left: 4px solid var(--accent);
  background: #ecfdf5;
  padding: 18px 20px;
  border-radius: 8px;
  color: #064e3b;
}

.placeholder {
  display: inline-block;
  background: #fff3cd;
  border: 1px solid #f6d365;
  color: #6b4e00;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
}

.footer {
  background: var(--ink);
  color: #e8edf2;
  padding: 44px 0;
}

.footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

.footer .small {
  color: #b8c0c8;
}

@media (max-width: 840px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .menu {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 64px 0 96px;
  }

  .grid,
  .grid.two,
  .service-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
