:root {
  --bg: #f0ece2;
  --bg-strong: #e2daca;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #f2ede4;
  --surface-dark: #1b1e1a;
  --surface-dark-2: #22261f;
  --text: #1a1c1a;
  --text-soft: #4a4d48;
  --text-inverse: #f4f0e7;
  --olive: #3a4a2a;
  --olive-strong: #4a5e36;
  --sand: #b8963e;
  --sand-soft: #d4b86a;
  --navy: #1e2a3a;
  --navy-light: #2a3a4e;
  --red: #8b2020;
  --red-soft: #a63030;
  --line: rgba(22, 24, 22, 0.12);
  --line-strong: rgba(22, 24, 22, 0.22);
  --shadow: 0 22px 60px rgba(16, 18, 15, 0.12);
  --shadow-strong: 0 28px 70px rgba(9, 10, 8, 0.25);
  --radius: 8px;
  --radius-small: 6px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      circle at top left,
      rgba(199, 165, 95, 0.18),
      transparent 26rem
    ),
    linear-gradient(180deg, #f8f4ec 0%, var(--bg) 38%, #efe7d7 100%);
  color: var(--text);
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.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;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  clip: auto;
  white-space: normal;
  overflow: visible;
  margin: 0;
  background: var(--olive);
  color: var(--text-inverse);
  border-radius: var(--radius);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  --header-brand-width: clamp(11.5rem, 18vw, 13rem);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(41, 43, 38, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.279);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  min-height: 5.25rem;
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-header {
  display: flex;
  align-items: center;
  flex: 0 0 var(--header-brand-width);
  width: var(--header-brand-width);
  padding: 0.45rem 0;
}

.brand-header-image {
  display: block;
  width: 100%;
  height: auto;
}

.brand-copy strong {
  font-size: 1.05rem;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong,
.brand-copy span,
.site-nav a,
.button,
.eyebrow,
.proof-kicker,
.service-index,
.panel-kicker,
.contact-stack strong,
.footer-grid h3 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--text-inverse);
  font-size: 0.95rem;
}

.brand-copy span {
  color: rgba(244, 240, 231, 0.68);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
  margin-left: auto;
  margin-right: auto;
}

.site-nav a {
  color: rgba(244, 240, 231, 0.76);
  font-size: 0.85rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--sand-soft);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.05);
  width: 3rem;
  height: 3rem;
  padding: 0.65rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-inverse);
  border-radius: 999px;
}

.menu-toggle span + span {
  margin-top: 0.32rem;
}

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

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

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

.button-primary {
  background: var(--olive);
  color: var(--text-inverse);
  box-shadow: 0 8px 24px rgba(58, 74, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--olive-strong);
  box-shadow: 0 12px 32px rgba(58, 74, 42, 0.4);
}

.button-secondary {
  border-color: rgba(244, 240, 231, 0.36);
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.02);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--sand-soft);
  color: var(--sand-soft);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  overflow: clip;
  padding: 5.5rem 0 3.5rem;
  background:
    linear-gradient(180deg, rgba(22, 30, 40, 0.92), rgba(18, 24, 32, 0.97)),
    linear-gradient(125deg, rgba(184, 150, 62, 0.1), transparent 35%);
  color: var(--text-inverse);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 16%,
      rgba(199, 165, 95, 0.2),
      transparent 18rem
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(66, 107, 58, 0.26),
      transparent 20rem
    ),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    3.4rem 3.4rem,
    3.4rem 3.4rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 92%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 41rem;
}

.hero-offer {
  display: grid;
  gap: 0.45rem;
  max-width: 35rem;
  margin: 0 0 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 184, 106, 0.36);
  border-left: 4px solid var(--sand);
  background: linear-gradient(
    135deg,
    rgba(184, 150, 62, 0.2),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 18px 42px rgba(6, 8, 6, 0.18);
}

.hero-offer-kicker {
  color: var(--sand-soft);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero-offer strong {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  color: var(--sand-soft);
  font-size: 0.88rem;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.9rem);
  max-width: 12ch;
}

.hero-text {
  max-width: 34rem;
  margin: 1.35rem 0 0;
  color: rgba(244, 240, 231, 0.8);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-points li {
  padding: 0.7rem 1rem;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(244, 240, 231, 0.85);
  border-left: 3px solid var(--sand);
}

.hero-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(30, 42, 58, 0.96), rgba(15, 16, 14, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
}

.hero-card-top {
  padding: 1.4rem;
}

.hero-logo {
  width: 100%;
  border-radius: var(--radius-small);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #0f0f0f;
}

.hero-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-label {
  margin: 0 0 1rem;
  color: var(--sand-soft);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-render-highlight {
  margin-bottom: 1.1rem;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: var(--radius-small);
  border: 1px solid rgba(212, 184, 106, 0.24);
  background: linear-gradient(
    135deg,
    rgba(184, 150, 62, 0.16),
    rgba(255, 255, 255, 0.05)
  );
}

.hero-render-highlight span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--sand-soft);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero-render-highlight strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.28rem;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-render-highlight p {
  margin: 0.65rem 0 0;
  color: rgba(244, 240, 231, 0.82);
}

.hero-stats {
  display: grid;
  gap: 0.85rem;
}

.hero-stats div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-stats strong {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stats span {
  color: rgba(244, 240, 231, 0.72);
  text-align: right;
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  padding-bottom: 1.4rem;
}

.proof-strip-shell {
  position: relative;
  padding: 1rem;
  border-radius: calc(var(--radius) + 0.45rem);
  background:
    linear-gradient(180deg, rgba(21, 28, 24, 0.96), rgba(27, 30, 26, 0.9)),
    linear-gradient(135deg, rgba(184, 150, 62, 0.16), transparent 48%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 58px rgba(10, 12, 9, 0.2);
  overflow: hidden;
}

.proof-strip-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(199, 165, 95, 0.16),
      transparent 18rem
    ),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size:
    auto,
    3.5rem 3.5rem,
    3.5rem 3.5rem;
  opacity: 0.4;
  pointer-events: none;
}

.proof-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.91fr));
  gap: 1rem;
  align-items: stretch;
}

.proof-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1.35rem 1.3rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 25, 21, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(246, 241, 231, 0.92)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 34px rgba(11, 14, 10, 0.08);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--olive), var(--sand));
}

.proof-card::after {
  content: "";
  position: absolute;
  right: -1.25rem;
  bottom: -1.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(58, 74, 42, 0.07);
  pointer-events: none;
}

.proof-card:hover,
.proof-card:focus-within {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 40px rgba(11, 14, 10, 0.12);
}

.renderings-proof {
  border-color: rgba(212, 184, 106, 0.18);
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 184, 106, 0.14),
      transparent 13rem
    ),
    linear-gradient(180deg, rgba(37, 50, 36, 0.98), rgba(18, 22, 18, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 44px rgba(5, 7, 5, 0.22);
}

.renderings-proof::before {
  width: 5px;
  background: linear-gradient(180deg, #f3d37c, var(--sand-soft));
}

.renderings-proof::after {
  background: rgba(212, 184, 106, 0.11);
}

.renderings-proof .proof-kicker {
  background: rgba(212, 184, 106, 0.16);
  color: var(--sand-soft);
}

.proof-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.15rem;
  background: rgba(58, 74, 42, 0.1);
  color: var(--olive);
  font-size: 0.74rem;
  line-height: 1;
}

.proof-grid p,
.section-heading p,
.story-copy p,
.contact-copy p,
.review-card p,
.process-list li,
.footer-copy {
  margin: 0;
  color: var(--text-soft);
}

.proof-card p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.58;
}

.renderings-proof p {
  color: rgba(244, 240, 231, 0.84);
}

.section {
  padding: 5.8rem 0;
}

.section-dark {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(184, 150, 62, 0.1),
      transparent 18rem
    ),
    linear-gradient(180deg, var(--navy), #141c28);
  color: var(--text-inverse);
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.section-heading-left {
  justify-items: start;
  text-align: left;
  margin: 0 0 2rem;
}

.section-heading h2,
.story-copy h2,
.contact-copy h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
}

.services-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.review-card,
.form-shell,
.process-panel,
.check-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(23, 25, 21, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  padding: 1.4rem 1.4rem 1.6rem;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--sand) 50%, var(--navy));
}

.service-index {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--sand);
  font-size: 0.8rem;
}

.service-card h3,
.review-card strong,
.check-panel h3,
.form-success h3 {
  margin: 0 0 0.55rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card p,
.review-card span {
  margin: 0;
  color: var(--text-soft);
}

.story-grid,
.area-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 1.2rem;
  align-items: start;
}

.story-copy p {
  max-width: 38rem;
  color: #e9e9d795;
}

.story-copy p + p {
  margin-top: 1rem;
}

.check-panel,
.process-panel {
  padding: 1.7rem;
}

.check-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--sand);
}

.check-panel h3,
.check-list li {
  color: var(--text-inverse);
}

.check-list,
.process-list,
.footer-grid ul {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 3px;
  display: grid;
  place-items: center;
  background: var(--olive);
  color: var(--text-inverse);
  font-size: 0.7rem;
  font-weight: 700;
}

.vision-section {
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(53, 84, 47, 0.12),
      transparent 20rem
    ),
    linear-gradient(180deg, var(--bg), var(--bg-strong));
}

.vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 1.2rem;
  align-items: start;
}

.vision-copy h2 {
  margin: 0 0 1.2rem;
  font-family: "Oswald", sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
}

.vision-copy p {
  margin: 0;
  color: var(--text-soft);
  max-width: 38rem;
}

.vision-copy p + p {
  margin-top: 1rem;
}

.vision-panel {
  display: grid;
  gap: 1rem;
}

.vision-feature {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--navy);
}

.vision-feature-featured {
  border-left-color: var(--sand);
  background: linear-gradient(
    135deg,
    rgba(184, 150, 62, 0.16),
    rgba(255, 255, 255, 0.88)
  );
  box-shadow: 0 20px 48px rgba(16, 18, 15, 0.14);
}

.vision-feature-kicker {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--olive);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.vision-feature strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vision-feature-featured strong {
  font-size: 1.4rem;
  line-height: 1.02;
}

.vision-feature p {
  margin: 0;
  color: var(--text-soft);
}

.service-area-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(30, 42, 58, 0.12),
      transparent 18rem
    ),
    radial-gradient(
      circle at 86% 22%,
      rgba(58, 74, 42, 0.18),
      transparent 18rem
    ),
    linear-gradient(180deg, #dbe4dc 0%, #cdd9cf 100%);
}

.service-area-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(30, 42, 58, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 42, 58, 0.06) 1px, transparent 1px);
  background-size: 2.8rem 2.8rem;
  opacity: 0.4;
  pointer-events: none;
}

.service-area-section > .container {
  position: relative;
  z-index: 1;
}

.service-area-section .eyebrow,
.service-area-section .panel-kicker {
  color: var(--navy);
}

.service-area-section .section-heading h2 {
  color: var(--navy);
}

.service-area-section .section-heading p,
.service-area-section .process-list li {
  color: #38423a;
}

.service-area-section .process-panel {
  background: linear-gradient(
    180deg,
    rgba(248, 246, 239, 0.94),
    rgba(255, 255, 255, 0.76)
  );
  border-color: rgba(30, 42, 58, 0.12);
  border-left: 3px solid var(--navy);
  box-shadow: 0 20px 52px rgba(20, 28, 40, 0.14);
}

.service-area-section .process-list li::before {
  background: var(--olive);
  color: var(--text-inverse);
  border-color: rgba(58, 74, 42, 0.22);
}

.service-area-section .area-list span {
  background: rgba(248, 246, 239, 0.82);
  border-color: rgba(30, 42, 58, 0.12);
  border-left-color: var(--navy);
  box-shadow: 0 12px 28px rgba(20, 28, 40, 0.12);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.area-list span {
  padding: 0.7rem 1rem;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--olive);
  font-weight: 600;
}

.process-panel {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.72)
  );
}

.panel-kicker {
  display: inline-flex;
  color: var(--olive);
  font-size: 0.8rem;
}

.process-list {
  display: grid;
  gap: 1rem;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  padding-left: 3.2rem;
  min-height: 2.7rem;
}

.process-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--sand);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  border: 1px solid rgba(184, 150, 62, 0.3);
}

.process-list strong {
  color: var(--text);
}

.reviews-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(180deg, #ece1cd, #efe8d9);
}

.review-card {
  padding: 1.5rem;
}

.stars {
  color: var(--sand);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.review-card strong {
  display: block;
  margin-top: 1.2rem;
}

.contact-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent);
}

.contact-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-stack a,
.contact-stack div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--olive);
}

.contact-stack span {
  color: var(--text-soft);
}

.form-shell {
  padding: 1.4rem;
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quote-form label {
  display: grid;
  gap: 0.45rem;
}

.quote-form span {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: #fffdfa;
  padding: 0.9rem 1rem;
  color: var(--text);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.quote-form textarea {
  resize: vertical;
  min-height: 9rem;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 4px rgba(53, 84, 47, 0.12);
}

.form-note {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.form-success {
  display: grid;
  gap: 0.8rem;
  place-items: start;
  min-height: 100%;
  padding: 1rem 0.25rem;
}

.form-success[hidden] {
  display: none;
}

.site-footer {
  padding: 2rem 0 1.2rem;
  background: linear-gradient(180deg, #161c26, #101620);
  color: rgba(244, 240, 231, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr));
  gap: 1.2rem;
  padding-bottom: 1.8rem;
}

.brand-footer .brand-copy strong {
  color: var(--text-inverse);
}

.footer-copy {
  max-width: 24rem;
  margin-top: 1rem;
  color: rgba(244, 240, 231, 0.62);
}

.footer-grid h3 {
  margin: 0 0 0.9rem;
  color: var(--text-inverse);
  font-size: 0.92rem;
}

.footer-grid ul {
  display: grid;
  gap: 0.65rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--sand-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 240, 231, 0.55);
  font-size: 0.94rem;
}

#services,
#about,
#service-area,
#reviews,
#contact {
  scroll-margin-top: 6.5rem;
}

@media (max-width: 960px) {
  .site-header {
    --header-brand-width: min(12.5rem, calc(100vw - 6rem));
  }

  .header-shell {
    gap: 0.75rem;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.7rem;
    border-radius: var(--radius);
    background: rgba(16, 18, 15, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

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

  .site-nav a {
    padding: 0.85rem 0.95rem;
    border-radius: var(--radius-small);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero-grid,
  .story-grid,
  .area-grid,
  .contact-grid,
  .footer-grid,
  .proof-grid,
  .services-grid,
  .reviews-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .proof-strip {
    margin-top: -1.35rem;
  }

  .proof-strip-shell {
    padding: 0.85rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    --header-brand-width: min(11.5rem, calc(100vw - 6.25rem));
  }

  .field-row,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .brand-footer {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .proof-card {
    padding: 1.15rem 1.1rem 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .section,
  .hero {
    padding-left: 0;
    padding-right: 0;
  }
}
