:root {
  --ink: #152335;
  --soft-ink: #47566a;
  --paper: #f4f8fd;
  --white: #ffffff;
  --line: #d8e3f0;
  --teal: #2d6db3;
  --teal-dark: #245da3;
  --saffron: #75a9e6;
  --clay: #1d4f8f;
  --charcoal: #0f2c52;
  --brand-blue: #245da3;
  --brand-blue-dark: #123f73;
  --brand-blue-soft: #e9f2ff;
  --shadow: 0 20px 60px rgba(36, 93, 163, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

p {
  margin: 0;
  color: var(--soft-ink);
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

li + li {
  margin-top: 0.35rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(36, 93, 163, 0.14);
}

.header-main {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto auto auto;
  gap: 0.8rem;
  align-items: center;
  min-height: 72px;
  padding: 0.45rem clamp(0.8rem, 2vw, 1.5rem);
}

.header-subnav {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 44px;
  padding: 0 clamp(0.8rem, 2vw, 1.5rem);
  background: var(--brand-blue);
}

.cart-toggle {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  color: var(--brand-blue);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.cart-toggle:hover,
.header-link:hover,
.header-page-link:hover,
.delivery-link:hover,
.language-button:hover,
.brand:hover {
  outline: 1px solid rgba(36, 93, 163, 0.65);
}

.cart-count {
  display: grid;
  min-width: 24px;
  min-height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--brand-blue-soft);
  font-size: 0.78rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  border-radius: 6px;
  padding: 0.2rem;
}

.header-main .brand {
  color: var(--brand-blue);
}

.brand img {
  display: block;
  width: clamp(180px, 18vw, 260px);
  height: auto;
}

.brand-name {
  position: relative;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  font-weight: 900;
  line-height: 0.95;
}

.brand-name::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -10px;
  width: 64px;
  height: 18px;
  border-bottom: 5px solid #ff9900;
  border-radius: 0 0 80px 80px;
}

.header-main .brand small {
  align-self: end;
  margin: 0 0 0.12rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand small {
  margin-top: 0.1rem;
  color: var(--soft-ink);
  font-size: 0.76rem;
}

.delivery-link,
.header-link,
.header-page-link,
.language-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 52px;
  border: 0;
  border-radius: 2px;
  padding: 0.4rem 0.45rem;
  color: var(--white);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.header-page-link {
  min-height: 48px;
  justify-content: center;
  color: var(--brand-blue-dark);
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.delivery-link small,
.header-link small {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.05;
}

.delivery-link strong,
.header-link strong,
.language-button strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.05;
  white-space: nowrap;
}

.pin-icon {
  color: var(--white);
  font-size: 1.45rem;
}

.header-search {
  display: grid;
  grid-template-columns: 76px minmax(160px, 1fr) 66px;
  min-height: 48px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--white);
}

.header-search:focus-within {
  border-color: var(--brand-blue);
}

.header-search select,
.header-search input,
.header-search button {
  min-width: 0;
  border: 0;
  font: inherit;
}

.header-search select {
  padding: 0 0.5rem;
  color: var(--soft-ink);
  background: #e8f0fa;
}

.header-search input {
  padding: 0 0.8rem;
  color: var(--ink);
  font-size: 1rem;
}

.header-search button {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand-blue);
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
}

.language-button {
  font-weight: 800;
}

.header-cart {
  position: relative;
  border: 1px solid var(--line);
  background: var(--brand-blue-soft);
}

.header-cart .cart-count {
  position: static;
  min-width: 20px;
  min-height: 20px;
  color: var(--white);
  background: var(--brand-blue);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  border-radius: 2px;
  padding: 0.35rem 0.15rem;
  color: var(--white);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  outline: 1px solid rgba(255, 255, 255, 0.75);
  outline-offset: 0.4rem;
  background: transparent;
}

.menu-toggle {
  display: inline-flex;
  width: auto;
  min-width: 62px;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  border-radius: 2px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle strong {
  font-size: 0.95rem;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.menu-toggle:hover {
  outline: 1px solid rgba(255, 255, 255, 0.75);
}

.sale-strip {
  margin-left: auto;
  color: #ff7a1a;
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  font-weight: 900;
  white-space: nowrap;
}

.about-store-section {
  background: #f7f8f5;
  border-top: 1px solid var(--line);
}

.about-store-section p {
  max-width: 820px;
  margin-top: 1rem;
  font-size: 1.05rem;
}

.hero {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/store-tech-display.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.03);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 17, 20, 0.88), rgba(10, 17, 20, 0.58) 45%, rgba(10, 17, 20, 0.18));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 2rem));
  padding: 5rem clamp(1rem, 5vw, 4rem);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin-bottom: 0.7rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--saffron);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

h2 {
  max-width: 850px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.16rem;
}

.hero p {
  max-width: 670px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.72rem 1rem;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--brand-blue);
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

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

.section {
  padding: clamp(4.2rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.intro-section,
.products-section,
.reviews-section,
.faq-section {
  background: var(--white);
}

.split,
.category-header,
.proof-section,
.contact-section,
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split p {
  max-width: 760px;
  margin-top: 1rem;
}

.values-panel {
  display: grid;
  gap: 1rem;
}

.values-panel div,
.highlight-grid article,
.product-columns article,
.catalog-grid article,
.proof-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(25, 42, 47, 0.06);
}

.values-panel div {
  padding: 1.4rem;
}

.values-panel span,
.proof-grid strong,
.contact-card h3 {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-weight: 800;
}

.feature-strip,
.featured-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.feature-strip span,
.featured-bar span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  background: #f9faf7;
  font-weight: 700;
}

.service-highlights {
  background: #eef3ef;
}

.highlight-grid,
.catalog-grid,
.proof-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-grid article,
.catalog-grid article,
.proof-grid article {
  padding: 1.35rem;
}

.icon-box {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.highlight-grid p,
.catalog-grid p,
.proof-grid p {
  margin-top: 0.65rem;
}

.category-section {
  background: #faf9f4;
}

.category-section.muted {
  background: #edf2f2;
}

.category-header p,
.section-lead {
  max-width: 680px;
  align-self: end;
  font-size: 1.05rem;
}

.product-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.product-columns.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-columns article {
  min-height: 260px;
  padding: 1.25rem;
}

.product-columns h3 {
  margin-bottom: 0.9rem;
}

.product-columns li::marker {
  color: var(--teal);
}

.catalog-grid,
.store-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-bar {
  padding-top: 0.75rem;
}

.shop-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 2rem;
  align-items: end;
}

.shop-stats {
  display: grid;
  gap: 0.75rem;
}

.shop-stats span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  background: #f9faf7;
  color: var(--soft-ink);
  font-weight: 700;
}

.shop-stats strong {
  color: var(--ink);
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 280px);
  gap: 1rem;
  margin-top: 2rem;
}

.search-box,
.sort-box {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.search-box input,
.sort-box select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  background: #f9faf7;
  font: inherit;
}

.shop-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.category-filter {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  color: var(--soft-ink);
  background: #f9faf7;
  font-weight: 800;
  cursor: pointer;
}

.category-filter.active,
.category-filter:hover {
  color: var(--white);
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.store-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.store-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(25, 42, 47, 0.06);
}

.product-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 25%, rgba(255, 255, 255, 0.32), transparent 26%),
    linear-gradient(135deg, var(--product-color), #11181b);
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.product-art::before {
  width: 92px;
  height: 138px;
  transform: rotate(-10deg);
}

.product-art::after {
  width: 132px;
  height: 54px;
  transform: translate(34px, 46px) rotate(8deg);
}

.product-art span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--saffron);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.product-info {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.product-meta,
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.product-meta {
  justify-content: space-between;
}

.product-meta span {
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  color: var(--teal-dark);
  background: rgba(40, 121, 130, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
}

.store-card h3 {
  min-height: 2.5em;
}

.store-card p {
  min-height: 4.8em;
  font-size: 0.94rem;
}

.price-row strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.price-row del {
  color: #7b878a;
}

.price-row span {
  color: var(--clay);
  font-weight: 800;
}

.add-to-cart {
  width: 100%;
  cursor: pointer;
}

.no-results {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 2rem;
  color: var(--soft-ink);
  background: #f9faf7;
  text-align: center;
  font-weight: 800;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  justify-content: end;
  background: rgba(17, 24, 27, 0.52);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  width: min(460px, 100%);
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cart-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.cart-header h2 {
  font-size: 1.6rem;
}

.cart-close {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  background: #f9faf7;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 0.8rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem;
  background: #f9faf7;
}

.cart-thumb {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--product-color);
  font-weight: 900;
}

.cart-item h3 {
  font-size: 0.95rem;
}

.cart-item p {
  margin-top: 0.2rem;
  font-size: 0.86rem;
}

.quantity-controls {
  display: inline-grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  margin-top: 0.55rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.quantity-controls button {
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.quantity-controls span {
  color: var(--ink);
  font-weight: 800;
}

.cart-empty {
  display: none;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 1.3rem;
  color: var(--soft-ink);
  background: #f9faf7;
  text-align: center;
}

.cart-footer {
  display: grid;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-row span {
  color: var(--soft-ink);
}

.proof-section {
  background: var(--charcoal);
}

.proof-section h2 {
  color: var(--white);
}

.proof-section .section-kicker {
  color: var(--saffron);
}

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

.proof-grid article {
  background: #182327;
  border-color: rgba(255, 255, 255, 0.12);
}

.proof-grid strong {
  color: var(--white);
}

.proof-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.reviews-section {
  text-align: center;
}

.reviews-section h2,
.reviews-section .section-kicker {
  margin-left: auto;
  margin-right: auto;
}

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

blockquote {
  margin: 0;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  background: #f7f8f5;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
}

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

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 920px;
  margin-top: 2rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  background: #f9faf7;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin-top: 0.75rem;
}

.contact-section {
  background: #eef3ef;
  align-items: center;
}

.contact-copy p {
  max-width: 660px;
  margin-top: 1rem;
}

.contact-card {
  padding: 1.6rem;
}

address {
  margin: 0 0 1.2rem;
  color: var(--soft-ink);
  font-style: normal;
}

dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

dt {
  color: var(--ink);
  font-weight: 800;
}

dd {
  margin: 0.2rem 0 0;
  color: var(--soft-ink);
}

dd a {
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, var(--brand-blue-dark), #0b2d56);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(170px, 0.75fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 5vw, 4rem);
}

.footer-logo {
  display: inline-flex;
  max-width: 250px;
  padding: 0.45rem;
  border-radius: 8px;
  background: var(--white);
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand-block p {
  max-width: 520px;
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.footer-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-actions {
  margin-top: 1.25rem;
}

.footer-brand-block .social-links {
  margin-top: 1rem;
}

.footer-actions a,
.social-links a {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  color: var(--white);
  font-weight: 800;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-column h3 {
  margin: 0 0 0.45rem;
  color: var(--white);
  font-size: 1.05rem;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
}

.copyright {
  display: block;
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .header-main {
    grid-template-columns: auto minmax(240px, 1fr) auto auto auto;
  }

  .delivery-link,
  .sale-strip {
    display: none;
  }

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

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

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

@media (max-width: 860px) {
  .header-main {
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
  }

  .header-main .brand {
    grid-column: 1;
  }

  .header-search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .header-link,
  .language-button {
    display: none;
  }

  .header-page-link {
    min-height: 40px;
    padding: 0.25rem 0.35rem;
    font-size: 0.9rem;
  }

  .header-cart {
    grid-column: 2;
    grid-row: 1;
  }

  .header-subnav {
    position: relative;
    gap: 0.75rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    color: var(--ink);
    padding: 0.65rem 0.75rem;
  }

  .site-nav a:hover,
  .site-nav a.active {
    color: var(--ink);
    outline: 0;
    background: rgba(40, 121, 130, 0.1);
  }

  .split,
  .category-header,
  .shop-heading,
  .proof-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    margin-top: 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
  }

  .hero {
    min-height: 520px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 17, 20, 0.28), rgba(10, 17, 20, 0.86) 58%, rgba(10, 17, 20, 0.96));
  }

  .hero-content {
    width: 100%;
    padding-top: 8rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0;
  }

  .header-main {
    padding: 0.55rem 0.7rem;
  }

  .header-subnav {
    padding: 0 0.7rem;
  }

  .brand-name {
    font-size: 1.55rem;
  }

  .brand-name::after {
    width: 48px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero-actions,
  .contact-actions,
  .shop-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .cart-toggle {
    width: 100%;
  }

  .header-main .cart-toggle {
    width: auto;
  }

  .header-search {
    grid-template-columns: 58px minmax(0, 1fr) 52px;
  }

  .header-search button {
    font-size: 1.7rem;
  }

  .highlight-grid,
  .catalog-grid,
  .store-grid,
  .proof-grid,
  .review-grid,
  .product-columns,
  .product-columns.compact {
    grid-template-columns: 1fr;
  }

  .product-columns article {
    min-height: 0;
  }

  blockquote {
    min-height: 0;
  }

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

  .cart-item {
    grid-template-columns: 48px 1fr;
  }

  .cart-item > strong {
    grid-column: 2;
  }
}
