* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1c1e;
  --muted: #5a5f66;
  --surface: #f7f4ef;
  --accent: #0f6b5f;
  --accent-soft: #e2f2ef;
  --sand: #efe7dc;
  --shadow: rgba(17, 24, 39, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 8vw 10px;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.75rem;
  padding: 6px 10px;
  background: var(--sand);
  border-radius: 999px;
  color: #3d3b37;
}

.hero {
  display: flex;
  gap: 40px;
  padding: 30px 8vw 60px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.15;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.hero-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  background-color: #dfe5e1;
  height: 100%;
  min-height: 360px;
}

.offset-card {
  align-self: flex-end;
  margin-top: -40px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 18px 40px var(--shadow);
  width: 80%;
}

.offset-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 60px 8vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section-sand {
  background: var(--surface);
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-image {
  flex: 1;
  min-width: 260px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #e4e0da;
}

.metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric-card {
  flex: 1;
  min-width: 180px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 16px 36px var(--shadow);
}

.metric-card h3 {
  font-size: 1.4rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card img {
  height: 180px;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  width: fit-content;
}

.form-panel {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 36px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d6d6;
  font-size: 1rem;
  font-family: inherit;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 32px var(--shadow);
}

.cta-strip button {
  margin-left: auto;
}

.testimonials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 14px 28px var(--shadow);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px var(--shadow);
}

.site-footer {
  padding: 40px 8vw 60px;
  background: #111512;
  color: #f3f3f3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.9rem;
  color: #d6d6d6;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 26px var(--shadow);
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
}

.simple-page {
  padding: 40px 8vw 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.simple-page h1 {
  font-size: 2rem;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-panel {
  background: var(--surface);
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 960px) {
  .hero {
    flex-direction: column;
  }

  .hero-media {
    width: 100%;
  }

  .offset-card {
    width: 100%;
    margin-top: 0;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}
