:root {
  --espresso: #38220f;
  --coffee: #634832;
  --taupe: #967259;
  --sand: #dbc1ac;
  --ivory: #ece0d1;
  --white: #fff;
  --charcoal: #171717;
  --muted: #595959;
  --line: rgba(56,34,15,.16);
  --shadow: 0 18px 55px rgba(0,0,0,.12);
  --radius: 16px;
  --container: min(1280px,calc(100vw - 48px));
  --font-head: 'Manrope',sans-serif;
  --font-body: 'Poppins',sans-serif;
  --font-serif: 'Playfair Display',serif
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased
}

body.menu-open {
  overflow: hidden
}

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

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

button,input,textarea,select {
  font: inherit
}

.container {
  width: var(--container);
  margin-inline: auto
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: -100px;
  left: 16px;
  background: var(--white);
  color: var(--espresso);
  padding: 10px 14px
}

.skip-link:focus {
  top: 10px
}

.announcement {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--espresso);
  color: var(--white);
  font-size: 12px;
  letter-spacing: .02em;
  padding: 0 16px;
  position: relative;
  z-index: 102
}

.announcement a {
  margin-left: 8px;
  font-weight: 700; text-transform: capitalize !important;
  border-bottom: 1px solid rgba(255,255,255,.5)
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--sand);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(219,193,172,.18)
}

.site-header {
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: .35s
}

.transparent-header .site-header {
  position: absolute;
  top: 38px;
  width: 100%;
  background: transparent;
  border-bottom-color: rgba(255,255,255,.18);
  color: #fff
}

.transparent-header .site-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(255,255,255,.96);
  color: var(--charcoal);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0,0,0,.08)
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px
}

.brand {
  width: 146px;
  height: 67px;
  display: flex;
  align-items: center
}

.brand img {
  width: 140px;
  max-height: 64px;
  object-fit: contain
}

.brand-light {
  display: none
}

.transparent-header .brand-dark {
  display: none
}

.transparent-header .brand-light {
  display: block
}

.transparent-header .site-header.scrolled .brand-dark {
  display: block
}

.transparent-header .site-header.scrolled .brand-light {
  display: none
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 13px;
  font-weight: 600
}

.main-nav>a:not(.nav-cta) {
  position: relative;
  padding: 30px 0
}

.main-nav>a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 23px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s
}

.main-nav>a:hover::after,.main-nav>a.active::after {
  transform: scaleX(1);
  transform-origin: left
}

.nav-cta {
  height: 46px;
  padding: 0 18px;
  background: var(--coffee);
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: .25s
}

.nav-cta:hover {
  background: var(--espresso);
  transform: translateY(-2px)
}

.menu-toggle {
  display: none
}

.hero {
  min-height: 780px;
  height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url('../images/hero-workplace-coffee.png') center/cover no-repeat;
  animation: heroZoom 18s ease-out both
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(56,34,15,.82) 0%,rgba(56,34,15,.52) 43%,rgba(56,34,15,.08) 76%),linear-gradient(0deg,rgba(0,0,0,.5),transparent 45%)
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 92px
}

.hero-kicker,.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 700
}

.hero-kicker::before,.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .55
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(55px,7.2vw,108px);
  line-height: .91;
  letter-spacing: -.065em;
  max-width: 890px;
  margin: 22px 0 28px
}

.hero-title span,.hero-title em {
  display: block;
  font-style: normal
}

.hero-title em {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -.035em;
  color: #dbc1ac
}

.hero-content>p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 640px;
  color: rgba(255,255,255,.82)
}

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

.btn {
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .25s;
  cursor: pointer
}

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

.arrow-icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  overflow: visible;
  font-size: 0;
  line-height: 0;
  vertical-align: -.08em;
  transition: transform .25s ease
}

.arrow-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 12 12 4M6 4h6v6' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 12 12 4M6 4h6v6' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat
}

.arrow-icon::after {
  content: none
}

.btn .arrow-icon,
.nav-cta .arrow-icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px
}

a:hover .arrow-icon,
a:focus-visible .arrow-icon,
button:hover .arrow-icon,
button:focus-visible .arrow-icon {
  transform: translate(2px,-2px)
}

.btn-accent {
  background: var(--coffee);
  color: #fff
}

.btn-accent:hover {
  background: var(--espresso);
  box-shadow: 0 12px 30px rgba(56,34,15,.24)
}

.btn-ghost {
  border-color: rgba(255,255,255,.45);
  color: #fff;
  background: rgba(255,255,255,.04)
}

.btn-ghost:hover {
  background: #fff;
  color: var(--espresso)
}

.btn-dark {
  background: var(--espresso);
  color: #fff
}

.btn-cream {
  background: var(--ivory);
  color: var(--espresso)
}

.trust-line {
  display: flex;
  gap: 26px;
  margin-top: 33px;
  color: rgba(255,255,255,.72);
  font-size: 12px
}

.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 74px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em
}

.hero-scroll i {
  height: 55px;
  width: 1px;
  background: rgba(255,255,255,.35);
  position: relative
}

.hero-scroll i::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 12px;
  background: white;
  top: 0;
  left: -1px;
  animation: scrollDot 2s infinite
}

.section {
  padding: 130px 0
}

.eyebrow {
  color: var(--coffee)
}

h1,h2,h3 {
  font-family: var(--font-head);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -.03em;
  text-transform:capitalize
}

h2 {
  font-size: clamp(42px,5vw,72px)
}

h2 em,h1 em {
  font-family: var(--font-serif);
  font-weight: 400
}

.statement {
  max-width: 1050px
}

.statement h2 {
  margin-top: 25px
}

.statement h2 em {
  color: var(--espresso)
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 78px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.benefit-card {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: .35s
}

.benefit-card:hover {
  background: var(--ivory);
  transform: translateY(-5px)
}

.benefit-card>span {
  font-size: 12px;
  color: var(--coffee);
  font-weight: 700
}

.benefit-card>i {
  position: absolute;
  right: 25px;
  top: 22px;
  font-style: normal
}

.benefit-card h3 {
  font-size: 22px;
  margin-top: 58px;
  letter-spacing: -0.3px;
  line-height: 1.4;
}

.benefit-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 14px 0 0
}

.dark-section {
  background: var(--espresso);
  color: #fff
}

.journey-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #38220f
}

.journey-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../images/vancouver-coffee-program.jpg') center 48%/cover no-repeat;
  filter: saturate(.58) sepia(.1) contrast(1.06);
  transform: scale(1.025)
}

.journey-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,rgba(56,34,15,.15) 0%,rgba(56,34,15,.14) 48%,rgba(56,34,15,.9) 100%),
    linear-gradient(180deg,rgba(56,34,15,.58),rgba(56,34,15,.84))
}

.journey-section>.container {
  position: relative;
  z-index: 1
}

.journey-section>.container::before {
  content: '';
  position: absolute;
  right: -28px;
  bottom: -92px;
  z-index: 0;
  width: 280px;
  height: 280px;
  background: url('../images/fresh-beans.jpg') center/cover no-repeat;
  filter: grayscale(1) invert(1) contrast(1.35);
  mix-blend-mode: screen;
  opacity: .13;
  pointer-events: none
}

.journey-section .section-heading,.journey-section .journey {
  position: relative;
  z-index: 1
}

@media (max-width:560px) {
  .journey-section::before {
    background-position: 58% center
  }

  .journey-section::after {
    background:
      linear-gradient(90deg,rgba(56,34,15,.96),rgba(56,34,15,.88)),
      linear-gradient(180deg,rgba(56,34,15,.62),rgba(56,34,15,.9))
  }

  .journey-section>.container::before {
    right: -38px;
    bottom: -46px;
    width: 180px;
    height: 180px;
    opacity: .1
  }
}

.section-heading.light .eyebrow {
  color: var(--sand)
}

.section-heading h2 {
  margin-top: 22px
}

.section-heading.light h2 em {
  color: #dbc1ac
}

.journey {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  margin-top: 90px;
  position: relative
}

.journey-line {
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,.15)
}

.journey-line span {
  display: block;
  height: 1px;
  width: 0;
  background: var(--coffee);
  transition: width .15s
}

.journey-step {
  padding-top: 58px;
  position: relative
}

.journey-step::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--espresso);
  border: 2px solid var(--coffee);
  z-index: 2
}

.journey-step>span {
  font-size: 11px;
  color: var(--sand)
}

.journey-step h3 {
  font-size: 22px;
  margin: 17px 0
}

.journey-step p {
  color: rgba(255,255,255,.58);
  font-size: 14px
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: end
}

.split-heading h2 {
  margin-top: 24px
}

.split-heading p {
  color: var(--muted);
  font-size: 17px;
  max-width: 450px
}

.finder-control {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 25px;
  border-radius: var(--radius)
}

.finder-control label {
  font-size: 13px;
  font-weight: 700
}

.range-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px
}

.range-row input {
  accent-color: var(--coffee);
  width: 100%
}

.range-row output {
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 700
}

.finder-control p {
  font-size: 13px;
  margin: 14px 0 0
}

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

.machine-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: .35s;
  overflow: hidden
}

.machine-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow)
}

.machine-card.recommended {
  border-color: var(--coffee);
  box-shadow: inset 0 0 0 1px var(--coffee)
}

.machine-top {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.machine-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted)
}

.recommended-pill {
  display: none;
  background: var(--coffee);
  color: white;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0px;
  padding: 3px 15px;
  border-radius: 99px
}

.recommended .recommended-pill {
  display: inline-flex
}

.machine-image {
  height: 330px;
  background: linear-gradient(145deg,#ece0d1,#ece0d1);
  border-radius: 12px;
  margin: 20px 0 28px;
  display: grid;
  place-items: center;
  position: relative
}

.machine-image::after {
  content: '';
  position: absolute;
  bottom: 23px;
  width: 45%;
  height: 13px;
  border-radius: 50%;
  background: rgba(0,0,0,.13);
  filter: blur(8px)
}

.machine-image img {
  height: 285px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: .4s
}

.machine-card:hover img {
  transform: scale(1.035)
}

.machine-card h3 {
  font-size: 30px
}

.machine-card h3 em {
  font-family: var(--font-serif);
  font-weight: 400
}

.machine-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0
}

.machine-specs span {
  font-size: 11px;
  color: var(--muted)
}

.machine-specs strong {
  display: block;
  color: var(--charcoal);
  font-size: 13px
}

.card-link,.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 700
}

.card-link span,.text-link span {
  transition: .25s
}

.card-link:hover span,.text-link:hover span {
  transform: translate(3px,-3px)
}

.center-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 45px
}

.beverage-section {
  background: var(--ivory);
  overflow: hidden
}

.beverage-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 55px max(24px,calc((100vw - 1280px)/2)) 25px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab
}

.beverage-track::-webkit-scrollbar {
  display: none
}

.beverage-card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px
}

.beverage-card>span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px
}

.beverage-card>div {
  height: 270px;
  display: grid;
  place-items: center;
  background: #ece0d1;
  border-radius: 12px;
  margin: 18px 0;
  overflow: hidden
}

.beverage-card img {
  max-height: 230px;
  transition: .45s
}

.beverage-card:hover img {
  transform: scale(1.07) rotate(-2deg)
}

.beverage-card small {
  color: var(--muted);
  text-transform: capitalize
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center
}

.service-photo {
  position: relative
}

.service-photo img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius)
}

.photo-badge {
  position: absolute;
  text-transform: capitalize;
  right: -30px;
  bottom: 35px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--coffee);
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  transform: rotate(-6deg)
}

.service-copy h2 {
  margin: 24px 0 30px
}

.service-copy h2 em {
  color: var(--espresso)
}

.service-copy>p {
  font-size: 17px;
  color: var(--muted)
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 25px
}

.service-list li {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  font-size: 16px !important;
  text-transform: capitalize;
  font-weight: 500
}

.service-list li span {
  color: var(--coffee);
  font-size: 10px;
  margin-right: 10px
}

.soft-section {
  background: var(--sand)
}

.industry-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  margin-top: 65px;
  min-height: 560px
}

.industry-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius)
}

.industry-list {
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 35px
}

.industry-list a {
  display: grid;
  grid-template-columns: 45px 1fr 20px;
  align-items: center;
  min-height: 85px;
  border-bottom: 1px solid var(--line);
  transition: .25s
}

.industry-list a:last-child {
  border-bottom: 0
}

.industry-list a:hover {
  padding-left: 7px;
  color: var(--espresso)
}

.industry-list span {
  font-size: 10px;
  color: var(--coffee)
}

.industry-list strong {
  font-family: var(--font-head);
  font-size: 17px
}

.industry-list i {
  font-style: normal
}

.sustainability-band {
  background: var(--espresso);
  color: white
}

.sustainability-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: center
}

.sustainability-band .eyebrow {
  color: var(--sand)
}

.sustainability-band h2 {
  margin: 25px 0
}

.sustainability-band h2 em {
  color: #dbc1ac
}

.sustainability-band p {
  color: rgba(255,255,255,.7);
  max-width: 570px;
  margin-bottom: 30px
}

.waste-compare {
  display: grid;
  grid-template-columns: 1fr 38px 1fr;
  align-items: center
}

.compare-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 25px;
  border-radius: var(--radius);
  min-height: 330px;
  display: flex;
  flex-direction: column
}

.compare-card.muted {
  opacity: .65
}

.compare-card>span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em
}

.compare-card>strong {
  font-size: 13px;
  margin-top: auto;
  text-transform: capitalize;
}

.compare-arrow {
  text-align: center;
  color: #967259;
  font-size: 22px
}

.pod-pile,.grounds {
  height: 190px;
  position: relative
}

.pod-pile i {
  position: absolute;
  width: 56px;
  height: 38px;
  border-radius: 8px 8px 22px 22px;
  background: #b9b9b9;
  border-top: 5px solid #ddd;
  transform: rotate(var(--r));
  left: var(--x);
  top: var(--y)
}

.pod-pile i:nth-child(1) {
  --r: 12deg;
  --x: 15%;
  --y: 72px
}

.pod-pile i:nth-child(2) {
  --r: -18deg;
  --x: 40%;
  --y: 84px
}

.pod-pile i:nth-child(3) {
  --r: 24deg;
  --x: 58%;
  --y: 55px
}

.pod-pile i:nth-child(4) {
  --r: -8deg;
  --x: 28%;
  --y: 122px
}

.pod-pile i:nth-child(5) {
  --r: 15deg;
  --x: 62%;
  --y: 112px
}

.pod-pile i:nth-child(6) {
  --r: -28deg;
  --x: 8%;
  --y: 128px
}

.grounds i {
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: 25px;
  height: 58px;
  border-radius: 50%;
  background: #38220f;
  box-shadow: inset 0 6px 10px rgba(0,0,0,.35)
}

.grounds i::after {
  content: '';
  position: absolute;
  width: 65px;
  height: 82px;
  border: 2px solid #967259;
  border-top: 0;
  border-radius: 0 0 45px 45px;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%)
}

.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px
}

.local-copy>p {
  font-size: 20px;
  color: var(--muted);
  margin-top: 0
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0
}

.service-areas span {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 7px 13px;
  font-size: 12px
}

.footer-cta {
  background: var(--ivory);
  padding: 90px 0
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 90px;
  align-items: end
}

.footer-cta h2 {
  margin-top: 22px;
  font-size: 50px
}

.footer-cta p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 25px
}

.site-footer {
  background: var(--espresso);
  color: #fff;
  padding: 80px 0 25px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3,1fr);
  gap: 70px
}

.footer-grid h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--sand);
  margin-bottom: 24px
}

.footer-grid>div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.62)
}

.footer-grid a:hover {
  color: #fff
}

.footer-brand img {
  width: 175px
}

.footer-brand p {
  max-width: 330px;
  color: rgba(255,255,255,.55);
  font-size: 14px
}

.phone-link {
  font-family: var(--font-head);
  font-size: 25px;
  font-weight: 700
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 70px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,.38)
}

.footer-bottom div {
  display: flex;
  gap: 20px
}

.inner-hero {
  padding: 125px 0 150px;
  background: var(--ivory);
  border-bottom: 1px solid var(--line)
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: end
}

.inner-hero h1 {
  font-size: clamp(42px,5.2vw,74px)
}

.inner-hero h1 em {
  display: block;
  color: var(--espresso)
}

.inner-intro p {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px
}

.inner-intro .text-link {
  margin-top: 14px;
}

.content-section {
  padding: 105px 0
}

.content-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px
}

.content-grid h2 {
  font-size: 37px;
  line-height: 1.3;
  margin-top: 10px;
}

.prose {
  color: var(--muted);
  font-size: 17px
}

.prose p:first-child {
  margin-top: 0
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 50px
}

.feature-card {
  border: 1px solid #fff;
  border-radius: var(--radius);
  background: #fff;
  padding: 25px;
  min-height: 250px
}

.feature-card span {
  color: var(--coffee);
  font-size: 11px
}

.feature-card h3 {
  font-size: 22px;
  margin: 14px 0;
  text-transform:capitalize;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: block;
  position: relative;
  margin-top: 26px;
  color: var(--coffee);
  transform-origin: center
}

.feature-icon::before,.feature-icon::after {
  content: '';
  position: absolute;
  box-sizing: border-box
}

.feature-card:hover .feature-icon {
  animation: featureIconMotion .65s cubic-bezier(.22,.8,.35,1)
}

.feature-icon--generic::before,.feature-icon--value::before {
  width: 22px;
  height: 22px;
  left: 10px;
  top: 10px;
  border: 2px solid currentColor;
  transform: rotate(45deg)
}

.feature-icon--generic::after,.feature-icon--value::after {
  width: 6px;
  height: 6px;
  left: 18px;
  top: 18px;
  border: 2px solid currentColor;
  border-radius: 50%
}

.feature-icon--machine::before {
  width: 28px;
  height: 31px;
  left: 7px;
  top: 5px;
  border: 2px solid currentColor;
  border-radius: 4px
}

.feature-icon--machine::after {
  width: 14px;
  height: 2px;
  left: 14px;
  top: 13px;
  background: currentColor;
  box-shadow: 0 9px 0 currentColor
}

.feature-icon--bean::before {
  width: 22px;
  height: 32px;
  left: 10px;
  top: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: rotate(35deg)
}

.feature-icon--bean::after {
  width: 2px;
  height: 22px;
  left: 20px;
  top: 10px;
  background: currentColor;
  transform: rotate(35deg)
}

.feature-icon--screen::before,.feature-icon--payment::before {
  width: 32px;
  height: 24px;
  left: 5px;
  top: 7px;
  border: 2px solid currentColor;
  border-radius: 4px
}

.feature-icon--screen::after {
  width: 12px;
  height: 2px;
  left: 15px;
  bottom: 5px;
  background: currentColor
}

.feature-icon--payment::after {
  width: 28px;
  height: 2px;
  left: 7px;
  top: 15px;
  background: currentColor
}

.feature-icon--cup::before {
  width: 25px;
  height: 23px;
  left: 6px;
  top: 8px;
  border: 2px solid currentColor;
  border-radius: 3px 3px 8px 8px
}

.feature-icon--cup::after {
  width: 9px;
  height: 12px;
  right: 3px;
  top: 13px;
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 8px 8px 0
}

.feature-icon--package::before {
  width: 27px;
  height: 27px;
  left: 7px;
  top: 7px;
  border: 2px solid currentColor;
  border-radius: 3px
}

.feature-icon--package::after {
  width: 32px;
  height: 2px;
  left: 5px;
  top: 20px;
  background: currentColor;
  transform: rotate(-45deg)
}

.feature-icon--filter::before {
  width: 24px;
  height: 24px;
  left: 7px;
  top: 3px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg)
}

.feature-icon--filter::after {
  width: 2px;
  height: 12px;
  left: 20px;
  top: 26px;
  background: currentColor
}

.feature-icon--leaf::before {
  width: 29px;
  height: 20px;
  left: 7px;
  top: 10px;
  border: 2px solid currentColor;
  border-radius: 100% 0 100% 0;
  transform: rotate(-18deg)
}

.feature-icon--leaf::after {
  width: 23px;
  height: 2px;
  left: 10px;
  top: 21px;
  background: currentColor;
  transform: rotate(-18deg)
}

.feature-icon--calendar::before {
  width: 30px;
  height: 27px;
  left: 6px;
  top: 8px;
  border: 2px solid currentColor;
  border-radius: 4px
}

.feature-icon--calendar::after {
  width: 30px;
  height: 2px;
  left: 6px;
  top: 16px;
  background: currentColor;
  box-shadow: 8px 7px 0 -1px currentColor,18px 7px 0 -1px currentColor
}

.feature-icon--tool::before {
  width: 30px;
  height: 3px;
  left: 6px;
  top: 20px;
  border-radius: 3px;
  background: currentColor;
  transform: rotate(-42deg)
}

.feature-icon--tool::after {
  width: 11px;
  height: 11px;
  left: 5px;
  top: 25px;
  border: 2px solid currentColor;
  border-radius: 50%
}

.feature-icon--pin::before {
  width: 22px;
  height: 22px;
  left: 10px;
  top: 5px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg)
}

.feature-icon--pin::after {
  width: 6px;
  height: 6px;
  left: 18px;
  top: 13px;
  border: 2px solid currentColor;
  border-radius: 50%
}

.feature-icon--person::before {
  width: 12px;
  height: 12px;
  left: 15px;
  top: 4px;
  border: 2px solid currentColor;
  border-radius: 50%
}

.feature-icon--person::after {
  width: 26px;
  height: 17px;
  left: 8px;
  bottom: 4px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 50% 50% 0 0
}

.feature-icon--shield::before {
  width: 24px;
  height: 31px;
  left: 9px;
  top: 4px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 16px 16px
}

.feature-icon--shield::after {
  width: 9px;
  height: 5px;
  left: 17px;
  top: 15px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg)
}

.feature-icon--tracking::before {
  width: 30px;
  height: 30px;
  left: 6px;
  top: 5px;
  border: 2px solid currentColor;
  border-radius: 50%
}

.feature-icon--tracking::after {
  width: 2px;
  height: 12px;
  left: 20px;
  top: 10px;
  background: currentColor;
  box-shadow: 4px 9px 0 -0.5px currentColor;
  transform-origin: bottom;
  transform: rotate(-32deg)
}

.feature-icon--water::before {
  width: 22px;
  height: 22px;
  left: 10px;
  top: 8px;
  border: 2px solid currentColor;
  border-radius: 60% 40% 60% 40%;
  transform: rotate(45deg)
}

.feature-icon--water::after {
  width: 6px;
  height: 2px;
  left: 21px;
  top: 25px;
  background: currentColor;
  transform: rotate(-45deg)
}

.feature-icon--energy::before {
  content: 'ϟ';
  left: 10px;
  top: -5px;
  color: currentColor;
  font: 400 40px/1 Arial,sans-serif
}

@keyframes featureIconMotion {
  0%,100% { transform: translateY(0) rotate(0) }
  45% { transform: translateY(-5px) rotate(-4deg) }
}

.feature-card p {
  color: var(--muted);
  font-size: 14px
}

.wide-image {
  height: 620px;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius)
}

.machine-catalog {
  padding: 100px 0
}

.catalog-row {
  display: grid;
  grid-template-columns: .75fr 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--line)
}

.catalog-row:last-child {
  border-bottom: 1px solid var(--line)
}

.catalog-image {
  height: 420px;
  display: grid;
  place-items: center;
  background: var(--ivory);
  border-radius: var(--radius)
}

.catalog-image img {
  max-height: 365px
}

.catalog-copy h2 {
  font-size: 48px
}

.catalog-copy>p {
  color: var(--muted)
}

.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  margin: 25px 0
}

.spec-table div {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px
}

.spec-table strong {
  display: block;
  font-size: 14px
}

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

.machine-detail-hero {
  padding: 90px 0;
  background: var(--ivory)
}

.machine-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.machine-detail-visual {
  min-height: 590px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center
}

.machine-detail-visual img {
  max-height: 510px
}

.machine-detail-copy h1 {
  font-size: 72px
}

.machine-detail-copy .lead {
  font-size: 20px;
  color: var(--muted)
}

.machine-detail-copy .btn {
  margin-top: 20px
}

.detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px
}

.detail-spec-grid div {
  padding: 18px;
  border-right: 1px solid var(--line)
}

.detail-spec-grid div:last-child {
  border-right: 0
}

.detail-spec-grid span {
  font-size: 10px;
  color: var(--muted);
  display: block
}

.detail-spec-grid strong {
  font-family: var(--font-head)
}

.sticky-trial {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  box-shadow: var(--shadow)
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-top: 55px
}

.drink-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white)
}

.drink-tile div {
  height: 230px;
  background: var(--ivory);
  border-radius: 12px;
  display: grid;
  place-items: center
}

.drink-tile img {
  max-height: 195px
}

.drink-tile h3 {
  font-size: 18px;
  margin-top: 18px
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-top: 55px
}

.industry-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  display: flex;
  flex-direction: column
}

.industry-card::after {
  content: attr(data-num);
  position: absolute;
  right: 18px;
  bottom: -50px;
  font: 180px/1 var(--font-serif);
  color: rgba(56,34,15,.07)
}

.industry-card h3 {
  font-size: 29px;
  margin-top: auto
}

.industry-card p {
  color: var(--muted);
  max-width: 470px
}

.faq-list {
  max-width: 950px;
  margin: 50px auto 0
}

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

.faq-item:last-child {
  border-bottom: 1px solid var(--line)
}

.faq-button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  cursor: pointer
}

.faq-button span:last-child {
  font-weight: 400;
  transition: .3s
}

.faq-item.open .faq-button span:last-child {
  transform: rotate(45deg)
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s
}

.faq-answer>div {
  overflow: hidden
}

.faq-answer p {
  color: var(--muted);
  margin: 0;
  padding: 0 55px 25px 0
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr
}

.contact-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px
}

.contact-info {
  background: linear-gradient(145deg,var(--ivory),var(--sand));
  color: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px
}

.contact-info h2 {
  color: var(--espresso);
  font-size: 38px
}

.contact-info p {
  color: var(--muted)
}

.contact-line {
  border-top: 1px solid rgba(56,34,15,.16);
  padding: 18px 0
}

.contact-line span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--coffee)
}

.contact-line strong {
  color: var(--charcoal);
  font-size: 18px
}

.contact-line a {
  transition: color .2s ease
}

.contact-line a:hover,
.contact-line a:focus-visible {
  color: var(--coffee)
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  background: white
}

.form-card h2 {
  font-size: 40px;
  margin-bottom: 10px
}

.form-card>p {
  color: var(--muted)
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-size: 12px;
  font-weight: 700
}

.field input,.field textarea,.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  min-height: 51px;
  padding: 12px 14px;
  outline: 0;
  transition: .2s
}

.field textarea {
  min-height: 130px;
  resize: vertical
}

.field input:focus,.field textarea:focus,.field select:focus {
  border-color: var(--coffee);
  box-shadow: 0 0 0 3px rgba(99,72,50,.12)
}

.honeypot {
  position: absolute!important;
  left: -9999px!important
}

.form-status {
  font-size: 13px;
  margin-top: 14px
}

.trial-shell {
  max-width: 920px;
  margin: 0 auto
}

.trial-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 35px
}

.trial-progress span {
  height: 4px;
  background: #ece0d1;
  border-radius: 5px;
  flex: 1
}

.trial-progress span.active {
  background: var(--coffee)
}

.trial-step {
  display: none
}

.trial-step.active {
  display: block;
  animation: fadeUp .35s both
}

.trial-step h2 {
  font-size: 40px
}

.trial-step>p {
  color: var(--muted)
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin: 25px 0
}

.choice-card {
  position: relative
}

.choice-card input {
  position: absolute;
  opacity: 0
}

.choice-card span {
  min-height: 74px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  transition: .2s
}

.choice-card input:checked+span {
  border-color: var(--espresso);
  background: var(--sand);
  box-shadow: inset 0 0 0 1px var(--espresso)
}

.trial-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px
}

.trial-nav button {
  border: 0
}

.trial-time {
  font-size: 12px;
  color: var(--muted)
}

.legal {
  max-width: 900px
}

.legal h2 {
  font-size: 30px;
  margin: 45px 0 12px
}

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

.alert {
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 14px
}

.alert-success {
  background: #ece0d1;
  color: #38220f
}

.alert-error {
  background: #ece0d1;
  color: #634832
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease,transform .75s ease
}

.reveal.in-view {
  opacity: 1;
  transform: none
}

@keyframes heroZoom {
  from {
    transform: scale(1.04)
  }
  to {
    transform: scale(1)
  }
}

@keyframes scrollDot {
  0% {
    top: 0;
    opacity: 0
  }
  30% {
    opacity: 1
  }
  100% {
    top: 42px;
    opacity: 0
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }
  to {
    opacity: 1;
    transform: none
  }
}

@media (max-width:1100px) {
  .main-nav {
    gap: 15px
  }
  .main-nav>a:not(.nav-cta) {
    font-size: 12px
  }
  .main-nav a:nth-child(5),.main-nav a:nth-child(6) {
    display: none
  }
  .benefit-grid {
    grid-template-columns: repeat(2,1fr)
  }
  .machine-image {
    height: 270px
  }
  .machine-image img {
    height: 230px
  }
  .service-grid {
    gap: 55px
  }
  .section {
    padding: 100px 0
  }
}

@media (max-width:820px) {
  :root {
    --container: min(100% - 32px,720px)
  }
  .announcement {
    font-size: 10px;   

  }
  .announcement a {
    display: none;
  }
  .site-header,.transparent-header .site-header {
    height: 70px;
    top: 38px
  }
  .transparent-header .site-header.scrolled {
    top: 0
  }
  .brand {
    width: 116px;
    height: 56px
  }
  .brand img {
    width: 112px;
    max-height: 53px
  }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    color: inherit
  }
  .menu-toggle span {
    width: 23px;
    height: 1px;
    background: currentColor;
    transition: .3s
  }
  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg)
  }
  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg)
  }
  .main-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    min-height: calc(100vh - 70px);
    background: var(--white);
    color: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 25px 35px;
    transform: translateX(100%);
    transition: .35s
  }
  .menu-open .main-nav {
    transform: none
  }
  .main-nav>a:not(.nav-cta),.main-nav a:nth-child(5),.main-nav a:nth-child(6) {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px
  }
  .main-nav>a:not(.nav-cta)::after {
    display: none
  }
  .nav-cta {
    margin-top: 22px;
    justify-content: space-between
  }
  .hero {
    min-height: 720px
  }
  .hero-content {
    padding-bottom: 55px
  }
  .hero-title {
    font-size: clamp(52px,15vw,74px)
  }
  .hero-content>p {
    font-size: 16px;
    max-width: 520px
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 330px
  }
  .trust-line {
    flex-direction: column;
    gap: 4px
  }
  .hero-scroll {
    display: none
  }
  .section {
    padding: 82px 0
  }
  .benefit-grid {
    margin-top: 45px
  }
  .journey {
    grid-template-columns: 1fr;
    margin-top: 55px
  }
  .journey-line {
    left: 6px;
    top: 15px;
    bottom: 0;
    width: 1px;
    height: auto
  }
  .journey-line span {
    height: 0;
    width: 1px!important
  }
  .journey-step {
    padding: 0 0 30px 45px
  }
  .journey-step::before {
    top: 2px
  }
  .split-heading,
  .service-grid,
  .sustainability-grid,
  .local-grid,
  .footer-cta-grid,
  .inner-hero-grid,
  .content-grid,
  .contact-grid,
  .machine-detail-grid {
    grid-template-columns: 1fr;
    gap: 42px
  }
  .machine-grid {
    grid-template-columns: 1fr
  }
  .machine-image {
    height: 360px
  }
  .machine-image img {
    height: 310px
  }
  .beverage-card {
    flex-basis: 250px
  }
  .service-photo {
    max-width: 600px
  }
  .photo-badge {
    right: -4px
  }
  .industry-feature {
    grid-template-columns: 1fr
  }
  .industry-photo img {
    height: 390px;
    border-radius: var(--radius) var(--radius) 0 0
  }
  .industry-list {
    border-radius: 0 0 var(--radius) var(--radius)
  }
  .waste-compare {
    margin-top: 20px
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
  .footer-brand {
    grid-column: 1/-1
  }
  .inner-hero {
    padding: 100px 0 70px
  }
  .feature-cards {
    grid-template-columns: 1fr 1fr
  }
  .catalog-row {
    grid-template-columns: 1fr;
    gap: 30px
  }
  .catalog-image {
    height: 390px
  }
  .detail-spec-grid {
    grid-template-columns: 1fr 1fr
  }
  .detail-spec-grid div:nth-child(2) {
    border-right: 0
  }
  .drink-grid {
    grid-template-columns: 1fr 1fr
  }
  .industry-grid {
    grid-template-columns: 1fr
  }
  .sticky-trial {
    display: none
  }
}

/* Regional service pages and homepage coverage showcase */

.beverage-card>div {
  margin: 0 0 18px
}

.beverage-card>span {
  display: block;
  font-weight: 600;
  line-height: 1.35
}

.service-area-section {
  overflow: hidden;
  background: linear-gradient(145deg,#fff 0%,var(--ivory) 100%)
}

.service-area-showcase {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(320px,.65fr);
  margin-top: 60px;
  min-height: 430px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.service-area-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px,5vw,72px);
  color: var(--white);
  background: linear-gradient(135deg,var(--espresso),var(--coffee))
}

.service-area-feature h3 {
  max-width: 720px;
  margin: 22px 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(42px,5vw,72px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.05
}

.service-area-feature p {
  max-width: 690px;
  color: rgba(255,255,255,.78)
}

.service-area-index,
.service-area-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase
}

.service-area-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 35px
}

.coverage-network {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--sand)
}

.coverage-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(56,34,15,.28);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  animation: coverage-pulse 5s ease-in-out infinite
}

.coverage-ring--one {width: 250px;height: 250px}
.coverage-ring--two {width: 390px;height: 390px;animation-delay: -2.5s}

.coverage-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  place-content: center;
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  transform: translate(-50%,-50%);
  background: var(--espresso);
  box-shadow: 0 24px 60px rgba(56,34,15,.25)
}

.coverage-core span {
  font-family: var(--font-serif);
  font-size: 42px;
  font-style: italic
}

.coverage-core small {font-size:14px}

.coverage-point {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--taupe);
  box-shadow: 0 0 0 8px rgba(150,114,89,.15)
}

.point-one{top:18%;left:24%}.point-two{top:28%;right:17%}.point-three{bottom:20%;left:18%}.point-four{right:25%;bottom:14%}.point-five{top:48%;right:7%}

@keyframes coverage-pulse {
  0%,100% {opacity:.5;transform:translate(-50%,-50%) scale(.96)}
  50% {opacity:1;transform:translate(-50%,-50%) scale(1.04)}
}

.service-area-list {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.service-area-list a {
  position: relative;
  display: grid;
  min-height: 130px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s,color .3s
}

.service-area-list a:hover {color:var(--white);background:var(--coffee)}
.service-area-list span {font-size:14px;color:var(--taupe)}
.service-area-list strong {align-self:end;font-size:19px;font-weight:600}
.service-area-list .arrow-icon {position:absolute;right:22px;top:22px}

.service-area-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px
}

.service-area-note p {margin:0;color:var(--muted)}

.location-breadcrumb {
  display: flex;
  gap: 10px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 14px
}

.location-breadcrumb a {color:var(--coffee)}
.location-intro {padding-top:70px}

.location-benefits {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 65px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden
}

.location-benefits article {padding:34px;border-right:1px solid var(--line)}
.location-benefits article:last-child {border-right:0}
.location-benefits article>span {display:block;margin-bottom:24px;color:var(--taupe);font-size:14px}
.location-benefits h3 {margin:20px 0 10px;font-size:23px}
.location-benefits p {margin:0;color:var(--muted)}

.location-service-section {color:var(--white);background:var(--espresso)}
.location-service-section .eyebrow {color:var(--sand)}

.location-service-grid {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: clamp(50px,8vw,120px);
  align-items: center
}

.location-service-copy h2 {color:var(--white)}
.location-service-copy p {color:rgba(255,255,255,.76)}

.location-detail-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px
}

.location-detail-grid>div {padding:34px}
.location-detail-grid>div+div {border-left:1px solid rgba(255,255,255,.22)}
.location-detail-grid span {color:var(--sand);font-size:14px;letter-spacing:.1em;text-transform:uppercase}
.location-detail-grid ul {margin:20px 0 0;padding:0;list-style:none}
.location-detail-grid li {padding:11px 0;border-bottom:1px solid rgba(255,255,255,.13)}

.location-inline-links {display:grid;grid-template-columns:repeat(2,1fr);gap:0 24px}
.location-inline-links a {display:flex;align-items:center;justify-content:space-between;padding:13px 0;border-bottom:1px solid var(--line);font-weight:500}

.footer-locations {
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.15)
}

.footer-locations h3 {margin:0 0 16px;color:var(--white);font-size:16px}
.footer-locations>div {display:grid;grid-template-columns:repeat(5,1fr);gap:8px 24px}
.footer-locations a {color:rgba(255,255,255,.7);font-size:14px;transition:color .25s}
.footer-locations a:hover {color:var(--white)}

@media (max-width:900px) {
  .service-area-showcase {grid-template-columns:1fr;min-height:0}
  .coverage-network {min-height:300px}
  .service-area-list {grid-template-columns:repeat(2,1fr)}
  .location-benefits {grid-template-columns:1fr}
  .location-benefits article {border-right:0;border-bottom:1px solid var(--line)}
  .location-benefits article:last-child {border-bottom:0}
  .location-service-grid {grid-template-columns:1fr}
  .footer-locations {text-align:center}
  .footer-locations>div {grid-template-columns:repeat(3,1fr)}
}

@media (max-width:560px) {
  .service-area-showcase {margin-top:36px;border-radius:18px}
  .service-area-feature {min-height:440px;padding:30px 24px}
  .service-area-feature h3 {font-size:38px}
  .coverage-network {min-height:260px}
  .coverage-ring--one {width:190px;height:190px}
  .coverage-ring--two {width:280px;height:280px}
  .coverage-core {width:120px;height:120px}
  .coverage-core span {font-size:34px}
  .service-area-list {grid-template-columns:1fr}
  .service-area-list a {min-height:100px}
  .service-area-note {align-items:flex-start;flex-direction:column}
  .location-benefits {margin-top:40px}
  .location-benefits article {padding:26px 22px}
  .location-detail-grid {grid-template-columns:1fr}
  .location-detail-grid>div {padding:26px 22px}
  .location-detail-grid>div+div {border-top:1px solid rgba(255,255,255,.22);border-left:0}
  .location-inline-links {grid-template-columns:1fr}
  .footer-locations>div {grid-template-columns:repeat(2,1fr);text-align:left}
}

@media (prefers-reduced-motion:reduce) {
  .coverage-ring {animation:none}
}

@media (max-width:560px) {
  :root {
    --container: calc(100% - 28px)
  }
  .hero-media {
    background-position: 60% center
  }
  .hero-shade {
    background: linear-gradient(90deg,rgba(56,34,15,.82),rgba(56,34,15,.32)),linear-gradient(0deg,rgba(0,0,0,.58),transparent)
  }
  .hero-title {
    font-size: 52px
  }
  .benefit-grid {
    grid-template-columns: 1fr
  }
  .benefit-card {
    min-height: 210px
  }
  .machine-image {
    height: 310px
  }
  .machine-image img {
    height: 265px
  }
  .center-actions {
    flex-direction: column
  }
  .service-list {
    grid-template-columns: 1fr
  }
  .industry-photo img {
    height: 280px
  }
  .waste-compare {
    grid-template-columns: 1fr
  }
  .compare-arrow {
    transform: rotate(90deg);
    padding: 8px
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px
  }
  .footer-brand {
    grid-column: auto
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px
  }
  .feature-cards,.drink-grid {
    grid-template-columns: 1fr
  }
  .detail-spec-grid {
    grid-template-columns: 1fr
  }
  .detail-spec-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }
  .form-grid,.choice-grid {
    grid-template-columns: 1fr
  }
  .form-card,.contact-info {
    padding: 25px
  }
  .trial-step h2 {
    font-size: 32px
  }
  .inner-hero h1 {
    font-size: 40px
  }
  .machine-detail-copy h1 {
    font-size: 52px
  }
  .machine-detail-visual {
    min-height: 430px
  }
  .machine-detail-visual img {
    max-height: 370px
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }
  *,*::before,*::after {
    animation-duration: .01ms!important;
    animation-iteration-count: 1!important;
    transition-duration: .01ms!important
  }
  .reveal {
    opacity: 1;
    transform: none
  }
}

/* Corporate machine-first homepage — v2 */

.hero-corporate {
  --hero-glow-x: 76%;
  --hero-glow-y: 46%;
  display: block;
  height: max(860px,100svh);
  min-height: 860px;
  background: #38220f;
  isolation: isolate;
  padding: 132px 0 150px
}

.hero-corporate::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 1;
  background:
    radial-gradient(ellipse at var(--hero-glow-x) var(--hero-glow-y),rgba(219,193,172,.52) 0%,rgba(150,114,89,.46) 19%,rgba(99,72,50,.3) 40%,transparent 62%),
    radial-gradient(circle at 48% 12%,rgba(99,72,50,.5),transparent 40%),
    linear-gradient(118deg,#634832 0%,#38220f 38%,#634832 70%,#38220f 100%);
  background-size: 125% 125%,140% 140%,115% 115%;
  animation: heroCoffeeDrift 13s ease-in-out infinite alternate
}

.hero-office {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url('../images/workplace-lounge.jpg') 75% center/cover no-repeat;
  opacity: .18;
  filter: saturate(.55) sepia(.08) contrast(1.04);
  mask-image: linear-gradient(90deg,transparent 4%,rgba(0,0,0,.25) 38%,#000 80%)
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg,transparent,black 52%,black)
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 52vw;
  height: 52vw;
  right: -4vw;
  top: 5%;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(236,224,209,.36),rgba(150,114,89,.24) 35%,rgba(99,72,50,.1) 60%,transparent 73%);
  filter: blur(20px);
  animation: heroGlow 7s ease-in-out infinite alternate
}

.corporate-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0,1.04fr) minmax(430px,.96fr);
  gap: 50px;
  align-items: center
}

.corporate-hero-copy {
  padding-top: 8px;
  max-width: 720px
}

.corporate-hero-copy .hero-kicker {
  color: #fff;
}

.corporate-hero-title {
  font-size: clamp(58px,6.1vw,92px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 24px 0 28px;
  max-width: 760px;
  color: #fff;
  text-wrap: balance
}

.corporate-hero-title em {
  display: block;
  color: #dbc1ac;
  font-style: italic;
  letter-spacing: -.035em
}

.corporate-hero-copy>p {
  max-width: 650px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.7
}

.corporate-trust {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,.16);
  max-width: 690px
}

.corporate-trust span {
  flex: 1;
  padding: 17px 16px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  line-height: 1.35
}

.corporate-trust i {
  font-style: normal;
  color: var(--sand);
  display: block;
  font-size: 9px;
  letter-spacing: .15em;
  margin-bottom: 5px
}

.hero-machine-zone {
  min-height: 600px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
  --spot-x: 50%;
  --spot-y: 42%
}

.hero-machine-zone::before {
  content: '';
  position: absolute;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y),rgba(236,224,209,.27),rgba(150,114,89,.2) 30%,rgba(99,72,50,.09) 52%,transparent 69%);
  transition: background .2s
}

.machine-3d-wrap {
  width: 420px;
  height: 545px;
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateX(var(--machine-rx,0deg)) rotateY(var(--machine-ry,0deg)) translate3d(var(--machine-x,0px),var(--machine-y,0px),60px);
  transition: transform .18s ease-out
}

.hero-machine-product {
  max-height: 485px;
  width: auto;
  position: relative;
  z-index: 4;
  filter: drop-shadow(0 38px 35px rgba(56,34,15,.52)) drop-shadow(0 0 22px rgba(236,224,209,.22));
  will-change: transform,opacity;
  animation: machineFloat 5.5s ease-in-out infinite;
  transition: opacity .2s ease,filter .3s ease
}

.hero-machine-product.switching {
  opacity: 0;
  filter: drop-shadow(0 38px 35px rgba(56,34,15,.52)) drop-shadow(0 0 22px rgba(236,224,209,.22)) blur(4px);
  transform: scale(.94)
}

.machine-plinth {
  position: absolute;
  z-index: 2;
  bottom: 31px;
  width: 380px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,rgba(150,114,89,.42),rgba(56,34,15,.82) 56%,transparent 72%);
  transform: rotateX(68deg) translateZ(-35px);
  filter: blur(1px)
}

.machine-plinth::before {
  content: '';
  position: absolute;
  inset: 12px 28px;
  border: 1px solid rgba(219,193,172,.32);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(150,114,89,.22),inset 0 0 25px rgba(150,114,89,.18)
}

.machine-plinth span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg,transparent,#967259,transparent);
  transform: translate(-50%,-50%)
}

.machine-aura {
  position: absolute;
  z-index: 0;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(219,193,172,.36),rgba(150,114,89,.24) 42%,rgba(99,72,50,.1) 61%,transparent 73%);
  filter: blur(16px);
  animation: auraPulse 4.5s ease-in-out infinite
}

.machine-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(219,193,172,.25);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-8deg);
  pointer-events: none
}

.orbit-one {
  width: 520px;
  height: 270px;
  animation: orbitSpin 18s linear infinite
}

.orbit-two {
  width: 420px;
  height: 215px;
  border-color: rgba(150,114,89,.28);
  animation: orbitSpinReverse 13s linear infinite
}

.machine-orbit::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #967259;
  left: 12%;
  top: 22%;
  box-shadow: 0 0 18px #967259
}

.orbit-two::after {
  left: auto;
  right: 8%;
  top: 68%;
  background: #967259;
  box-shadow: 0 0 16px #634832
}

.steam {
  position: absolute;
  z-index: 6;
  top: 64px;
  width: 14px;
  height: 110px;
  border-radius: 50%;
  border-left: 2px solid rgba(255,255,255,.33);
  filter: blur(2px);
  opacity: 0;
  animation: steamRise 3.4s ease-in-out infinite;
  pointer-events: none
}

.steam-one {
  left: 53%
}

.steam-two {
  left: 58%;
  animation-delay: 1.5s;
  height: 90px
}

.machine-callout {
  position: absolute;
  z-index: 8;
  min-width: 132px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(56,34,15,.62);
  backdrop-filter: blur(14px);
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 12px 35px rgba(0,0,0,.18);
  animation: calloutFloat 5s ease-in-out infinite
}

.machine-callout span {
  display: block;
  font: 700 20px/1.1 var(--font-head);
  letter-spacing: -.03em
}

.machine-callout small {
  font-size: 10px;
  color: #dbc1ac;
  text-transform: capitalize;
  letter-spacing: .01em
}

.callout-screen {
  left: -10px;
  top: 135px
}

.callout-service {
  right: -8px;
  top: 92px;
  animation-delay: -2s
}

.callout-capacity {
  right: -22px;
  bottom: 155px;
  animation-delay: -3.5s
}

.hero-machine-panel {
  position: absolute;
  z-index: 9;
  left: 0;
  bottom: 40px;
  width: 280px;
  padding: 30px 30px;
  border-radius: 14px;
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 22px 50px rgba(0,0,0,.3);
  transform: translateZ(90px)
}

.hero-machine-panel .panel-kicker {
  display: block;
  color: var(--coffee);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700
}

.hero-machine-panel strong {
  display: block;
  font: 700 20px/1.1 var(--font-head);
  margin: 7px 0
}

.hero-machine-panel p {
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 10px
}

.hero-machine-panel a {
  font-size: 11px;
  font-weight: 700;
  color: var(--espresso)
}

.hero-model-dock {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  max-width: 660px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(56,34,15,.65);
  backdrop-filter: blur(18px);
  border-radius: 14px;
  overflow: hidden
}

.hero-model-dock button {
  position: relative;
  min-height: 76px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 20px 18px 20px 44px;
  cursor: pointer;
  transition: .25s
}

.hero-model-dock button:last-child {
  border-right: 0
}

.hero-model-dock button:hover,.hero-model-dock button.active {
  background: rgba(255,255,255,.1)
}

.hero-model-dock button.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--coffee)
}

.hero-model-dock button>span {
  position: absolute;
  left: 15px;
  top: 15px;
  color: var(--sand);
  font-size: 9px
}

.hero-model-dock strong,.hero-model-dock small {
  display: block
}

.hero-model-dock strong {
  font: 700 16px/1.2 var(--font-head)
}

.hero-model-dock small {
  font-size: 9px;
  color:#dbc1ac;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-top: 4px
}

.hero-corporate .hero-scroll {
  bottom: 37px
}

.office-proof {
  background: #ece0d1;
  border-bottom: 1px solid var(--line)
}

.office-proof-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr)
}

.office-proof-grid>div {
  min-height: 120px;
  padding: 24px 30px;
  border-right: 1px solid rgba(56,34,15,.13);
  display: flex;
  flex-direction: column;
  justify-content: center
}

.office-proof-grid>div:first-child {
  border-left: 1px solid rgba(56,34,15,.13)
}

.office-proof-grid span {
  text-transform: capitalize;
  font: 700 25px/1 var(--font-head);
  letter-spacing: -.04em;
  color: var(--espresso)
}

.office-proof-grid p {
  font-size: 10px;
  line-height: 1.3;
  text-transform: capitalize;
  letter-spacing: 0em;
  color: var(--muted);
  margin: 9px 0 0
}

.home-page .value-section {
  background: var(--white)
}

.home-page .machine-finder {
  background: linear-gradient(180deg,#ece0d1 0%,#fff 100%)
}

.home-page .machine-card {
  box-shadow: 0 16px 50px rgba(0,0,0,.05)
}

.home-page .machine-card.recommended {
  transform: translateY(-10px)
}

.corporate-spaces .industry-feature {
  box-shadow: 0 25px 70px rgba(56,34,15,.12);
  border-radius: var(--radius)
}

@keyframes heroCoffeeDrift {
  0% {
    background-position: 0% 0%,100% 0%,0% 50%;
    filter: brightness(.97)
  }
  50% {
    background-position: 8% 5%,92% 7%,5% 45%;
    filter: brightness(1.035)
  }
  100% {
    background-position: 14% 9%,86% 12%,9% 42%;
    filter: brightness(1.01)
  }
}

@keyframes heroGlow {
  to {
    transform: scale(1.12) translate(-3%,3%);
    opacity: .72
  }
}

@keyframes machineFloat {
  0%,100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-13px)
  }
}

@keyframes auraPulse {
  0%,100% {
    transform: scale(.92);
    opacity: .65
  }
  50% {
    transform: scale(1.08);
    opacity: 1
  }
}

@keyframes orbitSpin {
  to {
    transform: rotateX(68deg) rotateZ(352deg)
  }
}

@keyframes orbitSpinReverse {
  to {
    transform: rotateX(68deg) rotateZ(-368deg)
  }
}

@keyframes steamRise {
  0% {
    transform: translateY(15px) scaleX(.7);
    opacity: 0
  }
  28% {
    opacity: .38
  }
  100% {
    transform: translateY(-70px) translateX(15px) scaleX(1.5);
    opacity: 0
  }
}

@keyframes calloutFloat {
  0%,100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-9px)
  }
}

@media (max-width:1180px) {
  .corporate-hero-grid {
    grid-template-columns: 1fr 470px;
    gap: 10px
  }
  .corporate-hero-title {
    font-size: 70px
  }
  .hero-machine-zone {
    transform: scale(.9);
    transform-origin: center
  }
  .hero-model-dock {
    max-width: 600px
  }
  .hero-corporate .hero-scroll {
    display: none
  }
}

@media (max-width:900px) {
  .hero-corporate {
    --hero-glow-x: 50%;
    --hero-glow-y: 64%;
    height: auto;
    min-height: 1080px;
    padding: 145px 0 32px
  }
  .corporate-hero-grid {
    grid-template-columns: 1fr;
    gap: 15px
  }
  .corporate-hero-copy {
    max-width: 680px
  }
  .corporate-hero-title {
    font-size: clamp(55px,9vw,78px)
  }
  .hero-machine-zone {
    min-height: 520px;
    transform: none
  }
  .hero-model-dock {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 5px;
    width: var(--container);
    max-width: none
  }
  .hero-corporate .hero-scroll {
    display: none
  }
  .office-proof-grid {
    grid-template-columns: 1fr 1fr
  }
  .office-proof-grid>div:nth-child(3) {
    border-left: 1px solid rgba(56,34,15,.13);
    border-top: 1px solid rgba(56,34,15,.13)
  }
  .office-proof-grid>div:nth-child(4) {
    border-top: 1px solid rgba(56,34,15,.13)
  }
  .machine-callout.callout-screen {
    left: 5%
  }
  .machine-callout.callout-service {
    right: 7%
  }
  .machine-callout.callout-capacity {
    right: 4%
  }
  .hero-machine-panel {
    left: 8%
  }
}

@media (max-width:560px) {
  .hero-corporate {
    --hero-glow-y: 68%;
    min-height: auto;
    padding: 122px 0 22px
  }
  .hero-office {
    background-position: 62% center;
    opacity: .1
  }
  .hero-grid-lines {
    background-size: 45px 45px
  }
  .corporate-hero-title {
    font-size: 47px;
    line-height: .94;
    margin: 18px 0 20px
  }
  .corporate-hero-copy>p {
    font-size: 15px;
    line-height: 1.6
  }
  .corporate-hero-copy .hero-actions {
    max-width: none;
    margin-top: 25px
  }
  .corporate-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 25px
  }
  .corporate-trust span {
    padding-top: 13px
  }
  .corporate-trust span:last-child {
    grid-column: 1/-1
  }
  .hero-machine-zone {
    min-height: 430px;
    margin-top: 8px;
    overflow: hidden
  }
  .machine-3d-wrap {
    width: 300px;
    height: 400px
  }
  .hero-machine-product {
    max-height: 340px
  }
  .machine-plinth {
    width: 285px;
    height: 65px;
    bottom: 17px
  }
  .machine-aura {
    width: 320px;
    height: 320px
  }
  .orbit-one {
    width: 375px;
    height: 190px
  }
  .orbit-two {
    width: 300px;
    height: 150px
  }
  .machine-callout {
    min-width: 102px;
    padding: 9px 10px
  }
  .machine-callout span {
    font-size: 15px
  }
  .machine-callout small {
    font-size: 8px
  }
  .callout-screen {
    display: none
  }
  .callout-service {
    right: 0!important;
    top: 65px
  }
  .callout-capacity {
    right: 0!important;
    bottom: 95px
  }
  .hero-machine-panel {
    left: 0;
    bottom: 18px;
    width: 190px;
    padding: 12px
  }
  .hero-machine-panel strong {
    font-size: 16px
  }
  .hero-machine-panel p {
    display: none
  }
  .steam {
    top: 42px
  }
  .hero-model-dock {
    width: calc(100% - 28px);
    grid-template-columns: repeat(3,1fr);
    margin-top: 0
  }
  .hero-model-dock button {
    min-height: 67px;
    padding: 10px 5px 9px 25px
  }
  .hero-model-dock button>span {
    left: 8px;
    top: 12px
  }
  .hero-model-dock strong {
    font-size: 11px !important;
  }
  .hero-model-dock small {
    font-size: 7px
  }
  .office-proof-grid>div {
    min-height: 95px;
    padding: 18px
  }
  .office-proof-grid span {
    font-size: 20px
  }
  .office-proof-grid p {
    font-size: 8px
  }
  .home-page .machine-card.recommended {
    transform: none
  }
}

@media (prefers-reduced-motion:reduce) {
  .hero-glow,.hero-machine-product,.machine-aura,.machine-orbit,.steam,.machine-callout {
    animation: none!important
  }
  .machine-3d-wrap {
    transform: none!important
  }
}

/* Accessible type scale */

.announcement,
.main-nav,
.hero-kicker,
.eyebrow,
.trust-line,
.hero-scroll,
.benefit-card>span,
.journey-step>span,
.finder-control label,
.finder-control p,
.machine-label,
.recommended-pill,
.machine-specs span,
.machine-specs strong,
.card-link,
.text-link,
.service-list li span,
.industry-list span,
.compare-card>span,
.compare-card>strong,
.service-areas span,
.footer-grid h3,
.footer-grid>div:not(.footer-brand),
.footer-bottom,
.feature-card span,
.spec-table div,
.detail-spec-grid span,
.contact-line span,
.field label,
.form-status,
.trial-time,
.corporate-trust span,
.corporate-trust i,
.machine-callout small,
.hero-machine-panel .panel-kicker,
.hero-machine-panel p,
.hero-machine-panel a,
.office-proof-grid p,
.hero-model-dock button>span,
.hero-model-dock strong,
.hero-model-dock small,
small {
  font-size: 15px
}

.btn,
.benefit-card p,
.journey-step p,
.service-list li,
.footer-brand p,
.feature-card p,
.spec-table strong,
.alert {
  font-size: 16px
}

.hero-content>p {
  line-height: 1.7
}

.main-nav>a:not(.nav-cta) {
  font-size: 14px
}

@media (max-width:820px) {
  .main-nav>a:not(.nav-cta) {
    font-size: 16px
  }
}

/* Larger brand presence, including the sticky state */

.brand {
  width: 176px;
  height: 78px;
  flex: 0 0 auto
}

.brand img {
  width: 160px;
  max-height: 74px
}

.site-header.scrolled .brand {
  width: 194px;
  height: 82px
}

.site-header.scrolled .brand img {
  width: 188px;
  max-height: 80px
}

@media (max-width:820px) {
  .brand {
    width: 140px;
    height: 62px
  }
  .brand img {
    width: 136px;
    max-height: 60px
  }
  .site-header.scrolled .brand {
    width: 152px;
    height: 68px
  }
  .site-header.scrolled .brand img {
    width: 148px;
    max-height: 66px
  }
}

/* Responsive safeguards and touch-friendly mobile refinements */

html,body {
  max-width: 100%;
  overflow-x: hidden
}

@media (max-width:820px) {
  .main-nav {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: transform .35s,opacity .2s,visibility 0s linear .35s
  }
  .menu-open .main-nav {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transition-delay: 0s
  }
  .transparent-header .site-header:not(.scrolled) .main-nav {
    top: 108px;
    min-height: calc(100vh - 108px);
    min-height: calc(100dvh - 108px);
    max-height: calc(100dvh - 108px)
  }
  .field input,.field select,.field textarea {
    font-size: 16px
  }
  .catalog-actions,.trial-nav {
    flex-wrap: wrap
  }
  .trial-shell {
    scroll-margin-top: 84px
  }
}

@media (max-width:560px) {
  .section,.content-section {
    padding: 68px 0
  }
  .inner-hero {
    padding: 82px 0 58px
  }
  .corporate-hero-copy>p {
    font-size: 16px;
    line-height: 1.7
  }
  .corporate-hero-copy .hero-actions,.hero-actions,.center-actions {
    max-width: none;
    width: 100%
  }
  .hero-actions .btn,.center-actions .btn,.center-actions .text-link,.trial-nav .btn {
    width: 100%;
    justify-content: center
  }
  .hero-model-dock button {
    min-height: 94px;
    padding: 12px 6px
  }
  .hero-model-dock button>span {
    display: none
  }
  .hero-model-dock small {
    line-height: 1.35
  }
  .machine-callout {
    min-width: 118px
  }
  .catalog-image {
    height: 320px
  }
  .machine-detail-visual {
    min-height: 380px
  }
  .machine-detail-visual img {
    max-height: 330px
  }
  .trial-nav {
    gap: 16px
  }
  .trial-time {
    width: 100%
  }
}

/* Expressive shared footer */

.footer-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,var(--ivory),var(--sand));
  border-top: 1px solid rgba(56,34,15,.1)
}

.footer-cta::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -190px;
  border: 1px solid rgba(99,72,50,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(99,72,50,.04),0 0 0 110px rgba(56,34,15,.035)
}

.footer-cta-grid {
  position: relative;
  z-index: 1
}

.footer-cta h2 em {
  color: var(--espresso)
}

.footer-cta .btn {
  box-shadow: none;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0 0 28px;
  background: radial-gradient(circle at 12% 6%,rgba(150,114,89,.24),transparent 28%),radial-gradient(circle at 92% 72%,rgba(219,193,172,.1),transparent 24%),linear-gradient(145deg,var(--espresso) 0%,var(--coffee) 58%,var(--espresso) 100%)
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .08;
  background-image: linear-gradient(rgba(255,255,255,.14) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.14) 1px,transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg,#000,transparent 76%)
}

.footer-signature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
  padding: 88px 0 62px;
  border-bottom: 1px solid rgba(255,255,255,.14)
}

.footer-signature .eyebrow {
  color: var(--sand)
}

.footer-signature h2 {
  margin-top: 22px;
  font-size: clamp(48px,5.4vw,76px);
  color: #fff
}

.footer-signature h2 em {
  font-family: var(--font-serif);
  font-weight: 400;
  color: #dbc1ac
}

.footer-grid {
  grid-template-columns: 1.4fr .75fr .75fr 1.1fr;
  gap: 54px;
  padding-top: 66px
}

.footer-brand img {
  width: 215px
}

.footer-brand p {
  max-width: 390px;
  line-height: 1.75
}

.phone-link {
  display: inline-flex;
  margin-top: 12px;
  font-size: 32px;
  letter-spacing: -.035em;
  transition: .25s
}

.phone-link:hover {
  color: #dbc1ac;
  transform: translateX(4px)
}

.footer-grid h3 {
  color: #fff;
  margin-top: 15px;
  margin-bottom: 5px
}

.footer-links a {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding: 2px 20px 2px 0;
  transition: .25s
}

.footer-links a::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  opacity: 0;
  transform: translate(-5px,-1px);
  transition: .25s
}

.footer-links a:hover {
  transform: translateX(4px)
}

.footer-links a:hover::after {
  opacity: 1;
  transform: none
}

.footer-contact-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px
}

.footer-contact {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center
}

.footer-contact p {
  margin: 0 0 6px;
  color: rgba(255,255,255,.62);
  line-height: 1.7
}

.footer-contact .footer-trial-button {
  width: 100%;
  max-width: 220px;
  margin-top: 8px;
  background: var(--espresso);
  color: #fff
}

.footer-contact .footer-trial-button:hover,
.footer-contact .footer-trial-button:focus-visible {
  background: var(--white);
  color: var(--espresso);
  box-shadow: 0 12px 30px rgba(0,0,0,.2)
}

.footer-brand-phone {
  margin-top: 20px;
  color: #dbc1ac
}

.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: 20px;
  bottom: 88px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: var(--coffee);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  transition: transform .25s ease,background-color .25s ease,box-shadow .25s ease
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--espresso);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0,0,0,.3)
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 3px
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 64px;
  padding-top: 24px
}

.footer-legal {
  display: flex;
  gap: 20px
}

.footer-motto {
  justify-self: center
}

.footer-credit {
  justify-self: end;
  color: rgba(255,255,255,.54)
}

@media (max-width:900px) {
  .footer-signature {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 72px 0 52px
  }
  .footer-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    column-gap: 28px;
    row-gap: 44px
  }
  .footer-brand {
    grid-column: 1/-1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
  }
  .footer-brand img {
    margin-inline: auto
  }
  .footer-brand p {
    margin-inline: auto
  }
  .footer-brand-phone {
    justify-content: center
  }
  .footer-links {
    align-items: flex-start;
    text-align: left
  }
  .footer-contact-column {
    grid-column: 1/-1;
    width: 100%;
    align-self: start;
    justify-self: center
  }
  .footer-contact {
    max-width: 430px;
    margin-inline: auto
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    text-align: center
  }
  .footer-bottom>*,.footer-motto,.footer-credit {
    justify-self: center
  }
  .footer-legal {
    justify-content: center
  }
}

@media (max-width:560px) {
  .footer-cta h2 {
    font-size: 40px
  }
  .footer-cta {
    padding: 68px 0
  }
  .footer-signature {
    padding: 62px 0 44px
  }
  .footer-signature h2 {
    font-size: 42px
  }
  .footer-grid {
    grid-template-columns: 1fr;
    row-gap: 38px;
    padding-top: 48px
  }
  .footer-brand {
    grid-column: 1/-1
  }
  .footer-brand img {
    width: 190px
  }
  .footer-links {
    align-items: center;
    text-align: center
  }
  .footer-links h3,
  .footer-links a {
    text-align: center
  }
  .phone-link {
    font-size: 28px
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    margin-top: 48px;
    text-align: center
  }
  .footer-credit {
    justify-self: center;
    margin-top: 8px
  }
}

@media (max-width:820px) {
  .main-nav {
    transform: none;
    clip-path: inset(0 0 0 100%);
    transition: clip-path .35s,opacity .2s,visibility 0s linear .35s
  }
  .menu-open .main-nav {
    clip-path: inset(0);
    transition-delay: 0s
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px
  }
}

.phone-link {
  align-items: center;
  gap: 12px
}

.phone-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coffee);
  color: #fff;
  font-family: Arial,sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(99,72,50,.28);
  transition: .25s
}

.phone-link:hover .phone-icon {
  transform: rotate(-8deg) scale(1.05);
  background: #38220f
}

.site-header.scrolled .brand {
  width: 194px;
  height: 82px
}

.site-header.scrolled .brand img {
  width: 146px;
  max-height: none
}

@media (max-width:820px) {
  .site-header.scrolled .brand {
    width: 152px;
    height: 68px
  }
  .site-header.scrolled .brand img {
    width: 126px;
    max-height: none
  }
}

/* Crop the transparent logo canvas so the artwork, not its column, grows. */

.brand {
  position: relative;
  overflow: hidden
}

.brand img {
  position: absolute;
  left: 0;
  top: 50%;
  height: auto;
  max-height: none;
  object-fit: initial;
  transform: translateY(-50%)
}

@media (max-width:820px) {
  .brand img {
    width: 145px
  }

  .site-header.scrolled .brand img {
    width: 126px
  }
}

@media (min-width:821px) {
  .site-header,.transparent-header .site-header {
    height: 106px
  }

  .nav-wrap,.site-header.scrolled .nav-wrap {
    padding: 10px 0
  }
}

.statement h2 em,.service-copy h2 em,.footer-cta h2 em {
  color: var(--coffee);
  text-transform:none;
}

.announcement a,
.hero-kicker,
.eyebrow,
.btn,
.benefit-card>span,
.finder-control label,
.card-link,
.text-link,
.field label,
.choice-card span,
.hero-machine-panel .panel-kicker,
.hero-machine-panel a {
  font-weight: 500
}

strong,b {
  font-weight: 500
}

/* Focused homepage and footer refinements */

.benefit-card>span {
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .16em
}

.benefit-card>.benefit-icon {
  margin-top: 42px;
  color: var(--coffee);
  font-size: initial;
  line-height: normal;
  text-transform: none;
  letter-spacing: normal
}

.benefit-card:hover .benefit-icon {
  animation: featureIconMotion .65s cubic-bezier(.22,.8,.35,1)
}

.benefit-card h3 {
  margin-top: 14px;
  text-transform: capitalize
}

.footer-credit a {
  display: inline-block;
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s ease
}

.footer-credit a:hover,.footer-credit a:focus-visible {
  color: inherit;
  text-decoration: underline
}

.hero-model-dock {
  max-width: 792px
}

@media (min-width:821px) {
  .machine-card h3 {
    font-size: 36px
  }
}

@media (min-width:901px) and (max-width:1180px) {
  .hero-model-dock {
    max-width: 720px
  }
}

@media (max-width:900px) {
  .hero-model-dock {
    max-width: none
  }
}

@media (max-width:820px) {
  .announcement {
    display: none
  }
  .site-header,.transparent-header .site-header {
    height: 88px;
    top: 0
  }
  .transparent-header .site-header.scrolled {
    top: 0
  }
  .nav-wrap {
    padding: 10px 0
  }
  .main-nav {
    inset: 88px 0 auto 0;
    min-height: calc(100vh - 88px);
    min-height: calc(100dvh - 88px);
    max-height: calc(100dvh - 88px)
  }
  .transparent-header .site-header:not(.scrolled) .main-nav {
    top: 88px;
    min-height: calc(100vh - 88px);
    min-height: calc(100dvh - 88px);
    max-height: calc(100dvh - 88px)
  }
}

@media (max-width:560px) {
  .hero-machine-panel {
    left: 14px;
    bottom: 20px;
    width: min(238px,calc(100% - 28px));
    padding: 16px
  }
  .hero-machine-panel .panel-kicker {
    line-height: 1.35;
    letter-spacing: .1em;
    white-space: nowrap
  }
  .hero-machine-panel strong {
    font-size: 18px;
    line-height: 1.2;
    margin: 8px 0
  }
  .hero-machine-panel a {
    display: inline-flex;
    margin-top: 2px;
    line-height: 1.4
  }
  .hero-model-dock button {
    align-content: start;
    padding: 14px 8px;
    min-height: 98px
  }
  .hero-model-dock strong {
    font-size: 14px;
    line-height: 1.3
  }
  .hero-model-dock small {
    min-height: 38px;
    line-height: 1.35;
    letter-spacing: .07em;
    margin-top: 5px
  }
}

/* Refined heading and navigation scale */

.corporate-hero-title {
  font-size: clamp(46px,4.9vw,74px)
}

.statement h2 {
  font-size: clamp(34px,4vw,58px)
}

.main-nav {
  font-weight: 500
}

.main-nav a,.main-nav>a:not(.nav-cta) {
  font-size: 15px;
  font-weight: 500
}

@media (max-width:1180px) {
  .corporate-hero-title {
    font-size: 56px
  }
}

@media (max-width:900px) {
  .corporate-hero-title {
    font-size: clamp(44px,7.2vw,62px)
  }
}

@media (max-width:560px) {
  .corporate-hero-title {
    font-size: 38px
  }
}

@media (max-width:820px) {
  h1,h2,h3 {
    line-height: 1.2
  }

  .corporate-hero-title {
    line-height: 1.2
  }
}

/* Editorial Lower Mainland coverage system */

.service-area-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,var(--white),var(--ivory))
}

.service-area-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(56,34,15,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(56,34,15,.025),0 0 0 160px rgba(56,34,15,.018);
  pointer-events: none
}

.coverage-heading,
.location-map-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.45fr) minmax(280px,.55fr);
  gap: clamp(50px,9vw,140px);
  align-items: end
}

.coverage-heading h2,
.location-map-heading h2 {
  margin-bottom: 0
}

.coverage-heading>p,
.location-map-heading>p {
  margin: 0 0 8px;
  color: var(--muted)
}

.coverage-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px,.72fr) minmax(0,1.5fr);
  min-height: 580px;
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(56,34,15,.1)
}

.coverage-story {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px,4.5vw,64px);
  color: var(--white);
  background: linear-gradient(155deg,var(--espresso),var(--coffee))
}

.coverage-story .eyebrow {color:var(--sand)}

.coverage-story h3 {
  margin: 18px 0;
  color: var(--white);
  font-size: clamp(30px,3.2vw,46px);
  font-weight: 500;
  line-height: 1.08
}

.coverage-story p {color:rgba(255,255,255,.72)}
.coverage-story .text-link {color:var(--white)}

.coverage-map-panel,
.location-map-canvas {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px;
  background: var(--ivory)
}

.coverage-map-meta,
.coverage-map-key {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--coffee);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase
}

.coverage-map-meta {padding-bottom:18px;border-bottom:1px solid var(--line)}
.coverage-map-key {padding-top:18px;border-top:1px solid var(--line)}
.coverage-map-key span {display:flex;align-items:center;gap:9px}
.coverage-map-key i {width:8px;height:8px;border-radius:50%;background:var(--coffee);box-shadow:0 0 0 5px rgba(99,72,50,.12)}
.coverage-map-key strong {font-family:var(--font-serif);font-size:24px;font-style:italic;font-weight:500}

.service-map {
  flex: 1;
  display: grid;
  min-height: 430px;
  place-items: center
}

.service-map svg {width:100%;height:auto;overflow:visible}
.service-map-land {filter:url(#service-map-shadow)}

.service-map-coast,
.service-map-river {
  fill: none;
  stroke: rgba(56,34,15,.42);
  stroke-linecap: round;
  stroke-width: 2.2
}

.service-map-river {stroke:rgba(255,255,255,.9);stroke-width:10}
.service-map-river--fine {stroke-width:4;opacity:.75}
.service-map-grid {fill:none;stroke:rgba(56,34,15,.08);stroke-width:1}
.service-map-marker {cursor:pointer}

.service-map-marker-halo {
  fill: rgba(150,114,89,.12);
  stroke: rgba(99,72,50,.32);
  transform-box: fill-box;
  transform-origin: center;
  animation: service-map-pulse 3.2s ease-in-out infinite
}

.service-map-marker:nth-of-type(2n) .service-map-marker-halo {animation-delay:-1.6s}
.service-map-marker-dot {fill:var(--coffee);stroke:var(--white);stroke-width:3;transition:transform .25s,fill .25s;transform-box:fill-box;transform-origin:center}
.service-map-marker text {fill:var(--charcoal);font-family:var(--font-body);font-size:15px;font-weight:500;letter-spacing:.02em;transition:fill .25s}
.service-map-marker:hover .service-map-marker-dot,.service-map-marker.is-active .service-map-marker-dot {fill:var(--espresso);transform:scale(1.45)}
.service-map-marker:hover text,.service-map-marker.is-active text {fill:var(--espresso)}
.service-map-marker.is-active .service-map-marker-halo {fill:rgba(56,34,15,.19);stroke:var(--espresso);stroke-width:2}
.service-map-compass path {fill:var(--coffee)}
.service-map-compass text {fill:var(--coffee);font-family:var(--font-body);font-size:14px;font-weight:600}

@keyframes service-map-pulse {
  0%,100% {opacity:.55;transform:scale(.84)}
  50% {opacity:1;transform:scale(1.12)}
}

.coverage-directory {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.coverage-directory a {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  transition: background .25s,color .25s
}

.coverage-directory a:hover {color:var(--white);background:var(--coffee)}

.coverage-service-line {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 34px
}

.coverage-service-line>span {color:var(--coffee);font-size:14px;font-weight:500;letter-spacing:.11em;text-transform:uppercase}
.coverage-service-line p {display:flex;align-items:center;gap:13px;margin:0;color:var(--muted)}
.coverage-service-line p i {width:4px;height:4px;border-radius:50%;background:var(--taupe)}

/* Location editorial pages */

.location-breadcrumb {
  display: flex;
  gap: 10px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 14px
}

.location-breadcrumb a {color:var(--coffee)}
.location-editorial {padding-top:70px}

.location-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(320px,.75fr);
  gap: clamp(50px,10vw,150px);
  align-items: end
}

.location-edition {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--taupe);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase
}

.location-editorial-heading h2 {margin-bottom:0}
.location-editorial-copy p {color:var(--muted)}

.location-program-mark {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--coffee);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase
}

.location-program-mark i {width:4px;height:4px;border-radius:50%;background:var(--taupe)}

.location-system-rail {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.location-system-rail article {min-width:0;padding:34px;border-right:1px solid var(--line)}
.location-system-rail article:first-child {padding-left:0}
.location-system-rail article:last-child {padding-right:0;border-right:0}
.location-system-rail article>span {display:block;color:var(--taupe);font-size:14px;font-weight:500;letter-spacing:.09em;text-transform:uppercase}
.location-system-rail .feature-icon {margin-top:44px}
.location-system-rail h3 {margin:18px 0 10px;font-size:23px;font-weight:600}
.location-system-rail p {margin:0;color:var(--muted)}

.location-focus-section {padding-top:0;background:var(--white)}

.location-focus-frame {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.08fr);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow)
}

.location-focus-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 540px;
  padding: clamp(36px,6vw,80px);
  color: var(--white);
  background: linear-gradient(145deg,var(--espresso),var(--coffee))
}

.location-focus-copy .eyebrow {color:var(--sand)}
.location-focus-copy h2 {color:var(--white);font-size:clamp(36px,4.2vw,58px)}
.location-focus-copy p {color:rgba(255,255,255,.74)}
.location-focus-copy .btn {align-self:flex-start;margin-top:18px}

.location-profile {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  background: var(--sand)
}

.location-profile>div {display:flex;flex-direction:column;justify-content:center;padding:clamp(28px,4vw,54px)}
.location-profile>div+div {border-left:1px solid rgba(56,34,15,.18)}
.location-profile>div>span {color:var(--coffee);font-size:14px;font-weight:500;letter-spacing:.11em;text-transform:uppercase}
.location-profile ul {margin:28px 0 0;padding:0;list-style:none}
.location-profile li {position:relative;padding:15px 0 15px 20px;border-bottom:1px solid rgba(56,34,15,.17);font-weight:500}
.location-profile li::before {content:"";position:absolute;top:25px;left:0;width:6px;height:6px;border-radius:50%;background:var(--coffee)}

.location-map-section {background:var(--ivory)}

.location-map-frame {
  display: grid;
  grid-template-columns: minmax(0,1.5fr) minmax(280px,.5fr);
  margin-top: 60px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white)
}

.location-map-canvas {min-height:570px}

.location-nearby {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-left: 1px solid var(--line)
}

.location-nearby>span {margin-bottom:14px;color:var(--taupe);font-size:14px;font-weight:500;letter-spacing:.1em;text-transform:uppercase}
.location-nearby a {display:flex;flex:1;min-height:48px;align-items:center;justify-content:space-between;gap:14px;border-bottom:1px solid var(--line);transition:color .2s,padding .2s}
.location-nearby a:last-child {border-bottom:0}
.location-nearby a:hover {padding-left:7px;color:var(--coffee)}
.location-nearby a.is-current {color:var(--coffee)}
.location-nearby a.is-current strong::after {content:"Current";display:block;margin-top:2px;color:var(--taupe);font-size:14px;font-weight:400}
.location-nearby strong {font-weight:500}

/* Compact footer service directory */

.footer-locations {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 45px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.15)
}

.footer-locations h3 {margin:0;color:var(--white);font-size:16px;font-weight:500}
.footer-locations>div {display:flex;flex-wrap:wrap;gap:9px 0}
.footer-locations a {color:rgba(255,255,255,.68);font-size:14px;transition:color .2s}
.footer-locations a:not(:last-child)::after {content:"/";padding:0 11px;color:rgba(255,255,255,.22)}
.footer-locations a:hover {color:var(--white)}

@media (max-width:980px) {
  .coverage-heading,.location-map-heading {grid-template-columns:1fr;gap:24px}
  .coverage-stage {grid-template-columns:1fr}
  .coverage-story {min-height:440px}
  .coverage-directory {grid-template-columns:repeat(2,1fr)}
  .coverage-service-line {align-items:flex-start;flex-direction:column}
  .coverage-service-line p {flex-wrap:wrap}
  .location-editorial-grid {grid-template-columns:1fr;gap:36px}
  .location-system-rail {grid-template-columns:1fr}
  .location-system-rail article,.location-system-rail article:first-child,.location-system-rail article:last-child {padding:30px 0;border-right:0;border-bottom:1px solid var(--line)}
  .location-system-rail article:last-child {border-bottom:0}
  .location-focus-frame {grid-template-columns:1fr}
  .location-profile>div {min-height:320px}
  .location-map-frame {grid-template-columns:1fr}
  .location-nearby {display:grid;grid-template-columns:repeat(2,1fr);gap:0 22px;border-top:1px solid var(--line);border-left:0}
  .location-nearby>span {grid-column:1/-1}
  .footer-locations {grid-template-columns:1fr;gap:18px;text-align:center}
  .footer-locations>div {justify-content:center}
}

@media (max-width:560px) {
  .coverage-stage,.location-focus-frame,.location-map-frame {border-radius:18px}
  .coverage-stage {margin-top:38px}
  .coverage-story {min-height:410px;padding:30px 24px}
  .coverage-map-panel,.location-map-canvas {padding:18px 14px}
  .coverage-map-meta {align-items:flex-start;flex-direction:column;gap:5px}
  .coverage-map-meta span:last-child {color:var(--muted);font-size:14px}
  .service-map {min-height:280px}
  .service-map-marker text {display:none}
  .service-map-compass {display:none}
  .coverage-map-key {font-size:14px}
  .coverage-directory {grid-template-columns:1fr}
  .coverage-directory a {min-height:62px;padding:14px 18px}
  .coverage-service-line p {display:grid;grid-template-columns:1fr 1fr;width:100%;gap:8px 16px}
  .coverage-service-line p i {display:none}
  .location-edition {margin-bottom:28px}
  .location-editorial {padding-top:50px}
  .location-system-rail {margin-top:48px}
  .location-system-rail .feature-icon {margin-top:28px}
  .location-focus-copy {min-height:500px;padding:42px 24px}
  .location-profile {grid-template-columns:1fr}
  .location-profile>div {min-height:0;padding:34px 24px}
  .location-profile>div+div {border-top:1px solid rgba(56,34,15,.18);border-left:0}
  .location-map-canvas {min-height:390px}
  .location-nearby {grid-template-columns:1fr;padding:24px 20px}
  .location-nearby a {padding:13px 0}
  .footer-locations>div {display:grid;grid-template-columns:repeat(2,1fr);width:100%;text-align:left}
  .footer-locations a:not(:last-child)::after {display:none}
}

@media (prefers-reduced-motion:reduce) {
  .service-map-marker-halo {animation:none}
}

/* Keep only the main navigation sticky on inside pages. */

body:not(.transparent-header) .site-header {
  position: sticky;
  top: 0;
  width: 100%;
  box-shadow: 0 8px 30px rgba(56,34,15,.06)
}

body:not(.transparent-header) #main-content {
  padding-top: 0
}

body:not(.transparent-header) .site-header.scrolled .brand {
  width: 176px;
  height: 78px
}

body:not(.transparent-header) .site-header.scrolled .brand img {
  width: 170px;
  max-height: none
}

@media (max-width:820px) {
  body:not(.transparent-header) #main-content {
    padding-top: 0
  }

  body:not(.transparent-header) .site-header.scrolled .brand {
    width: 140px;
    height: 62px
  }

  body:not(.transparent-header) .site-header.scrolled .brand img {
    width: 136px;
    max-height: none
  }
}

/* Lazy-loaded cinematic machine showcase */

.showcase-video-section {
  position: relative;
  overflow: hidden;
  background: var(--ivory)
}

.showcase-video-section::before {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  top: -250px;
  right: -170px;
  border: 1px solid rgba(56,34,15,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(99,72,50,.035),0 0 0 140px rgba(150,114,89,.025);
  pointer-events: none
}

.showcase-video-shell {
  position: relative;
  z-index: 1
}

.showcase-video-heading {
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr);
  gap: clamp(48px,8vw,120px);
  align-items: end;
  margin-bottom: 48px
}

.showcase-video-heading h2 {
  max-width: 850px;
  margin: 18px 0 0;
  font-size: clamp(42px,5.2vw,76px);
  line-height: 1.08
}

.showcase-video-heading h2 em {
  color: var(--coffee);
  font-family: var(--font-serif);
  font-weight: 400
}

.showcase-video-intro p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75
}

.showcase-video-frame {
  position: relative;
  aspect-ratio: 16 / 8.7;
  overflow: hidden;
  border: 1px solid rgba(56,34,15,.22);
  border-radius: 24px;
  background: var(--espresso);
  box-shadow: 0 28px 80px rgba(56,34,15,.2)
}

.showcase-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--espresso)
}

.showcase-video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(56,34,15,.08) 45%,rgba(56,34,15,.76) 100%);
  pointer-events: none
}

.showcase-video-frame::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  pointer-events: none
}

.showcase-video-meta {
  position: absolute;
  z-index: 2;
  top: 36px;
  right: 38px;
  left: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em
}

.showcase-video-meta span {
  display: flex;
  align-items: center;
  gap: 10px
}

.showcase-video-meta i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 6px rgba(219,193,172,.14)
}

.showcase-video-meta strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase
}

.showcase-video-toggle {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 34px;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 99px;
  background: rgba(255,255,255,.94);
  color: var(--espresso);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background .25s,color .25s,transform .25s
}

.showcase-video-toggle:hover {
  background: var(--espresso);
  color: var(--white);
  transform: translateY(-2px)
}

.showcase-video-control {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--espresso)
}

.showcase-video-control::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--white);
  transform: translate(-50%,-50%)
}

.showcase-video-frame.is-playing .showcase-video-control::before {
  width: 7px;
  height: 10px;
  border: 0;
  border-right: 2px solid var(--white);
  border-left: 2px solid var(--white)
}

.showcase-video-toggle:hover .showcase-video-control {
  background: var(--taupe)
}

.showcase-video-notes {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.showcase-video-notes span {
  position: relative;
  padding: 20px 28px 20px 48px;
  color: var(--coffee);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase
}

.showcase-video-notes span+span {
  border-left: 1px solid var(--line)
}

.showcase-video-notes span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 28px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--taupe);
  transform: translateY(-50%)
}

.showcase-video-section--compact {
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--white)
}

.showcase-video-section--compact .showcase-video-heading {
  margin-bottom: 38px
}

.showcase-video-section--compact .showcase-video-heading h2 {
  font-size: clamp(38px,4.4vw,62px)
}

.showcase-video-section--compact .showcase-video-frame {
  aspect-ratio: 2 / 1;
  max-height: 640px
}

@media (max-width:820px) {
  .showcase-video-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px
  }

  .showcase-video-heading h2,
  .showcase-video-section--compact .showcase-video-heading h2 {
    font-size: clamp(36px,8vw,52px);
    line-height: 1.2
  }

  .showcase-video-intro {
    max-width: 620px
  }

  .showcase-video-frame,
  .showcase-video-section--compact .showcase-video-frame {
    aspect-ratio: 4 / 3;
    border-radius: 20px
  }

  .showcase-video-notes span {
    padding: 17px 18px 17px 36px;
    font-size: 14px
  }

  .showcase-video-notes span::before {
    left: 20px
  }
}

@media (max-width:560px) {
  .showcase-video-section--compact {
    padding-top: 68px;
    padding-bottom: 68px
  }

  .showcase-video-frame,
  .showcase-video-section--compact .showcase-video-frame {
    aspect-ratio: 3 / 4;
    min-height: 470px;
    border-radius: 18px
  }

  .showcase-video {
    object-position: center
  }

  .showcase-video-frame::after {
    inset: 10px;
    border-radius: 11px
  }

  .showcase-video-meta {
    top: 25px;
    right: 24px;
    left: 24px
  }

  .showcase-video-meta span {
    max-width: 240px;
    line-height: 1.5
  }

  .showcase-video-meta strong {
    display: none
  }

  .showcase-video-toggle {
    right: 24px;
    bottom: 24px
  }

  .showcase-video-notes {
    grid-template-columns: 1fr
  }

  .showcase-video-notes span+span {
    border-top: 1px solid var(--line);
    border-left: 0
  }
}

@media (prefers-reduced-motion:reduce) {
  .showcase-video-toggle {
    transition: none
  }
}
