* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f0;
  --ink: #1e1f23;
  --muted: #5a5f66;
  --accent: #c43b2f;
  --accent-dark: #8f2a22;
  --surface: #ffffff;
  --sand: #efe7dc;
  --steel: #1f2a37;
  --shadow: rgba(22, 26, 29, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--surface);
  box-shadow: 0 12px 30px var(--shadow);
  padding: 18px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand__tagline {
  font-size: 14px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__toggle {
  display: none;
  border: 1px solid var(--steel);
  background: transparent;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 999px;
  cursor: pointer;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  font-size: 14px;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  padding: 4px 10px;
  border-radius: 999px;
}

.hero {
  background: var(--sand);
  padding: 48px 0 60px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.hero__content {
  flex: 1;
}

.hero__content h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.hero__content p {
  font-size: 18px;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--ghost {
  border-color: var(--steel);
  color: var(--steel);
  background: transparent;
}

.btn:hover,
.nav__list a:hover,
.link-inline:hover {
  color: var(--accent);
}

.hero__media {
  flex: 1;
  position: relative;
}

.img-frame {
  background: #dcd5c8;
  border-radius: 18px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-frame--hero {
  height: 420px;
}

.img-frame--tall {
  height: 360px;
}

.img-frame--card {
  height: 160px;
}

.stat-card {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--surface);
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 14px 28px var(--shadow);
}

.stat-card span {
  display: block;
  font-weight: 700;
}

.stat-card small {
  color: var(--muted);
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--surface);
}

.section--dark {
  background: var(--steel);
  color: #fff;
}

.section--image {
  color: #fff;
  background-image: linear-gradient(rgba(15, 22, 32, 0.7), rgba(15, 22, 32, 0.7)), url("https://images.pexels.com/photos/9694390/pexels-photo-9694390.jpeg");
  background-size: cover;
  background-position: center;
}

.section h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-top: 0;
}

.section p {
  color: inherit;
  opacity: 0.9;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 28px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.form-section {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px var(--shadow);
}

.form-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d4db;
  font-size: 15px;
  font-family: inherit;
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.service-option {
  border: 1px solid #d0d4db;
  padding: 12px 16px;
  border-radius: 14px;
  cursor: pointer;
  flex: 1 1 220px;
  background: var(--bg);
}

.service-option input {
  margin-right: 8px;
}

.form-footer {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.link-inline {
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  background: var(--steel);
  color: #fff;
  padding: 36px 0;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #fff;
}

.disclaimer {
  font-size: 13px;
  color: #d6d7db;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 20;
}

.sticky-cta a {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(196, 59, 47, 0.35);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0f1620;
  color: #fff;
  padding: 18px 0;
  z-index: 30;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner button.primary {
  background: #fff;
  color: #0f1620;
}

.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .img-frame--hero {
    height: 300px;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__list {
    position: absolute;
    top: 74px;
    right: 4%;
    background: var(--surface);
    flex-direction: column;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 14px 30px var(--shadow);
    display: none;
  }

  .nav__list.is-open {
    display: flex;
  }
}
