* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1c1a;
  --mute: #6a635b;
  --sand: #f6f2ec;
  --stone: #efe8de;
  --olive: #3f4a3c;
  --rose: #b85a4a;
  --sun: #f2c66d;
  --night: #11110f;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: var(--white);
  border-bottom: 1px solid #e5ddd0;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-brand span {
  font-size: 0.85rem;
  color: var(--mute);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--stone);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 60px 6vw 30px;
  background: linear-gradient(120deg, #f8efe4, #f1e3d2);
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(63, 74, 60, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid #e1d7c9;
}

.hero-media {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.hero-media img {
  border-radius: 20px;
  flex: 1;
  height: 260px;
  object-fit: cover;
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.split {
  flex-direction: row;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.section.alt {
  background: var(--white);
}

.section.narrow {
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--rose);
  font-weight: 700;
}

.panel {
  background: var(--white);
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(29, 28, 26, 0.08);
}

.panel.dark {
  background: var(--night);
  color: var(--white);
}

.panel img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.flow-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flow-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.flow-row .panel {
  flex: 1;
  min-width: 240px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e6ddd2;
}

.service-item span {
  font-weight: 600;
}

.price {
  font-size: 1.1rem;
  color: var(--olive);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dcd2c6;
  font-size: 1rem;
  font-family: inherit;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  background: var(--olive);
  color: var(--white);
  padding: 22px 6vw;
}

.cta-strip a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.footer {
  margin-top: auto;
  background: var(--night);
  color: #c9c1b6;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--rose);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(184, 90, 74, 0.35);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(29, 28, 26, 0.2);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.hero-note {
  color: var(--mute);
  max-width: 520px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  margin-left: 18px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sun);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-card img {
  border-radius: 16px;
  height: 200px;
  object-fit: cover;
}

.dual {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.dual > div {
  flex: 1;
  min-width: 260px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-top {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }
}
