:root {
  --ink: #183331;
  --muted: #61716e;
  --green-950: #123d39;
  --green-900: #184f49;
  --green-800: #24665f;
  --green-100: #e5f1ec;
  --green-50: #f2f8f5;
  --cream: #fbf8f1;
  --sand: #e9d9bd;
  --gold: #d3a65b;
  --white: #ffffff;
  --line: #dbe5e1;
  --shadow: 0 24px 70px rgba(19, 61, 57, 0.14);
  --soft-shadow: 0 16px 40px rgba(19, 61, 57, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
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 {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-950);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 30px rgba(18,61,57,.08);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand img { flex: 0 0 auto; }
.brand-copy {
  display: grid;
  line-height: 1.02;
}
.brand-copy strong {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  letter-spacing: -.3px;
}
.brand-copy span {
  margin-top: 3px;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav > a:not(.button) {
  position: relative;
  color: #34504d;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--green-100);
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--green-950);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 14px 25px;
  border: 2px solid var(--green-900);
  border-radius: 999px;
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 10px 25px rgba(24,79,73,.18);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--green-800);
  background: var(--green-800);
  box-shadow: 0 14px 30px rgba(24,79,73,.24);
}
.button-small {
  min-height: 44px;
  padding: 10px 19px;
  font-size: 13px;
}
.button-secondary {
  color: var(--green-950);
  background: transparent;
  box-shadow: none;
}
.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  background: var(--green-900);
}
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.hero {
  position: relative;
  min-height: 790px;
  padding: 158px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(242,248,245,.98) 0%, rgba(251,248,241,.95) 57%, rgba(235,243,239,.92) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image: radial-gradient(rgba(24,79,73,.16) .7px, transparent .7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}
.hero-orb-one {
  top: 105px;
  right: -190px;
  width: 580px;
  height: 580px;
  background: rgba(191,219,207,.45);
}
.hero-orb-two {
  bottom: -270px;
  left: 31%;
  width: 500px;
  height: 500px;
  border: 80px solid rgba(211,166,91,.08);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow span {
  width: 31px;
  height: 2px;
  background: var(--gold);
}
.hero h1,
.section-heading h2,
.about-copy h2,
.faq-intro h2,
.quote-info h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2.1px;
}
.hero h1 {
  max-width: 650px;
  font-size: clamp(48px, 5.5vw, 76px);
}
.hero h1 em {
  color: var(--green-800);
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}
.hero-intro {
  max-width: 615px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 33px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: #435b58;
  font-size: 14px;
  font-weight: 700;
}
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative;
  width: min(100%, 570px);
  margin-left: auto;
  filter: drop-shadow(0 30px 35px rgba(18,61,57,.14));
}
.hero-image-wrap > img { width: 100%; }
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 15px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}
.floating-card strong,
.floating-card small { display: block; }
.floating-card strong { font-size: 13px; }
.floating-card small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.floating-card-top { top: 8%; left: -6%; }
.floating-card-bottom { right: -4%; bottom: 8%; }
.sparkle-icon,
.home-icon {
  display: grid;
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--green-100);
}
.sparkle-icon { color: var(--gold); font-size: 20px; }
.home-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.trust-strip {
  position: relative;
  z-index: 2;
  padding: 19px 0;
  color: var(--white);
  background: var(--green-950);
}
.trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.trust-list i { color: var(--gold); font-style: normal; }

.section { padding: 105px 0; }
.section-heading { max-width: 725px; }
.section-heading.centered { margin: 0 auto 52px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2,
.about-copy h2,
.faq-intro h2,
.quote-info h2 { font-size: clamp(39px, 4.2vw, 58px); }
.section-heading > p:last-child {
  max-width: 670px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.services { background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 360px;
  padding: 32px 26px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(18,61,57,.035);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -85px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--green-50);
  transition: transform .3s ease;
}
.service-card:hover {
  border-color: #c8dcd5;
  box-shadow: var(--soft-shadow);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scale(1.25); }
.service-icon {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 18px;
  color: var(--green-800);
  background: var(--green-100);
}
.service-icon svg { width: 36px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.service-number {
  position: absolute;
  top: 30px;
  right: 23px;
  color: #ccd9d5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}
.service-card h3 {
  margin: 26px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.15;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}
.service-card a {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}
.service-card a span { font-size: 20px; transition: transform .2s ease; }
.service-card a:hover span { transform: translateX(4px); }
.service-card.featured { color: var(--white); background: var(--green-900); border-color: var(--green-900); }
.service-card.featured::before { background: rgba(255,255,255,.06); }
.service-card.featured .service-icon { color: var(--white); background: rgba(255,255,255,.13); }
.service-card.featured .service-number { color: rgba(255,255,255,.26); }
.service-card.featured p { color: rgba(255,255,255,.72); }
.service-card.featured a { color: var(--sand); }

.about { overflow: hidden; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: 90px;
}
.about-visual { position: relative; }
.about-art {
  position: relative;
  min-height: 525px;
  overflow: hidden;
  border-radius: 50% 50% 22px 22px / 40% 40% 22px 22px;
  background: linear-gradient(155deg, #dfeee8, #cbded7);
  box-shadow: var(--shadow);
}
.about-art::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: #e7d4b8;
  clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
}
.about-window {
  position: absolute;
  top: 95px;
  right: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 210px;
  height: 195px;
  border: 12px solid var(--white);
  box-shadow: 0 18px 35px rgba(18,61,57,.12);
  background: #a9d0cf;
}
.about-window span { border: 1px solid rgba(255,255,255,.7); }
.about-window span:nth-child(1), .about-window span:nth-child(2) { background: linear-gradient(160deg, #bde1df 15%, #dff0ea 55%, #f6e9ca 56%); }
.about-window span:nth-child(3), .about-window span:nth-child(4) { background: linear-gradient(160deg, #dff0ea 30%, #91bbb2 31%, #6b9d91 100%); }
.about-plant { position: absolute; bottom: 92px; left: 45px; width: 170px; height: 240px; }
.about-plant b {
  position: absolute;
  bottom: 0;
  left: 43px;
  width: 88px;
  height: 85px;
  border-radius: 12px 12px 28px 28px;
  background: #a86f4e;
  box-shadow: inset -15px -12px rgba(79,45,30,.12);
}
.about-plant i {
  position: absolute;
  bottom: 65px;
  left: 82px;
  width: 34px;
  height: 126px;
  border-radius: 100% 5% 100% 5%;
  background: #3e7567;
  transform-origin: bottom center;
}
.about-plant i:nth-child(1) { transform: rotate(-42deg); }
.about-plant i:nth-child(2) { height: 150px; transform: rotate(-4deg); background: #4f8b79; }
.about-plant i:nth-child(3) { transform: rotate(43deg); }
.about-table {
  position: absolute;
  right: 42px;
  bottom: 76px;
  width: 245px;
  height: 92px;
  border-radius: 50%;
  background: #b87953;
  box-shadow: 0 17px 0 #7d4c34, 0 27px 30px rgba(62,47,37,.16);
}
.about-table::before,
.about-table::after {
  content: "";
  position: absolute;
  top: 70px;
  width: 19px;
  height: 120px;
  background: #75462f;
}
.about-table::before { left: 42px; transform: rotate(5deg); }
.about-table::after { right: 42px; transform: rotate(-5deg); }
.about-vase {
  position: absolute;
  right: 128px;
  bottom: 155px;
  width: 70px;
  height: 90px;
  border-radius: 30% 30% 45% 45%;
  background: #f4eee2;
  box-shadow: inset -10px -8px rgba(82,58,33,.08);
}
.about-vase i {
  position: absolute;
  bottom: 65px;
  left: 32px;
  width: 4px;
  height: 85px;
  background: #547f68;
  transform-origin: bottom;
}
.about-vase i::after { content: ""; position: absolute; top: -8px; left: -9px; width: 22px; height: 22px; border-radius: 50%; background: #d5ab61; }
.about-vase i:nth-child(1) { transform: rotate(-26deg); }
.about-vase i:nth-child(2) { height: 100px; }
.about-vase i:nth-child(3) { transform: rotate(28deg); }
.about-shine { position: absolute; color: var(--white); text-shadow: 0 5px 15px rgba(255,255,255,.6); }
.shine-one { top: 74px; left: 82px; font-size: 42px; }
.shine-two { top: 164px; left: 46px; font-size: 29px; }
.about-note {
  position: absolute;
  right: -27px;
  bottom: 32px;
  max-width: 235px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}
.about-note strong,
.about-note span { display: block; }
.about-note strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; }
.about-note span { margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.about-copy > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: 16px; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}
.about-values > div { display: flex; gap: 12px; align-items: center; }
.about-values > div > span {
  display: grid;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 13px;
  color: var(--green-800);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(18,61,57,.07);
}
.about-values svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.about-values strong,
.about-values small { display: block; }
.about-values strong { font-size: 14px; }
.about-values small { color: var(--muted); font-size: 11.5px; }
.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 33px;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.text-link span { font-size: 19px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}
.process::before,
.process::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
}
.process::before { top: -250px; right: -140px; width: 580px; height: 580px; }
.process::after { bottom: -260px; left: -180px; width: 540px; height: 540px; }
.section-heading.light { position: relative; z-index: 1; }
.section-heading.light .eyebrow { color: var(--sand); }
.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 1010px;
  margin: auto;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 56px;
  right: 16%;
  left: 16%;
  border-top: 1px dashed rgba(255,255,255,.24);
}
.process-grid article { position: relative; text-align: center; }
.step-number {
  position: absolute;
  top: -7px;
  left: calc(50% + 31px);
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 4px solid var(--green-950);
  border-radius: 50%;
  color: var(--green-950);
  background: var(--sand);
  font-size: 11px;
  font-weight: 900;
}
.step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 112px;
  height: 112px;
  margin: auto;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  background: #1d5650;
  box-shadow: 0 0 0 8px rgba(255,255,255,.025);
}
.step-icon svg { width: 47px; fill: none; stroke: var(--sand); stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.process-grid h3 { margin: 23px 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 500; }
.process-grid p { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.75; }

.faq { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: .73fr 1.27fr;
  gap: 90px;
}
.faq-intro > p:not(.eyebrow) { margin: 19px 0 28px; color: var(--muted); }
.dark-outline { min-height: 48px; padding: 11px 20px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}
.accordion-item button i {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-50);
}
.accordion-item button i::before,
.accordion-item button i::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 9px;
  width: 12px;
  height: 2px;
  background: var(--green-800);
  transition: transform .2s ease;
}
.accordion-item button i::after { transform: rotate(90deg); }
.accordion-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.accordion-panel { padding: 0 58px 22px 0; }
.accordion-panel p { margin: 0; color: var(--muted); font-size: 14.5px; }

.quote { padding-top: 45px; background: var(--white); }
.quote-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 65px;
  padding: 68px;
  border-radius: var(--radius-xl);
  background: var(--green-50);
  box-shadow: inset 0 0 0 1px rgba(24,79,73,.04);
}
.quote-info > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); }
.contact-list { display: grid; gap: 17px; margin-top: 33px; }
.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.contact-list > a > span,
.contact-list > div > span {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: var(--green-800);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(18,61,57,.06);
}
.contact-list svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-list small,
.contact-list strong { display: block; }
.contact-list small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .8px; }
.contact-list strong { margin-top: 2px; font-size: 13.5px; overflow-wrap: anywhere; }
.quote-form {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.quote-form label { display: block; margin-bottom: 15px; }
.quote-form label > span { display: block; margin: 0 0 6px 2px; font-size: 12px; font-weight: 850; }
.quote-form label b { color: #a45a47; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d6e1dd;
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #fcfdfc;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.quote-form input,
.quote-form select { height: 50px; padding: 0 14px; }
.quote-form textarea { min-height: 120px; padding: 13px 14px; resize: vertical; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green-800);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(36,102,95,.09);
}
.quote-form [aria-invalid="true"] { border-color: #a45a47; box-shadow: 0 0 0 4px rgba(164,90,71,.08); }
.form-submit { width: 100%; border: 0; }
.form-submit span { font-size: 20px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 10.5px; text-align: center; }
.form-status { min-height: 22px; margin: 5px 0 0; color: #9a4c3d; font-size: 12px; font-weight: 700; text-align: center; }

.site-footer {
  padding: 65px 0 25px;
  color: rgba(255,255,255,.72);
  background: #0c312e;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 35px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy span { color: var(--sand); }
.footer-top p { margin: 0; font-size: 13px; }
.social-links { display: flex; gap: 9px; }
.social-links a {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.social-links a:hover { border-color: var(--green-800); background: var(--green-800); }
.social-links svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  font-size: 11.5px;
}
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.mobile-call { display: none; }

@media (max-width: 1080px) {
  .hero-grid { gap: 35px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 330px; }
  .about-grid { gap: 55px; }
  .quote-shell { padding: 50px; gap: 40px; }
}

@media (max-width: 860px) {
  .site-header { background: rgba(255,255,255,.94); backdrop-filter: blur(12px); }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 76px 20px auto;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a:not(.button) { padding: 14px 10px; border-bottom: 1px solid var(--line); }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { margin-top: 13px; }
  .hero { padding-top: 135px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow,
  .hero-points,
  .hero-actions { justify-content: center; }
  .hero-intro { margin-inline: auto; }
  .hero-visual { margin-top: 20px; }
  .hero-image-wrap { width: min(100%, 600px); margin-inline: auto; }
  .trust-list { flex-wrap: wrap; gap: 11px 18px; }
  .about-grid,
  .faq-grid,
  .quote-shell { grid-template-columns: 1fr; }
  .about-grid { gap: 70px; }
  .about-visual { max-width: 560px; margin: auto; }
  .faq-grid { gap: 45px; }
  .quote-shell { gap: 38px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .brand-copy strong { font-size: 17px; }
  .brand img { width: 43px; }
  .hero { min-height: auto; padding: 125px 0 65px; }
  .hero h1 { font-size: clamp(43px, 13vw, 60px); letter-spacing: -1.7px; }
  .hero-intro { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; justify-content: start; max-width: 340px; margin-inline: auto; text-align: left; }
  .floating-card { min-width: 175px; padding: 10px 12px; }
  .floating-card-top { left: -2%; }
  .floating-card-bottom { right: -2%; }
  .trust-strip { padding: 15px 0; }
  .trust-list { gap: 8px 13px; font-size: 10.5px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .section-heading h2,
  .about-copy h2,
  .faq-intro h2,
  .quote-info h2 { font-size: 40px; letter-spacing: -1.4px; }
  .about-art { min-height: 470px; }
  .about-window { right: 30px; width: 190px; height: 175px; }
  .about-table { right: 10px; width: 220px; }
  .about-note { right: 12px; bottom: -25px; }
  .about-values { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 45px; }
  .process-grid::before { display: none; }
  .process-grid p { max-width: 420px; margin-inline: auto; }
  .quote { padding-top: 25px; }
  .quote-shell { width: 100%; padding: 50px 20px; border-radius: 0; }
  .quote-form { padding: 25px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .social-links { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .mobile-call {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    color: var(--white);
    background: var(--green-900);
    box-shadow: 0 10px 30px rgba(18,61,57,.3);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
  }
  .mobile-call svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
