:root {
  --deep-olive: #3F4A36;
  --warm-limestone: #F8F3EA;
  --limestone-soft: #FCF8F1;
  --cyprus-sand: #E7D6BE;
  --sand-soft: #EFE2CF;
  --burnt-terracotta: #A85635;
  --terracotta-deep: #8E4328;
  --warm-charcoal: #263238;
  --sage-olive: #7D8F7B;
  --clay-brown: #6F4E37;
  --line-soft: rgba(111, 78, 55, 0.2);
  --line-strong: rgba(63, 74, 54, 0.24);
  --shadow-soft: 0 24px 70px rgba(63, 74, 54, 0.12);
  --shadow-card: 0 16px 42px rgba(63, 74, 54, 0.09);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    repeating-linear-gradient(90deg, rgba(111, 78, 55, 0.018) 0, rgba(111, 78, 55, 0.018) 1px, transparent 1px, transparent 6px),
    var(--warm-limestone);
  color: var(--warm-charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.section {
  padding: 112px 0;
  position: relative;
}

.soft-band {
  background:
    linear-gradient(180deg, rgba(231, 214, 190, 0.5), rgba(248, 243, 234, 0.82)),
    var(--cyprus-sand);
  border-top: 1px solid rgba(111, 78, 55, 0.14);
  border-bottom: 1px solid rgba(111, 78, 55, 0.14);
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--deep-olive);
  color: var(--warm-limestone);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 243, 234, 0.9);
  border-bottom: 1px solid rgba(111, 78, 55, 0.14);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 243, 234, 0.96);
  box-shadow: 0 12px 36px rgba(63, 74, 54, 0.09);
}

.header-inner {
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 252px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 86px;
  max-width: 100%;
  object-fit: contain;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--deep-olive);
  font-size: 0.91rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--clay-brown);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: rgba(248, 243, 234, 0.84);
  color: var(--deep-olive);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 1px;
  background: currentColor;
  display: block;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--burnt-terracotta);
  color: #fff;
  box-shadow: 0 14px 30px rgba(168, 86, 53, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--terracotta-deep);
  box-shadow: 0 18px 38px rgba(168, 86, 53, 0.28);
}

.button-secondary {
  background: transparent;
  color: var(--deep-olive);
  border-color: var(--deep-olive);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(63, 74, 54, 0.08);
}

.hero .button-secondary {
  background: rgba(231, 214, 190, 0.48);
  color: var(--deep-olive);
  border-color: rgba(111, 78, 55, 0.34);
  box-shadow: 0 12px 28px rgba(63, 74, 54, 0.08);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  background: var(--cyprus-sand);
  border-color: rgba(111, 78, 55, 0.48);
  box-shadow: 0 16px 34px rgba(63, 74, 54, 0.13);
}

.button-olive {
  background: var(--deep-olive);
  color: var(--warm-limestone);
  box-shadow: 0 14px 30px rgba(63, 74, 54, 0.18);
}

.button-olive:hover,
.button-olive:focus-visible {
  background: var(--warm-charcoal);
  box-shadow: 0 18px 38px rgba(63, 74, 54, 0.24);
}

.hero {
  padding: 76px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.68fr);
  gap: 58px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker,
.micro-label {
  color: var(--deep-olive);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--sage-olive);
}

h1,
h2 {
  color: var(--deep-olive);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  font-size: 4.15rem;
}

h2 {
  font-size: 3.75rem;
}

h3 {
  color: var(--deep-olive);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-grid > *,
.section-heading > *,
.card-grid > *,
.service-grid > *,
.audit-grid > *,
.area-grid > *,
.partner-layout > *,
.faq-layout > *,
.pricing-grid > * {
  min-width: 0;
}

.hero-lede {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(38, 50, 56, 0.86);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-note {
  margin-top: 20px;
  color: rgba(38, 50, 56, 0.72);
  font-size: 0.94rem;
}

.owner-card {
  position: relative;
  padding: 20px;
  background: rgba(252, 248, 241, 0.92);
  border: 1px solid rgba(111, 78, 55, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.owner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(63, 74, 54, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(63, 74, 54, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.owner-card > * {
  position: relative;
}

.owner-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.owner-card h2 {
  margin-top: 6px;
  font-size: 1.8rem;
  line-height: 1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 5px 9px;
  border: 1px solid rgba(125, 143, 123, 0.55);
  border-radius: 4px;
  background: rgba(125, 143, 123, 0.14);
  color: var(--deep-olive);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-pill span {
  width: 8px;
  height: 8px;
  background: var(--sage-olive);
  border-radius: 50%;
}

.readiness-score {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
}

.score-ring {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    conic-gradient(var(--sage-olive) 0 331deg, rgba(231, 214, 190, 0.75) 331deg 360deg);
  position: relative;
}

.score-ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--limestone-soft);
  border-radius: 50%;
  border: 1px solid rgba(111, 78, 55, 0.16);
}

.score-ring span {
  position: relative;
  color: var(--deep-olive);
  font-weight: 800;
}

.score-title {
  color: var(--deep-olive);
  font-weight: 800;
}

.score-copy {
  margin-top: 5px;
  color: rgba(38, 50, 56, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.control-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.control-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 8px;
  padding: 9px;
  background: rgba(248, 243, 234, 0.74);
  border: 1px solid rgba(111, 78, 55, 0.16);
  border-radius: 6px;
}

.control-row strong {
  display: block;
  color: var(--deep-olive);
  font-size: 0.86rem;
}

.control-row small {
  display: block;
  margin-top: 2px;
  color: rgba(38, 50, 56, 0.66);
  font-size: 0.72rem;
  line-height: 1.45;
}

.drawn-check {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(125, 143, 123, 0.55);
  border-radius: 50%;
  background: rgba(125, 143, 123, 0.14);
  position: relative;
  flex: 0 0 auto;
}

.drawn-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid var(--sage-olive);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.owner-update {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.owner-update strong {
  color: var(--deep-olive);
}

.owner-update span {
  padding: 8px 10px;
  border: 1px solid rgba(111, 78, 55, 0.24);
  border-radius: 4px;
  color: var(--clay-brown);
  font-size: 0.75rem;
  font-weight: 700;
}

.trust-strip {
  border-top: 1px solid rgba(111, 78, 55, 0.16);
  border-bottom: 1px solid rgba(111, 78, 55, 0.16);
  background: rgba(231, 214, 190, 0.48);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-grid div {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-left: 1px solid rgba(111, 78, 55, 0.16);
  color: var(--deep-olive);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.trust-grid div:last-child {
  border-right: 1px solid rgba(111, 78, 55, 0.16);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: 64px;
  align-items: end;
  margin-top: 12px;
  margin-bottom: 48px;
}

.section-heading p,
.audit-copy > p,
.area-grid p,
.partner-copy p,
.final-cta p {
  color: rgba(38, 50, 56, 0.78);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.line-card,
.price-card,
.service-card,
.audit-pricing,
.area-panel,
.partner-proof,
.faq-item {
  background: rgba(252, 248, 241, 0.78);
  border: 1px solid rgba(111, 78, 55, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.info-card {
  min-height: 174px;
  padding: 26px;
}

.info-card h3 {
  margin-bottom: 12px;
}

.info-card p {
  color: rgba(38, 50, 56, 0.74);
}

.partner-card {
  background: rgba(63, 74, 54, 0.08);
  border-color: rgba(63, 74, 54, 0.24);
}

.line-card {
  min-height: 154px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.line-card span,
.process-step span,
.partner-proof span {
  color: var(--sage-olive);
  font-size: 0.84rem;
  font-weight: 800;
}

.line-card h3 {
  max-width: 260px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  background: rgba(252, 248, 241, 0.86);
}

.service-card.featured {
  background: rgba(231, 214, 190, 0.72);
  border-color: rgba(63, 74, 54, 0.28);
  transform: translateY(-10px);
}

.service-card h3 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.04;
}

.best-for {
  margin-top: 18px;
  color: rgba(38, 50, 56, 0.74);
}

@media (min-width: 941px) {
  .service-card h3 {
    min-height: 3.15em;
  }

  .best-for {
    min-height: 10.2em;
  }
}

.price {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(111, 78, 55, 0.18);
  color: var(--burnt-terracotta);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
}

.price span {
  display: block;
  margin-top: 3px;
  color: rgba(38, 50, 56, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 34px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: rgba(38, 50, 56, 0.8);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 13px 18px;
  border: 1px solid var(--deep-olive);
  border-radius: 4px;
  background: rgba(63, 74, 54, 0.06);
  color: var(--deep-olive);
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(63, 74, 54, 0.1);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  background: var(--deep-olive);
  color: var(--warm-limestone);
  box-shadow: 0 16px 34px rgba(63, 74, 54, 0.18);
  transform: translateY(-2px);
}

.audit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 74px;
  align-items: center;
}

.audit-copy h2,
.area-grid h2,
.partner-copy h2,
.final-cta h2 {
  margin-top: 12px;
}

.audit-copy > p {
  max-width: 680px;
  margin-top: 22px;
  font-size: 1.02rem;
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 30px;
}

.small-note {
  margin-top: 18px;
  color: rgba(38, 50, 56, 0.7);
  font-size: 0.9rem;
}

.audit-pricing {
  padding: 12px;
  background: rgba(252, 248, 241, 0.88);
}

.audit-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 18px;
  border-bottom: 1px solid rgba(111, 78, 55, 0.16);
}

.audit-price-row:last-child {
  border-bottom: 0;
}

.audit-price-row span {
  color: var(--deep-olive);
  font-weight: 700;
}

.audit-price-row strong {
  color: var(--burnt-terracotta);
  font-size: 1.5rem;
}

.trust-statement {
  margin-top: 34px;
  padding: 24px 28px;
  background: rgba(63, 74, 54, 0.08);
  border: 1px solid rgba(63, 74, 54, 0.22);
  border-radius: 8px;
  color: var(--deep-olive);
  font-weight: 700;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid rgba(111, 78, 55, 0.22);
}

.process-step:last-child {
  border-bottom: 1px solid rgba(111, 78, 55, 0.22);
}

.process-step h3 {
  font-size: 1.28rem;
}

.process-step p {
  margin-top: 6px;
  color: rgba(38, 50, 56, 0.72);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  padding: 24px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card p {
  margin-top: 22px;
  color: var(--burnt-terracotta);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
}

.pricing-transparency {
  margin-top: 26px;
  padding: 24px 28px;
  background: var(--deep-olive);
  border-radius: 8px;
  color: var(--warm-limestone);
  font-weight: 700;
}

.proposal-form {
  padding: 30px;
  background: rgba(252, 248, 241, 0.86);
  border: 1px solid rgba(111, 78, 55, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.proposal-form fieldset {
  margin: 0 0 28px;
  padding: 0 0 26px;
  border: 0;
  border-bottom: 1px solid rgba(111, 78, 55, 0.16);
}

.proposal-form legend {
  margin-bottom: 18px;
  color: var(--deep-olive);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.05;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.proposal-form label span,
.option-group p {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-olive);
  font-size: 0.9rem;
  font-weight: 800;
}

.proposal-form input[type="text"],
.proposal-form input[type="email"],
.proposal-form input[type="tel"],
.proposal-form select,
.proposal-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(111, 78, 55, 0.24);
  border-radius: 4px;
  background: rgba(248, 243, 234, 0.82);
  color: var(--warm-charcoal);
  font: inherit;
}

.proposal-form textarea {
  resize: vertical;
}

.proposal-form input:focus,
.proposal-form select:focus,
.proposal-form textarea:focus {
  outline: 2px solid rgba(125, 143, 123, 0.45);
  outline-offset: 2px;
}

.option-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
  margin-top: 18px;
}

.option-group p {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.option-group label,
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(38, 50, 56, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.option-group input,
.consent-row input {
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--sage-olive);
}

.form-message {
  display: block;
  margin-bottom: 18px;
}

.consent-row {
  margin: 8px 0 22px;
}

.form-hidden {
  display: none;
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1fr);
  gap: 72px;
  align-items: start;
}

.area-grid p {
  margin-top: 22px;
}

.area-panel {
  padding: 28px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.area-tags span {
  padding: 9px 11px;
  background: rgba(231, 214, 190, 0.58);
  border: 1px solid rgba(111, 78, 55, 0.22);
  border-radius: 4px;
  color: var(--deep-olive);
  font-size: 0.88rem;
  font-weight: 700;
}

.area-notes {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(111, 78, 55, 0.18);
}

.area-notes p {
  margin: 0 0 14px;
  color: rgba(38, 50, 56, 0.76);
}

.area-notes p:last-child {
  margin-bottom: 0;
}

.partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.55fr);
  gap: 72px;
  align-items: center;
}

.partner-copy p {
  max-width: 720px;
  margin-top: 24px;
  margin-bottom: 30px;
}

.partner-proof {
  padding: 12px;
}

.partner-proof div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 84px;
  padding: 18px;
  border-bottom: 1px solid rgba(111, 78, 55, 0.16);
}

.partner-proof div:last-child {
  border-bottom: 0;
}

.partner-proof p {
  color: var(--deep-olive);
  font-weight: 700;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) 1fr;
  gap: 72px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  box-shadow: none;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 54px 22px 22px;
  color: var(--deep-olive);
  font-weight: 800;
  list-style: none;
  position: relative;
}

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

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  top: 31px;
  right: 24px;
  width: 14px;
  height: 1px;
  background: var(--clay-brown);
  transition: transform 180ms ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-item p {
  padding: 0 22px 22px;
  color: rgba(38, 50, 56, 0.74);
}

.final-cta {
  padding: 118px 0;
}

.final-cta-inner {
  max-width: 860px;
  padding: 58px;
  background: var(--deep-olive);
  border-radius: 8px;
  color: var(--warm-limestone);
  box-shadow: var(--shadow-soft);
}

.final-cta .eyebrow {
  color: var(--cyprus-sand);
}

.final-cta h1,
.final-cta h2 {
  color: var(--warm-limestone);
}

.final-cta p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(248, 243, 234, 0.8);
}

.final-cta .button-secondary {
  background: var(--warm-limestone);
  color: var(--deep-olive);
  border-color: var(--cyprus-sand);
  box-shadow: 0 16px 34px rgba(248, 243, 234, 0.14);
}

.final-cta .button-secondary:hover,
.final-cta .button-secondary:focus-visible {
  background: var(--cyprus-sand);
  border-color: var(--cyprus-sand);
  box-shadow: 0 20px 42px rgba(248, 243, 234, 0.2);
}

.final-cta .trust-note {
  margin-top: 20px;
  color: rgba(248, 243, 234, 0.72);
}

.site-footer {
  padding: 64px 0 76px;
  background: var(--deep-olive);
  color: var(--warm-limestone);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) repeat(4, minmax(104px, 0.68fr)) minmax(340px, 1.25fr);
  gap: 24px;
  align-items: start;
}

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

.footer-brand img {
  width: 260px;
  max-width: 100%;
  margin-bottom: 20px;
  mix-blend-mode: screen;
  opacity: 0.98;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 10px;
  color: rgba(248, 243, 234, 0.72);
  font-size: 0.9rem;
  overflow-wrap: break-word;
}

.footer-column h2 {
  margin-bottom: 14px;
  color: var(--cyprus-sand);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

.footer-column a {
  display: block;
  margin: 10px 0;
  color: rgba(248, 243, 234, 0.78);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.footer-contact {
  justify-self: end;
  width: 100%;
  max-width: 360px;
}

.footer-contact-card {
  padding: 18px;
  background: rgba(248, 243, 234, 0.08);
  border: 1px solid rgba(231, 214, 190, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.footer-contact-card .footer-contact-link {
  display: block;
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(231, 214, 190, 0.18);
}

.footer-contact-card .footer-contact-combined {
  padding-top: 14px;
}

.footer-contact-link span {
  display: block;
  color: var(--cyprus-sand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-contact-link strong {
  display: block;
  margin-top: 5px;
  color: var(--warm-limestone);
  font-size: 0.9rem;
  line-height: 1.35;
  overflow-wrap: normal;
}

.footer-contact-card .footer-contact-link:first-child strong {
  white-space: nowrap;
}

.footer-contact-combined strong {
  white-space: nowrap;
}

.footer-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding-top: 16px;
}

.footer-socials .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  min-height: 38px;
  padding: 8px 7px;
  border: 1px solid rgba(231, 214, 190, 0.26);
  border-radius: 4px;
  color: rgba(248, 243, 234, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.footer-social-link rect,
.footer-social-link circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-social-link circle:last-child,
.footer-social-link path {
  fill: currentColor;
  stroke: none;
}

.footer-socials .footer-social-link:hover,
.footer-socials .footer-social-link:focus-visible {
  background: rgba(231, 214, 190, 0.14);
  border-color: rgba(231, 214, 190, 0.5);
  color: var(--warm-limestone);
}

.footer-link-button {
  display: block;
  margin: 10px 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(248, 243, 234, 0.78);
  font: inherit;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: min(450px, calc(100vw - 48px));
  padding: 22px;
  background: rgba(252, 248, 241, 0.97);
  border: 1px solid rgba(111, 78, 55, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(63, 74, 54, 0.18);
  color: var(--warm-charcoal);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0;
  color: var(--deep-olive);
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1.05;
}

.cookie-banner p {
  margin: 12px 0 0;
  color: rgba(38, 50, 56, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-details {
  margin-top: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(111, 78, 55, 0.16);
  border-bottom: 1px solid rgba(111, 78, 55, 0.16);
}

.cookie-details summary {
  color: var(--deep-olive);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
}

.cookie-details ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.cookie-details li {
  color: rgba(38, 50, 56, 0.72);
  font-size: 0.84rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.cookie-link {
  color: var(--deep-olive);
  font-size: 0.9rem;
  font-weight: 800;
  border-bottom: 1px solid var(--clay-brown);
}

.cookie-link:hover,
.cookie-link:focus-visible {
  color: var(--burnt-terracotta);
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 18px;
  }

  .brand {
    width: 210px;
    height: 72px;
  }

  .brand img {
    height: 72px;
  }

  .site-nav {
    gap: 15px;
    font-size: 0.84rem;
  }

  .header-cta {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-grid,
  .area-grid,
  .partner-layout {
    gap: 46px;
  }

  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: span 3;
  }
}

@media (max-width: 940px) {
  .container {
    width: min(100% - 36px, 760px);
  }

  .section,
  .final-cta {
    padding: 82px 0;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    width: 176px;
    height: 60px;
  }

  .brand img {
    height: 60px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    z-index: 140;
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--limestone-soft);
    border: 1px solid rgba(111, 78, 55, 0.24);
    border-radius: 8px;
    box-shadow: 0 28px 78px rgba(63, 74, 54, 0.18);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 13px 12px;
    border-bottom: 1px solid rgba(111, 78, 55, 0.12);
    color: var(--deep-olive);
    font-size: 0.98rem;
    font-weight: 800;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 62px 0 82px;
  }

  .hero-grid,
  .audit-grid,
  .area-grid,
  .partner-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .trust-grid,
  .card-grid,
  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid div:nth-child(2n) {
    border-right: 1px solid rgba(111, 78, 55, 0.16);
  }

  .trust-grid div:last-child {
    grid-column: span 2;
  }

  .service-card,
  .service-card.featured {
    min-height: auto;
    transform: none;
  }

  .audit-pricing,
  .area-panel {
    width: 100%;
  }

  .final-cta-inner {
    padding: 42px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, 560px);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand {
    width: 154px;
    height: 54px;
  }

  .brand img {
    height: 54px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .final-cta .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .owner-card {
    padding: 18px;
  }

  .owner-card-top,
  .owner-update {
    align-items: flex-start;
    flex-direction: column;
  }

  .readiness-score {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .card-grid,
  .service-grid,
  .pricing-grid,
  .form-grid,
  .option-group,
  .two-column,
  .control-list {
    grid-template-columns: 1fr;
  }

  .trust-grid div,
  .trust-grid div:last-child {
    grid-column: auto;
    min-height: 68px;
    border-right: 1px solid rgba(111, 78, 55, 0.16);
  }

  .info-card,
  .line-card,
  .price-card,
  .service-card {
    padding: 22px;
  }

  .service-card h3 {
    font-size: 1.78rem;
  }

  .service-card .text-link {
    width: 100%;
    min-height: 50px;
  }

  .proposal-form {
    padding: 26px 22px;
  }

  .proposal-form legend {
    font-size: 1.82rem;
  }

  .audit-price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .area-tags span {
    width: 100%;
  }

  .partner-proof div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .faq-item summary {
    padding: 20px 46px 20px 18px;
  }

  .faq-item p {
    padding: 0 18px 20px;
  }

  .final-cta-inner {
    padding: 30px 22px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand img {
    width: 220px;
  }

  .footer-contact {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 24px);
  }

  .section,
  .final-cta {
    padding: 64px 0;
  }

  .hero {
    padding: 48px 0 46px;
  }

  .brand {
    width: 132px;
    height: 50px;
  }

  .brand img {
    height: 50px;
  }

  h1 {
    font-size: 2.35rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.04;
  }

  .owner-card h2 {
    font-size: 1.72rem;
  }

  .score-copy,
  .control-row small {
    display: none;
  }

  .control-row strong {
    line-height: 1.2;
  }

  .status-pill,
  .owner-update span {
    width: 100%;
    white-space: normal;
  }

  .score-ring {
    width: 76px;
    height: 76px;
  }

  .service-card h3 {
    font-size: 1.52rem;
  }

  .price {
    font-size: 1.12rem;
  }

  .footer-brand img {
    width: 130px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 18px;
  }

  .cookie-banner h2 {
    font-size: 1.55rem;
  }

  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions .button,
  .cookie-actions .cookie-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    max-height: calc(100svh - 28px);
    overflow: auto;
    padding: 16px;
  }

  .cookie-banner h2 {
    font-size: 1.42rem;
  }

  .cookie-banner p {
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .cookie-details {
    margin-top: 10px;
    padding: 10px 0;
  }

  .cookie-details summary,
  .cookie-details li {
    font-size: 0.8rem;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .cookie-actions .button,
  .cookie-actions .cookie-link {
    width: 100%;
    min-height: 44px;
  }

  .cookie-actions .cookie-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(111, 78, 55, 0.28);
    border-radius: 4px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 10px;
    padding: 14px;
  }

  .cookie-banner h2 {
    font-size: 1.28rem;
  }

  .cookie-banner p {
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .cookie-details {
    margin-top: 8px;
    padding: 8px 0;
  }

  .cookie-actions {
    gap: 8px;
  }

  .cookie-actions .button,
  .cookie-actions .cookie-link {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 0.82rem;
  }
}

@media (max-width: 300px) {
  .container {
    width: calc(100% - 36px);
  }

  h1 {
    font-size: 1.82rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .brand {
    width: 92px;
    height: 42px;
  }

  .brand img {
    height: 42px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
  }

  .header-inner {
    gap: 8px;
  }

  .owner-card,
  .info-card,
  .line-card,
  .price-card,
  .service-card,
  .proposal-form,
  .area-panel,
  .final-cta-inner {
    padding: 16px;
  }
}
