:root {
  --ink: #1d1b1a;
  --muted: #5b564f;
  --sand: #f5f0ea;
  --linen: #fbf8f4;
  --clay: #d9c7b6;
  --terra: #a77b5a;
  --sage: #97a28b;
  --night: #2a2623;
  --cream: #fffdf9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--linen);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 28px 6vw 12px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--terra);
  border: 1px solid var(--terra);
  padding: 4px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  background: var(--night);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 27, 26, 0.1), rgba(29, 27, 26, 0.78));
}

.hero-content {
  position: relative;
  padding: 12vh 6vw 10vh;
  max-width: 760px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 1.1rem;
  color: #f5efe8;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--terra);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--terra);
  border-color: var(--terra);
}

.section {
  padding: 80px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--night);
  color: var(--cream);
}

.section-bg {
  background-image: linear-gradient(180deg, rgba(29, 27, 26, 0.5), rgba(29, 27, 26, 0.85)), url("https://images.unsplash.com/photo-1595526114035-0d45ed16cfbf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--cream);
}

.section-bg .eyebrow {
  color: #f0d7c3;
}

.section-bg .notice {
  background: rgba(255, 255, 255, 0.12);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--terra);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.image-frame {
  background: var(--clay);
  padding: 10px;
  border-radius: 18px;
}

.image-frame img {
  border-radius: 14px;
}

.story-block {
  background: var(--cream);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(29, 27, 26, 0.08);
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.metric {
  flex: 1 1 180px;
  background: var(--linen);
  padding: 16px;
  border-radius: 12px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.space-top {
  margin-top: 24px;
}

.hero-actions,
.section-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--cream);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(29, 27, 26, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-price {
  font-weight: 700;
  color: var(--terra);
}

.inline-quote {
  font-style: italic;
  border-left: 3px solid var(--terra);
  padding-left: 14px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  flex: 1 1 200px;
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
  border-radius: 14px;
}

.reveal-panel {
  background: var(--cream);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 38px rgba(29, 27, 26, 0.1);
}

.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.service-option {
  flex: 1 1 220px;
  background: var(--linen);
  border: 1px solid #e5d9cd;
  border-radius: 14px;
  padding: 14px;
}

.service-option input {
  margin-right: 8px;
}

.form-wrap {
  background: var(--sand);
  border-radius: 24px;
  padding: 28px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9c7b6;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 5;
}

.sticky-cta a {
  background: var(--night);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.footer {
  background: var(--night);
  color: var(--cream);
  padding: 60px 6vw;
}

.footer a {
  color: var(--cream);
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fffaf4;
  border-top: 1px solid #e6d7c7;
  padding: 16px 6vw;
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.notice {
  background: var(--linen);
  border-radius: 16px;
  padding: 20px;
}

.page-hero {
  padding: 70px 6vw 20px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.page-image {
  margin: 30px 6vw;
}

.page-image .image-frame {
  max-width: 980px;
  margin: 0 auto;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--cream);
  padding: 18px;
  border-radius: 14px;
}

.reference-list {
  margin-top: 12px;
  font-size: 0.9rem;
}

.reference-list a {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 10px;
    left: 10px;
    bottom: 10px;
  }

  .sticky-cta a {
    justify-content: center;
    width: 100%;
  }
}
