:root {
  --sage: #7a9c8a;
  --sage-dark: #577361;
  --dusty-blue: #5f7f9b;
  --warm-beige: #f4ede3;
  --butter: #fffdf8;
  --charcoal: #2f323b;
  --soft-green: #e8f1ec;
  --soft-blue: #ecf2f8;
  --border: #dcd8cf;
  --shadow: 0 18px 35px rgba(47, 50, 59, 0.12);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  background: linear-gradient(180deg, var(--butter) 0%, #f9f4ea 35%, #fff 100%);
  color: var(--charcoal);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(244, 237, 227, 0.85)),
    url("data:image/svg+xml,%3Csvg width='160' height='160' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='160' height='160' fill='%23f7f1e6'/%3E%3Cpath d='M0 40 L160 40 M0 120 L160 120' stroke='%23d9c7af' stroke-width='4' opacity='0.4'/%3E%3Cpath d='M0 0 L0 160 M80 0 L80 160 M160 0 L160 160' stroke='%23d6c2a9' stroke-width='2' opacity='0.35'/%3E%3C/svg%3E");
  background-size: cover, 200px;
  pointer-events: none;
  opacity: 0.7;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='120' height='120' fill='none'/%3E%3Cpath d='M0 0 L120 120' stroke='%23e2d3bf' stroke-width='2' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 320px;
  pointer-events: none;
  opacity: 0.35;
}

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

a {
  color: var(--dusty-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--sage-dark);
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--charcoal);
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--sage);
  color: #fff;
  z-index: 999;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border 0.25s ease;
  font-size: 1rem;
}

.btn--primary {
  background: var(--sage);
  color: #fff;
}

.btn--primary:hover,
.btn--primary:focus {
  background: var(--sage-dark);
}

.btn--secondary {
  background: var(--dusty-blue);
  color: #fff;
}

.btn--secondary:hover,
.btn--secondary:focus {
  background: #48627a;
}

.btn--ghost {
  border: 1px solid var(--dusty-blue);
  color: var(--dusty-blue);
  background: rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover,
.btn--ghost:focus {
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}

.top-bar {
  background: var(--warm-beige);
  padding: 0.4rem 1.25rem;
  font-size: 0.96rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.top-bar__contact a {
  margin-right: 0.75rem;
  font-weight: 600;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
}

.logo img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.logo__name {
  font-size: 1.2rem;
  font-weight: 700;
}

.logo__tagline {
  font-size: 0.9rem;
  color: var(--dusty-blue);
}

.site-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transform: translateY(-200%);
  transition: transform 0.25s ease;
  padding: 1rem;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-nav a {
  display: inline-block;
  padding: 0.5rem 0;
  color: var(--charcoal);
  font-weight: 600;
}

.site-nav a.active {
  color: var(--sage-dark);
}

.nav-toggle {
  background: transparent;
  border: none;
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
}

.nav-open .site-nav {
  transform: translateY(0);
}

.nav-cta {
  margin-top: 0.75rem;
}

main {
  overflow: hidden;
}

.hero {
  background: linear-gradient(125deg, var(--butter), #f1f6f3);
  position: relative;
  padding: 3.75rem 1rem 3rem;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(122, 156, 138, 0.18), transparent 60%),
    radial-gradient(circle at 80% 25%, rgba(95, 127, 155, 0.18), transparent 65%);
  opacity: 0.5;
  pointer-events: none;
}

.hero::after {
  background: radial-gradient(circle at 20% 80%, rgba(244, 237, 227, 0.8), transparent 65%);
  opacity: 1;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__content {
  max-width: 620px;
}

.hero__plaque {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 0.6rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(90, 70, 45, 0.25);
  background: linear-gradient(135deg, #f6e4cc, #fdf5e4);
  font-weight: 700;
  color: #705539;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.8), 0 6px 18px rgba(0, 0, 0, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.hero__plaque span {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.8;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: #4b4e57;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hero__panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(122, 156, 138, 0.2);
  border-radius: 24px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero__note {
  font-weight: 600;
  color: var(--sage-dark);
  margin: 0;
}

.hero__list span {
  font-weight: 700;
  color: var(--sage-dark);
  margin-right: 0.3rem;
}

.hero__visual {
  min-height: 320px;
  border-radius: 40px;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(122, 156, 138, 0.35), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(95, 127, 155, 0.35), transparent 55%),
    linear-gradient(135deg, #fefefe, #e2eee7 70%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M25 170 C65 70 130 140 175 35' fill='none' stroke='%237a9c8a' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M45 140 C85 95 115 125 160 75' fill='none' stroke='%2394b0a4' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.55;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dusty-blue);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.section {
  padding: 3.25rem 1rem;
  position: relative;
  overflow: hidden;
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px dashed rgba(47, 50, 59, 0.25);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.section__header .section__badge {
  margin-left: auto;
  margin-right: auto;
}

.section--light {
  background: var(--warm-beige);
}

.section--pattern {
  background: linear-gradient(120deg, rgba(232, 241, 236, 0.85), rgba(244, 237, 227, 0.8));
}

.section--pattern::before {
    content: '';
    position: absolute;
    inset: 1.5rem;
    border-radius: 32px;
    border: 1px dashed rgba(90, 104, 88, 0.15);
    pointer-events: none;
    z-index: 0;
}

.section--tint {
  background: linear-gradient(100deg, var(--soft-green), var(--soft-blue));
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section__header {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section__header h2 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #fff, #f7efe2);
  padding: 0.6rem 1.8rem;
  border-radius: 22px;
  border: 1px solid rgba(112, 85, 57, 0.35);
  box-shadow: 0 8px 20px rgba(134, 102, 63, 0.15);
}

.section__header h2::after {
  content: '';
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b99162, transparent);
}

.section__header h2::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(112, 85, 57, 0.65);
  margin-bottom: -0.2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.card-grid--two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid rgba(122, 156, 138, 0.2);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.card::after {
  content: '';
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(122, 156, 138, 0.18);
  top: 1.2rem;
  right: 1.5rem;
  z-index: 0;
}

.card > * {
  position: relative;
  z-index: 1;
}

.section__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.welcome .section__inner {
  display: grid;
  gap: 1.5rem;
}

.welcome__text,
.welcome__card {
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.welcome__card {
  background: linear-gradient(135deg, var(--soft-green), #fff);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.icon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.icon-grid article {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-grid figure {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  margin: 0;
  border: 1px solid rgba(122, 156, 138, 0.25);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.values-grid article {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.faq .accordion article {
  border-bottom: 1px solid rgba(47, 50, 59, 0.1);
  padding: 1rem 0;
}

.faq .accordion article:last-child {
  border-bottom: none;
}

.page-hero {
  background: linear-gradient(120deg, var(--butter), var(--soft-green));
  padding: 2.75rem 1rem;
}

.page-hero__text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.story .section__inner,
.assurance .section__inner {
  display: grid;
  gap: 1.75rem;
}

.story__content,
.story__aside,
.assurance__content,
.assurance__card {
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem;
  border: 1px solid rgba(122, 156, 138, 0.2);
  box-shadow: var(--shadow-soft);
}

.mission__grid,
.process-steps,
.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.mission__grid article,
.process-steps li,
.highlight-list li {
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-soft);
}

.process-steps li h3 {
  margin-bottom: 0.35rem;
}

.contact__grid {
  display: grid;
  gap: 2rem;
}

.contact__details,
.contact__form {
  background: #fff;
  border-radius: 28px;
  padding: 1.75rem;
  border: 1px solid rgba(122, 156, 138, 0.2);
  box-shadow: var(--shadow);
}

.contact__note {
  background: var(--soft-green);
  border-radius: 16px;
  padding: 1rem;
  margin-top: 1rem;
}

form label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}

form input,
form textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

form input:focus,
form textarea:focus {
  border-color: var(--sage);
  outline: none;
  box-shadow: 0 0 0 3px rgba(122, 156, 138, 0.2);
}

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

.alert {
  border-radius: 18px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.alert--error {
  background: #ffe8e5;
  border: 1px solid #f5b9af;
}

.alert--success {
  background: #e2f5ea;
  border: 1px solid #8bc7a1;
}

.site-footer {
  background: var(--charcoal);
  color: #f6f7fb;
  padding: 3rem 1rem;
}

.footer__cta {
  text-align: center;
  margin-bottom: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--warm-beige);
}

.footer__legal {
  text-align: center;
  margin: 0;
  font-size: 0.9rem;
  color: #ced2d8;
}

.cta-final {
  background: var(--soft-blue);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.cta-final .section__actions {
  justify-content: center;
}

.supply-art::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.supply-art--bucket::after {
  right: -30px;
  bottom: -20px;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M45 70 h70 l-8 60 H53z' fill='%237a9c8a' opacity='0.3'/%3E%3Cpath d='M50 72 h60l-6 50H56z' fill='none' stroke='%23577361' stroke-width='4'/%3E%3Cpath d='M65 55 q15-30 30 0' fill='none' stroke='%23577361' stroke-width='4'/%3E%3C/svg%3E");
}

.supply-art--spray::after {
  right: -25px;
  top: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='150' height='150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M90 30 h-30 l10 25 v60 a10 10 0 0 0 10 10 a10 10 0 0 0 10-10V55z' fill='%235f7f9b' opacity='0.25'/%3E%3Crect x='60' y='35' width='30' height='15' rx='4' fill='%23f4ede3' stroke='%23455a6f' stroke-width='3'/%3E%3Ccircle cx='95' cy='25' r='6' fill='%237a9c8a'/%3E%3C/svg%3E");
}

.supply-art--brush::after {
  left: -25px;
  bottom: -20px;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='50' y='90' width='60' height='40' rx='8' fill='%23c5a373' opacity='0.3'/%3E%3Crect x='55' y='95' width='50' height='15' rx='6' fill='%23f4ede3' stroke='%23896b46' stroke-width='3'/%3E%3Cpath d='M80 60 v35' stroke='%23896b46' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.supply-art--sparkle::after {
  left: -20px;
  top: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='140' height='140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M70 20 l12 28 l28 12 l-28 12 l-12 28 l-12-28 l-28-12 l28-12z' fill='%23ffffff' stroke='%237a9c8a' stroke-width='3' opacity='0.5'/%3E%3C/svg%3E");
}

.supply-art--feather::after {
  right: -35px;
  top: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='150' height='150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 110 q40-90 80-70 q10 10-55 75' fill='none' stroke='%235f7f9b' stroke-width='5'/%3E%3Cpath d='M70 60 q-10 25 -5 45' fill='none' stroke='%237a9c8a' stroke-width='3'/%3E%3C/svg%3E");
}

.supply-art--bubbles::after {
  right: 10px;
  bottom: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='150' height='150' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='45' cy='110' r='25' fill='%23ecf2f8' stroke='%235f7f9b' stroke-width='3' opacity='0.5'/%3E%3Ccircle cx='90' cy='95' r='18' fill='%23e8f1ec' stroke='%237a9c8a' stroke-width='3' opacity='0.5'/%3E%3Ccircle cx='110' cy='120' r='12' fill='%23f4ede3' stroke='%23c0aa8b' stroke-width='3' opacity='0.5'/%3E%3C/svg%3E");
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    justify-content: flex-start;
  }

  .section__actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .top-bar {
    padding: 0.4rem 3rem;
  }

  .nav-wrapper {
    padding: 0.9rem 3rem;
  }

  .site-nav {
    position: static;
    transform: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: none;
    background: transparent;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-cta {
    margin-top: 0;
  }

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

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .icon-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .welcome .section__inner {
    grid-template-columns: 3fr 2fr;
  }

  .story .section__inner,
  .assurance .section__inner {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }

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

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

@media (min-width: 1024px) {
  .hero {
    padding: 4.5rem 0 4rem;
  }

  .section {
    padding: 4rem 1rem;
  }
}
