* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1d1b;
  --muted: #6d665f;
  --accent: #2f6b5e;
  --accent-soft: #e3efe9;
  --cream: #f7f2ec;
  --sand: #efe7dc;
  --rose: #f6e6e9;
  --shadow: 0 20px 45px rgba(31, 29, 27, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffaf6;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: transparent;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.hero {
  padding: 40px 6% 70px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--cream);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
}

.btn.ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.section {
  padding: 70px 6%;
  position: relative;
}

.section.alt {
  background: var(--cream);
}

.section.sand {
  background: var(--sand);
}

.section.rose {
  background: var(--rose);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-card {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.layered {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.layered .layer {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.big-quote {
  font-size: 1.4rem;
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card small {
  color: var(--muted);
}

.service-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5cdc5;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.footer {
  padding: 50px 6%;
  background: #1f1d1b;
  color: #f7f2ec;
}

.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    max-width: 46%;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .layered {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-grid .card {
    flex: 1;
  }

  .footer .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
