* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #102026;
  --muted: #44545c;
  --sand: #f4efe9;
  --sea: #1a6b75;
  --clay: #c4875c;
  --leaf: #4a7d58;
  --sun: #f4c95d;
  --white: #ffffff;
  --shadow: 0 22px 40px rgba(16, 32, 38, 0.15);
}

body {
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, 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 {
  overflow-x: hidden;
}

.site-header {
  padding: 28px 7vw 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
  position: relative;
}

.nav-links a::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--clay);
  position: absolute;
  left: 0;
  bottom: -6px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--sea);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--sea);
  color: var(--sea);
  background: transparent;
}

.btn-ghost {
  background: transparent;
  border-color: var(--clay);
  color: var(--clay);
}

.inline-cta {
  color: var(--sea);
  font-weight: 600;
  border-bottom: 1px solid rgba(26, 107, 117, 0.4);
}

.section {
  padding: 70px 7vw;
  position: relative;
}

.section.alt {
  background: var(--white);
}

.section .section-title {
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 18px;
  max-width: 420px;
}

.hero {
  padding: 70px 7vw 40px;
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  top: 18px;
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .frame {
  background: var(--sea);
  border-radius: 28px;
  padding: 22px;
  transform: rotate(-2deg);
  box-shadow: var(--shadow);
}

.hero-visual img {
  border-radius: 20px;
  background: var(--white);
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(196, 135, 92, 0.18);
  color: var(--clay);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1 1 140px;
  background: var(--sand);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(16, 32, 38, 0.05);
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-panel {
  flex: 1 1 260px;
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  transform: translateY(-20px);
}

.offset-panel:nth-child(2) {
  transform: translateY(0);
  background: var(--sea);
  color: var(--white);
}

.offset-panel:nth-child(3) {
  transform: translateY(12px);
  background: rgba(74, 125, 88, 0.12);
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.split-band.reverse {
  flex-direction: row-reverse;
}

.split-band .text {
  flex: 1 1 280px;
}

.split-band .image-wrap {
  flex: 1 1 260px;
  background: var(--white);
  padding: 20px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.services-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  border-radius: 16px;
  background: var(--sand);
}

.price {
  font-weight: 700;
  color: var(--sea);
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  border-left: 4px solid var(--sun);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--white);
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-panel label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--muted);
}

.form-panel input,
.form-panel textarea,
.form-panel select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(16, 32, 38, 0.1);
  margin-bottom: 14px;
  font-family: inherit;
}

.service-choice {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.service-choice label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(16, 32, 38, 0.08);
  background: rgba(244, 239, 233, 0.7);
}

.service-choice input {
  width: auto;
  margin: 0;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
}

.sticky-cta a {
  background: var(--clay);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.site-footer {
  padding: 50px 7vw 70px;
  background: #0f1c1f;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.site-footer a {
  color: var(--white);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 340px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--leaf);
  color: var(--white);
}

.cookie-actions .reject {
  background: rgba(68, 84, 92, 0.2);
  color: var(--muted);
}

.secondary-hero {
  padding: 80px 7vw 50px;
}

.secondary-hero .hero-layout {
  align-items: flex-start;
}

.contact-card {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy-wrap h2 {
  font-size: 1.3rem;
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .hero-copy {
    top: 0;
  }

  .offset-panel {
    transform: none;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
