@charset "UTF-8";

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5b6570;
  --soft: #f4f1ec;
  --accent: #1f6f78;
  --accent-dark: #13474d;
  --sun: #f3c969;
  --card: #ffffff;
  --stroke: #e3ded6;
  --shadow: 0 18px 40px rgba(25, 25, 25, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfaf8;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding-bottom: 5rem;
}

.wrap {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.split-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0 1.2rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section {
  position: relative;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero-media {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7efe1, #f2f5f6);
  box-shadow: var(--shadow);
}

.hero-media img {
  border-radius: 16px;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background: var(--accent-dark);
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.btn-ghost {
  border: 1px solid var(--stroke);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  color: var(--accent-dark);
  background: #fff;
}

.layered {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: var(--radius);
  background: var(--soft);
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.offset-card {
  background: var(--card);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}

.offset-card.emphasis {
  background: #fff7e6;
  transform: translateX(8px);
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--stroke);
  font-size: 0.85rem;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-card {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1.6rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}

.service-card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.service-card .tag {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  background: var(--sun);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.timeline-step {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow);
}

.timeline-step .step-index {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid var(--stroke);
}

.testimonial span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

.form-area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.service-picker button {
  border: 1px solid var(--stroke);
  background: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.service-picker button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.8rem;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: var(--accent-dark);
  color: #fff;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  z-index: 40;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #fff;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 50;
  box-shadow: var(--shadow);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #fff;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

footer {
  background: #121b1d;
  color: #fff;
  padding: 3rem 0;
}

footer .foot-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

footer a {
  color: #fff;
  opacity: 0.8;
}

.secondary-page {
  padding: 2rem 0 4rem;
}

.secondary-page h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.secondary-page .content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  line-height: 1.7;
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: var(--soft);
  padding: 2rem;
  border-radius: var(--radius);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.image-stack img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1.05;
  }

  .hero-media {
    flex: 0.9;
    transform: translateY(30px);
  }

  .asym-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .layered {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .offset-grid {
    flex-direction: row;
  }

  .service-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .timeline {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .timeline-step {
    flex: 1 1 240px;
  }

  .form-area {
    flex-direction: row;
  }

  .form-card {
    flex: 1.1;
  }

  .service-picker {
    flex: 0.9;
    flex-direction: column;
  }

  footer .foot-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .image-stack {
    flex-direction: row;
  }
}
