* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1d1f;
  --muted: #5a5a5f;
  --light: #f6f4f2;
  --accent: #8a3f2c;
  --accent-dark: #6f2f21;
  --sand: #efe7de;
  --sage: #d8e0db;
  --shadow: 0 18px 40px rgba(25, 21, 18, 0.12);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 18px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
  color: var(--ink);
}

.section {
  padding: 64px 6vw;
}

.section-tight {
  padding: 44px 6vw;
}

.section-muted {
  background: var(--light);
}

.section-sand {
  background: var(--sand);
}

.section-sage {
  background: var(--sage);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  min-width: 0;
}

.split-media {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 12px 0 16px;
}

h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.dark {
  background: var(--ink);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 20px 0;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.price-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  color: var(--muted);
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.form-wrap {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d2d2;
  font-size: 1rem;
  font-family: inherit;
}

footer {
  padding: 36px 6vw 50px;
  background: #111;
  color: #f2f2f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  margin-top: 14px;
  color: #c7c7c7;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #1b1b1f;
  color: #fff;
  padding: 16px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 15;
}

.hero-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow);
}

.quote {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-row img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.callout {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.muted {
  color: var(--muted);
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 860px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split,
  .split.reverse {
    flex-direction: row;
  }

  h1 {
    font-size: 3.1rem;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .gallery-row {
    flex-direction: row;
  }

  .metrics {
    flex-direction: row;
  }
}
