* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1f1c;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 10px;
  position: relative;
}

.brand {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 60%;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom-color: #1a1f1c;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 12px 6vw 48px;
  position: relative;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  margin: 0;
  max-width: 720px;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 540px;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin-left: auto;
  width: min(640px, 100%);
  box-shadow: 0 30px 60px rgba(13, 26, 18, 0.2);
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1a1f1c;
  background: #1a1f1c;
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: #1a1f1c;
}

.btn.ghost {
  background: #f1efe8;
  color: #1a1f1c;
  border-color: #d4d1c6;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section.alt {
  background: #edf0ea;
}

.section.dark {
  background: #1a1f1c;
  color: #f9f8f3;
}

.asym-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(18, 24, 20, 0.1);
  position: relative;
}

.offset-card.shift {
  margin-left: auto;
  max-width: 520px;
}

.offset-card.overlap {
  margin-top: -40px;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel-image {
  border-radius: 18px;
  overflow: hidden;
}

.panel-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #d7d9cf;
  border-radius: 18px;
  padding: 20px;
  background: #fff;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
}

.quote-band {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-card {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(17, 27, 21, 0.1);
}

.form-card label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ccd1c7;
  font-size: 1rem;
  font-family: inherit;
}

.form-card button {
  width: 100%;
  margin-top: 16px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #cfd2c7;
  font-size: 0.85rem;
  background: #fff;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #141915;
  color: #f9f8f3;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f9f8f3;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
}

.sticky-cta .btn {
  border-color: #2b6f4b;
  background: #2b6f4b;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #1f241f;
  color: #f4f4ef;
  padding: 18px;
  border-radius: 16px;
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-actions button {
  border: 1px solid #f4f4ef;
  background: transparent;
  color: #f4f4ef;
  padding: 8px 14px;
  border-radius: 999px;
}

.cookie-actions button.primary {
  background: #f4f4ef;
  color: #1f241f;
}

.sidebar-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-card {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(17, 27, 21, 0.08);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 18px;
  border-left: 2px solid #1a1f1c;
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-strip img {
  border-radius: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-top {
    max-width: 520px;
  }

  .asym-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .split-panel {
    flex-direction: row;
    align-items: center;
  }

  .split-panel.reverse {
    flex-direction: row-reverse;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .sidebar-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .sidebar-layout .content-card {
    flex: 1;
  }

  .image-strip {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }
}
