/* ========================================================================
   Stride Shoes — Mockup Stylesheet
   Mobile-first, tokenised, zero border-radius
   ======================================================================== */

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Tokens --- */
:root {
  /* Colour */
  --ink: #1C1C1C;
  --paper: #FAFAF7;
  --cognac: #8B5A2B;
  --cognac-hover: #724A23;
  --card: #F3F1EC;
  --rule: #D4CFC8;
  --muted: #6B6560;
  --white: #FFFFFF;

  /* Type scale */
  --fs-hero: clamp(2.4rem, 1.2rem + 4.5vw, 4rem);
  --fs-h2: clamp(1.6rem, 1rem + 2vw, 2.4rem);
  --fs-h3: clamp(1.2rem, 0.9rem + 1vw, 1.6rem);
  --fs-body: 1.05rem;
  --fs-small: 0.85rem;
  --fs-micro: 0.75rem;

  /* Layout */
  --max: 1200px;
  --gutter: clamp(1rem, 2vw, 1.5rem);

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 1rem;
  --s-4: 1.5rem;
  --s-5: 2rem;
  --s-6: 3rem;
  --s-7: 4.5rem;
  --s-8: 6rem;

  /* Families */
  --ff-display: 'Literata', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
}

/* --- Base --- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: var(--cognac);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--cognac-hover);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.15;
}

/* --- Utilities --- */
.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.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;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: var(--s-2) var(--s-4);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn--cognac {
  background: var(--cognac);
  color: var(--white);
}

.btn--cognac:hover {
  background: var(--cognac-hover);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--cognac);
  border: 1px solid var(--cognac);
}

.btn--outline:hover {
  background: var(--cognac);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--cognac);
  min-height: 44px;
}

.text-link:hover {
  color: var(--cognac-hover);
}

.text-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- Brannock divider --- */
.brannock {
  width: 100%;
  height: 12px;
  margin: var(--s-7) 0;
}

.brannock svg {
  width: 100%;
  height: 12px;
}

/* ========================================================================
   MASTHEAD / NAV
   ======================================================================== */
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: var(--s-3);
}

.masthead__logo {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.masthead__logo:hover {
  color: var(--ink);
}

/* Hamburger — checkbox hack */
.masthead__toggle {
  display: none;
}

.masthead__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 10px;
}

.masthead__hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.masthead__toggle:checked ~ .masthead__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.masthead__toggle:checked ~ .masthead__hamburger span:nth-child(2) {
  opacity: 0;
}

.masthead__toggle:checked ~ .masthead__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.masthead__nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-3) var(--gutter);
}

.masthead__toggle:checked ~ .masthead__nav {
  display: block;
}

.masthead__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.masthead__nav-list a,
.masthead__nav-list span {
  display: block;
  padding: var(--s-2) 0;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  min-height: 44px;
  line-height: 44px;
}

.masthead__nav-list a:hover {
  color: var(--cognac);
}

.masthead__icons {
  display: flex;
  align-items: center;
  gap: var(--s-1);
}

.masthead__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
}

.masthead__icon svg {
  width: 20px;
  height: 20px;
}

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__image {
  aspect-ratio: 4/3;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
}

.hero__image figcaption {
  font-size: var(--fs-small);
  color: var(--muted);
  text-align: center;
  max-width: 36ch;
  line-height: 1.5;
}

.hero__overlay {
  background: linear-gradient(to top, rgba(28, 28, 28, 0.85) 0%, rgba(28, 28, 28, 0.3) 60%, transparent 100%);
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-5) var(--gutter);
}

.hero__overlay h1 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: var(--fs-hero);
  color: var(--white);
  margin-bottom: var(--s-2);
}

.hero__overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-body);
  max-width: 48ch;
  margin-bottom: var(--s-4);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
}

.hero__actions .text-link {
  color: var(--white);
}

.hero__actions .text-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================================================
   TRUST BAR
   ======================================================================== */
.trust-bar {
  background: var(--ink);
  color: var(--white);
  padding: var(--s-3) var(--gutter);
}

.trust-bar__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  align-items: center;
  text-align: center;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-bar__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ========================================================================
   BRAND STRIP
   ======================================================================== */
.brand-strip__heading {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--s-4);
}

.brand-strip__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}

.brand-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 60px;
  background: var(--card);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

a.brand-strip__item:hover {
  background: var(--rule);
  color: var(--ink);
}

.brand-strip__note {
  color: var(--muted);
  max-width: 60ch;
}

/* ========================================================================
   PRODUCT GRID
   ======================================================================== */
.products__heading {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--s-4);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}

.product-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
}

.product-card:hover {
  color: var(--ink);
}

.product-card__image {
  aspect-ratio: 3/4;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-2);
}

.product-card__image figcaption {
  font-size: var(--fs-micro);
  color: var(--muted);
  text-align: center;
  padding: var(--s-2);
}

.product-card__brand {
  font-size: var(--fs-micro);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: var(--s-1);
}

.product-card__name {
  font-weight: 500;
  margin-bottom: var(--s-1);
}

.product-card__price {
  color: var(--ink);
}

/* ========================================================================
   FITTING / TWO-COL
   ======================================================================== */
.fitting {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}

.fitting__image {
  aspect-ratio: 4/5;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
}

.fitting__image figcaption {
  font-size: var(--fs-small);
  color: var(--muted);
  text-align: center;
  max-width: 30ch;
  line-height: 1.5;
}

.fitting__body h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--s-4);
}

.fitting__body p {
  margin-bottom: var(--s-3);
  max-width: 52ch;
}

.fitting__body .btn {
  margin-top: var(--s-3);
}

/* ========================================================================
   STORE CARDS (homepage preview)
   ======================================================================== */
.stores-preview__heading {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--s-4);
}

.stores-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-4);
}

.store-card__image {
  aspect-ratio: 16/10;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-3);
}

.store-card__image figcaption {
  font-size: var(--fs-small);
  color: var(--muted);
  text-align: center;
  padding: var(--s-2);
}

.store-card h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  margin-bottom: var(--s-2);
}

.store-card p {
  color: var(--muted);
  font-size: var(--fs-small);
  margin-bottom: var(--s-1);
}

/* ========================================================================
   COMFORT CLUB CTA
   ======================================================================== */
.comfort-club {
  background: var(--card);
  padding: var(--s-6) 0;
}

.comfort-club h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--s-3);
}

.comfort-club > .wrap > p {
  margin-bottom: var(--s-4);
  max-width: 52ch;
}

.comfort-club__form {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  max-width: 400px;
  margin-bottom: var(--s-3);
}

.comfort-club__form input[type="email"] {
  min-height: 44px;
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--rule);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--ink);
}

.comfort-club__form input[type="email"]::placeholder {
  color: var(--muted);
}

.comfort-club__small {
  font-size: var(--fs-micro);
  color: var(--muted);
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: var(--s-6) 0 var(--s-4);
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}

.footer__col h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-body);
  margin-bottom: var(--s-3);
  color: var(--white);
}

.footer__col li {
  margin-bottom: var(--s-2);
}

.footer__col li a,
.footer__col li span {
  font-size: var(--fs-small);
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
}

.footer__social {
  display: flex;
  gap: var(--s-3);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

.footer__payments {
  display: flex;
  gap: var(--s-3);
  font-size: var(--fs-micro);
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.footer__legal a {
  font-size: var(--fs-micro);
}

/* ========================================================================
   STORES PAGE
   ======================================================================== */
.page-header {
  padding: var(--s-6) 0 var(--s-4);
}

.page-header h1 {
  font-weight: 900;
  font-size: var(--fs-hero);
  margin-bottom: var(--s-4);
}

.page-header p {
  max-width: 60ch;
  color: var(--muted);
}

/* Individual store blocks */
.store-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  padding: var(--s-4) 0;
}

.store-block__number {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: var(--fs-h2);
  color: var(--rule);
  margin-bottom: var(--s-2);
}

.store-block__photo {
  aspect-ratio: 16/10;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-3);
}

.store-block__photo figcaption {
  font-size: var(--fs-small);
  color: var(--muted);
  text-align: center;
  max-width: 28ch;
  line-height: 1.5;
}

.store-block__info h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--s-3);
}

.store-block__info p,
.store-block__info address {
  font-style: normal;
  margin-bottom: var(--s-2);
  color: var(--muted);
}

.store-block__info strong {
  color: var(--ink);
}

.store-block__hours {
  margin: var(--s-3) 0;
}

.store-block__hours dt {
  font-weight: 500;
  color: var(--ink);
  font-size: var(--fs-small);
}

.store-block__hours dd {
  color: var(--muted);
  font-size: var(--fs-small);
  margin-bottom: var(--s-1);
}

.store-block__map {
  aspect-ratio: 16/9;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--s-3);
  font-size: var(--fs-small);
  color: var(--muted);
}

.store-block__note {
  background: var(--card);
  padding: var(--s-3);
  font-size: var(--fs-small);
  color: var(--muted);
  margin-top: var(--s-3);
}

/* Fitting CTA / Online alt */
.stores-cta {
  padding: var(--s-5) 0;
}

.stores-cta h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--s-3);
}

.stores-cta h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--s-3);
}

.stores-cta p {
  max-width: 52ch;
  margin-bottom: var(--s-3);
}

.stores-cta .btn {
  margin-top: var(--s-2);
}

/* ========================================================================
   BRAND PAGE
   ======================================================================== */
.breadcrumb {
  padding: var(--s-3) 0;
  font-size: var(--fs-small);
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--cognac);
}

.breadcrumb__sep {
  margin: 0 var(--s-2);
  color: var(--rule);
}

.brand-hero {
  position: relative;
  overflow: hidden;
}

.brand-hero__image {
  aspect-ratio: 16/7;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
}

.brand-hero__image figcaption {
  font-size: var(--fs-small);
  color: var(--muted);
  text-align: center;
  max-width: 36ch;
  line-height: 1.5;
}

.brand-hero__text {
  padding: var(--s-5) 0;
}

.brand-hero__text h1 {
  font-weight: 900;
  font-size: var(--fs-hero);
  margin-bottom: var(--s-2);
}

.brand-hero__text p {
  color: var(--muted);
  max-width: 52ch;
}

/* Brand about / why sections */
.brand-section {
  padding: var(--s-4) 0;
}

.brand-section h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--s-4);
}

.brand-section p {
  max-width: 60ch;
  margin-bottom: var(--s-3);
}

/* Filter bar */
.filter-bar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: var(--s-4);
  border: 1px solid var(--rule);
}

.filter-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: var(--s-2) var(--s-4);
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 500;
  background: transparent;
  color: var(--ink);
  border: none;
  border-right: 1px solid var(--rule);
  cursor: pointer;
}

.filter-bar__btn:last-child {
  border-right: none;
}

.filter-bar__btn--active {
  background: var(--cognac);
  color: var(--white);
}

/* Brand fitting CTA */
.brand-cta {
  padding: var(--s-5) 0;
}

.brand-cta h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--s-3);
}

.brand-cta p {
  max-width: 52ch;
  margin-bottom: var(--s-3);
}

.brand-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-3);
}

/* ========================================================================
   SECTIONS — generic padding
   ======================================================================== */
.section {
  padding: var(--s-5) 0;
}

/* ========================================================================
   REAL IMAGES — product cards, brand strip, stores, hero, etc.
   ======================================================================== */
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-strip__item img {
  max-height: 36px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.brand-strip__item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.store-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-block__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fitting__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================================================
   ABOUT PAGE — photo
   ======================================================================== */
.about-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================================================
   CONTACT FORM
   ======================================================================== */
.contact-form {
  max-width: 500px;
}

.contact-form label {
  display: block;
  font-weight: 500;
  font-size: var(--fs-small);
  margin-bottom: var(--s-1);
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--rule);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--ink);
  margin-bottom: var(--s-3);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

/* ========================================================================
   FAQ — details/summary
   ======================================================================== */
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: var(--s-3) 0;
}

.faq-item summary {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: var(--s-3);
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  padding-top: var(--s-3);
  max-width: 60ch;
  color: var(--muted);
}

/* ========================================================================
   CONTENT PAGE — terms, privacy, shipping, etc.
   ======================================================================== */
.content-page {
  padding: var(--s-4) 0 var(--s-6);
}

.content-page h2 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-top: var(--s-5);
  margin-bottom: var(--s-3);
}

.content-page h3 {
  font-size: var(--fs-body);
  font-weight: 700;
  margin-top: var(--s-4);
  margin-bottom: var(--s-2);
}

.content-page p,
.content-page li {
  max-width: 60ch;
  margin-bottom: var(--s-2);
  color: var(--muted);
}

.content-page ul {
  padding-left: var(--s-4);
  list-style: disc;
}

.content-page strong {
  color: var(--ink);
}

/* ========================================================================
   GIFT VOUCHERS
   ======================================================================== */
.voucher-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  max-width: 500px;
}

.voucher-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-5) var(--s-3);
  background: var(--card);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  color: var(--ink);
}

/* ========================================================================
   CONTACT STORES GRID
   ======================================================================== */
.contact-stores {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin: var(--s-4) 0;
}

.contact-stores h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  margin-bottom: var(--s-2);
}

.contact-stores p {
  color: var(--muted);
  margin-bottom: var(--s-1);
}

/* ========================================================================
   SALE PRICING
   ======================================================================== */
.product-card__price--was {
  text-decoration: line-through;
  color: var(--muted);
  font-size: var(--fs-small);
  margin-right: var(--s-2);
}

.product-card__price--sale {
  color: var(--cognac);
  font-weight: 700;
}

/* ========================================================================
   RESPONSIVE — 480px
   ======================================================================== */
@media (min-width: 480px) {
  .trust-bar__inner {
    flex-direction: row;
    justify-content: center;
    gap: var(--s-4);
    flex-wrap: wrap;
  }

  .comfort-club__form {
    flex-direction: row;
  }

  .comfort-club__form input[type="email"] {
    flex: 1;
  }
}

/* ========================================================================
   RESPONSIVE — 768px
   ======================================================================== */
@media (min-width: 768px) {
  .masthead__inner {
    min-height: 64px;
  }

  /* Desktop nav: hide hamburger, show inline nav */
  .masthead__hamburger {
    display: none;
  }

  .masthead__nav {
    display: flex;
    position: static;
    border-bottom: none;
    padding: 0;
    background: transparent;
  }

  .masthead__toggle:checked ~ .masthead__nav {
    display: flex;
  }

  .masthead__nav-list {
    flex-direction: row;
    gap: var(--s-4);
  }

  .masthead__nav-list a,
  .masthead__nav-list span {
    padding: 0;
    min-height: auto;
    line-height: inherit;
  }

  .hero__image {
    aspect-ratio: 16/7;
  }

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

  .fitting {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .stores-preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .store-block {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .brand-hero__image {
    aspect-ratio: 16/7;
  }

  .contact-stores {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* ========================================================================
   RESPONSIVE — 1080px
   ======================================================================== */
@media (min-width: 1080px) {
  .hero__overlay {
    padding: var(--s-7) var(--gutter);
  }

  .footer__col li a,
  .footer__col li span {
    min-height: auto;
    line-height: inherit;
  }
}

/* ========================================================================
   RESPONSIVE — 1280px
   ======================================================================== */
@media (min-width: 1280px) {
  .hero__overlay {
    padding: var(--s-8) calc((100% - var(--max)) / 2 + var(--gutter));
  }
}

/* ========================================================================
   PRINT
   ======================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  a {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }

  .masthead,
  .trust-bar,
  .brannock,
  .comfort-club__form,
  .footer__social {
    display: none !important;
  }

  .hero__overlay {
    position: static;
    background: none;
    padding: 1rem 0;
  }

  .hero__overlay h1,
  .hero__overlay p {
    color: #000 !important;
  }

  .hero__image {
    aspect-ratio: auto;
    height: auto;
    min-height: 100px;
  }

  .wrap {
    max-width: 100%;
    padding: 0 1cm;
  }

  .footer {
    padding: 1rem 0;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }
}
