* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5c5c66;
  --accent: #0b6e6a;
  --accent-dark: #084d4a;
  --sand: #f7f2ee;
  --rose: #f3e3de;
  --mist: #eef4f4;
  --line: #ded9d4;
}

body {
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 6vw 1rem;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 6vw 1rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 36rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(8, 77, 74, 0.2);
}

.button-ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.button-light {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.hero-note {
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  background: var(--sand);
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  max-width: 16rem;
  font-size: 0.9rem;
  border: 1px solid var(--line);
}

.asym-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 6vw;
  position: relative;
}

.asym-section .section-tag {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.offset-block {
  background: var(--mist);
  padding: 2rem;
  border-radius: 1.5rem;
  margin-left: clamp(0rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 45px rgba(15, 32, 32, 0.08);
}

.offset-block.alt {
  background: var(--rose);
  margin-left: 0;
  margin-right: clamp(0rem, 4vw, 3rem);
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split-image {
  border-radius: 1.4rem;
  overflow: hidden;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat {
  flex: 1 1 10rem;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.4rem;
  border-radius: 1rem;
}

.stat strong {
  font-size: 1.6rem;
  display: block;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card img {
  border-radius: 1rem;
}

.card .price {
  font-weight: 600;
  color: var(--accent-dark);
}

.journey {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.journey-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.form-wrap {
  background: var(--sand);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.95rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #cfc6bf;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  top: 1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: 1rem;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(8, 77, 74, 0.24);
}

.quote {
  font-style: italic;
  background: #fff;
  padding: 1.6rem;
  border-radius: 1.2rem;
  border-left: 4px solid var(--accent);
}

.footer {
  padding: 2.5rem 6vw 3rem;
  background: #121212;
  color: #f3f3f3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.9rem;
}

.footer small {
  color: #bfbfbf;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem;
  max-width: 20rem;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cookie-button {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
}

.cookie-button.primary {
  background: var(--accent);
  color: #fff;
}

.content {
  padding: 2.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.content h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.content p,
.content li {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 1.2rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--mist);
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-line {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-line strong {
  font-size: 1.1rem;
}

.service-line .price {
  color: var(--accent-dark);
  font-weight: 600;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 0.5rem 0;
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-image {
    flex: 1;
  }

  .hero-copy {
    flex: 1;
  }

  .section-split {
    flex-direction: row;
    align-items: center;
  }

  .section-split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 15rem;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-card {
    flex: 1;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-line {
    flex: 1 1 18rem;
    background: #fff;
    padding: 1.4rem;
    border-radius: 1rem;
    border: 1px solid var(--line);
  }
}
