:root {
  --green: #3f7d16;
  --green-bright: #6daf2c;
  --green-dark: #27520c;
  --green-soft: #e8f3df;
  --green-wash: #f4f9ef;
  --ink: #141714;
  --muted: #5b6257;
  --line: #d9e4d1;
  --paper: #fbfcf8;
  --white: #ffffff;
  --gold: #d6a847;
  --gold-soft: #fff4d5;
  --shadow: 0 22px 60px rgba(20, 23, 20, 0.14);
  --shadow-hover: 0 28px 80px rgba(39, 82, 12, 0.22);
  --fast: 160ms ease;
  --smooth: 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(109, 175, 44, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--paper), #ffffff 38rem);
  color: var(--ink);
  animation: pageIn 520ms ease both;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--fast), background var(--fast), border-color var(--fast);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--fast);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(63, 125, 22, 0.18);
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
  padding: 4px;
  box-shadow: 0 10px 24px rgba(20, 23, 20, 0.1);
  transition: transform var(--smooth), box-shadow var(--fast);
}

.brand:hover .brand-logo {
  box-shadow: 0 14px 30px rgba(63, 125, 22, 0.18);
  transform: rotate(-2deg) scale(1.04);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  color: var(--muted);
  font-weight: 800;
}

nav a {
  position: relative;
  border-bottom: 2px solid transparent;
  padding-block: 8px;
  text-decoration: none;
  transition: color var(--fast), transform var(--fast);
}

nav a:hover,
nav a[aria-current="page"] {
  border-color: var(--green);
  color: var(--green-dark);
}

nav a:hover {
  transform: translateY(-1px);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 86% 22%, rgba(214, 168, 71, 0.2), transparent 18rem),
    radial-gradient(circle at 78% 72%, rgba(63, 125, 22, 0.18), transparent 22rem),
    linear-gradient(135deg, #fbfcf8 0%, #eef7e7 58%, #dceecf 100%);
}

.hero-copy {
  max-width: 780px;
  animation: riseIn 720ms var(--smooth) both;
}

.page-hero {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 88% 18%, rgba(214, 168, 71, 0.18), transparent 18rem),
    radial-gradient(circle at 78% 86%, rgba(63, 125, 22, 0.16), transparent 24rem),
    linear-gradient(135deg, #fbfcf8 0%, #eef7e7 62%, #dceecf 100%);
}

.page-hero.compact {
  min-height: 430px;
  display: grid;
  align-content: center;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.centered-hero {
  justify-items: center;
  text-align: center;
}

.centered-hero h1,
.centered-hero p:not(.eyebrow) {
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2.55rem, 5.8vw, 5.55rem);
  line-height: 0.99;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3.4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.22rem, 1.8vw, 1.62rem);
  line-height: 1.14;
}

.hero-copy > p:not(.eyebrow),
.feature-band > p,
.contact-section p,
.flyer-section p,
.price-card p,
.service-card p,
.teaser-card p,
.product-grid p,
.step-grid p,
.values-grid p,
.fineprint {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transform: translateY(0);
  transition: transform var(--fast), box-shadow var(--fast), border-color var(--fast), background var(--fast);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-120%);
  transition: transform 540ms ease;
}

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

.button:hover::after {
  transform: translateX(120%);
}

.button.primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(63, 125, 22, 0.28);
}

.button.primary:hover {
  box-shadow: 0 18px 42px rgba(63, 125, 22, 0.34);
}

.button.ghost {
  border-color: rgba(20, 23, 20, 0.25);
  background: rgba(255, 255, 255, 0.76);
}

.button.ghost:hover {
  border-color: var(--green);
  background: var(--white);
}

.hero-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  background: rgba(20, 23, 20, 0.88);
  color: var(--white);
  box-shadow: var(--shadow);
  animation: riseIn 820ms var(--smooth) 100ms both;
}

.hero-card .fact-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  align-items: start;
  padding: 18px 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: background var(--fast), transform var(--fast);
}

.hero-card .fact-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}

.fact-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.metric {
  color: #9bd66d;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 900;
  line-height: 1.05;
}

.fact-item span:last-child {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-strip span {
  padding: 18px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
  transition: color var(--fast), background var(--fast);
}

.trust-strip span:hover {
  background: var(--green-wash);
  color: var(--green);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 80px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(20px, 5vw, 70px);
  align-items: end;
  margin-bottom: 32px;
}

.centered-heading {
  display: block;
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.compact-heading {
  display: block;
  margin-bottom: 24px;
}

.teaser-grid,
.service-detail-grid,
.price-layout,
.values-grid,
.product-grid,
.step-grid {
  display: grid;
  gap: 18px;
}

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

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

.service-detail-grid,
.price-layout,
.values-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.centered-services {
  align-items: stretch;
}

.centered-services .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.centered-services .service-card ul {
  width: min(100%, 620px);
  justify-items: start;
  text-align: left;
}

.centered-section .product-grid article,
.centered-section .step-grid article {
  text-align: center;
}

.centered-section .product-grid span,
.centered-section .step-grid span {
  margin-inline: auto;
}

.values-grid article.featured-value {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(63, 125, 22, 0.95), rgba(39, 82, 12, 0.96)),
    var(--green);
  color: var(--white);
}

.values-grid article.featured-value p {
  color: rgba(255, 255, 255, 0.84);
}

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

.teaser-card,
.price-card,
.values-grid article,
.product-grid article,
.step-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--smooth), box-shadow var(--smooth), border-color var(--fast);
}

.teaser-card {
  position: relative;
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  text-decoration: none;
  overflow: hidden;
}

.teaser-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--smooth);
}

.teaser-card:hover,
.price-card:hover,
.values-grid article:hover,
.step-grid article:hover {
  border-color: rgba(63, 125, 22, 0.4);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.teaser-card:hover::before {
  transform: scaleX(1);
}

.teaser-card span,
.product-grid span,
.step-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
  transition: transform var(--smooth), background var(--fast), color var(--fast);
}

.teaser-card:hover span,
.product-grid article:hover span,
.step-grid article:hover span {
  background: var(--green);
  color: var(--white);
  transform: rotate(-4deg) scale(1.06);
}

.service-card,
.price-card,
.values-grid article,
.product-grid article,
.step-grid article {
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
}

.product-section {
  background: var(--green-wash);
}

.product-grid article {
  transition: transform var(--smooth), box-shadow var(--smooth), border-color var(--fast);
}

.product-grid article:hover {
  border-color: rgba(63, 125, 22, 0.4);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.service-card {
  box-shadow: var(--shadow);
  transition: transform var(--smooth), box-shadow var(--smooth), filter var(--fast);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  filter: saturate(1.05);
  transform: translateY(-6px);
}

.service-card.dark {
  background: var(--ink);
  color: var(--white);
}

.service-card.green {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
}

.service-card p,
.service-card li {
  color: rgba(255, 255, 255, 0.82);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #b9ec8a;
  font-weight: 900;
}

ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 26px;
  line-height: 1.45;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 7vw, 74px) clamp(18px, 5vw, 80px);
  background:
    linear-gradient(135deg, var(--green-soft), #ffffff),
    var(--green-soft);
  border-block: 1px solid var(--line);
}

.prices-section {
  background: var(--white);
}

.price-card {
  background: var(--paper);
}

.note-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(63, 125, 22, 0.22);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, var(--green-wash), #ffffff);
  box-shadow: var(--shadow);
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.sand-swatch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--white);
  font-weight: 900;
}

.sand-swatch::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.14);
}

.sand-swatch.anthracite::before {
  background: #2f3431;
}

.sand-swatch.grey::before {
  background: #8b8f88;
}

.sand-swatch.neutral::before {
  background: #c7b98c;
}

.prices-section .price-card:first-child {
  grid-row: span 2;
}

.calculator-section {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.82fr);
  gap: 20px;
  align-items: start;
  background: var(--white);
}

.calculator-panel,
.estimate-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
  transition: transform var(--smooth), box-shadow var(--smooth), border-color var(--fast);
}

.calculator-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 249, 239, 0.92)),
    var(--paper);
}

.estimate-panel {
  position: sticky;
  top: 104px;
  background:
    radial-gradient(circle at top right, rgba(109, 175, 44, 0.35), transparent 16rem),
    linear-gradient(145deg, #111611, #1b2518);
  color: var(--white);
}

.calculator-panel:hover,
.estimate-panel:hover {
  border-color: rgba(63, 125, 22, 0.38);
  box-shadow: var(--shadow-hover);
}

.estimate-panel .eyebrow,
.estimate-panel .fineprint {
  color: #b9ec8a;
}

.estimate-panel .button {
  width: 100%;
  margin-top: 18px;
}

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

.checkbox-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkbox-row label,
.sand-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: border-color var(--fast), background var(--fast), transform var(--fast);
}

.checkbox-row label:hover,
.sand-choice:hover {
  border-color: var(--green);
  background: var(--green-wash);
  transform: translateY(-2px);
}

.checkbox-row input,
.sand-choice input {
  width: 18px;
  min-height: auto;
}

.sand-options {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  border: 0;
  padding: 0;
}

.sand-options legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--muted);
  font-weight: 900;
}

.sand-choice {
  position: relative;
  cursor: pointer;
}

.sand-choice::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.anthracite-choice::before {
  background: #2f3431;
}

.grey-choice::before {
  background: #8b8f88;
}

.neutral-choice::before {
  background: #c7b98c;
}

.sand-choice:has(input:checked) {
  border-color: var(--green);
  background: var(--green-wash);
  box-shadow: 0 0 0 4px rgba(63, 125, 22, 0.1);
}

table {
  width: 100%;
  min-width: 420px;
  margin-top: 20px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(20, 23, 20, 0.06);
}

.price-card {
  overflow-x: auto;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  transition: background var(--fast), color var(--fast);
}

th {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
}

tbody tr:hover td {
  background: var(--green-wash);
}

tr:last-child td {
  border-bottom: 0;
}

.package-table td:last-child {
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 900;
  white-space: nowrap;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #c6d5bd;
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  transition: border-color var(--fast), box-shadow var(--fast), transform var(--fast), background var(--fast);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(63, 125, 22, 0.55);
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(63, 125, 22, 0.13);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

output {
  display: block;
}

#estimateTotal {
  margin: 6px 0 20px;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 28px rgba(155, 214, 109, 0.26);
  transition: transform var(--fast), text-shadow var(--fast);
}

.estimate-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.estimate-meter span {
  display: block;
  width: 55%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9bd66d, var(--gold));
  box-shadow: 0 0 24px rgba(155, 214, 109, 0.42);
  transition: width 520ms var(--smooth);
}

.estimate-details {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.estimate-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  animation: lineIn 260ms ease both;
}

.estimate-line strong {
  color: var(--white);
  white-space: nowrap;
}

.flyer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 80px);
}

.loyalty-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.82fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 86% 18%, rgba(214, 168, 71, 0.18), transparent 18rem),
    linear-gradient(135deg, #ffffff, var(--green-wash));
  border-block: 1px solid var(--line);
}

.compact-loyalty {
  padding-top: clamp(42px, 6vw, 78px);
  padding-bottom: clamp(42px, 6vw, 78px);
}

.loyalty-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.loyalty-points {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.loyalty-points span {
  position: relative;
  padding-left: 26px;
  color: var(--green-dark);
  font-weight: 900;
}

.loyalty-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.loyalty-card-link {
  display: block;
  border-radius: 8px;
  text-decoration: none;
}

.loyalty-card-link img {
  display: block;
  width: 100%;
  border: 1px solid rgba(63, 125, 22, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform var(--smooth), box-shadow var(--smooth);
}

.loyalty-card-link:hover img {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px) rotate(-0.25deg);
}

.flyer-section img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform var(--smooth), box-shadow var(--smooth);
}

.flyer-section img:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px) rotate(0.3deg);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 80px);
  background: var(--ink);
  color: var(--white);
}

.full-contact {
  min-height: calc(100vh - 82px);
  align-items: center;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: #b9ec8a;
  font-size: 1.08rem;
  font-weight: 900;
}

.contact-links a {
  text-decoration: none;
  transition: color var(--fast), transform var(--fast);
}

.contact-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.contact-form label {
  color: rgba(255, 255, 255, 0.82);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 24px clamp(18px, 5vw, 80px);
  background: #0c0f0c;
  color: rgba(255, 255, 255, 0.76);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms var(--smooth);
}

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

.estimate-panel.bump {
  animation: priceBump 520ms ease;
}

.estimate-panel.bump #estimateTotal {
  text-shadow: 0 0 44px rgba(155, 214, 109, 0.58);
}

@keyframes pageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes priceBump {
  0% {
    box-shadow: var(--shadow);
  }
  50% {
    transform: scale(1.018);
    box-shadow: 0 34px 90px rgba(63, 125, 22, 0.34);
  }
  100% {
    box-shadow: var(--shadow);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero,
  .section-heading,
  .feature-band,
  .flyer-section,
  .loyalty-section,
  .contact-section,
  .calculator-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 85% 15%, rgba(214, 168, 71, 0.18), transparent 16rem),
      linear-gradient(160deg, #fbfcf8, #e8f3df);
  }

  .hero-card .fact-item,
  .smart-calculator,
  .checkbox-row,
  .sand-options {
    grid-template-columns: 1fr;
  }

  .estimate-panel {
    position: static;
  }

  .teaser-grid,
  .service-detail-grid,
  .price-layout,
  .values-grid,
  .product-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 48px;
    height: 48px;
  }

  nav {
    gap: 10px 16px;
    font-size: 0.92rem;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
  }

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

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