@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800&display=swap");

:root {
  --white: #ffffff;
  --ink: #303336;
  --black: #111111;
  --muted: #60666c;
  --quiet: #788087;
  --line: #e4e6e7;
  --line-soft: #f1f2f3;
  --surface: #f2f2f2;
  --surface-blue: #eef8fe;
  --blue: #16aafe;
  --blue-dark: #087fbe;
  --orange: #ff7503;
  --orange-dark: #d85f00;
  --focus: #7a3100;
  --page: min(calc(100% - 32px), 1232px);
  --font: "Plus Jakarta Sans", "Alegreya Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font: 400 16px / 1.5 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font-family: var(--font);
}

button,
input {
  color: inherit;
}

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

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

address {
  font-style: normal;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

/* Header shared with both routes */

.store-announcement {
  min-height: 40px;
  display: flex;
  align-items: center;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.announcement-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.announcement-inner p,
.announcement-inner div {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
}

.announcement-inner p span {
  color: var(--orange);
  font-size: 9px;
}

.announcement-inner a {
  font-weight: 600;
}

.announcement-inner a:hover {
  color: var(--orange-dark);
}

.store-header {
  position: relative;
  z-index: 40;
  background: var(--white);
}

.store-header-main {
  min-height: 122px;
  display: grid;
  grid-template-columns: 170px minmax(300px, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.store-logo {
  width: 150px;
  display: block;
}

.store-logo img {
  width: 150px;
  height: auto;
}

.classic-search {
  min-width: 0;
  height: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  background: var(--white);
  border: 2px solid var(--orange);
}

.classic-search input {
  min-width: 0;
  width: 100%;
  padding: 0 16px;
  background: #f8fafc;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  outline: 0;
}

.classic-search input::placeholder {
  color: var(--quiet);
  opacity: 1;
}

.classic-search button {
  min-width: 108px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.classic-search button:hover {
  background: var(--orange);
}

.search-symbol {
  font-size: 23px;
  line-height: 1;
}

.store-header-actions {
  display: flex;
  align-items: stretch;
  gap: 1px;
  border: 1px solid var(--line);
}

.store-header-actions a {
  min-width: 118px;
  min-height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 14px;
  background: var(--white);
  border-right: 1px solid var(--line);
  transition: background 160ms ease;
}

.store-header-actions a:last-child {
  border-right: 0;
}

.store-header-actions a:hover {
  background: var(--surface);
}

.store-header-actions span {
  font-size: 14px;
  font-weight: 700;
}

.store-header-actions small {
  margin-top: 2px;
  color: var(--quiet);
  font-size: 11px;
}

.classic-nav {
  color: var(--white);
  background: var(--blue);
  border-bottom: 1px solid var(--blue-dark);
}

.classic-nav-inner {
  min-height: 48px;
  display: flex;
  align-items: stretch;
}

.classic-nav a {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  transition: background 160ms ease;
}

.classic-nav a:hover,
.classic-nav a[aria-current="page"] {
  background: var(--blue-dark);
}

.classic-nav a::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  content: "";
  background: transparent;
}

.classic-nav a:hover::after,
.classic-nav a[aria-current="page"]::after {
  background: var(--orange);
}

.mobile-tools {
  display: none;
}

/* Shared buttons and headings */

.classic-eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.classic-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.classic-button-orange {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.classic-button-orange:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.classic-button-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.classic-button-dark:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.classic-button-outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--ink);
}

.classic-button-outline:hover {
  color: var(--white);
  background: var(--ink);
}

.classic-button-blue {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.classic-button-blue:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.classic-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.inline-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 2px;
  border-bottom: 2px solid var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.inline-link:hover {
  color: var(--orange-dark);
}

.classic-section {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 44px;
}

.section-heading h2,
.sourcing-copy h2,
.company-history h2,
.stock-purchase h2,
.news-contact-grid h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.1vw, 46px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.section-heading > p,
.section-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-footer-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.section-footer-row > p {
  margin: 0;
  color: var(--muted);
}

/* Home hero */

.commerce-hero {
  padding: 48px 0 0;
  background: var(--white);
}

.commerce-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  gap: 48px;
}

.commerce-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 0 42px;
}

.commerce-hero-copy h1 {
  max-width: 690px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 4.8vw, 68px);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.commerce-hero-lead {
  max-width: 680px;
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-facts div {
  padding: 18px 18px 18px 0;
  border-right: 1px solid var(--line);
}

.hero-facts div + div {
  padding-left: 18px;
}

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

.hero-facts dt {
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: var(--quiet);
  font-size: 12px;
}

.commerce-hero-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.commerce-hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(17, 17, 17, 0.2));
  pointer-events: none;
}

.commerce-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commerce-hero-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-width: 260px;
  padding: 18px 22px;
  color: var(--ink);
  background: var(--white);
  border-top: 4px solid var(--orange);
}

.commerce-hero-media figcaption span,
.commerce-hero-media figcaption strong {
  display: block;
}

.commerce-hero-media figcaption span {
  color: var(--muted);
  font-size: 12px;
}

.commerce-hero-media figcaption strong {
  margin-top: 4px;
  font-size: 18px;
}

.hero-store-note {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-store-note > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  display: inline-block;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 117, 3, 0.14);
}

.hero-store-note p {
  margin: 0;
  color: var(--muted);
}

.hero-store-note > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
}

.hero-store-note > a:hover {
  color: var(--orange-dark);
}

/* Categories */

.product-groups {
  background: var(--white);
}

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

.category-card {
  position: relative;
  min-height: 258px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-top: 3px solid var(--blue);
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.category-card:hover {
  border-color: var(--muted);
  border-top-color: var(--orange);
  transform: translateY(-3px);
}

.category-code {
  width: fit-content;
  min-width: 44px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  color: var(--blue-dark);
  background: var(--surface-blue);
  font-size: 12px;
  font-weight: 800;
}

.category-card h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.card-arrow {
  margin-top: auto;
  padding-top: 20px;
  color: var(--orange);
  font-size: 24px;
  font-weight: 800;
}

/* Sourcing */

.sourcing-section {
  padding: 96px 0;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.sourcing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 72px;
}

.sourcing-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
}

.sourcing-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.sourcing-media span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  color: var(--white);
  background: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sourcing-copy .section-lead {
  max-width: 650px;
  margin-top: 24px;
}

.sourcing-list {
  margin: 38px 0 32px;
  border-top: 1px solid var(--line);
}

.sourcing-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.sourcing-list article > span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.sourcing-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.sourcing-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* News preview */

.section-heading-news {
  align-items: center;
}

.news-status {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--surface-blue);
  border-left: 4px solid var(--blue);
}

.news-status p,
.news-status strong,
.news-status span {
  display: block;
}

.news-status p {
  margin: 0;
}

.news-status strong {
  color: var(--ink);
}

.news-status span:not(.status-dot) {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

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

.news-teaser {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding-bottom: 24px;
  border: 1px solid var(--line-soft);
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.news-teaser:hover {
  border-color: var(--muted);
  transform: translateY(-3px);
}

.news-teaser img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface);
}

.news-teaser > span {
  margin: 20px 20px 7px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-teaser h3 {
  margin: 0 50px 0 20px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.news-teaser i {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--orange);
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
}

/* Company and stock */

.company-section {
  padding: 96px 0;
  background: var(--surface-blue);
  border-block: 1px solid #d7edf9;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 48px;
}

.company-history {
  padding: 12px 32px 12px 0;
}

.company-history > p:not(.classic-eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.company-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #c4e2f2;
}

.company-timeline li {
  min-height: 154px;
  padding: 22px 20px 18px 0;
  border-right: 1px solid #c4e2f2;
}

.company-timeline li + li {
  padding-left: 20px;
}

.company-timeline li:last-child {
  border-right: 0;
}

.company-timeline strong,
.company-timeline span {
  display: block;
}

.company-timeline strong {
  color: var(--blue-dark);
  font-size: 24px;
}

.company-timeline span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.stock-purchase {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  color: var(--white);
  background: var(--blue-dark);
  border-top: 5px solid var(--orange);
}

.stock-purchase .classic-eyebrow,
.stock-purchase h2 {
  color: var(--white);
}

.stock-purchase > p:not(.classic-eyebrow) {
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.stock-purchase .classic-button {
  align-self: flex-start;
}

/* Contact */

.contact-section {
  padding-bottom: 112px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.contact-card:hover {
  background: var(--surface);
  border-color: var(--muted);
  border-top-color: var(--orange);
}

.contact-card-shop {
  border-top-color: var(--blue);
}

.contact-card-shop:hover {
  border-top-color: var(--blue);
}

.contact-card > span {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-card h3 {
  max-width: 520px;
  margin: 40px 0 12px;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card strong {
  margin-top: auto;
  padding-top: 24px;
  color: var(--orange-dark);
  font-size: 14px;
}

.contact-card-shop strong {
  color: var(--blue-dark);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-details div {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.contact-details div:first-child {
  padding-left: 0;
}

.contact-details div:last-child {
  border-right: 0;
}

.contact-details span,
.contact-details a,
.contact-details p {
  display: block;
}

.contact-details span {
  margin-bottom: 10px;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-details a:hover {
  color: var(--orange-dark);
}

/* News route */

.news-classic-hero {
  padding: 58px 0 68px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.news-classic-hero nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 38px;
  color: var(--quiet);
  font-size: 13px;
}

.news-classic-hero nav a:hover {
  color: var(--orange-dark);
}

.news-classic-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.current-message {
  color: var(--white);
  background: var(--blue);
}

.current-message-grid {
  min-height: 182px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  padding-block: 32px;
}

.current-message-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.current-message .status-dot {
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.current-message h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.2;
}

.current-message p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  border: 1px solid var(--line-soft);
  transition: border-color 160ms ease;
}

.news-card:hover {
  border-color: var(--muted);
}

.news-card-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--surface);
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-image > span {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 46px;
  padding: 11px 12px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.news-card-copy {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.news-card-copy .classic-eyebrow {
  margin-bottom: 12px;
}

.news-card-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.news-card-copy > p:not(.classic-eyebrow) {
  margin: 18px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.news-card-copy > a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--orange-dark);
  border-bottom: 2px solid var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.news-contact-section {
  padding: 76px 0;
  background: var(--surface-blue);
  border-top: 1px solid #d7edf9;
}

.news-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.64fr) auto;
  align-items: center;
  gap: 48px;
}

.news-contact-grid > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Footer */

.classic-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
  gap: 48px;
  padding-block: 96px;
}

.footer-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-brand h2 {
  max-width: 410px;
  margin: 0;
  color: var(--white);
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.footer-brand > p:last-child {
  max-width: 430px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.65;
}

.footer-grid h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 15px;
}

.footer-grid nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid nav a,
.footer-contact a,
.footer-contact address {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.footer-grid nav a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-legal {
  color: var(--ink);
  background: var(--white);
}

.footer-legal-inner {
  min-height: 120px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 38px;
}

.footer-legal img {
  width: 92px;
  height: auto;
}

.footer-legal p {
  margin: 0;
  color: var(--quiet);
  font-size: 12px;
}

.footer-legal > .page-width > a:last-child,
.footer-legal-inner > a:last-child {
  font-size: 13px;
  font-weight: 800;
}

.footer-legal-inner > a:last-child:hover {
  color: var(--orange-dark);
}

/* Tablet */

@media (max-width: 1100px) {
  .store-header-main {
    grid-template-columns: 150px minmax(280px, 1fr) auto;
    gap: 28px;
  }

  .store-header-actions a {
    min-width: 100px;
  }

  .store-header-actions small {
    display: none;
  }

  .classic-nav a {
    padding-inline: 13px;
    font-size: 13px;
  }

  .commerce-hero-grid {
    gap: 32px;
  }

  .commerce-hero-media {
    min-height: 470px;
  }

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

  .category-card {
    min-height: 230px;
  }

  .sourcing-grid {
    gap: 48px;
  }

  .company-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

  .news-card {
    grid-template-columns: 160px 1fr;
  }

  .news-contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.7fr);
  }

  .news-contact-grid .classic-button {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

@media (max-width: 999px) {
  .store-header-main {
    min-height: 104px;
    display: flex;
    justify-content: center;
  }

  .store-logo {
    width: 142px;
  }

  .store-logo img {
    width: 142px;
  }

  .desktop-search,
  .store-header-actions,
  .classic-nav {
    display: none;
  }

  .mobile-tools {
    position: relative;
    min-height: 66px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    color: var(--white);
    background: var(--blue);
    border-bottom: 1px solid var(--blue-dark);
  }

  .mobile-tools details {
    position: static;
  }

  .mobile-tools summary,
  .mobile-tool-link {
    min-height: 66px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    list-style: none;
    cursor: pointer;
  }

  .mobile-tools summary::-webkit-details-marker {
    display: none;
  }

  .mobile-tool-link:last-child {
    border-right: 0;
  }

  .mobile-tools summary:hover,
  .mobile-tools details[open] > summary,
  .mobile-tool-link:hover {
    background: var(--blue-dark);
  }

  .mobile-tool-icon {
    font-size: 22px;
    line-height: 1;
  }

  .mobile-menu nav,
  .mobile-search-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 50;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 4px solid var(--orange);
    box-shadow: 0 18px 32px rgba(48, 51, 54, 0.14);
  }

  .mobile-menu nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .mobile-menu nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-menu nav a:hover,
  .mobile-menu nav a[aria-current="page"] {
    color: var(--orange-dark);
    background: var(--surface);
  }

  .mobile-menu nav .mobile-menu-shop {
    color: var(--white);
    background: var(--ink);
  }

  .mobile-search-panel {
    padding: 18px;
  }

  .mobile-search-panel .classic-search {
    max-width: 720px;
    margin-inline: auto;
  }

  .commerce-hero {
    padding-top: 42px;
  }

  .commerce-hero-grid {
    grid-template-columns: 1fr;
  }

  .commerce-hero-copy {
    padding-bottom: 12px;
  }

  .commerce-hero-copy h1 {
    max-width: 800px;
  }

  .commerce-hero-media {
    min-height: 520px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 720px;
  }

  .sourcing-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .sourcing-media {
    min-height: 540px;
  }

  .sourcing-media img {
    min-height: 540px;
  }

  .company-history {
    padding-right: 0;
  }

  .stock-purchase {
    min-height: 390px;
  }

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

  .contact-details div:nth-child(2) {
    border-right: 0;
  }

  .contact-details div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-details div:nth-child(3) {
    padding-left: 0;
  }

  .current-message-grid {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .current-message-grid .classic-button {
    grid-column: 2;
    justify-self: start;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: 300px;
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  }
}

/* Mobile */

@media (max-width: 767px) {
  :root {
    --page: min(calc(100% - 32px), 720px);
  }

  html {
    scroll-padding-top: 16px;
  }

  .announcement-inner {
    justify-content: center;
  }

  .announcement-inner p {
    gap: 10px;
    font-size: 12px;
    text-align: center;
  }

  .announcement-inner > div {
    display: none;
  }

  .store-header-main {
    min-height: 94px;
  }

  .store-logo,
  .store-logo img {
    width: 132px;
  }

  .classic-section,
  .sourcing-section,
  .company-section {
    padding-block: 72px;
  }

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

  .section-heading h2,
  .sourcing-copy h2,
  .company-history h2,
  .stock-purchase h2,
  .news-contact-grid h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .commerce-hero {
    padding-top: 34px;
  }

  .commerce-hero-copy h1 {
    font-size: clamp(38px, 10.8vw, 54px);
  }

  .commerce-hero-lead {
    margin-block: 20px 26px;
    font-size: 16px;
  }

  .commerce-hero-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .commerce-hero-media figcaption {
    min-width: 220px;
    padding: 14px 16px;
  }

  .hero-store-note {
    grid-template-columns: 1fr auto;
    gap: 12px 20px;
    padding-block: 20px;
  }

  .hero-store-note p {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 13px;
  }

  .category-grid,
  .news-teaser-grid {
    gap: 12px;
  }

  .sourcing-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .sourcing-media img {
    min-height: 0;
  }

  .company-timeline {
    grid-template-columns: 1fr;
  }

  .company-timeline li,
  .company-timeline li + li {
    min-height: 0;
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: start;
    gap: 18px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid #c4e2f2;
  }

  .company-timeline li:last-child {
    border-bottom: 0;
  }

  .company-timeline span {
    margin-top: 2px;
  }

  .stock-purchase {
    min-height: 0;
    padding: 32px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 250px;
    padding: 26px;
  }

  .contact-card h3 {
    margin-top: 30px;
    font-size: 24px;
  }

  .news-classic-hero {
    padding: 38px 0 48px;
  }

  .news-classic-hero nav {
    margin-bottom: 28px;
  }

  .news-classic-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .current-message-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 34px;
  }

  .current-message-grid .classic-button {
    grid-column: auto;
  }

  .news-contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-contact-grid .classic-button {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 64px;
  }

  .footer-legal-inner {
    min-height: 170px;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
    padding-block: 28px;
  }
}

@media (max-width: 575px) {
  .store-announcement {
    min-height: 44px;
  }

  .announcement-inner {
    min-height: 44px;
  }

  .mobile-tools {
    min-height: 64px;
  }

  .mobile-tools summary,
  .mobile-tool-link {
    min-width: 0;
    min-height: 64px;
    font-size: 11px;
  }

  .mobile-tool-icon {
    font-size: 20px;
  }

  .mobile-menu nav {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 210px);
    overflow-y: auto;
  }

  .mobile-menu nav a {
    min-height: 48px;
  }

  .mobile-search-panel {
    padding: 14px;
  }

  .classic-search {
    height: auto;
    grid-template-columns: 1fr;
    border-width: 2px;
  }

  .classic-search input {
    min-height: 50px;
    font-size: 16px;
  }

  .classic-search button {
    min-height: 48px;
  }

  .classic-button {
    width: 100%;
  }

  .commerce-hero-copy h1 {
    font-size: clamp(36px, 10.5vw, 46px);
  }

  .hero-facts {
    margin-top: 32px;
  }

  .hero-facts div,
  .hero-facts div + div {
    padding: 14px 10px;
  }

  .hero-facts div:first-child {
    padding-left: 0;
  }

  .hero-facts dt {
    font-size: 18px;
  }

  .hero-facts dd {
    font-size: 10px;
    line-height: 1.35;
  }

  .commerce-hero-media figcaption {
    right: 0;
    left: 0;
    min-width: 0;
  }

  .hero-store-note {
    grid-template-columns: 1fr;
  }

  .hero-store-note > a {
    justify-self: start;
  }

  .hero-store-note p {
    grid-column: auto;
    grid-row: auto;
  }

  .category-grid,
  .news-teaser-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 220px;
  }

  .section-footer-row {
    align-items: stretch;
    flex-direction: column;
  }

  .sourcing-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .sourcing-copy .classic-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .inline-link {
    width: fit-content;
  }

  .stock-purchase {
    padding: 28px 24px;
  }

  .stock-purchase .classic-button {
    align-self: stretch;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-details div,
  .contact-details div:first-child,
  .contact-details div:nth-child(3) {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-details div:last-child {
    border-bottom: 0;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card-image {
    min-height: 230px;
    max-height: 270px;
  }

  .news-card-copy {
    min-height: 280px;
    padding: 24px;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
