*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5c5f6b;
  --accent: #1f7a6a;
  --accent-dark: #145346;
  --bg: #f7f6f2;
  --sand: #efe9df;
  --mist: #e5eef1;
  --sun: #f3efe6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.top-nav {
  background: #ffffff;
  border-bottom: 1px solid #ececec;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--muted);
}

.section {
  padding: 72px 24px;
}

.section.alt {
  background: var(--bg);
}

.section.mist {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.split {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy {
  flex: 1;
}

.split .media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.highlight-box {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list strong {
  display: block;
  font-size: 0.95rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.split-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-gallery img {
  border-radius: 18px;
}

.testimonial {
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e6e1d8;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.92rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  font: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
  font-size: 0.9rem;
}

.footer {
  background: #151616;
  color: #f1f1f1;
  padding: 40px 24px;
}

.footer a {
  color: #f1f1f1;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 16px;
  z-index: 30;
  display: none;
}

.cookie-banner p {
  margin: 0 0 12px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.accept {
  background: var(--accent);
  color: #fff;
}

.page-header {
  padding: 60px 24px 40px;
  background: var(--sun);
}

.page-header .split {
  gap: 20px;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.simple-section {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .pricing {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .split-gallery {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }
}
