* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1f;
  --muted: #5d5f6a;
  --accent: #e04e2f;
  --accent-dark: #b53c24;
  --paper: #f7f5f2;
  --night: #121216;
  --line: #ded9d2;
  --soft: #f0ede8;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw;
  position: relative;
  z-index: 3;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.compact {
  padding: 45px 8vw;
}

.section.dark {
  background: var(--night);
  color: #f5f3ef;
}

.section.soft {
  background: var(--soft);
}

.section.border {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero {
  background: linear-gradient(120deg, rgba(18, 18, 22, 0.86), rgba(18, 18, 22, 0.35)),
    url("https://images.unsplash.com/photo-1511379938547-c1f69419868d?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: #f5f3ef;
  min-height: 70vh;
  justify-content: flex-end;
  position: relative;
}

.hero h1 {
  font-size: clamp(34px, 4vw, 56px);
  margin: 0;
}

.hero p {
  max-width: 560px;
  font-size: 18px;
  color: #e3e1db;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.outline {
  background: transparent;
  color: var(--accent);
}

.btn.light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.inline-link {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.story-flow {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row > div {
  flex: 1;
}

.panel {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(18, 18, 22, 0.08);
}

.panel.highlight {
  border-left: 4px solid var(--accent);
}

.tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.media-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.media-card img {
  height: 200px;
  object-fit: cover;
}

.media-card .content {
  padding: 22px;
}

.callout {
  background: url("https://images.unsplash.com/photo-1520523839897-bd0b52f945a9?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
  color: #fefcf8;
  position: relative;
}

.callout::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 22, 0.62);
}

.callout .inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.metric span {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ece7df;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #ece7df;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card strong {
  font-size: 20px;
}

.price {
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(18, 18, 22, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9d3cc;
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 5;
  box-shadow: 0 10px 20px rgba(18, 18, 22, 0.2);
}

.footer {
  padding: 36px 8vw;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.page-hero {
  padding: 90px 8vw 50px;
  background: var(--night);
  color: #f8f6f1;
}

.simple-section {
  padding: 50px 8vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(18, 18, 22, 0.2);
  z-index: 8;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .ghost {
  background: transparent;
  color: var(--accent);
}

@media (min-width: 900px) {
  .split-row,
  .media-row,
  .two-col {
    flex-direction: row;
  }

  .price-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1;
    min-width: 220px;
  }

  .quote-list {
    flex-direction: row;
  }

  .quote {
    flex: 1;
  }
}
