@font-face {
  font-family: "InterVar";
  src: local("Inter"), local("InterVariable");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f6f3ef;
  --ink: #1f2328;
  --muted: #5c6470;
  --accent: #0a5d5d;
  --accent-2: #c86d3f;
  --soft: #ffffff;
  --sand: #efe4d6;
  --olive: #c3ccb8;
  --shadow: 0 16px 40px rgba(31, 35, 40, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "InterVar", "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.split > * {
  flex: 1 1 280px;
}

.nav {
  padding: 28px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  padding: 80px 0 90px;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-title {
  font-size: clamp(2.6rem, 3vw + 1.8rem, 4.2rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-card {
  flex: 1 1 320px;
  background: var(--soft);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 20px;
}

.hero-card img {
  border-radius: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn.ghost {
  background: transparent;
  border-color: transparent;
  color: var(--accent);
  padding-left: 0;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(10, 93, 93, 0.18);
}

.section {
  padding: 70px 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.8rem, 2vw + 1.2rem, 2.8rem);
  margin: 0 0 18px;
}

.section-alt {
  background: var(--soft);
}

.section-olive {
  background: var(--olive);
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-card {
  flex: 1 1 260px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.offset-card:nth-child(2) {
  transform: translateY(18px);
  background: var(--sand);
}

.offset-card:nth-child(3) {
  transform: translateY(-4px);
  background: #fef8f2;
}

.story-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.story-panel img {
  border-radius: var(--radius);
}

.floating-note {
  position: absolute;
  right: 6%;
  top: -26px;
  background: var(--accent-2);
  color: #fff;
  padding: 10px 18px;
  border-radius: 18px;
  font-size: 0.9rem;
  transform: rotate(1.5deg);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stat {
  flex: 1 1 180px;
  background: var(--soft);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.testimonial {
  background: var(--soft);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.pricing-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 260px;
  background: var(--soft);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.service-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.service-pick {
  flex: 1 1 180px;
  border: 1px solid #d7d2cb;
  padding: 14px;
  border-radius: 16px;
  cursor: pointer;
  background: #fdfaf7;
}

.service-pick.active {
  border-color: var(--accent);
  background: #e7f2f1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc9c2;
  font: inherit;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 10;
  background: var(--accent-2);
}

.footer {
  padding: 50px 0 70px;
  background: #1f2328;
  color: #fff;
}

.footer a {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  width: min(420px, 92%);
  background: var(--soft);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.page-header {
  padding: 40px 0 30px;
}

.page-header h1 {
  margin-bottom: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--soft);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.policy-content {
  background: var(--soft);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 720px) {
  .nav-links {
    gap: 12px;
    font-size: 0.85rem;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    justify-content: center;
  }

  .floating-note {
    position: static;
    margin-top: 20px;
    transform: none;
  }
}
