* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1d1f;
  --muted: #5a6066;
  --paper: #f7f3ee;
  --fog: #eef1f4;
  --sage: #cbd9d2;
  --clay: #d8c8b2;
  --sky: #c6d7ea;
  --accent: #2f6b5b;
  --accent-dark: #234f44;
  --line: #d9dde2;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.top-nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.top-nav .nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.hero {
  background: var(--fog);
  padding: 56px 0 72px;
}

.hero .hero-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.primary-btn,
.secondary-btn,
.inline-btn {
  border: none;
  cursor: pointer;
  padding: 12px 22px;
  font-size: 1rem;
  border-radius: 28px;
  background: var(--accent);
  color: var(--white);
}

.secondary-btn {
  background: var(--ink);
}

.inline-btn {
  padding: 0;
  background: transparent;
  color: var(--accent-dark);
  text-decoration: underline;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  background: var(--sage);
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: auto;
}

.section {
  padding: 56px 0;
  background: var(--white);
}

.section.alt {
  background: var(--fog);
}

.section.sand {
  background: var(--clay);
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-split .text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-split h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.section-split p {
  margin: 0;
  color: var(--muted);
}

.callout-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-card img {
  width: 100%;
  height: 190px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  color: var(--muted);
}

.form-section {
  background: var(--sky);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 18px;
  background: var(--white);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  background: var(--ink);
  color: var(--white);
  padding: 28px 0;
}

.footer .footer-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: var(--white);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  background: var(--accent-dark);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 16px 0;
  z-index: 12;
}

.cookie-banner .banner-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.page-title {
  padding: 48px 0 24px;
}

.page-title h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

@media (min-width: 860px) {
  .hero .hero-layout {
    flex-direction: row;
    align-items: center;
  }

  .section-split {
    flex-direction: row;
    align-items: center;
  }

  .section-split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .hero-media {
    flex: 1;
  }

  .hero-text {
    flex: 1;
  }

  .cookie-banner .banner-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer .footer-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
