* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1f1d;
  --muted: #585550;
  --soft: #f4f1ec;
  --accent: #8b4a2f;
  --accent-dark: #6f3720;
  --olive: #5a6b5a;
  --sun: #e9d3b4;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffdf9;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 6vw 18px;
  border-bottom: 1px solid #eee2d4;
  background: #fffdf9;
}

.nav-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
}

.nav-cta {
  align-self: flex-start;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw 28px;
}

.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
}

.hero-media .hero-caption {
  padding: 24px;
  max-width: 520px;
}

.hero-title {
  font-size: 32px;
  margin: 0 0 10px;
}

.hero-subtitle {
  margin: 0 0 18px;
  font-size: 16px;
  color: #f9efe3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 42px 6vw;
}

.section.alt {
  background: var(--soft);
}

.section.sun {
  background: var(--sun);
}

.section-title {
  font-size: 24px;
  margin: 0;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.mag-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mag-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mag-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
  color: var(--muted);
}

.form-shell {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(25, 25, 25, 0.08);
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9cfc1;
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.2);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

footer {
  margin-top: auto;
  padding: 32px 6vw 44px;
  background: #1f1f1d;
  color: #f8f3ed;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-links a {
  color: #f8f3ed;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent-dark);
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #fff;
  border: none;
}

.split-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff7ec;
  border-radius: 18px;
  padding: 18px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid #e6d6c2;
  padding-bottom: 16px;
}

.service-row:last-child {
  border-bottom: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #edf1ea;
  color: var(--olive);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.centered {
  text-align: center;
}

@media (min-width: 820px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-row {
    flex-direction: row;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-media {
    flex: 1.2;
    min-height: 420px;
  }

  .hero-content {
    flex: 1;
  }

  .mag-row {
    flex-direction: row;
  }

  .mag-col {
    flex: 1;
  }

  .split-media {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-row {
    flex: 1 1 45%;
  }

  .two-col {
    flex-direction: row;
  }
}
