:root {
  --ink: #17201d;
  --muted: #53605b;
  --accent: #176b55;
  --accent-dark: #10513f;
  --accent-soft: #e8f2ee;
  --warm: #f4f1ea;
  --paper: #fcfcfa;
  --white: #ffffff;
  --line: #d9dfdc;
  --radius: 12px;
  --shadow: 0 18px 55px rgba(23, 32, 29, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(23, 107, 85, 0.32);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5.3vw, 5rem);
  font-weight: 750;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  font-weight: 730;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

p {
  margin-bottom: 24px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  max-width: 900px;
}

.section {
  padding: 112px 0;
}

.section-label,
.eyebrow {
  margin-bottom: 17px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 52px;
}

.section-heading > p:last-child,
.services-content > p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(217, 223, 220, 0.85);
  background: rgba(252, 252, 250, 0.96);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 780;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.logo-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a:not(.button) {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav > a:not(.button):hover {
  color: var(--accent);
}

.main-nav .language-link {
  min-width: 42px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  text-align: center;
}

.main-nav .language-link[aria-current="page"] {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.menu-toggle {
  display: none;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 0;
  border-radius: 9px;
  background: var(--accent);
  box-shadow: 0 8px 20px rgba(23, 107, 85, 0.15);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 730;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 12px 26px rgba(23, 107, 85, 0.2);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-small {
  min-height: 46px;
  padding: 11px 18px;
  font-size: 0.84rem;
}

.button-full {
  width: 100%;
}

.hero {
  padding: 80px 0 105px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  gap: clamp(48px, 7vw, 92px);
}

.hero-grid > * {
  min-width: 0;
}

.hero-content > p:not(.eyebrow, .hero-lead, .microcopy) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lead {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 650;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--accent);
}

.microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.photo-placeholder {
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px solid #cbd4cf;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(23, 32, 29, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 29, 0.04) 1px, transparent 1px),
    var(--warm);
  background-size: 32px 32px;
}

.hero-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 580px;
  min-height: 580px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.placeholder-label {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.placeholder-label > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 13px;
  place-items: center;
  border: 1px solid #aab8b1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: var(--accent);
  font-size: 1.5rem;
}

.placeholder-label strong {
  color: var(--ink);
}

.placeholder-label small {
  font-size: 0.78rem;
}

.problem-section {
  background: var(--accent-dark);
  color: var(--white);
}

.problem-section .section-label {
  color: #b9e0d4;
}

.problem-section h2 {
  color: var(--white);
}

.large-copy {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.55;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.step-card {
  position: relative;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.step-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.step-card:last-child {
  padding-right: 0;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 780;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.tinted-section {
  background: var(--warm);
}

.services-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1fr);
  gap: clamp(52px, 8vw, 110px);
}

.service-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 500px;
  min-height: 500px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.checklist {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 16px 18px 16px 56px;
  border: 1px solid rgba(203, 212, 207, 0.8);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-weight: 650;
}

.checklist li::before {
  position: absolute;
  top: 16px;
  left: 18px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 800;
}

.price-section {
  background: var(--white);
}

.price-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  gap: clamp(52px, 9vw, 130px);
}

.price-grid .section-heading {
  margin-bottom: 0;
}

.price-card {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.price-kicker {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 750;
  text-transform: uppercase;
}

.price {
  margin-bottom: 0;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price span {
  margin-right: 5px;
  font-size: 0.46em;
  vertical-align: top;
}

.price-detail {
  color: var(--muted);
  font-size: 0.95rem;
}

.future-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 26px 0 0;
  padding: 15px 17px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.86rem;
}

.future-price span {
  font-weight: 650;
}

.future-price strong {
  font-size: 1.15rem;
  white-space: nowrap;
}

.comparison {
  margin: 30px 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.faq-section {
  background: var(--warm);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(48px, 8vw, 110px);
}

.faq-grid .section-heading {
  position: sticky;
  top: 125px;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid #cbd4cf;
}

.faq-list details {
  border-bottom: 1px solid #cbd4cf;
}

.faq-list summary {
  position: relative;
  padding: 27px 48px 27px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 28px;
  right: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #aab8b1;
  border-radius: 50%;
  color: var(--accent);
  content: "+";
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  padding: 0 44px 26px 0;
  color: var(--muted);
}

.contact-section {
  background: var(--accent-soft);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(52px, 9vw, 125px);
}

.contact-copy {
  position: sticky;
  top: 125px;
}

.contact-copy > p:not(.section-label) {
  color: var(--muted);
}

.direct-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid #c7d9d2;
}

.direct-contact span {
  color: var(--muted);
  font-size: 0.86rem;
}

.direct-contact a {
  color: var(--accent-dark);
  font-size: 1.15rem;
  font-weight: 720;
  text-underline-offset: 5px;
}

.contact-form {
  padding: clamp(26px, 4.5vw, 50px);
  border: 1px solid #c7d9d2;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(23, 81, 63, 0.08);
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.field label span {
  color: var(--accent);
}

.field label small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #9da9a3;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 148px;
  resize: vertical;
}

input:hover,
textarea:hover {
  border-color: var(--accent);
}

.consent {
  display: grid;
  align-items: start;
  margin: 8px 0 26px;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.55;
}

.consent input {
  width: 21px;
  min-height: 21px;
  margin: 3px 0 0;
  accent-color: var(--accent);
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.form-status {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.5;
}

.form-status.success {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.form-status.error {
  background: #fae9e7;
  color: #872c22;
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--ink);
  color: #d8dfdc;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 54px;
}

.footer-logo {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-logo + p {
  max-width: 500px;
  margin-bottom: 0;
  color: #b9c4c0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: var(--white);
  font-size: 0.88rem;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #39433f;
  color: #99a59f;
  font-size: 0.78rem;
}

.legal-page {
  min-height: 70vh;
  padding: 90px 0 120px;
}

.legal-content {
  max-width: 780px;
}

.legal-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.legal-content h2 {
  margin-top: 52px;
  font-size: 1.55rem;
}

.legal-notice {
  margin: 34px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 15px 35px rgba(23, 32, 29, 0.08);
    flex-direction: column;
    gap: 4px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a:not(.button) {
    padding: 12px 4px;
  }

  .main-nav .language-link {
    align-self: flex-start;
    min-width: 52px;
    padding: 9px 12px;
  }

  .main-nav .button {
    margin-top: 8px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 800px;
  }

  .hero-photo {
    height: 430px;
    min-height: 430px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 0;
  }

  .step-card:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .services-grid,
  .price-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-photo {
    height: 420px;
    min-height: 420px;
  }

  .services-content {
    max-width: 720px;
  }

  .price-card {
    max-width: 580px;
  }

  .faq-grid .section-heading,
  .contact-copy {
    position: static;
  }

  .faq-grid .section-heading {
    margin-bottom: 0;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding: 55px 0 75px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: center;
  }

  .microcopy {
    text-align: center;
  }

  .hero-photo {
    height: 330px;
    min-height: 330px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-card,
  .step-card:first-child,
  .step-card:nth-child(3) {
    padding: 26px 0 30px 62px;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .step-card:last-child {
    border-bottom: 1px solid var(--line);
  }

  .step-number {
    position: absolute;
    top: 25px;
    left: 0;
    margin: 0;
  }

  .service-photo {
    height: 330px;
    min-height: 330px;
  }

  .checklist li {
    padding-right: 13px;
  }

  .price-card {
    padding: 30px 24px;
  }

  .faq-list summary {
    font-size: 1rem;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-bottom {
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
