﻿:root {
  --ink: #17191d;
  --ink-soft: #383e46;
  --muted: #68707a;
  --paper: #ffffff;
  --mist: #f5f8f4;
  --ash: #e3ebe4;
  --steel: #3f8f5a;
  --steel-dark: #27643e;
  --alvero-green: #3f8f5a;
  --alvero-green-dark: #1f4f34;
  --alvero-green-soft: #edf6ee;
  --copper: #6f8b4e;
  --graphite: #101216;
  --graphite-soft: #20242a;
  --line: #d8e1d8;
  --shadow: 0 18px 48px rgba(16, 18, 22, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(216, 225, 216, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 850;
  font-size: 1.1rem;
}

.brand-logo {
  display: block;
  width: 236px;
  height: auto;
}

.footer-logo {
  width: 250px;
}

.menu-button {
  display: none;
  min-height: 40px;
  margin-left: auto;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1 1 auto;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--steel);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--paper);
  background: var(--steel);
  box-shadow: 0 14px 28px rgba(63, 143, 90, 0.2);
}

.button.dark {
  color: var(--paper);
  background: var(--graphite);
}

.button.ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--steel-dark);
  box-shadow: 0 18px 34px rgba(39, 100, 62, 0.25);
}

.button.dark:hover {
  background: var(--graphite-soft);
}

.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(690px, 72svh);
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.hero-home {
  background-image: url("./home.png");
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 18, 22, 0.88), rgba(16, 18, 22, 0.56) 48%, rgba(16, 18, 22, 0.08)),
    linear-gradient(0deg, rgba(16, 18, 22, 0.16), rgba(16, 18, 22, 0.18));
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 68px 0 50px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 4.2rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading p,
.quote-copy p,
.split-grid p,
.service-hero p,
.package-builder p {
  color: var(--muted);
  font-size: 1.04rem;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: var(--graphite);
  color: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid div {
  padding: 22px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 3px;
  font-size: 1.06rem;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.services-overview {
  background: var(--mist);
}

.price-preview-section {
  background: var(--paper);
}

.price-preview-section .eyebrow {
  color: var(--alvero-green);
}

.price-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.price-preview-grid.single {
  max-width: 560px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.price-preview-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(16, 18, 22, 0.08);
}

.price-preview-card.featured {
  border-color: var(--line);
  background: var(--paper);
}

.price-preview-card span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--alvero-green);
  font-size: 0.82rem;
  font-weight: 920;
  text-transform: uppercase;
}

.price-preview-card.featured span {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--alvero-green-dark);
  background: var(--alvero-green-soft);
}

.price-preview-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--graphite);
  font-size: 1.75rem;
  line-height: 1;
}

.price-preview-card p {
  margin: 0;
  color: var(--muted);
}

.center-action {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.price-preview-section .button.primary {
  background: var(--alvero-green);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(16, 18, 22, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(63, 143, 90, 0.32);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 420ms ease;
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-content {
  padding: 24px;
}

.service-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--steel);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-content p {
  margin-bottom: 18px;
  color: var(--muted);
}

.text-link {
  color: var(--ink);
  font-weight: 900;
}

.text-link::after {
  content: " ->";
  color: var(--steel);
}

.split-band,
.calculator-band {
  background:
    linear-gradient(180deg, rgba(245, 248, 244, 0.9), rgba(255, 255, 255, 0.96)),
    var(--mist);
}

.split-grid,
.calculator-layout,
.service-hero-grid,
.package-builder,
.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.split-grid .button {
  margin-top: 12px;
}

.package-preview,
.calculator-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.package-preview {
  padding: 12px;
}

.package-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.package-row:last-child {
  border-bottom: 0;
}

.package-row span {
  color: var(--muted);
  font-weight: 760;
}

.package-row strong {
  text-align: right;
}

.quote-section {
  background: var(--paper);
}

.quote-layout {
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 108px;
}

.quote-form {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label,
legend {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 850;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #cbd8cc;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 128px;
  resize: vertical;
  padding: 13px;
}

input:focus,
textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 4px rgba(63, 143, 90, 0.13);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 12px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice,
.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
}

.choice {
  min-height: 50px;
  padding: 12px;
  border: 1px solid #cbd8cc;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.consent {
  color: var(--muted);
  font-size: 0.91rem;
}

.choice input,
.consent input,
.toggle-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--steel);
}

.submit-button {
  width: 100%;
  border: 0;
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.76;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--steel-dark);
  font-weight: 850;
}

.form-status.error {
  color: #9a3429;
}

.service-hero {
  padding: 76px 0;
  background:
    linear-gradient(180deg, rgba(245, 248, 244, 0.92), rgba(255, 255, 255, 1)),
    var(--mist);
}

.service-hero-grid {
  align-items: center;
}

.service-hero h1 {
  color: var(--ink);
  font-size: 3.45rem;
}

.service-hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pricing-grid.single {
  max-width: 620px;
  grid-template-columns: 1fr;
}

.pricing-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card,
.info-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(16, 18, 22, 0.08);
}

.price-card::before,
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--alvero-green);
}

.price-card.featured::before {
  background: var(--alvero-green-dark);
}

.price-topline {
  margin-bottom: 12px;
  color: var(--alvero-green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 4px;
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 920;
}

.price-note {
  margin-bottom: 22px;
  color: var(--muted);
}

.old-price {
  display: block;
  margin-bottom: 5px;
  text-decoration: line-through;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 22px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--alvero-green);
}

.calculator-layout,
.package-builder {
  align-items: start;
}

.calculator-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.toggle-option {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 13px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.toggle-option:has(input:checked) {
  border-color: rgba(63, 143, 90, 0.46);
  background: #f0f8f1;
}

.toggle-option span,
.toggle-option small {
  display: block;
}

.toggle-option strong {
  display: block;
  margin-bottom: 3px;
}

.toggle-option small {
  color: var(--muted);
}

.calculator-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  padding: 20px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--graphite);
}

.calculator-total span {
  color: rgba(255, 255, 255, 0.7);
}

.calculator-total strong {
  font-size: 1.45rem;
  text-align: right;
}

.calculator-note {
  margin: 0;
  color: var(--muted);
}


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

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

.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(16, 18, 22, 0.06);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  background: var(--mist);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--steel);
  font-weight: 920;
}

.info-card h2 {
  font-size: 1.55rem;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.price-hero {
  padding: 82px 0 68px;
  background:
    linear-gradient(135deg, rgba(31, 79, 52, 0.94), rgba(16, 18, 22, 0.94)),
    var(--graphite);
  color: var(--paper);
}

.price-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 54px;
  align-items: center;
}

.price-hero h1 {
  color: var(--paper);
  font-size: 3.65rem;
}

.price-hero p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.price-hero .button.primary,
.pricing-section .button.primary,
.flise-calculator .button.primary {
  background: var(--alvero-green);
  box-shadow: 0 14px 28px rgba(63, 143, 90, 0.2);
}

.price-hero .button.primary:hover,
.pricing-section .button.primary:hover,
.flise-calculator .button.primary:hover {
  background: var(--alvero-green-dark);
  box-shadow: 0 18px 34px rgba(31, 79, 52, 0.25);
}

.treatment-note {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.treatment-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--paper);
  font-size: 1.16rem;
}

.treatment-note p {
  margin: 0;
}

.pricing-section {
  background: var(--paper);
}

.pricing-section:nth-of-type(even),
.bundle-pricing {
  background: var(--mist);
}

.pricing-section .eyebrow {
  color: var(--alvero-green);
}

.price-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.price-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(16, 18, 22, 0.08);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: var(--alvero-green);
}

.pricing-card.highlighted {
  border-color: rgba(63, 143, 90, 0.42);
  box-shadow: 0 22px 54px rgba(31, 79, 52, 0.14);
}

.pricing-card.compact {
  gap: 14px;
}

.pricing-card-head {
  display: grid;
  gap: 8px;
}

.service-type,
.minimum-price {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-type {
  color: var(--alvero-green);
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.42rem;
}

.service-price {
  margin: 0;
  color: var(--graphite);
  font-size: 2.08rem;
  line-height: 1;
  font-weight: 940;
}

.minimum-price {
  margin: 0;
  text-transform: none;
}

.service-summary,
.time-note {
  margin: 0;
  color: var(--muted);
}

.time-note {
  padding: 14px;
  border-left: 3px solid var(--alvero-green);
  background: var(--alvero-green-soft);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.inclusion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.inclusion-grid.single {
  grid-template-columns: 1fr;
}

.pricing-card h4,
.addon-panel h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.pricing-card ul,
.addon-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
}

.pricing-card li,
.addon-panel li {
  position: relative;
  padding-left: 20px;
}

.pricing-card li::before,
.addon-panel li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--alvero-green);
}

.pricing-card .not-list li::before {
  width: 8px;
  height: 2px;
  top: 0.72em;
  border-radius: 99px;
  background: #8c9a8d;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--alvero-green);
  font-size: 0.76rem;
  font-weight: 920;
  text-transform: uppercase;
}

.pricing-card .button {
  margin-top: auto;
}

.addon-panel,
.flise-calculator {
  margin-top: 26px;
  padding: 26px;
  border: 1px solid rgba(63, 143, 90, 0.22);
  border-radius: var(--radius);
  background: var(--alvero-green-soft);
}

.flise-calculator {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.calculator-input {
  display: grid;
  gap: 12px;
}

.calculator-input input {
  height: 52px;
  padding: 0 14px;
  border: 1px solid #b9c9bf;
  border-radius: var(--radius);
  font-weight: 850;
}

.package-options {
  display: grid;
  gap: 10px;
}

.package-option {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(63, 143, 90, 0.2);
  border-radius: var(--radius);
  background: var(--paper);
}

.package-option strong,
.package-option span {
  display: block;
}

.package-option span {
  color: var(--muted);
  line-height: 1.45;
}

.package-option small {
  display: block;
  margin: 3px 0 2px;
  color: var(--steel-dark);
  font-weight: 850;
}

.tile-total {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--graphite);
}

.tile-total strong {
  font-size: clamp(1.45rem, 3vw, 2rem);
  text-align: left;
  white-space: nowrap;
}

.tile-total span {
  display: grid;
  gap: 4px;
  font-weight: 900;
}

.tile-total small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.site-footer {
  padding: 72px 0 24px;
  color: var(--paper);
  background:
    radial-gradient(circle at 8% 0%, rgba(63, 143, 90, 0.18), transparent 30%),
    #0d1820;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1.05fr 0.8fr;
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
}

.footer-brand-column {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.footer-brand-column .brand {
  display: inline-flex;
}

.footer-brand-column p,
.footer-column p,
.footer-column span {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.footer-email {
  color: #fff;
  font-weight: 780;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 4px 0 10px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 680;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-email:hover,
.footer-email:focus-visible {
  color: #7fc589;
}

.footer-contact a {
  width: fit-content;
  margin: 3px 0 5px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--alvero-green);
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fff;
  background: #4ea569;
}

.neighbor-offer {
  padding: 30px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--alvero-green-dark), var(--alvero-green));
}

.neighbor-offer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.neighbor-offer .eyebrow {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.neighbor-offer h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.neighbor-offer p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.neighbor-offer .button {
  white-space: nowrap;
  color: var(--alvero-green-dark);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.neighbor-offer .button:hover,
.neighbor-offer .button:focus-visible {
  color: var(--alvero-green-dark);
  background: var(--alvero-green-soft);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-icon:hover,
.social-icon:focus-visible {
  border-color: var(--alvero-green);
  background: var(--alvero-green);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}

.about-hero {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: url("./home.png") center 52% / cover no-repeat;
}

.about-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 18, 15, 0.94) 0%, rgba(9, 18, 15, 0.7) 46%, rgba(9, 18, 15, 0.16) 100%),
    linear-gradient(0deg, rgba(9, 18, 15, 0.52), transparent 52%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 92px 0;
}

.about-hero-content h1 {
  max-width: 820px;
  margin: 8px 0 20px;
  color: #fff;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.98;
}

.about-hero-content > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
}

.about-story-copy {
  padding-left: 28px;
  border-left: 3px solid var(--alvero-green);
}

.about-story-copy p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.trust-section {
  color: #fff;
  background: var(--graphite);
}

.trust-section .section-heading h2 {
  color: #fff;
}

.trust-section .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.trust-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(63, 143, 90, 0.2), rgba(255, 255, 255, 0.03));
}

.trust-card span {
  color: #75bd83;
  font-weight: 900;
}

.trust-card h3 {
  margin: 28px 0 8px;
  color: #fff;
  font-size: 1.35rem;
}

.trust-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.service-agreement-section {
  background: var(--mist);
}

.service-agreement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.service-agreement-image {
  position: relative;
}

.service-agreement-image img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.service-agreement-image span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 13px 17px;
  border-radius: 6px;
  color: #fff;
  background: var(--alvero-green-dark);
  font-weight: 850;
}

.service-agreement-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.07rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.12em;
  content: "✓";
  color: var(--alvero-green);
  font-size: 1.15rem;
  font-weight: 950;
}

.about-cta {
  padding: 54px 0;
  color: #fff;
  background: linear-gradient(120deg, var(--alvero-green-dark), var(--alvero-green));
}

.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.about-cta h2 {
  margin: 0;
  color: #fff;
}

.about-cta .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-cta-actions > a:not(.button) {
  color: #fff;
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: none;
  animation: fade-up 560ms ease both;
}

.hero-inner.reveal,
.service-hero .reveal {
  animation: none;
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    order: 5;
    flex-basis: 100%;
    align-items: stretch;
    padding: 12px 0 4px;
  }

  .nav-links.is-open {
    display: grid;
    gap: 8px;
  }

  .nav-links a {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
  }

  .nav-links a::after {
    display: none;
  }

  .header-cta {
    margin-left: 0;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .proof-grid,
  .service-grid,
  .price-preview-grid,
  .split-grid,
  .calculator-layout,
  .service-hero-grid,
  .package-builder,
  .quote-layout,
  .pricing-grid,
  .pricing-grid.three,
  .info-grid,
  .process-grid,
  .faq-grid,
  .price-hero-grid,
  .price-card-grid,
  .price-card-grid.two,
  .price-card-grid.three,
  .flise-calculator,
  .inclusion-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .quote-copy {
    position: static;
  }

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

  .about-story-grid,
  .service-agreement-grid,
  .about-cta-inner {
    grid-template-columns: 1fr;
  }

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

  .about-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 74px;
    padding: 12px 17px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-logo {
    width: 178px;
  }

  .footer-logo {
    width: 205px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .menu-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: min(640px, 70svh);
    background-position: 64% center;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 34px, var(--max));
  }

  .hero-inner {
    padding: 46px 0 36px;
  }

  h1,
  .service-hero h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-copy,
  .section-heading p,
  .quote-copy p,
  .split-grid p,
  .service-hero p,
  .package-builder p {
    font-size: 1rem;
  }

  .hero-actions,
  .center-action,
  .field-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .center-action,
  .field-grid,
  .choice-grid {
    display: grid;
  }

  .button,
  .header-cta {
    white-space: normal;
    text-align: center;
  }

  .section,
  .service-hero,
  .price-hero {
    padding: 58px 0;
  }

  .quote-form,
  .price-card,
  .info-card,
  .pricing-card,
  .treatment-note,
  .addon-panel,
  .flise-calculator {
    padding: 20px;
  }

  .price-hero h1 {
    font-size: 2.45rem;
  }

  .service-price {
    font-size: 1.82rem;
  }

  .badge {
    position: static;
    width: fit-content;
    margin-bottom: -4px;
  }

  .tile-total {
    display: grid;
  }

  .tile-total strong {
    text-align: left;
  }

  .package-row,
  .calculator-total {
    display: grid;
    gap: 6px;
  }

  .package-row strong,
  .calculator-total strong {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .site-footer {
    padding-top: 52px;
  }

  .footer-bottom {
    margin-top: 38px;
  }

  .about-hero {
    min-height: 520px;
    background-position: 62% center;
  }

  .about-hero-content {
    padding: 68px 0;
  }

  .about-hero-content h1 {
    font-size: 3rem;
  }

  .about-story-copy {
    padding-left: 20px;
  }

  .service-agreement-image img {
    min-height: 330px;
  }

  .about-cta-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .neighbor-offer-inner {
    grid-template-columns: 1fr;
  }

  .neighbor-offer .button {
    justify-self: start;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Forside v2 */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--alvero-green-dark);
  transform: translateY(-150%);
}

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

.home-v2 .site-header {
  border-bottom: 1px solid rgba(31, 79, 52, 0.08);
}

.home-v2 .button.secondary {
  border: 1px solid var(--alvero-green-dark);
  color: var(--alvero-green-dark);
  background: transparent;
}

.home-v2 .button.secondary:hover,
.home-v2 .button.secondary:focus-visible {
  color: #fff;
  background: var(--alvero-green-dark);
}

.local-hero {
  padding: clamp(56px, 7vw, 88px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 12%, rgba(90, 168, 107, 0.13), transparent 34%),
    linear-gradient(180deg, #fbfdfb 0%, #f4f8f4 100%);
}

.local-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
  gap: clamp(38px, 5vw, 68px);
  align-items: center;
}

.local-hero-copy h1 {
  max-width: 720px;
  margin: 10px 0 22px;
  font-size: clamp(3.2rem, 4.9vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.local-hero-text {
  max-width: 650px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin: 0 0 28px;
  padding: 11px 15px;
  border: 1px solid #cfe2d2;
  border-radius: 7px;
  color: var(--alvero-green-dark);
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 79, 52, 0.08);
  font-weight: 760;
}

.hero-price strong {
  font-size: 1.28rem;
}

.local-hero-media {
  position: relative;
  display: block;
  padding: 10px;
  border: 1px solid rgba(31, 79, 52, 0.12);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 28px 72px rgba(16, 39, 26, 0.18);
}

.local-hero-media::before {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  content: "FØR";
}

.local-hero-media::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  content: "EFTER";
}

.local-hero-media::before,
.local-hero-media::after {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #fff;
  background: rgba(11, 25, 17, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  pointer-events: none;
}

.local-hero-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 9px;
  object-fit: contain;
}

.trust-strip {
  color: #fff;
  background: var(--alvero-green-dark);
}

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

.trust-strip-grid span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  text-align: center;
  font-size: 0.89rem;
  font-weight: 760;
  line-height: 1.35;
}

.trust-strip-grid span:last-child {
  border-right: 0;
}

.home-services {
  background: #fff;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.home-service-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 30%, #f5faf5 100%);
  box-shadow: 0 18px 46px rgba(16, 18, 22, 0.07);
}

.home-service-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: rgba(63, 143, 90, 0.1);
}

.service-number {
  color: #9caf9f;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.home-service-card .service-kicker {
  margin: 50px 0 8px;
  color: var(--alvero-green);
  font-weight: 850;
  text-transform: none;
}

.home-service-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
}

.home-service-card > p:not(.service-kicker) {
  margin: 0 0 26px;
  color: var(--muted);
}

.home-service-card > a {
  z-index: 1;
  width: fit-content;
  margin-top: auto;
  color: var(--alvero-green-dark);
  font-weight: 850;
}

.price-disclaimer {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 16px 20px;
  border-left: 3px solid var(--alvero-green);
  color: var(--muted);
  background: var(--mist);
  text-align: center;
  font-size: 0.9rem;
}

.home-offer-intro {
  padding-top: clamp(54px, 7vw, 78px);
  padding-bottom: clamp(54px, 7vw, 78px);
  background: var(--mist);
}

.home-offer-intro-inner {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}

.home-offer-intro-inner > div {
  max-width: 720px;
}

.home-offer-intro-inner h2 {
  margin: 8px 0 10px;
}

.home-offer-intro-inner p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.home-offer-intro-inner .button {
  flex: 0 0 auto;
}

.comparison-section {
  color: #fff;
  background:
    radial-gradient(circle at 10% 15%, rgba(90, 168, 107, 0.2), transparent 30%),
    var(--graphite);
}

.comparison-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(46px, 7vw, 88px);
  align-items: center;
}

.comparison-copy h2 {
  color: #fff;
}

.comparison-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.comparison-copy .button.dark {
  margin-top: 16px;
  color: var(--alvero-green-dark);
  background: #fff;
}

.comparison {
  min-width: 0;
}

.comparison-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  overflow: hidden;
  background: #1a221d;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.3);
  isolation: isolate;
}

.comparison-stage > img,
.comparison-after-wrap,
.comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.comparison-stage img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.comparison-after-wrap {
  z-index: 2;
  clip-path: inset(0 0 0 var(--comparison-position));
}

.comparison-label {
  position: absolute;
  top: 18px;
  z-index: 4;
  padding: 8px 11px;
  border-radius: 5px;
  color: #fff;
  background: rgba(10, 18, 14, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-label-before {
  left: 18px;
}

.comparison-label-after {
  right: 18px;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  z-index: 5;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: var(--alvero-green-dark);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  font-size: 1.25rem;
  font-weight: 950;
  transform: translate(-50%, -50%);
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0.001;
  cursor: ew-resize;
  touch-action: pan-y;
}

.comparison:focus-within .comparison-stage {
  outline: 3px solid #9bd6a7;
  outline-offset: 4px;
}

.process-section {
  background: #fff;
}

.process-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(50px, 8vw, 104px);
  align-items: center;
}

.process-photo {
  position: relative;
  margin: 0;
}

.process-photo img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.process-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 13px;
  border-radius: 5px;
  color: #fff;
  background: rgba(16, 18, 22, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-v2-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.process-v2-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.process-v2-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-v2-list li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--alvero-green-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.process-v2-list h3 {
  margin: 0 0 5px;
  font-size: 1.18rem;
}

.process-v2-list p {
  margin: 0;
  color: var(--muted);
}

.project-section {
  background: var(--mist);
}

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

.project-card {
  margin: 0;
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 18, 22, 0.08);
}

.project-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.project-card figcaption span {
  color: var(--alvero-green);
  font-size: 0.76rem;
  font-weight: 900;
}

.project-card figcaption strong {
  font-size: 1.04rem;
}

.faq-v2 {
  background: #fff;
}

.faq-v2-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 104px);
  align-items: start;
}

.faq-v2-heading {
  position: sticky;
  top: 120px;
}

.faq-v2-heading p:not(.eyebrow) {
  color: var(--muted);
}

.faq-v2-heading a {
  color: var(--alvero-green-dark);
  font-weight: 780;
}

.faq-accordion {
  border-top: 1px solid var(--line);
}

.faq-accordion details {
  border-bottom: 1px solid var(--line);
}

.faq-accordion summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 820;
  list-style: none;
}

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

.faq-accordion summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  color: var(--alvero-green);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.faq-accordion details[open] summary::after {
  content: "–";
}

.faq-accordion details p {
  max-width: 720px;
  margin: -4px 0 24px;
  color: var(--muted);
}

.quote-v2 {
  background:
    linear-gradient(135deg, rgba(31, 79, 52, 0.96), rgba(16, 18, 22, 0.98)),
    var(--graphite);
}

.quote-v2 .quote-copy h2 {
  color: #fff;
}

.quote-v2 .quote-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.quote-contact-card {
  display: grid;
  width: fit-content;
  gap: 4px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.quote-contact-card span,
.quote-contact-card small {
  color: rgba(255, 255, 255, 0.6);
}

.quote-contact-card a {
  color: #fff;
  font-weight: 850;
}

.quote-v2 .quote-form {
  border: 0;
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.25);
}

.quote-v2 select,
.quote-v2 input[type="file"] {
  width: 100%;
}

.quote-v2 select {
  min-height: 48px;
  padding: 11px 42px 11px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.quote-v2 label > small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.file-field {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px dashed #acc6b1;
  border-radius: 8px;
  background: #f8fbf8;
}

.file-field input[type="file"] {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.selected-files {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.selected-files li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 5px;
  background: var(--alvero-green-soft);
  font-size: 0.82rem;
}

.selected-files button {
  padding: 3px 7px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--graphite-soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 760;
}

.file-error {
  min-height: 0;
  margin: 0;
  color: #a12f2f;
  font-size: 0.82rem;
  font-weight: 700;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.privacy-note a {
  color: var(--alvero-green-dark);
  font-weight: 780;
  text-decoration: underline;
}

.footer-cookie-button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 680;
  text-align: left;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: #7fc589;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  background: rgba(13, 24, 32, 0.98);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

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

.cookie-banner-copy {
  display: grid;
  gap: 4px;
}

.cookie-banner-copy p {
  max-width: 750px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.cookie-banner-copy a {
  width: fit-content;
  color: #9bd6a7;
  font-size: 0.82rem;
  font-weight: 780;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner .cookie-choice {
  display: inline-flex;
  width: 210px;
  min-width: 210px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #fff;
  font: inherit;
  font-weight: 820;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.cookie-banner .cookie-choice--necessary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: #12212a;
}

.cookie-banner .cookie-choice--necessary:hover,
.cookie-banner .cookie-choice--necessary:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
  background: #1a2d38;
}

.cookie-banner .cookie-choice--accept {
  border-color: var(--alvero-green);
  color: #fff;
  background: var(--alvero-green);
}

.cookie-banner .cookie-choice--accept:hover,
.cookie-banner .cookie-choice--accept:focus-visible {
  border-color: var(--alvero-green-dark);
  color: #fff;
  background: var(--alvero-green-dark);
}

@media (max-width: 1080px) {
  .local-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.95fr);
  }

  .local-hero-copy h1 {
    font-size: clamp(3rem, 5vw, 4.4rem);
  }

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

  .trust-strip-grid span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }
}

@media (max-width: 860px) {
  .local-hero-grid,
  .comparison-layout,
  .process-v2-grid,
  .faq-v2-layout {
    grid-template-columns: 1fr;
  }

  .local-hero-media {
    max-width: 760px;
  }

  .home-service-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    min-height: 300px;
  }

  .home-offer-intro-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-copy {
    max-width: 680px;
  }

  .process-photo img {
    min-height: 0;
  }

  .faq-v2-heading {
    position: static;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .local-hero {
    padding: 54px 0 72px;
  }

  .local-hero-grid {
    gap: 36px;
  }

  .local-hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 3.65rem);
  }

  .local-hero-text {
    font-size: 1rem;
  }

  .local-hero-media::before {
    top: 18px;
    left: 18px;
  }

  .local-hero-media::after {
    right: 18px;
    bottom: 18px;
  }

  .local-hero-media img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: contain;
  }

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

  .trust-strip-grid span {
    min-height: auto;
    justify-items: start;
    border-right: 0;
    text-align: left;
  }

  .home-service-card {
    min-height: 280px;
  }

  .comparison-layout,
  .process-v2-grid,
  .faq-v2-layout {
    gap: 40px;
  }

  .comparison-label {
    top: 10px;
  }

  .comparison-label-before {
    left: 10px;
  }

  .comparison-label-after {
    right: 10px;
  }

  .comparison-divider span {
    width: 44px;
    height: 44px;
  }

  .process-photo img {
    min-height: 0;
  }

  .process-v2-list li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .process-v2-list li > span {
    width: 40px;
    height: 40px;
  }

  .quote-contact-card {
    width: 100%;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 18px;
    padding: 18px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner .cookie-choice {
    width: 100%;
    min-width: 0;
  }
}

.legal-hero {
  padding: clamp(72px, 10vw, 128px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(90, 168, 107, 0.28), transparent 34%),
    var(--graphite);
}

.legal-hero h1 {
  margin: 8px 0 14px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(48px, 9vw, 120px);
  justify-content: center;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.legal-nav a {
  padding: 7px 9px;
  border-radius: 5px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 760;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--alvero-green-dark);
  background: #fff;
}

.legal-content {
  display: grid;
  gap: 42px;
}

.legal-content section {
  scroll-margin-top: 120px;
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--alvero-green-dark);
  font-weight: 760;
  text-decoration: underline;
}

@media (max-width: 760px) {
  .legal-hero h1 {
    font-size: clamp(2.4rem, 11.5vw, 2.85rem);
    overflow-wrap: anywhere;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
}



