:root {
  color-scheme: light;
  --ink: #102324;
  --muted: #5e6a69;
  --paper: #fbfaf6;
  --cream: #f2efe5;
  --teal: #006f73;
  --cyan: #00a3ad;
  --red: #d82f27;
  --gold: #f2bd2f;
  --line: rgba(16, 35, 36, 0.14);
  --shadow: 0 24px 70px rgba(16, 35, 36, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 900;
  box-shadow: inset -8px -8px 0 rgba(0, 0, 0, 0.12);
}

.brand strong {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
  font-weight: 950;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.8vw, 34px);
  font-weight: 800;
  color: #263635;
}

.nav a,
.header-call {
  text-decoration: none;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.header-call,
.button.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 30px rgba(216, 47, 39, 0.24);
}

.button.secondary {
  background: var(--cyan);
  color: white;
  box-shadow: 0 12px 30px rgba(0, 163, 173, 0.2);
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: end;
  gap: clamp(22px, 4vw, 64px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 4vw, 58px);
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.95) 0%, rgba(251, 250, 246, 0.68) 52%, rgba(251, 250, 246, 0.16) 100%),
    url("./assets/hero-beverages.png") center / cover;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.94) 0%, rgba(251, 250, 246, 0.76) 38%, rgba(251, 250, 246, 0.24) 72%, rgba(16, 35, 36, 0.2) 100%),
    linear-gradient(0deg, rgba(16, 35, 36, 0.34) 0%, rgba(16, 35, 36, 0.04) 38%, rgba(16, 35, 36, 0.12) 100%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(1.1) contrast(1.03);
}

.hero-copy,
.hero-note {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  line-height: 0.89;
  font-weight: 1000;
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.1;
}

.lead {
  max-width: 680px;
  color: #354847;
  font-size: clamp(1.1rem, 1.7vw, 1.38rem);
  line-height: 1.55;
}

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

.hero-note {
  justify-self: end;
  align-self: end;
  max-width: 360px;
  padding: 26px;
  border-radius: 8px;
  background: var(--red);
  color: white;
  transform: rotate(-2deg);
  box-shadow: 0 22px 50px rgba(216, 47, 39, 0.26);
}

.hero-note strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.hero-note span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.82);
}

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

.quick-links a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 156px;
  padding: clamp(24px, 4vw, 44px);
  background: #fffdf8;
  text-decoration: none;
}

.quick-links span {
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.quick-links strong {
  max-width: 360px;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 1;
}

.section {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 4vw, 58px);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
  background: var(--ink);
  color: white;
}

.intro .eyebrow { color: var(--gold); }
.intro p:last-child {
  color: rgba(255,255,255,0.78);
  font-size: 1.2rem;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 120px;
}

.section-copy p:not(.eyebrow),
.section-heading + p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.category-grid,
.service-list,
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.category-grid article,
.service-list article,
.location-grid article {
  min-height: 220px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.category-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 38px;
  border-radius: 50%;
  background: rgba(0, 111, 115, 0.1);
  color: var(--teal);
}

.category-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-grid p,
.service-list p,
.location-grid p,
.location-grid dd {
  color: var(--muted);
  line-height: 1.55;
}

.audiences {
  display: grid;
  grid-template-columns: 1fr;
}

.audiences article {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 560px;
  background: #eef5f4;
}

.audiences article > div:not(.audience-image) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 7vw, 96px);
}

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

.audiences a,
.text-link {
  width: fit-content;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 950;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 4px;
  text-underline-offset: 5px;
}

.audience-image {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.audience-image.household {
  background-image:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.2)),
    url("./assets/private-customers.png");
}

.audience-image.trade {
  background-image:
    linear-gradient(rgba(0,0,0,0.02), rgba(0,0,0,0.26)),
    url("./assets/b2b-service.png");
}

.service {
  background: #fffdf8;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.service-list article {
  min-height: 190px;
  background: linear-gradient(180deg, white, #f7f3e8);
}

.locations {
  background: var(--cream);
}

.location-grid article {
  min-height: auto;
  background: white;
}

dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 18px;
  margin: 24px 0 0;
}

dt {
  font-weight: 900;
}

dd {
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(26px, 6vw, 80px);
  padding: clamp(64px, 9vw, 128px) clamp(18px, 4vw, 58px);
  background: var(--teal);
  color: white;
}

.contact .eyebrow { color: var(--gold); }
.contact p:not(.eyebrow) {
  color: rgba(255,255,255,0.82);
  font-size: 1.14rem;
  line-height: 1.65;
}

.contact-panel {
  align-self: center;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  text-decoration: none;
}

.contact-row span {
  color: var(--muted);
  font-weight: 800;
}

.full {
  width: 100%;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 58px);
  background: #071819;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}

footer p { margin: 0; }

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .audiences article {
    grid-template-columns: 1fr;
  }

  .audiences article:nth-child(2) .audience-image {
    order: -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
    gap: 16px;
    padding-inline: 14px;
  }

  .header-call {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.7rem, 12.5vw, 3.35rem);
    line-height: 0.94;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

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

  .hero-note {
    justify-self: start;
    max-width: none;
    transform: rotate(-1deg);
  }

  .category-grid,
  .service-list,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .contact-row {
    flex-direction: column;
  }

  footer {
    flex-direction: column;
  }
}
