
:root {
  --navy: #062f5b;
  --navy-dark: #032642;
  --navy-bright: #0b4779;
  --lime: #7ebd2e;
  --lime-dark: #63a11d;
  --sky: #e8f5fd;
  --sky-deep: #d7eefb;
  --white: #ffffff;
  --ink: #10283f;
  --muted: #5c6c7c;
  --line: #dce4ea;
  --store-shell: min(1240px, calc(100% - 52px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Arial, Helvetica, sans-serif;
}

body::selection { background: #d9efb8; color: var(--navy); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button, input { font: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 10px;
  border-radius: 4px;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.delivery-bar {
  display: grid;
  min-height: 31px;
  place-items: center;
  padding: 7px 18px 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .035em;
  text-align: center;
}

.store-header {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid #e7edf1;
  background: rgba(255,255,255,.97);
}

.header-row {
  display: grid;
  min-height: 108px;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand-link { display: inline-flex; width: max-content; }

.brand-logo-image {
  width: 218px;
  height: auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.brand-dropmark {
  position: relative;
  display: block;
  width: 54px;
  height: 66px;
  flex: 0 0 auto;
  border: 4px solid var(--navy);
  border-radius: 62% 38% 60% 40%;
  background: var(--white);
  transform: rotate(45deg);
  box-shadow: inset 0 0 0 3px #e6f4fa;
}

.dropmark-lemon,
.dropmark-cucumber {
  position: absolute;
  width: 23px;
  height: 23px;
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 50%;
  transform: rotate(-45deg);
}

.dropmark-lemon { top: 13px; left: 4px; background: #ffd33e; }
.dropmark-cucumber { right: 4px; bottom: 10px; background: #80bd49; }

.dropmark-lemon::before,
.dropmark-cucumber::before,
.dropmark-lemon::after,
.dropmark-cucumber::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background: rgba(255,255,255,.7);
  content: "";
  transform: translate(-50%,-50%);
}

.dropmark-lemon::after,
.dropmark-cucumber::after { transform: translate(-50%,-50%) rotate(90deg); }

.brand-words { display: grid; line-height: .87; }
.brand-words strong {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .045em;
}
.brand-words strong:nth-child(2) { color: var(--lime); font-size: 27px; }
.brand-tm { position: relative; top: -9px; margin-left: 2px; font: 600 7px Arial; color: var(--navy); }
.brand-words small { margin-top: 7px; color: var(--navy); font-size: 7.5px; font-weight: 800; letter-spacing: .08em; }

.store-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.store-nav a,
.account-links a {
  color: var(--navy);
  font-size: 12px;
  font-weight: 790;
  text-transform: uppercase;
}

.store-nav a {
  position: relative;
  padding: 12px 0;
}

.store-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.store-nav a:hover::after,
.store-nav a:focus-visible::after { transform: scaleX(1); }

.account-links { display: flex; align-items: center; gap: 22px; }
.account-links a { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.account-links svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.account-links span { font-weight: 500; }
.mobile-store-menu { display: none; }

.store-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 23px;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.95) 40%, rgba(240,249,255,.64) 100%),
    radial-gradient(circle at 78% 30%, #e8f7ff, transparent 46%);
}

.store-hero::after {
  position: absolute;
  right: -160px;
  bottom: -330px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(30,122,184,.13);
  border-radius: 50%;
  content: "";
}

.store-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 490px;
  grid-template-columns: minmax(410px, .8fr) minmax(560px, 1.2fr);
  align-items: center;
  gap: 20px;
}

.store-hero-copy { position: relative; z-index: 3; padding: 14px 0 30px; }

.store-eyebrow {
  margin: 0 0 12px;
  color: var(--lime-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.store-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Oswald", Impact, "Arial Narrow Bold", sans-serif;
  font-size: clamp(60px, 6.4vw, 92px);
  font-weight: 700;
  letter-spacing: .012em;
  line-height: .89;
  text-transform: uppercase;
}

.script-line,
.office-script {
  margin: 6px 0 7px;
  color: var(--lime);
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: clamp(42px, 4.5vw, 63px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.hero-description {
  max-width: 475px;
  margin: 17px 0 0;
  color: #172a3c;
  font-size: 16px;
  font-weight: 560;
  line-height: 1.55;
}

.store-hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 27px; }

.store-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 2px solid transparent;
  border-radius: 2px;
  padding: 0 31px;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .025em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.store-button:hover { transform: translateY(-2px); }
.store-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.store-button-navy { background: var(--navy); color: var(--white); }
.store-button-navy:hover { background: var(--navy-bright); }
.store-button-outline { border-color: var(--navy); background: rgba(255,255,255,.86); color: var(--navy); }
.store-button-outline:hover { background: var(--navy); color: var(--white); }

.store-hero-art {
  position: relative;
  align-self: stretch;
  min-width: 0;
}

.store-hero-art > img {
  position: absolute;
  top: -44px;
  right: -94px;
  width: 118%;
  height: calc(100% + 90px);
  object-fit: cover;
  object-position: center right;
  mix-blend-mode: multiply;
}

.hero-product-label {
  position: absolute;
  z-index: 2;
  right: 23%;
  top: 43%;
  display: grid;
  justify-items: center;
  min-width: 112px;
  border: 1px solid rgba(6,47,91,.22);
  border-radius: 4px;
  padding: 9px 12px 7px;
  background: rgba(255,255,255,.9);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(0,46,81,.09);
  text-align: center;
}

.hero-product-label > img {
  width: 92px;
  height: auto;
}

.mini-drop-logo {
  position: relative;
  width: 28px;
  height: 34px;
  border: 2px solid var(--navy);
  border-radius: 60% 40% 60% 40%;
  transform: rotate(45deg);
}

.mini-drop-logo i,
.mini-drop-logo b { position: absolute; width: 12px; height: 12px; border-radius: 50%; transform: rotate(-45deg); }
.mini-drop-logo i { top: 5px; left: 2px; background: #f4cd2f; }
.mini-drop-logo b { right: 2px; bottom: 5px; background: #7ebd2e; }
.hero-product-label strong { margin-top: 5px; font-family: "Oswald", sans-serif; font-size: 16px; line-height: .8; letter-spacing: .05em; }
.hero-product-label em { color: var(--lime); font-style: normal; }
.hero-product-label small { margin-top: 7px; border-radius: 2px; padding: 3px 5px; background: var(--lime); color: var(--white); font-size: 6px; font-weight: 800; }

.hero-water-dots span {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 10px;
  border: 2px solid #6eb8ea;
  border-radius: 60% 40% 60% 40%;
  opacity: .45;
  transform: rotate(45deg);
}
.hero-water-dots span:nth-child(1) { top: 34px; left: 48%; }
.hero-water-dots span:nth-child(2) { top: 68px; left: 53%; width: 5px; height: 7px; }
.hero-water-dots span:nth-child(3) { top: 20px; right: 19%; }
.hero-water-dots span:nth-child(4) { top: 116px; right: 9%; width: 4px; height: 6px; }
.hero-water-dots span:nth-child(5) { top: 45%; left: 49%; width: 4px; height: 6px; }

.ingredient-promises {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 4px;
  border-top: 1px solid #e6edf1;
  padding: 21px 0 4px;
}

.ingredient-promises > div { display: grid; grid-template-columns: 45px 1fr; align-items: center; column-gap: 10px; }
.ingredient-promises strong { color: var(--navy); font-size: 10px; font-weight: 850; letter-spacing: .03em; text-transform: uppercase; }
.ingredient-promises small { grid-column: 2; color: #4f6170; font-size: 9px; }

.promise-icon {
  grid-row: span 2;
  display: inline-flex;
  width: 41px;
  height: 41px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--lime);
  border-radius: 50%;
  color: var(--lime-dark);
  font-size: 21px;
  font-weight: 850;
}
.state-icon { font-size: 12px; }

.utility-strip { border-top: 1px solid #d8e8f2; border-bottom: 1px solid #d8e8f2; background: var(--sky); }
.utility-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.utility-grid article { display: grid; min-height: 118px; grid-template-columns: 54px 1fr; align-items: center; gap: 16px; border-right: 1px solid #c9dfec; padding: 22px 28px; }
.utility-grid article:last-child { border-right: 0; }
.utility-grid svg { width: 48px; height: 48px; fill: none; stroke: var(--navy); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.65; }
.utility-grid h2 { margin: 0 0 6px; color: var(--navy); font-family: "Oswald", sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .025em; text-transform: uppercase; }
.utility-grid p { margin: 0; color: #364f64; font-size: 11px; line-height: 1.4; }

.products-section { padding: 36px 0 50px; background: #fff; }
.store-section-heading { display: grid; justify-items: center; text-align: center; }
.store-section-heading > p { margin: 0 0 4px; color: var(--lime-dark); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.store-section-heading h2 { margin: 0; color: var(--navy); font-family: "Oswald", Impact, sans-serif; font-size: 29px; font-weight: 600; letter-spacing: .025em; text-transform: uppercase; }
.store-section-heading > span { width: 48px; height: 3px; margin-top: 9px; background: var(--lime); }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; margin-top: 22px; }
.product-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; background: var(--white); transition: transform 160ms ease, box-shadow 160ms ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(5,48,91,.11); }
.product-badge { position: absolute; z-index: 3; top: 14px; right: 14px; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; padding: 7px; background: var(--lime); color: var(--white); font-size: 10px; font-weight: 850; line-height: 1.05; text-align: center; text-transform: uppercase; }
.product-image-wrap { position: relative; height: 270px; overflow: hidden; background: linear-gradient(#fff, #fbfcfd); }
.product-image-wrap > img { width: 100%; height: 100%; object-fit: contain; padding: 12px 18px 0; }
.tiny-drop { width: 13px; height: 16px; margin-bottom: 3px; border: 1.5px solid var(--navy); border-radius: 60% 40% 60% 40%; transform: rotate(45deg); }
.product-info { display: flex; align-items: center; flex-direction: column; border-top: 1px solid #edf1f3; padding: 15px 16px 18px; text-align: center; }
.product-info h3 { margin: 0; color: var(--navy); font-family: "Oswald", sans-serif; font-size: 17px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }
.product-info p { margin: 2px 0 6px; color: #344c60; font-size: 10px; }
.product-price { color: var(--lime-dark); font-size: 23px; line-height: 1; }
.product-info > small { min-height: 14px; margin-top: 4px; color: #5b6872; font-size: 9px; }
.add-cart-button { display: inline-flex; min-height: 36px; align-items: center; justify-content: center; gap: 8px; min-width: 154px; margin-top: 13px; border-radius: 2px; padding: 0 18px; background: var(--navy); color: var(--white); font-size: 10px; font-weight: 800; text-transform: uppercase; transition: background 160ms ease; }
.add-cart-button:hover { background: var(--lime-dark); }
.add-cart-button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.office-band { position: relative; min-height: 360px; overflow: hidden; background: var(--navy); }
.office-band-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.office-band-shade { position: absolute; inset: 0; background: linear-gradient(90deg, #04335e 0%, #04335e 37%, rgba(4,51,94,.88) 47%, rgba(4,51,94,.22) 71%, rgba(4,51,94,0) 100%); }
.office-band-inner { position: relative; z-index: 2; min-height: 360px; display: flex; align-items: center; }
.office-copy { max-width: 510px; padding: 38px 0; color: var(--white); }
.office-kicker { margin: 0 0 2px; color: #a5d969; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.office-copy h2 { margin: 0; font-family: "Oswald", Impact, sans-serif; font-size: 45px; font-weight: 600; letter-spacing: .025em; line-height: 1; text-transform: uppercase; }
.office-script { margin: -2px 0 11px; font-size: 45px; }
.office-copy ul { display: grid; gap: 8px; margin: 0 0 25px; padding: 0; list-style: none; }
.office-copy li { display: flex; align-items: center; gap: 9px; font-size: 13px; }
.office-copy li svg { width: 17px; height: 17px; border-radius: 50%; padding: 3px; background: var(--lime); fill: none; stroke: var(--navy); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.6; }
.store-button-green { background: var(--lime); color: var(--white); }
.store-button-green:hover { background: #93cb4e; }

.local-section { padding: 33px 0 42px; background: #fff; }
.local-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 22px; }
.local-grid article { position: relative; min-height: 155px; border: 1px solid var(--line); border-radius: 4px; padding: 26px 25px 24px 48px; box-shadow: 0 7px 16px rgba(9,43,75,.04); }
.quote-mark { position: absolute; top: 15px; left: 19px; color: #a8d773; font-family: Georgia, serif; font-size: 48px; line-height: 1; }
.local-grid h3 { margin: 0 0 8px; color: var(--navy); font-family: "Oswald", sans-serif; font-size: 16px; font-weight: 600; text-transform: uppercase; }
.local-grid p { margin: 0; color: #44596a; font-size: 12px; line-height: 1.55; }

.store-footer { background: linear-gradient(180deg, #062f5b, #032642); color: rgba(255,255,255,.82); }
.footer-main { display: grid; grid-template-columns: 1.45fr repeat(4, 1fr) 1.25fr; gap: 26px; padding: 39px 0 30px; }
.footer-brand-column { border-right: 1px solid rgba(255,255,255,.17); padding-right: 25px; }
.brand-lockup-footer .brand-dropmark { border-color: #fff; background: rgba(255,255,255,.05); box-shadow: none; }
.brand-lockup-footer .brand-words strong:first-child { color: #fff; }
.brand-lockup-footer .brand-words small { color: rgba(255,255,255,.72); }
.brand-logo-image-footer { width: 180px; border-radius: 3px; padding: 7px; background: rgba(255,255,255,.96); }
.footer-brand-column p { margin: 18px 0 0; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.6; }
.footer-column { display: flex; align-items: flex-start; flex-direction: column; gap: 7px; border-right: 1px solid rgba(255,255,255,.14); padding-right: 18px; }
.footer-column h2, .footer-signup h2 { margin: 0 0 3px; color: #fff; font-size: 10px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.78); font-size: 9px; }
.footer-column a:hover { color: #a9dc6b; }
.footer-signup label { display: block; margin: 12px 0 6px; color: #fff; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.social-row { display: flex; gap: 8px; }
.social-row a { display: inline-flex; width: 25px; height: 25px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; color: #fff; font-size: 10px; }
.footer-signup form { display: flex; }
.footer-signup input { min-width: 0; width: 100%; height: 32px; border: 0; padding: 0 10px; font-size: 10px; }
.footer-signup button { width: 34px; height: 32px; border: 0; background: var(--lime); color: #fff; cursor: pointer; }
.footer-bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.18); padding: 14px 0 16px; font-size: 8px; }
.footer-bottom-row p { margin: 0; }
.footer-bottom-row nav { display: flex; gap: 30px; }

.store-button:focus-visible,
.add-cart-button:focus-visible,
.store-nav a:focus-visible,
.account-links a:focus-visible,
.brand-link:focus-visible,
.footer-column a:focus-visible,
.footer-signup input:focus-visible,
.footer-signup button:focus-visible {
  outline: 3px solid rgba(126,189,46,.45);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  :root { --store-shell: min(100% - 40px, 980px); }
  .header-row { grid-template-columns: 215px 1fr auto; gap: 16px; }
  .store-nav { gap: 18px; }
  .store-nav a, .account-links a { font-size: 10px; }
  .account-links a:first-child { display: none; }
  .store-hero-grid { grid-template-columns: minmax(360px,.8fr) minmax(480px,1.2fr); }
  .store-hero-art > img { right: -55px; }
  .utility-grid article { padding-inline: 18px; }
  .footer-main { grid-template-columns: 1.3fr repeat(4,1fr); }
  .footer-signup { grid-column: 1 / -1; display: grid; grid-template-columns: auto auto minmax(240px, 360px); align-items: end; gap: 16px; }
  .footer-signup label { display: none; }
}

@media (max-width: 900px) {
  :root { --store-shell: min(100% - 32px, 720px); }
  .header-row { min-height: 90px; grid-template-columns: 1fr auto; }
  .store-nav, .account-links { display: none; }
  .mobile-store-menu { position: relative; display: block; }
  .mobile-store-menu summary { display: flex; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border-radius: 3px; background: var(--navy); list-style: none; }
  .mobile-store-menu summary::-webkit-details-marker { display: none; }
  .mobile-store-menu summary span { width: 20px; height: 2px; background: #fff; }
  .mobile-store-menu nav { position: absolute; z-index: 50; top: 52px; right: 0; display: grid; width: 230px; border: 1px solid var(--line); background: #fff; box-shadow: 0 16px 35px rgba(3,38,66,.18); }
  .mobile-store-menu nav a { border-bottom: 1px solid var(--line); padding: 13px 16px; color: var(--navy); font-size: 11px; font-weight: 800; text-transform: uppercase; }
  .mobile-store-menu nav a:last-child { border-bottom: 0; background: var(--navy); color: #fff; }
  .store-hero { padding-top: 38px; }
  .store-hero-grid { min-height: 0; grid-template-columns: 1fr; }
  .store-hero-copy { max-width: 610px; }
  .store-hero-art { height: 470px; }
  .store-hero-art > img { top: -40px; right: -110px; width: 125%; height: 560px; }
  .hero-product-label { right: 18%; }
  .ingredient-promises { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .utility-grid { grid-template-columns: repeat(2,1fr); }
  .utility-grid article:nth-child(2) { border-right: 0; }
  .utility-grid article:nth-child(-n+2) { border-bottom: 1px solid #c9dfec; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .office-band-shade { background: linear-gradient(90deg, #04335e 0%, #04335e 48%, rgba(4,51,94,.82) 72%, rgba(4,51,94,.36) 100%); }
  .local-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2,1fr); }
  .footer-brand-column { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); padding: 0 0 24px; }
  .footer-column { min-height: 130px; }
  .footer-signup { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .footer-signup label { display: block; }
}

@media (max-width: 560px) {
  :root { --store-shell: calc(100% - 24px); }
  html { scroll-padding-top: 90px; }
  .delivery-bar { font-size: 9px; }
  .header-row { min-height: 82px; }
  .brand-lockup { transform: scale(.84); transform-origin: left center; }
  .store-hero { padding-top: 29px; }
  .store-hero h1 { font-size: clamp(54px, 17vw, 74px); }
  .script-line { font-size: 43px; }
  .hero-description { font-size: 14px; }
  .store-hero-actions { align-items: stretch; flex-direction: column; }
  .store-button { width: 100%; }
  .store-hero-art { height: 350px; }
  .store-hero-art > img { top: -10px; right: -82px; width: 135%; height: 390px; }
  .hero-product-label { top: 42%; right: 12%; transform: scale(.76); }
  .ingredient-promises { grid-template-columns: 1fr 1fr; gap: 15px 12px; padding-top: 18px; }
  .ingredient-promises > div { grid-template-columns: 37px 1fr; }
  .promise-icon { width: 34px; height: 34px; font-size: 17px; }
  .ingredient-promises strong { font-size: 8px; }
  .ingredient-promises small { font-size: 8px; }
  .utility-grid { grid-template-columns: 1fr; }
  .utility-grid article { min-height: 100px; border-right: 0; border-bottom: 1px solid #c9dfec; }
  .utility-grid article:nth-child(3) { border-bottom: 1px solid #c9dfec; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image-wrap { height: 300px; }
  .office-band { min-height: 570px; }
  .office-band-image { object-position: 72% center; }
  .office-band-shade { background: linear-gradient(180deg, #04335e 0%, #04335e 52%, rgba(4,51,94,.87) 68%, rgba(4,51,94,.34) 100%); }
  .office-band-inner { min-height: 570px; align-items: flex-start; }
  .office-copy { padding-top: 39px; }
  .office-copy h2 { font-size: 39px; }
  .office-script { font-size: 40px; }
  .office-copy li { font-size: 11px; }
  .local-section { padding-block: 30px; }
  .store-section-heading h2 { font-size: 25px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 25px 18px; }
  .footer-column { border-right: 0; padding-right: 0; }
  .footer-bottom-row { align-items: flex-start; flex-direction: column; }
  .footer-bottom-row nav { flex-wrap: wrap; gap: 12px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
