* {
  box-sizing: border-box;
}

:root {
  --ink: #172028;
  --muted: #5b6a72;
  --mist: #f3f5f4;
  --leaf: #2f6b4f;
  --sun: #f3c25b;
  --water: #215f87;
  --sand: #efe9df;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}

a {
  color: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 6vw 10px;
}

.topbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid #d8e0dd;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fbfcfb;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav a:focus-visible,
.nav a:active {
  border-bottom-color: var(--ink);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 38px 6vw 50px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-copy h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.hero-card {
  flex: 1 1 320px;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card .image-frame {
  width: 100%;
  max-width: 520px;
  min-height: 360px;
  background: var(--sand);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  align-self: flex-end;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card .overlay-card {
  position: absolute;
  bottom: -18px;
  left: -8px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  max-width: 260px;
}

.section {
  padding: 50px 6vw;
}

.section.mist {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section h2 {
  font-size: 1.8rem;
  margin: 0 0 16px;
}

.section p {
  margin: 0 0 12px;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 300px;
  background: #dfe7e1;
  border-radius: 20px;
  overflow: hidden;
  min-height: 240px;
}

.split .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.asym-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 26px rgba(23, 32, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.asym-card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  object-fit: cover;
  background: #d8e6de;
}

.price {
  font-weight: 700;
  color: var(--water);
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.timeline-step {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 10px 22px rgba(23, 32, 40, 0.08);
}

.inline-cta {
  color: var(--leaf);
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbd6d1;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-row .field {
  flex: 1 1 200px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(23, 32, 40, 0.16);
  z-index: 20;
}

.sticky-cta button {
  border: none;
  background: var(--leaf);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #10171c;
  color: #f5f7f6;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
}

.footer a {
  color: #f5f7f6;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .reject {
  background: transparent;
  color: var(--ink);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(23, 32, 40, 0.08);
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-row .image-frame {
  flex: 1 1 240px;
  min-height: 180px;
  background: #dbe7e0;
  border-radius: 18px;
  overflow: hidden;
}

.image-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thanks-card {
  max-width: 640px;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 26px rgba(23, 32, 40, 0.12);
}

@media (max-width: 860px) {
  .hero-card .overlay-card {
    position: static;
    margin-top: 18px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
