*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f4f1ec;
  --ink: #1d1b19;
  --muted: #6a625a;
  --accent: #c7663b;
  --accent-dark: #9f4a26;
  --surface: #ffffff;
  --surface-alt: #efe8df;
  --line: #ddd1c5;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  padding: 32px 24px;
  background: var(--surface);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav a {
  font-size: 15px;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus {
  color: var(--ink);
}

.sidebar-note {
  font-size: 13px;
  color: var(--muted);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 8vw;
  position: relative;
}

.section--tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section--surface {
  background: var(--surface);
}

.section--alt {
  background: var(--surface-alt);
}

.section--dark {
  background: #1e1a16;
  color: #f8f4ef;
}

.section--photo {
  background: linear-gradient(
      rgba(30, 26, 22, 0.82),
      rgba(30, 26, 22, 0.82)
    ),
    url("https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8f4ef;
}

.section--accent {
  background: #f7e3d7;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
  color: var(--muted);
}

.headline {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.subhead {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn--dark {
  background: #1e1a16;
  color: #f7f2ed;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn--ghost:hover,
.btn--ghost:focus {
  background: var(--accent);
  color: #fff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
}

.hero-media img {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.hero-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--surface);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 220px;
  font-size: 14px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.split > div {
  flex: 1 1 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 14px;
}

.card-title {
  font-weight: 600;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.metric {
  min-width: 140px;
}

.metric strong {
  display: block;
  font-size: 28px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 12px;
}

.quote {
  padding: 24px;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--line);
  font-style: italic;
}

.form-wrap {
  background: var(--surface);
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  font-size: 14px;
  color: var(--muted);
}

.form-grid select,
.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 28px 8vw 40px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: var(--surface);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 13px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack img:last-child {
  transform: translateX(20px);
}

.highlight {
  background: #ffe5c7;
  padding: 2px 6px;
  border-radius: 6px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  font-weight: 700;
  color: var(--accent);
}

.page-title {
  font-size: clamp(28px, 3.2vw, 40px);
  margin-bottom: 10px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-card {
  flex: 1 1 260px;
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    left: 18px;
    right: auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 48px 6vw;
  }

  .hero-card {
    position: static;
    max-width: none;
  }
}
