﻿:root {
  --red: #d91828;
  --red-dark: #9f101c;
  --red-soft: #ffe7e9;
  --green: #9cc7a5;
  --green-dark: #3f7c4a;
  --ink: #172024;
  --muted: #5f6b70;
  --line: #dfe6e3;
  --paper: #fbfcfb;
  --soft: #eef5f0;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 32, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(223, 230, 227, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 7px 14px 7px 9px;
  border: 1px solid rgba(217, 24, 40, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff 0%, #fff4f5 100%);
  box-shadow: 0 10px 26px rgba(17, 32, 38, 0.08);
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #243034;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  border-color: var(--red);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(217, 24, 40, 0.25);
}

.button-primary:hover,
.header-cta:hover {
  background: var(--red-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 72px) 88px;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: image-set(
    url("../img/v2o-cleaning-hero.webp") type("image/webp"),
    url("../img/v2o-cleaning-hero.png") type("image/png")
  );
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 20, 23, 0.91) 0%, rgba(12, 20, 23, 0.72) 39%, rgba(12, 20, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(12, 20, 23, 0.52), rgba(12, 20, 23, 0.06));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

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

.hero .eyebrow {
  color: #f7c8cc;
}

h1,
h2,
h3,
p,
a,
button,
span,
li {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.1rem);
  line-height: 0.96;
}

h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(1.9rem, 3.8vw, 3.65rem);
  line-height: 1.03;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(560px, calc(100% - 36px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
}

.hero-panel div {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 1.55rem;
  line-height: 1;
}

.hero-panel span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro {
  background: var(--white);
}

.intro-grid,
.split,
.contact-grid,
.sustain-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.intro-grid p:not(.eyebrow),
.section-heading p,
.sustain-copy,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.muted {
  background: var(--soft);
}

.section-heading {
  margin-bottom: 42px;
}

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

.service-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 32, 38, 0.06);
}

.service-card p,
.process p,
.sector-list span {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--red);
  background: var(--red-soft);
  font-weight: 900;
}

.sector-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.sector-list div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.sector-list strong {
  font-size: 1.08rem;
}

.dark {
  color: var(--white);
  background: linear-gradient(135deg, #132024 0%, #203b2b 100%);
}

.dark .eyebrow {
  color: #ff9ca4;
}

.dark .section-heading {
  margin-bottom: 54px;
}

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

.process article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.process span {
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 2.2rem;
  font-weight: 900;
}

.process p {
  color: rgba(255, 255, 255, 0.7);
}

.sustainability {
  background:
    linear-gradient(120deg, rgba(156, 199, 165, 0.23), rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.sustain-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.sustain-copy li {
  position: relative;
  padding-left: 28px;
}

.sustain-copy li::before {
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.contact {
  background: #f6f8f7;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #304044;
  font-size: 0.94rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfd9d5;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(217, 24, 40, 0.16);
  border-color: var(--red);
}

.site-footer {
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #10191c;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-inner img {
  width: 82px;
  height: 42px;
  object-fit: contain;
  padding: 4px;
  border-radius: 6px;
  background: var(--white);
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 820px;
    align-items: flex-start;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .intro-grid,
  .split,
  .contact-grid,
  .sustain-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    padding: 10px 14px;
  }

  .brand {
    gap: 8px;
    max-width: calc(100vw - 86px);
    padding: 6px 10px 6px 7px;
  }

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

  .brand span {
    max-width: 128px;
    white-space: normal;
  }

  .hero {
    min-height: 900px;
    padding-top: 122px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 20, 23, 0.92) 0%, rgba(12, 20, 23, 0.74) 100%),
      linear-gradient(0deg, rgba(12, 20, 23, 0.48), rgba(12, 20, 23, 0.12));
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 11vw, 3.7rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.65rem);
    line-height: 1.08;
  }

  .button,
  .header-cta {
    white-space: normal;
    text-align: center;
  }

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

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

  .sector-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

@media (max-width: 380px) {
  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.55rem;
  }

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




.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
}

.legal-page {
  padding-top: 78px;
  background: var(--paper);
}

.legal-hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(159, 16, 28, 0.95), rgba(19, 32, 36, 0.92)),
    var(--red-dark);
}

.legal-hero h1 {
  max-width: 100%;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
}

.legal-intro {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
}

.legal-updated {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.legal-content {
  background: var(--white);
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

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

.legal-nav a {
  color: var(--ink);
  font-weight: 800;
}

.legal-card {
  display: grid;
  gap: 26px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 32, 38, 0.08);
}

.legal-card section {
  scroll-margin-top: 110px;
}

.legal-card h2 {
  font-size: clamp(1.28rem, 2.15vw, 1.85rem);
  line-height: 1.16;
}

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

.legal-card a {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-table {
  display: grid;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cookie-row {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

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

.cookie-head {
  color: var(--white);
  background: var(--red-dark);
  font-weight: 900;
}

@media (max-width: 780px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .cookie-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

.cookie-consent {
  position: fixed;
  z-index: 40;
  left: clamp(14px, 3vw, 34px);
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(217, 24, 40, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(17, 32, 38, 0.22);
}

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

.cookie-consent h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
}

.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.cookie-options label {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
}

.cookie-options input {
  width: auto;
  min-height: auto;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-settings-trigger {
  margin-top: 12px;
}

@media (max-width: 760px) {
  .cookie-consent {
    grid-template-columns: 1fr;
  }

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

.footer-link-button {
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cookie-actions .button-secondary {
  color: var(--red-dark);
  border-color: rgba(217, 24, 40, 0.28);
  background: var(--red-soft);
}

.cookie-actions .button-secondary:hover {
  background: #ffd8dd;
}

.quote-page {
  background: var(--paper);
}

.quote-hero {
  padding-top: 140px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(159, 16, 28, 0.96), rgba(23, 32, 36, 0.94)),
    var(--red-dark);
}

.quote-hero-grid,
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.quote-hero h1 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.quote-intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.quote-note,
.quote-checklist,
.quote-info-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.quote-note {
  max-width: 760px;
  margin: 24px 0 0;
  padding: 18px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
}

.quote-checklist {
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.quote-checklist h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.quote-checklist ol {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.88);
}

.quote-content {
  background: var(--soft);
}

.quote-context p {
  color: var(--muted);
}

.quote-info-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  color: var(--ink);
  border-color: rgba(217, 24, 40, 0.18);
  background: var(--red-soft);
}

.quote-info-card strong {
  color: var(--red-dark);
  font-size: 1.05rem;
}

.quote-form {
  gap: 22px;
  box-shadow: var(--shadow);
}

.form-section {
  display: grid;
  gap: 14px;
}

.form-section h3 {
  margin-bottom: 0;
  color: var(--red-dark);
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

.consent-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.consent-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.consent-line a {
  color: var(--red-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .quote-hero-grid,
  .quote-grid,
  .two-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .quote-hero {
    padding-top: 112px;
  }

  .quote-form {
    padding: 22px;
  }
}

.legal-hero.section {
  padding-top: clamp(54px, 8vw, 82px);
  padding-bottom: clamp(42px, 7vw, 70px);
}
