/* Norfolk Boards — brand guidelines tokens
   Palette: Soft White (contrast), Almond Cream (page), Meadow Mist, Coastal Sage, Golden Chamomile, Olive Grove
   Type: Trajan Pro (titles), Open Sans (body)
*/

@font-face {
  font-family: "Trajan Pro";
  src: url("../assets/fonts/trajan-pro/TrajanPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trajan Pro";
  src: url("../assets/fonts/trajan-pro/TrajanPro-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand palette — Soft White is a contrast tool, not the page canvas */
  --nb-soft-white: #FFFCFA;  /* Soft White — cards, CTA text, crisp overlays */
  --nb-cream: #F8EAD8;       /* Almond Cream — page canvas */
  --nb-meadow: #ACB090;      /* Meadow Mist — support fills only */
  --nb-sage: #8FA8B0;        /* Coastal Sage — blue-leaning UI chrome */
  --nb-chamomile: #D2BF81;   /* Golden Chamomile — accent rules/badges */
  --nb-olive: #6F6C43;       /* Olive Grove — headings, primary actions */

  /* Semantic aliases */
  --nb-green-dark: var(--nb-olive);
  --nb-green: var(--nb-olive);
  --nb-yellow: var(--nb-chamomile);
  --nb-lime: var(--nb-meadow);
  --nb-white: var(--nb-soft-white);
  --nb-grey: color-mix(in srgb, var(--nb-cream) 82%, var(--nb-olive) 18%);
  --nb-text: #2a281c;        /* near-black green-brown for body copy */
  --nb-border: color-mix(in srgb, var(--nb-sage) 22%, transparent);
  --nb-surface: var(--nb-cream);
  --nb-ink: #1e1d16;         /* darkest body / primary reading colour */
  /* Cream page; soft-white cards lift via border/shadow */
  --nb-shop-bg: var(--nb-cream);
  --nb-card: var(--nb-soft-white);
  --nb-card-shadow: 0 8px 28px color-mix(in srgb, var(--nb-olive) 16%, transparent);
  --nb-card-border: color-mix(in srgb, var(--nb-olive) 24%, transparent);

  /* Legacy aliases */
  --baize: var(--nb-olive);
  --maple: var(--nb-grey);
  --parchment: var(--nb-cream);
  --walnut: var(--nb-ink);
  --brass: var(--nb-chamomile);
  --ember: var(--nb-chamomile);

  --font-display: "Trajan Pro", "Times New Roman", Times, serif;
  --font-body: "Open Sans", system-ui, sans-serif;
  --font-mono: "Open Sans", system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  --radius-sm: 4px;
  --radius-md: 8px;

  --header-height: 4.5rem;
  --announcement-height: 0;
  --transition-base: 0.35s ease;
  --transition-hero: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--nb-ink);
  background: var(--nb-cream);
}

a {
  color: var(--nb-olive);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--nb-ink);
}

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

:focus {
  outline: none;
}

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

.container {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 1000;
  padding: var(--space-xs) var(--space-sm);
  background: var(--nb-yellow);
  color: var(--nb-green-dark);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nb-olive);
}

.section-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin: 0 0 var(--space-md);
  color: var(--nb-olive);
  font-weight: 400;
}

.section-intro {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 0 var(--space-lg);
  color: var(--nb-ink);
}

.mono-text,
.mono-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Branded underline */
.branded-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 0.35em;
}

.branded-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: var(--nb-sage);
  transition: width 0.6s ease;
}

.branded-heading.is-visible::after {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .branded-heading::after {
    width: 100%;
    transition: none;
  }
}

.section {
  padding-block: var(--space-xl);
}

@media (max-width: 767px) {
  .section {
    padding-block: var(--space-lg);
  }
}

/* Homepage breathing room — more cream space, quiet section rules */
.page-home #main > .section {
  padding-block: clamp(4.75rem, 9vw, 7rem);
}

.page-home #main > .section + .section {
  border-top: 1px solid color-mix(in srgb, var(--nb-sage) 42%, transparent);
  box-shadow: 0 -10px 28px -24px color-mix(in srgb, var(--nb-olive) 28%, transparent);
}

.page-home #main > .section .section-heading {
  margin-bottom: var(--space-lg);
}

.page-home #main > .section .section-intro {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.page-home .positioning-grid,
.page-home .about-grid {
  gap: clamp(2rem, 5vw, 3.25rem);
}

.page-home .brands-grid {
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.page-home .trust .reassurance-list {
  margin-top: var(--space-sm);
}

@media (max-width: 767px) {
  .page-home #main > .section {
    padding-block: clamp(3.25rem, 10vw, 4.75rem);
  }
}

@media (min-width: 768px) {
  .page-home .positioning-grid,
  .page-home .about-grid {
    gap: clamp(2.75rem, 5vw, 4rem);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nb-cream);
  border-bottom: 1px solid rgba(111, 108, 67, 0.12);
  overflow: visible;
}

.site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: color-mix(in srgb, var(--nb-cream) 94%, transparent);
  border-bottom: 1px solid var(--nb-border);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

@media (min-width: 1024px) {
  .site-header--overlay {
    width: 100%;
  }
}

.site-header--overlay .header-inner {
  width: min(100% - 2rem, 80rem);
  min-height: var(--header-height);
}

.site-header--overlay.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--nb-white);
  box-shadow: 0 1px 0 var(--nb-border);
}

.site-header--overlay .site-nav a {
  color: var(--nb-green-dark);
}

.site-header--overlay.is-scrolled .site-nav a {
  color: var(--nb-green-dark);
}

.site-header--overlay .nav-toggle-bar {
  background: var(--nb-green-dark);
}

.header-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1.5rem;
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
  min-height: var(--header-height);
}

.logo {
  text-decoration: none;
  color: var(--nb-green-dark);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  order: 1;
  line-height: 1;
}

.logo-mark {
  display: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nb-olive);
  display: block;
  padding-top: 0.28em; /* drop Trajan caps to optical centre with nav */
}

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

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--nb-green-dark);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  padding: 0.35rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base);
  line-height: 1;
}

.site-nav a.nav-link--primary {
  color: var(--nb-green);
}

.site-nav a.nav-link--primary::after {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  margin-left: 0.35rem;
  background: var(--nb-yellow);
  border-radius: 50%;
  vertical-align: middle;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--nb-green);
  border-bottom-color: var(--nb-yellow);
}

.site-header--overlay .site-nav a:hover,
.site-header--overlay .site-nav a:focus-visible {
  color: var(--nb-green);
  text-decoration: none;
  border-bottom-color: var(--nb-yellow);
}

.site-nav a.btn-nav-cta {
  background: var(--nb-olive);
  color: var(--nb-soft-white);
  font-family: var(--font-body);
  font-weight: 400;
  padding: 0.45rem 1.1rem;
  font-size: 0.875rem;
  border-bottom: none;
  border-radius: var(--radius-sm);
  min-height: 40px;
}

.site-nav a.btn-nav-cta:hover,
.site-nav a.btn-nav-cta:focus-visible {
  background: var(--nb-ink);
  color: var(--nb-soft-white);
  border-bottom: none;
}

/* Keep Contact CTA readable when overlay header is scrolled (nav link colour must not win) */
.site-header--overlay .site-nav a.btn-nav-cta,
.site-header--overlay.is-scrolled .site-nav a.btn-nav-cta {
  color: var(--nb-soft-white);
  background: var(--nb-olive);
  border-bottom-color: transparent;
}

.site-header--overlay .site-nav a.btn-nav-cta:hover,
.site-header--overlay .site-nav a.btn-nav-cta:focus-visible,
.site-header--overlay.is-scrolled .site-nav a.btn-nav-cta:hover,
.site-header--overlay.is-scrolled .site-nav a.btn-nav-cta:focus-visible {
  color: var(--nb-soft-white);
  background: var(--nb-ink);
  border-bottom-color: transparent;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  order: 4;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--walnut);
  margin-inline: auto;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .header-tools {
    order: 3;
    margin-left: 0;
  }

  .site-nav {
    order: 5;
  }

  .site-header--overlay {
    position: absolute;
  }

  .site-header--overlay.is-scrolled {
    position: fixed;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 110;
    background: var(--nb-white);
    border-bottom: 1px solid var(--nb-border);
    box-shadow: 0 8px 24px rgba(111, 108, 67, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
  }

  .site-header--overlay .site-nav.is-open {
    background: var(--nb-white);
    border-bottom: 1px solid var(--nb-border);
  }

  .site-header--overlay .site-nav a {
    color: var(--nb-green-dark);
  }

  .site-nav.is-open {
    max-height: 20rem;
  }

  .site-nav ul {
    flex-direction: column;
    padding: var(--space-sm) var(--space-md) var(--space-md);
    gap: 0;
  }

  .site-nav a {
    display: flex;
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: none;
  }

  .site-nav a.nav-link--primary::after {
    display: none;
  }

  .site-nav-cta-item {
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px solid var(--nb-border);
  }

  .site-nav a.btn-nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Intro strip — welcome line at base of hero */
.site-intro {
  position: relative;
  z-index: 45;
  flex-shrink: 0;
  background: var(--nb-cream);
  border: none;
  padding: 1.25rem var(--space-md);
  text-align: center;
}

.page-home .site-intro {
  padding: clamp(2.25rem, 5vw, 3.5rem) var(--space-md) clamp(2rem, 4.5vw, 3rem);
}

.site-intro-inner {
  max-width: 40rem;
}

.site-intro-kicker {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 2.2vw, 0.95rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nb-olive);
  font-weight: 400;
  line-height: 1.2;
  display: inline-block;
  position: relative;
  margin: 0 0 0.85rem;
  padding: 0 0 0.55em;
  border: none;
}

.site-intro-kicker::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--nb-sage) 55%, transparent) 18%,
    var(--nb-sage) 50%,
    color-mix(in srgb, var(--nb-sage) 55%, transparent) 82%,
    transparent 100%
  );
  clip-path: polygon(0 45%, 50% 0, 100% 45%, 50% 100%);
}

.site-intro-lead {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 2.2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--nb-text);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.page-home .site-intro .hero-shop-cta {
  margin: 0;
  padding-top: 0.25rem;
}

@media (max-width: 767px) {
  .site-intro {
    padding: 0.75rem var(--space-sm);
  }

  .page-home .site-intro {
    padding: 1.75rem var(--space-sm) 1.5rem;
  }

  .site-intro-kicker {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .site-intro-lead {
    font-size: 0.9375rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
}

/* Hero - full viewport, three equal panels */
.hero {
  position: relative;
  height: 100svh;
  min-height: 28rem;
  background: var(--nb-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-stage {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  width: 100%;
}

.hero-panel {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  min-width: 0;
  display: grid;
  grid-template: 1fr / 1fr;
  align-items: stretch;
  text-decoration: none;
  color: var(--nb-white);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel > * {
  grid-area: 1 / 1;
}

.hero-panel:last-child {
  border-bottom: none;
}

.hero-panel-photo {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  justify-self: stretch;
  align-self: stretch;
  filter: brightness(0.92) saturate(0.9);
  transform: scale(1);
  transition: filter var(--transition-hero), transform var(--transition-hero);
  z-index: 0;
}

.hero-panel-overlay {
  width: 100%;
  min-height: 100%;
  align-self: stretch;
  background: linear-gradient(
    to top,
    rgba(30, 29, 22, 0.72) 0%,
    rgba(111, 108, 67, 0.35) 42%,
    transparent 72%
  );
  transition: background var(--transition-hero), opacity var(--transition-hero);
  pointer-events: none;
  z-index: 1;
}

.hero-panel-content {
  align-self: end;
  z-index: 2;
  padding: var(--space-md) var(--space-lg);
  width: 100%;
  max-width: none;
  color: var(--nb-soft-white);
  background: linear-gradient(
    to top,
    rgba(30, 29, 22, 0.88) 0%,
    rgba(30, 29, 22, 0.55) 55%,
    transparent 100%
  );
  transition: background var(--transition-hero);
}

.hero-panel-label {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 400;
  display: block;
  line-height: 1.15;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nb-soft-white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
  border-bottom: 2px solid color-mix(in srgb, var(--nb-sage) 72%, var(--nb-soft-white));
  padding-bottom: 0.35rem;
  margin-bottom: 0.15rem;
  width: fit-content;
  transition: color var(--transition-hero);
}

.hero-panel-tagline {
  margin: 0.35rem 0 0;
  font-size: 0.975rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--nb-soft-white);
}

.hero-panel-desc {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--nb-soft-white);
}

.hero-panel:hover .hero-panel-label,
.hero-panel:focus-within .hero-panel-label {
  color: var(--nb-soft-white);
}

.hero-panel:hover .hero-panel-content,
.hero-panel:focus-within .hero-panel-content {
  background: linear-gradient(
    to top,
    rgba(30, 29, 22, 0.96) 0%,
    rgba(30, 29, 22, 0.82) 55%,
    rgba(30, 29, 22, 0.55) 100%
  );
}

.hero-panel-cta {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nb-soft-white);
  background: var(--nb-olive);
  font-weight: 700;
  border-radius: 2px;
}

/* Mobile: stacked panels */
@media (max-width: 767px) {
  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero-stage {
    padding-top: var(--header-height);
    min-height: calc(100svh - var(--header-height) - 5rem);
  }

  .hero-panel {
    min-height: 11rem;
  }

  .hero-panel-content {
    padding: var(--space-sm) var(--space-md);
  }

  .hero-panel-photo {
    filter: brightness(0.88) saturate(0.85);
  }

  .hero-panel-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.8125rem;
    margin-top: 0.25rem;
  }

  .hero-panel-cta {
    display: none;
  }
}

/* Tablet: three columns, compact copy */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero-stage {
    flex-direction: row;
    padding-top: var(--header-height);
    gap: 2px;
    background: var(--nb-white);
    min-height: calc(100svh - var(--header-height) - 4.5rem);
  }

  .hero-panel {
    flex: 1 1 0;
    border-bottom: none;
    min-height: 14rem;
  }

  .hero-panel-content {
    padding: var(--space-sm) var(--space-md);
  }

  .hero-panel-label {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
  }

  .hero-panel-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.875rem;
  }

  .hero-panel-cta {
    display: inline-block;
    font-size: 0.625rem;
  }
}

/* Desktop: three equal columns, hover reveal */
@media (min-width: 1024px) {
  .hero-stage {
    flex-direction: row;
    padding-top: 0;
    gap: 2px;
    background: var(--nb-white);
  }

  .hero-panel {
    flex: 1 1 0;
    border-bottom: none;
    margin: 0;
    clip-path: none;
    z-index: 1;
    transition: z-index 0s;
  }

  .hero-panel-desc {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    transition: opacity var(--transition-hero), max-height var(--transition-hero), margin var(--transition-hero);
  }

  .hero-panel-cta {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--transition-hero), transform var(--transition-hero);
  }

  /* Dim siblings when one panel is hovered */
  .hero-stage:has(.hero-panel:hover) .hero-panel:not(:hover) .hero-panel-photo,
  .hero-stage:has(.hero-panel:focus-within) .hero-panel:not(:focus-within) .hero-panel-photo {
    filter: brightness(0.75) saturate(0.7);
  }

  .hero-panel:hover,
  .hero-panel:focus-within {
    z-index: 5;
  }

  .hero-panel:hover .hero-panel-photo,
  .hero-panel:focus-within .hero-panel-photo {
    filter: brightness(1) saturate(1);
    transform: scale(1.05);
  }

  .hero-panel:hover .hero-panel-overlay,
  .hero-panel:focus-within .hero-panel-overlay {
    background: linear-gradient(
      to top,
      rgba(30, 29, 22, 0.78) 0%,
      rgba(30, 29, 22, 0.28) 48%,
      transparent 72%
    );
  }

  .hero-panel:hover .hero-panel-desc,
  .hero-panel:focus-within .hero-panel-desc {
    opacity: 1;
    max-height: 6rem;
    margin-top: 0.5rem;
  }

  .hero-panel:hover .hero-panel-cta,
  .hero-panel:focus-within .hero-panel-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-panel[data-panel="board-games"] .hero-panel-photo {
    object-position: center 40%;
  }

  .hero-panel[data-panel="cornhole"] .hero-panel-photo {
    object-position: center 45%;
  }

  .hero-panel[data-panel="shuffleboard"] .hero-panel-photo {
    object-position: center 50%;
  }

  .hero-panel:first-child .hero-panel-content {
    padding-left: var(--space-lg);
  }

  .hero-panel:last-child .hero-panel-content {
    padding-right: var(--space-lg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-panel-photo {
    filter: brightness(0.85) saturate(0.85) !important;
    transform: none !important;
  }

  .hero-panel-desc,
  .hero-panel-cta {
    opacity: 1 !important;
    max-height: none !important;
    transform: none !important;
    display: block !important;
  }

  .hero-panel,
  .hero-panel-photo,
  .hero-panel-overlay,
  .hero-panel-desc,
  .hero-panel-cta {
    transition: none !important;
  }

  @media (min-width: 1024px) {
    .hero-panel:hover,
    .hero-panel:focus-within {
      z-index: 5 !important;
    }
  }
}

/* Positioning */
.positioning {
  background: var(--nb-cream);
  border-top: none;
}

.positioning-lead {
  font-size: 1.2rem;
  font-weight: 500;
  max-width: none;
  color: var(--nb-text);
}

.positioning-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .positioning-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: var(--space-xl);
  }
}

.positioning-copy .positioning-lead {
  margin-top: 0;
}

.positioning-media {
  margin: 0;
}

.positioning-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1024 / 603;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Board games */
.board-games {
  background: var(--nb-shop-bg);
}

.catalogue-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--nb-meadow);
  border-radius: var(--radius-md);
  border: 1px solid rgba(111, 108, 67, 0.12);
}

.catalogue-count {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nb-green);
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
}

.filter-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(111, 108, 67, 0.55);
}

.filter-toggle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.25rem;
  min-height: 44px;
  border: 2px solid rgba(111, 108, 67, 0.25);
  border-radius: 999px;
  background: var(--nb-white);
  color: var(--nb-green-dark);
  cursor: pointer;
  transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.filter-toggle:hover {
  border-color: var(--nb-green);
  transform: translateY(-1px);
}

.filter-toggle[aria-pressed="true"] {
  background: var(--nb-chamomile);
  border-color: var(--nb-olive);
  color: var(--nb-olive);
  box-shadow: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: 0;
  align-items: stretch;
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

.product-card {
  background: var(--nb-card);
  border: 1px solid var(--nb-card-border);
  border-top: 3px solid var(--nb-chamomile);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--nb-olive) 16%, transparent);
  color: var(--nb-text);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base), opacity var(--transition-base);
}

.product-card--bestseller {
  border-top: 4px solid var(--nb-olive);
}

.product-card:hover {
  box-shadow: 0 14px 36px color-mix(in srgb, var(--nb-olive) 22%, transparent);
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--nb-olive) 40%, transparent);
  border-top-color: var(--nb-chamomile);
}

.product-card--bestseller:hover {
  border-top-color: var(--nb-meadow);
}

@media (hover: none) {
  .product-card:hover,
  .signpost-card:hover {
    transform: none;
  }
}

.product-card.is-filtered-out {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

.product-card[hidden] {
  display: none;
}

.product-card-image {
  aspect-ratio: 4 / 3;
  background: var(--nb-soft-white);
  overflow: hidden;
  display: block;
  min-width: 0;
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid var(--nb-card-border);
}

.product-card-image-badge {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
  background: color-mix(in srgb, var(--nb-olive) 55%, transparent);
  color: var(--nb-soft-white);
  display: none;
}

.product-card-image-badge--featured {
  background: color-mix(in srgb, var(--nb-olive) 55%, transparent);
  color: var(--nb-soft-white);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card-body-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.product-card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  width: fit-content;
}

.badge-bestseller {
  color: var(--nb-ink);
  background: color-mix(in srgb, var(--nb-olive) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--nb-olive) 35%, transparent);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  font-weight: 700;
}

.badge-instock {
  color: var(--nb-olive);
  font-weight: 700;
}

.badge-muted {
  color: rgba(111, 108, 67, 0.55);
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0;
  color: var(--nb-ink);
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.product-card-name a {
  color: inherit;
  text-decoration: none;
}

.product-card-name a:hover,
.product-card-name a:focus-visible {
  color: var(--nb-olive);
  text-decoration: none;
}

.product-card-hook {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--nb-text) 82%, transparent);
  line-height: 1.45;
}

.product-card-meta {
  margin: 0.25rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--nb-text) 70%, transparent);
}

.product-card-price {
  margin: auto 0 0;
  padding-top: 0.65rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--nb-ink);
  line-height: 1.2;
}

.product-card-footer {
  margin-top: 0.65rem;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
}

.btn-add-to-cart-card {
  width: 100%;
  justify-content: center;
  font-size: 0.8125rem;
  padding: 0.55rem 0.65rem;
  min-height: 44px;
}

.product-card-basket {
  width: 100%;
}

.basket-qty {
  display: grid;
  grid-template-columns: 2.75rem 1fr 2.75rem;
  align-items: center;
  width: 100%;
  min-height: 44px;
  border: 2px solid rgba(111, 108, 67, 0.35);
  border-radius: var(--radius-sm);
  background: var(--nb-white, #fff);
  overflow: hidden;
}

.basket-qty--actions {
  max-width: 14rem;
}

.basket-qty-btn {
  height: 100%;
  min-height: 44px;
  border: 0;
  background: var(--nb-soft-white, #f7f4ec);
  color: var(--nb-olive);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.basket-qty-btn:hover {
  background: rgba(111, 108, 67, 0.12);
}

.basket-qty-value {
  text-align: center;
  font-family: var(--font-mono, monospace);
  font-weight: 600;
  font-size: 1rem;
  color: var(--nb-green-dark);
}

.product-card-actions--desktop {
  display: none;
}

.product-card-stock {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--nb-olive);
}

.product-card-stock--clearance {
  color: var(--nb-olive);
}

.product-card-stock--muted {
  color: color-mix(in srgb, var(--nb-olive) 55%, transparent);
}

.product-card-stock-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.btn {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 0.65rem 1.25rem;
  min-height: 44px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base);
}

.btn-primary {
  background: var(--nb-olive);
  color: var(--nb-soft-white);
}

.btn-primary:hover {
  background: var(--nb-ink);
  color: var(--nb-soft-white);
}

.btn-outline {
  background: transparent;
  color: var(--nb-olive);
  border: 2px solid rgba(111, 108, 67, 0.4);
}

.btn-outline:hover {
  border-color: var(--nb-olive);
  color: var(--nb-soft-white);
  background: var(--nb-olive);
}

/* Feature band — same page surface; colour lives in boxes/buttons */
.feature-band {
  background: var(--nb-cream);
  color: var(--nb-olive);
  border-top: 1px solid rgba(111, 108, 67, 0.12);
  border-bottom: 1px solid rgba(111, 108, 67, 0.12);
}

.feature-band-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--nb-white);
  border: 1px solid var(--nb-border);
}

.feature-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: var(--space-sm) 0 0;
  color: var(--nb-green-dark);
}

.feature-hook {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nb-green);
  margin: 0.5rem 0;
}

.feature-blurb {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 0 var(--space-md);
  color: var(--nb-text);
}

.feature-band-inner {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .feature-band-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Also from */
.also-from {
  background: var(--nb-grey);
}

.signpost-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .signpost-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.signpost-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--nb-text);
  background: var(--nb-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--nb-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.signpost-card:hover {
  box-shadow: 0 8px 28px rgba(111, 108, 67, 0.12);
  transform: translateY(-3px);
  color: var(--nb-text);
}

.signpost-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--nb-grey);
}

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

.signpost-content {
  padding: var(--space-md);
}

.signpost-content h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.signpost-content p {
  margin: 0 0 var(--space-sm);
  font-size: 0.975rem;
}

.signpost-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nb-green);
}

/* About */
.about {
  background: var(--nb-cream);
}

.about-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: var(--space-xl);
  }
}

.about-copy .section-intro {
  margin-bottom: var(--space-md);
}

.about-team {
  margin: 0;
  display: grid;
  gap: var(--space-sm);
  align-self: start;
}

.about-team-photo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1024 / 765;
  object-fit: cover;
  object-position: center 18%;
}

.team-grid {
  display: grid;
  gap: var(--space-md);
}

.team-grid--caption {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
}

.team-card {
  padding: 0;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
}

.team-avatar {
  display: none;
}

.team-card h3 {
  font-size: 0.95rem;
  margin: 0 0 0.2rem;
  letter-spacing: 0.06em;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nb-olive);
  margin: 0;
}

/* Trust — cream page; meadow boxes for support */
.trust {
  background: var(--nb-cream);
}

.trust .section-heading {
  color: var(--nb-olive);
}

.trust .section-heading.branded-heading::after {
  background: var(--nb-sage);
}

.reassurance-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
  display: grid;
  gap: var(--space-sm);
}

@media (min-width: 600px) {
  .reassurance-list {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

.reassurance-list li {
  background: color-mix(in srgb, var(--nb-sage) 22%, transparent);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--nb-ink);
  border: 1px solid color-mix(in srgb, var(--nb-sage) 28%, transparent);
  border-top: 3px solid var(--nb-sage);
}

.reassurance-list .mono-label {
  display: block;
  color: var(--nb-ink);
  margin-bottom: 0.5rem;
}

.reassurance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nb-olive);
  margin: 0 0 0.65rem;
}

.reassurance-icon svg {
  display: block;
}

.testimonials {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial {
  margin: 0;
  padding: var(--space-md);
  background: var(--nb-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--nb-border);
  border-left: 4px solid var(--nb-yellow);
}

.testimonial p {
  margin: 0 0 var(--space-sm);
  font-style: italic;
  font-size: 0.975rem;
}

.testimonial footer {
  font-size: 0.875rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
}

.testimonial-game {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(111, 108, 67, 0.6);
  margin-left: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--nb-olive);
  color: var(--nb-cream);
  padding-top: var(--space-xl);
  border-top: 6px solid var(--nb-meadow);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  margin: 0 0 var(--space-sm);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nb-cream);
  text-decoration: none;
  line-height: 1.2;
}

.footer-logo-text:hover {
  color: var(--nb-chamomile);
}

.footer-logo-img {
  display: none;
}

.footer-tagline {
  font-size: 0.9375rem;
  opacity: 0.85;
  margin: 0;
  max-width: 22rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: var(--nb-chamomile);
  margin: 0 0 var(--space-sm);
}

.site-footer a {
  color: var(--nb-soft-white);
  opacity: 0.95;
}

.site-footer a:hover {
  color: var(--nb-chamomile);
  opacity: 1;
}

.site-footer address {
  font-style: normal;
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding: var(--space-md) 0;
  padding-bottom: calc(var(--space-md) + env(safe-area-inset-bottom, 0));
  border-top: 1px solid rgba(246, 241, 228, 0.15);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* Modal */
.product-modal {
  border: none;
  padding: 0;
  max-width: min(56rem, 95vw);
  width: 100%;
  background: transparent;
}

.product-modal::backdrop {
  background: rgba(111, 108, 67, 0.72);
}

.modal-inner {
  position: relative;
  background: var(--nb-white);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 48px rgba(111, 108, 67, 0.2);
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

@media (min-width: 640px) {
  .modal-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: 10;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--nb-yellow);
  color: var(--nb-green-dark);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--nb-green);
  color: var(--nb-white);
}

.modal-image-wrap {
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nb-grey);
  aspect-ratio: 4 / 3;
  max-height: min(42vh, 22rem);
}

@media (min-width: 640px) {
  .modal-image-wrap {
    max-height: none;
    min-height: 100%;
    aspect-ratio: auto;
  }
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.modal-content {
  min-width: 0;
  padding: var(--space-lg);
  padding-top: calc(var(--space-lg) + 2.75rem);
}

@media (min-width: 640px) {
  .modal-content {
    padding-top: var(--space-lg);
    padding-right: calc(var(--space-lg) + 2.75rem);
  }
}

.modal-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0.5rem 0 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.modal-hook {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nb-green);
  margin: 0.35rem 0 var(--space-sm);
}

.modal-blurb {
  margin: 0 0 var(--space-md);
  line-height: 1.7;
}

.modal-details {
  margin: 0;
  display: grid;
  gap: var(--space-sm);
}

.modal-details div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: var(--space-sm);
  align-items: baseline;
}

.modal-details dt {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(111, 108, 67, 0.6);
  margin: 0;
}

.modal-details dd {
  margin: 0;
}

.modal-cross-sell {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--nb-border);
}

.modal-cross-sell-heading {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nb-green);
  font-weight: 700;
  margin: 0 0 0.65rem;
}

.modal-cross-sell-track {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.cross-sell-card {
  flex: 0 0 min(11.5rem, 72vw);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  padding: 0;
  border: 1px solid var(--nb-border);
  border-radius: var(--radius-sm);
  background: var(--nb-grey);
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  font-family: inherit;
  color: var(--nb-text);
}

.cross-sell-card:hover,
.cross-sell-card:focus-visible {
  border-color: var(--nb-green);
  box-shadow: 0 4px 14px rgba(111, 108, 67, 0.1);
}

.cross-sell-card-image {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--nb-white);
  overflow: hidden;
}

.cross-sell-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cross-sell-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.55rem 0.65rem 0.65rem;
  min-width: 0;
}

.cross-sell-card-line {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(111, 108, 67, 0.5);
  font-weight: 700;
}

.cross-sell-card-name {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--nb-green-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cross-sell-card-price {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--nb-green);
  font-weight: 700;
}

/* Shop pages — page hero */
.page-hero {
  padding: calc(var(--header-height) + var(--space-md)) var(--space-md) var(--space-lg);
  background: var(--nb-cream);
  border-bottom: 1px solid rgba(111, 108, 67, 0.12);
}

.page-hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nb-olive);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  color: var(--nb-olive);
  margin: 0 0 0.75rem;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero-lead {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0;
  line-height: 1.6;
  color: var(--nb-text);
}

.page-hero--cornhole {
  background: var(--nb-cream);
}

.page-hero--shuffleboard {
  background: var(--nb-cream);
}

/* Department landing cards */
.shop-departments {
  background: var(--nb-white);
}

.shop-departments-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .shop-departments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .shop-departments-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .shop-departments-grid .shop-department-card:first-child {
    grid-column: span 1;
  }
}

.shop-department-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-align: left;
  padding: var(--space-md);
  border: 2px solid var(--nb-border);
  border-radius: var(--radius-md);
  background: var(--nb-white);
  cursor: pointer;
  font-family: inherit;
  color: var(--nb-green-dark);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  min-height: 44px;
}

.shop-department-card:hover,
.shop-department-card:focus-visible {
  border-color: var(--nb-green);
  box-shadow: 0 4px 16px rgba(111, 108, 67, 0.08);
}

.shop-department-card.is-active {
  border-color: var(--nb-green);
  background: rgba(172, 176, 144, 0.25);
  box-shadow: inset 0 0 0 1px var(--nb-green);
}

.shop-department-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}

.shop-department-desc {
  font-size: 0.9rem;
  color: rgba(111, 108, 67, 0.75);
  line-height: 1.45;
}

.shop-department-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nb-green);
  font-weight: 700;
  margin-top: auto;
  padding-top: 0.35rem;
}

/* Hub shop showcases */
.shop-showcases {
  background: var(--nb-shop-bg);
}

.shop-showcase-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .shop-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shop-showcase-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--nb-text);
  background: var(--nb-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--nb-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.shop-showcase-card:hover {
  box-shadow: 0 8px 28px rgba(111, 108, 67, 0.12);
  transform: translateY(-3px);
  border-color: rgba(111, 108, 67, 0.25);
  color: var(--nb-text);
}

.shop-showcase-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--nb-soft-white);
}

.shop-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.shop-showcase-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.shop-showcase-content h3 {
  font-size: 1.35rem;
  margin: 0;
  color: var(--nb-green-dark);
}

.shop-showcase-hook {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nb-green);
  margin: 0;
  font-weight: 700;
}

.shop-showcase-content p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(111, 108, 67, 0.8);
}

.shop-showcase-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--nb-green);
  font-weight: 700;
  margin-top: 0.25rem;
}

.shop-showcase-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nb-green);
  margin-top: auto;
  padding-top: var(--space-sm);
}

/* Catalogue toolbar extensions */
.catalogue-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
}

.catalogue-select-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(111, 108, 67, 0.65);
}

.catalogue-select {
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  min-height: 44px;
  border: 2px solid rgba(111, 108, 67, 0.25);
  border-radius: var(--radius-sm);
  background: var(--nb-white);
  color: var(--nb-green-dark);
  cursor: pointer;
}

.catalogue-select:focus-visible {
  outline: 2px solid var(--nb-yellow);
  outline-offset: 2px;
}

.product-card-category {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--nb-olive) 75%, transparent);
  margin: 0;
}

.product-card--sale {
  border-top: 4px solid var(--nb-yellow);
}

.price-was {
  text-decoration: line-through;
  opacity: 0.55;
  font-weight: 400;
}

.badge-featured {
  color: var(--nb-olive);
  background: var(--nb-meadow);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  font-weight: 700;
}

.badge-sold-out {
  color: rgba(111, 108, 67, 0.65);
  font-weight: 700;
}

.badge-clearance {
  color: var(--nb-soft-white);
  background: var(--nb-olive);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  font-weight: 700;
}

@media (hover: none) {
  .shop-showcase-card:hover {
    transform: none;
  }
}

/* Concept 2 — unified shop */
.page-hero--concept {
  background: var(--nb-cream);
}

.page-hero--concept .page-hero-title,
.page-hero--concept .page-hero-kicker,
.page-hero--concept .page-hero-lead {
  color: var(--nb-olive);
}

.page-hero--concept .page-hero-note {
  color: color-mix(in srgb, var(--nb-text) 90%, transparent);
}

.page-hero--concept .page-hero-note a {
  color: var(--nb-olive);
}

/* Shop — cream hero */
.page-hero--shop {
  background: var(--nb-cream);
  border-bottom: 1px solid var(--nb-border);
  padding-block: var(--space-md) var(--space-sm);
}

.page-hero--shop .page-hero-title {
  color: var(--nb-olive);
  margin-bottom: 0.4rem;
}

.page-hero--shop .page-hero-lead {
  color: var(--nb-text);
  font-size: 1.05rem;
  max-width: 28rem;
  line-height: 1.45;
  margin: 0;
}

.page-hero--board-games .page-hero-lead {
  max-width: none;
}

.page-hero--shop .page-hero-note {
  margin-top: 0.65rem;
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--nb-olive) 75%, transparent);
}

.page-hero--shop .page-hero-note a {
  color: var(--nb-olive);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero--shop .page-hero-note a:hover {
  color: var(--nb-ink);
}

.page-hero--compact {
  padding-block: var(--space-lg);
}

.page-hero--compact .page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
}

.unified-shop {
  background: var(--nb-shop-bg);
}

.page-unified-shop {
  background: var(--nb-shop-bg);
}

.page-board-games {
  background: var(--nb-shop-bg);
}

.page-board-games .positioning {
  background: var(--nb-shop-bg);
}

.page-board-games .site-header,
.page-unified-shop .site-header {
  background: var(--nb-cream);
}

.unified-shop-layout {
  display: grid;
  gap: var(--space-md);
  min-width: 0;
}

.shop-main {
  min-width: 0;
}

@media (min-width: 960px) {
  .unified-shop-layout {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    align-items: start;
    gap: var(--space-lg);
  }
}

.shop-filters-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--nb-olive);
  border-radius: var(--radius-md);
  background: var(--nb-olive);
  color: var(--nb-soft-white);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  min-height: 44px;
}

.shop-filters-toggle-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--nb-green);
  color: var(--nb-white);
  font-size: 0.6875rem;
}

@media (min-width: 960px) {
  .shop-filters-toggle {
    display: none;
  }
}

.shop-filters-sidebar {
  padding: var(--space-md);
  background: color-mix(in srgb, var(--nb-meadow) 28%, var(--nb-cream));
  border: 1px solid var(--nb-border);
  border-radius: var(--radius-md);
  max-height: none;
  box-shadow: none;
}

@media (max-width: 959px) {
  .shop-filters-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 200;
    width: min(320px, 88vw);
    border-radius: 0;
    border-left: none;
    border-top: none;
    border-bottom: none;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform var(--transition-base);
    box-shadow: 8px 0 32px rgba(111, 108, 67, 0.15);
  }

  .shop-filters-sidebar.is-open {
    transform: translateX(0);
  }
}

@media (min-width: 960px) {
  .shop-filters-sidebar {
    position: sticky;
    top: calc(var(--header-height, 72px) + var(--space-md));
    max-height: calc(100vh - var(--header-height, 72px) - var(--space-lg));
    overflow-y: auto;
    order: -1;
  }
}

.shop-filters-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(111, 108, 67, 0.45);
}

.shop-filters-sidebar-header {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--nb-border);
}

.shop-filters-sidebar-title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  color: var(--nb-ink);
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  line-height: 1.2;
}

.shop-filters-clear {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--nb-green);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.25rem;
}

.shop-filters-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  background: var(--nb-white);
  border-radius: var(--radius-sm);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--nb-green-dark);
}

@media (min-width: 960px) {
  .shop-filters-close {
    display: none;
  }
}

.shop-facet {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--nb-border);
}

.shop-facet:last-of-type {
  border-bottom: none;
}

.shop-facet-heading {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nb-green);
  font-weight: 700;
  margin: 0 0 0.65rem;
}

.shop-facet-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.shop-facet-options--pills {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.shop-facet-check {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--nb-green-dark);
  cursor: pointer;
  padding: 0.2rem 0;
  line-height: 1.35;
}

.shop-facet-check input {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--nb-green);
}

.shop-facet-check input:disabled + .shop-facet-check-label {
  opacity: 0.45;
}

.shop-facet-check-label {
  flex: 1;
}

.shop-facet-check-count {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(111, 108, 67, 0.5);
}

.shop-facet-pill {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  min-height: 36px;
  border: 2px solid color-mix(in srgb, var(--nb-sage) 55%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--nb-sage) 14%, var(--nb-soft-white));
  color: var(--nb-green-dark);
  cursor: pointer;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.shop-facet-pill:hover:not(:disabled),
.shop-facet-pill:focus-visible:not(:disabled) {
  border-color: var(--nb-sage);
  background: color-mix(in srgb, var(--nb-sage) 22%, var(--nb-soft-white));
}

.shop-facet-pill.is-active {
  background: var(--nb-olive);
  border-color: var(--nb-olive);
  color: var(--nb-soft-white);
}

.shop-facet-pill:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.shop-sidebar-note {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--nb-border);
  font-size: 0.875rem;
  color: rgba(111, 108, 67, 0.8);
}

.shop-sidebar-note p {
  margin: 0 0 0.75rem;
}

.shop-sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.shop-sidebar-links a {
  font-size: 0.875rem;
  font-weight: 600;
}

.shop-main-header {
  margin-bottom: var(--space-sm);
}

.shop-main-header .section-heading {
  margin-bottom: 0.35rem;
}

.shop-main-header .section-intro {
  margin: 0;
}

.shop-quick-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.15rem 0;
  margin-bottom: var(--space-md);
  background: transparent;
  border: none;
  border-radius: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.shop-quick-filter {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  min-height: 36px;
  border: 2px solid color-mix(in srgb, var(--nb-sage) 50%, transparent);
  border-radius: 999px;
  background: var(--nb-soft-white);
  color: var(--nb-green-dark);
  cursor: pointer;
  white-space: nowrap;
}

.shop-quick-filter.is-active {
  background: var(--nb-olive);
  border-color: var(--nb-olive);
  color: var(--nb-soft-white);
}

.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.shop-active-filters-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(111, 108, 67, 0.55);
  font-weight: 700;
}

.shop-active-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.shop-active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--nb-sage);
  border-radius: 999px;
  background: color-mix(in srgb, var(--nb-meadow) 45%, var(--nb-cream));
  color: var(--nb-olive);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

.catalogue-toolbar--slim {
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-md);
}

.catalogue-select-label--sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.board-games--flush {
  padding: 0;
  background: transparent;
}

.product-grid--dense {
  gap: var(--space-md);
}

@media (min-width: 900px) {
  .product-grid--dense {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card-line {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--nb-olive) 62%, transparent);
  margin: 0;
  font-weight: 700;
}

.product-card .badge-instock,
.product-card .badge-muted {
  color: var(--nb-olive);
}

.product-card .badge-muted {
  color: color-mix(in srgb, var(--nb-olive) 55%, transparent);
}

body.shop-filters-open {
  overflow: hidden;
}

/* Hub — Concept 2 callout */
.shop-concept-callout {
  margin-top: var(--space-lg);
  border: 2px solid var(--nb-green);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(172, 176, 144, 0.35) 0%, var(--nb-white) 100%);
  overflow: hidden;
}

.shop-concept-callout-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
}

@media (min-width: 768px) {
  .shop-concept-callout-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.shop-concept-callout-kicker {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nb-green);
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.shop-concept-callout-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  color: var(--nb-green-dark);
}

.shop-concept-callout-copy p:last-child {
  margin: 0;
  color: rgba(111, 108, 67, 0.8);
}

.shop-concept-callout-cta {
  flex-shrink: 0;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .shop-concept-callout-cta {
    align-self: center;
  }
}

/* ——— Shop uplift: header tools, cart, search, product page ——— */

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

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  order: 3;
  flex-shrink: 0;
}

.site-nav {
  order: 2;
  display: flex;
  align-items: center;
}

@media (min-width: 900px) {
  .header-tools {
    margin-right: 0;
  }
}

.header-search {
  position: relative;
  flex: 1 1 140px;
  max-width: 220px;
}

.header-search-input {
  width: 100%;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(111, 108, 67, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: var(--nb-white);
}

.site-header--overlay .header-search-input {
  background: var(--nb-cream);
}

.header-search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--nb-white);
  border: 1px solid rgba(111, 108, 67, 0.15);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  max-height: 320px;
  overflow-y: auto;
}

.search-result {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 0.75rem;
  text-decoration: none;
  color: var(--nb-green-dark);
  border-bottom: 1px solid rgba(111, 108, 67, 0.08);
}

.search-result:hover {
  background: rgba(172, 176, 144, 0.35);
}

.search-result-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.search-result-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(111, 108, 67, 0.55);
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(111, 108, 67, 0.2);
  border-radius: var(--radius-sm);
  background: var(--nb-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--nb-green-dark);
  cursor: pointer;
}

.site-header--overlay .cart-toggle {
  background: var(--nb-cream);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--nb-green);
  color: var(--nb-white);
  font-size: 0.6875rem;
  font-weight: 700;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(111, 108, 67, 0.45);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 310;
  width: min(100%, 380px);
  height: 100%;
  background: var(--nb-white);
  box-shadow: -4px 0 24px rgba(111, 108, 67, 0.15);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

body.cart-open {
  overflow: hidden;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  color: var(--nb-green-dark);
}

.cart-close {
  border: 0;
  background: transparent;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  color: var(--nb-green-dark);
  min-width: 2.5rem;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.cart-empty {
  color: rgba(111, 108, 67, 0.65);
  margin: 0 0 var(--space-md);
}

.cart-lines {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cart-line {
  display: flex;
  gap: 0.75rem;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(111, 108, 67, 0.1);
}

.cart-line-image {
  width: 72px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  background: var(--nb-soft-white);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.cart-line-name {
  font-weight: 600;
  color: var(--nb-green-dark);
  text-decoration: none;
}

.cart-line-props {
  font-size: 0.8125rem;
  color: rgba(111, 108, 67, 0.65);
  margin: 0.2rem 0;
}

.cart-line-price {
  font-family: var(--font-mono);
  margin: 0.25rem 0;
}

.cart-line-qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.cart-qty-btn {
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(111, 108, 67, 0.2);
  border-radius: var(--radius-sm);
  background: var(--nb-white);
  cursor: pointer;
}

.cart-line-remove {
  border: 0;
  background: transparent;
  color: var(--nb-green);
  font-size: 0.8125rem;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 0.25rem;
}

.cart-drawer-footer {
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(111, 108, 67, 0.1);
}

.cart-subtotal-row {
  margin: 0 0 var(--space-sm);
}

.cart-checkout {
  width: 100%;
}

.cart-checkout-notice {
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: rgba(111, 108, 67, 0.8);
}

/* Checkout pause — email offer + light upsells before Stripe */
.checkout-pause {
  border: 0;
  padding: 0;
  max-width: min(100vw - 1.5rem, 28rem);
  width: 100%;
  background: transparent;
}

.checkout-pause::backdrop {
  background: rgba(111, 108, 67, 0.5);
}

.checkout-pause-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--nb-soft-white, #f7f4ec);
  color: var(--nb-green-dark);
  padding: var(--space-md) var(--space-md) 0;
  border-radius: var(--radius-md, 8px);
  box-shadow: 0 12px 40px rgba(111, 108, 67, 0.25);
  max-height: min(90vh, 40rem);
  overflow-y: auto;
}

.checkout-pause-close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--nb-green-dark);
}

.checkout-pause-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 1.75rem 0.5rem 0;
  color: var(--nb-olive, var(--nb-green-dark));
}

.checkout-pause-lead {
  margin: 0 0 var(--space-sm);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.checkout-pause-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.checkout-pause-form input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(111, 108, 67, 0.25);
  border-radius: var(--radius-sm, 4px);
  font: inherit;
  background: var(--nb-white, #fff);
}

.checkout-pause-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkout-pause-consent {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(111, 108, 67, 0.85);
}

.checkout-pause-consent label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.checkout-pause-consent input {
  margin-top: 0.2rem;
}

.checkout-pause-status {
  margin: 0;
  font-size: 0.875rem;
  color: var(--nb-olive, var(--nb-green-dark));
}

.checkout-pause-status.is-error {
  color: #8a3b2b;
}

.checkout-pause-already {
  margin: 0 0 var(--space-sm);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.checkout-pause-change-email {
  display: inline;
  margin-left: 0.35rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--nb-green);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
}

.checkout-pause-skip-wrap {
  margin: 0.75rem 0 0;
  text-align: center;
}

.checkout-pause-skip {
  border: 0;
  background: transparent;
  color: var(--nb-green);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
}

.checkout-pause-divider {
  border: 0;
  border-top: 1px solid rgba(111, 108, 67, 0.15);
  margin: var(--space-md) 0 var(--space-sm);
}

.checkout-pause-upsell-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.65rem;
  color: var(--nb-green-dark);
}

.checkout-pause-upsell-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.checkout-pause-upsell {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.checkout-pause-upsell img {
  width: 64px;
  height: 48px;
  object-fit: contain;
  background: var(--nb-white, #fff);
  border-radius: var(--radius-sm, 4px);
}

.checkout-pause-upsell-name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.checkout-pause-upsell-price {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
}

.checkout-pause-add {
  padding: 0.35rem 0.65rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.checkout-pause-email-block,
.checkout-pause-already,
.checkout-pause-skip-wrap,
.checkout-pause-upsells {
  flex-shrink: 0;
}

.checkout-pause-footer {
  position: sticky;
  bottom: 0;
  margin-top: auto;
  margin-left: calc(-1 * var(--space-md));
  margin-right: calc(-1 * var(--space-md));
  padding: var(--space-sm) var(--space-md) var(--space-md);
  border-top: 1px solid rgba(111, 108, 67, 0.15);
  background: var(--nb-soft-white, #f7f4ec);
  box-shadow: 0 -8px 20px rgba(247, 244, 236, 0.95);
  z-index: 2;
}

.checkout-pause-footer .checkout-pause-continue {
  width: 100%;
  min-height: 3.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.badge-line {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
}

.badge-line--norfolk {
  background: var(--nb-meadow);
  color: var(--nb-olive);
}

.badge-line--michaud {
  display: none;
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0;
}

.product-card-actions .btn {
  font-size: 0.8125rem;
  padding: 0.35rem 0.65rem;
}

.modal-product-options,
.modal-product-actions {
  margin-top: var(--space-sm);
}

.product-options-ui {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: var(--space-sm) 0;
}

.product-option-label {
  font-weight: 600;
  font-size: 0.875rem;
}

.product-option-select {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(111, 108, 67, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.product-includes-heading {
  font-size: 1rem;
  margin: var(--space-sm) 0 0.5rem;
}

.product-includes-list {
  margin: 0;
  padding-left: 1.25rem;
}

.product-page-layout {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  min-width: 0;
}

.product-page-media,
.product-page-details {
  min-width: 0;
  max-width: 100%;
}

.product-page-media {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--nb-grey);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-page-blurb {
  margin: 0 0 var(--space-sm);
  line-height: 1.65;
  color: rgba(111, 108, 67, 0.85);
}

.product-not-found {
  padding: var(--space-lg) 0;
}

.product-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.35rem 0;
  color: var(--nb-green-dark);
}

.product-page-hook {
  font-weight: 600;
  color: var(--nb-green);
  margin: 0 0 0.5rem;
}

.product-page-price {
  font-size: 1.25rem;
  margin: var(--space-sm) 0;
}

.product-breadcrumbs {
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.product-breadcrumbs a {
  color: var(--nb-green);
}

.page-cross-sell {
  margin-top: var(--space-xl);
}

.how-to-choose-details {
  border: 1px solid rgba(111, 108, 67, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(172, 176, 144, 0.15);
}

.how-to-choose-details summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--nb-green-dark);
}

.how-to-choose-body {
  margin-top: var(--space-sm);
  color: rgba(111, 108, 67, 0.85);
}

.how-to-choose-body p:last-child {
  margin-bottom: 0;
}

.hero-shop-cta {
  margin-top: var(--space-md);
  text-align: center;
}

.hero-shop-cta .btn-primary {
  background: var(--nb-olive);
  color: var(--nb-soft-white);
}

.hero-shop-cta .btn-primary:hover,
.hero-shop-cta .btn-primary:focus-visible {
  background: var(--nb-ink);
  color: var(--nb-soft-white);
}

/* ——— Shop: mobile & tablet responsive ——— */

/* Prevent iOS zoom on focus */
@media (max-width: 767px) {
  .header-search-input,
  .product-option-select,
  .catalogue-select {
    font-size: 16px;
  }
}

/* Header — compact grid on phones */
@media (max-width: 767px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "logo toggle cart"
      "search search search";
    align-items: center;
    gap: 0.5rem 0.65rem;
    width: min(100% - 1.25rem, 72rem);
    padding-block: 0.5rem;
    min-height: auto;
  }

  .logo {
    grid-area: logo;
    min-width: 0;
  }

  .logo-text {
    font-size: 1rem;
  }

  .nav-toggle {
    grid-area: toggle;
  }

  .header-tools {
    display: contents;
  }

  .header-search {
    grid-area: search;
    max-width: none;
    width: 100%;
  }

  .cart-toggle {
    grid-area: cart;
    padding: 0.45rem 0.55rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }

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

  .site-nav.is-open {
    max-height: 24rem;
  }
}

/* Header — tablet: search + cart inline */
@media (min-width: 768px) and (max-width: 1023px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .header-tools {
    order: 2;
    margin-left: auto;
    flex: 1 1 auto;
    justify-content: flex-end;
    max-width: 320px;
  }

  .header-search {
    flex: 1 1 160px;
    max-width: 200px;
  }
}

/* Catalogue toolbar & filters */
@media (max-width: 639px) {
  .catalogue-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
    padding: var(--space-sm);
  }

  .catalogue-controls {
    width: 100%;
  }

  .filter-bar {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .filter-label {
    grid-column: 1 / -1;
  }

  .filter-toggle {
    width: 100%;
    justify-content: center;
    padding-inline: 0.75rem;
  }

  .catalogue-select {
    width: 100%;
  }

  .catalogue-controls {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .catalogue-controls .catalogue-select-label {
    margin-top: 0.25rem;
  }
}

/* Product cards — ZATU-style compact layout on phones */
@media (max-width: 767px) {
  .product-card {
    border-radius: var(--radius-sm);
    box-shadow: 0 1px 4px rgba(111, 108, 67, 0.08);
  }

  .product-card-body {
    padding: 0.5rem 0.45rem 0.6rem;
    gap: 0.2rem;
  }

  .product-card-body-meta {
    display: none;
  }

  .product-card-image-badge {
    display: block;
  }

  .product-card-name {
    font-size: 0.8125rem;
    line-height: 1.3;
  }

  .product-card-name a {
    text-decoration: none;
    color: var(--nb-ink);
  }

  .product-card-hook,
  .product-card-line,
  .product-card-category {
    display: none;
  }

  .product-card-meta {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.15rem;
  }

  .product-card-price {
    font-size: 0.9375rem;
    margin-top: auto;
    padding-top: 0.45rem;
  }

  .product-card-footer {
    padding-top: 0;
    margin-top: 0.5rem;
    gap: 0.35rem;
  }

  .btn-add-to-cart-card {
    font-size: 0.75rem;
    min-height: 40px;
    padding: 0.45rem 0.5rem;
    border-radius: 999px;
  }

  .product-card-actions--desktop {
    display: none;
  }

  .product-card-stock {
    font-size: 0.625rem;
  }
}

/* Product cards — desktop footer layout */
@media (min-width: 768px) {
  .product-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }
}

/* Tablet: 2-column grids with comfortable spacing */
@media (min-width: 600px) and (max-width: 899px) {
  .product-grid,
  .product-grid--dense {
    gap: var(--space-md);
  }

  .shop-departments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .shop-departments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Unified shop — mobile polish */
@media (max-width: 959px) {
  .unified-shop-layout {
    gap: var(--space-sm);
  }

  .shop-main-header .section-heading {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .shop-filters-sidebar {
    padding-top: max(var(--space-md), env(safe-area-inset-top));
    padding-bottom: env(safe-area-inset-bottom);
  }

  .shop-quick-filters {
    margin-inline: calc(-1 * var(--space-xs));
    border-radius: var(--radius-sm);
  }
}

/* Product modal — phone-friendly full-height */
@media (max-width: 639px) {
  .product-modal {
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .modal-inner {
    border-radius: 0;
    max-height: 100dvh;
    min-height: 100dvh;
  }

  .modal-content {
    padding: var(--space-md);
    padding-top: calc(var(--space-md) + 2.75rem);
  }

  .modal-details div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .modal-details dt {
    margin-bottom: 0.1rem;
  }

  .modal-product-actions .product-actions,
  .product-actions {
    flex-direction: column;
  }

  .modal-product-actions .btn,
  .product-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .cross-sell-card {
    flex: 0 0 min(10rem, 78vw);
  }
}

/* Product detail page */
@media (max-width: 767px) {
  .product-page-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  /* Title, price and buy buttons before the image on phones */
  .product-page-details {
    order: 1;
  }

  .product-page-media {
    order: 2;
    max-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .product-page-title {
    font-size: 1.5rem;
  }

  .product-page-blurb {
    font-size: 0.95rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .page-cross-sell .cross-sell-card {
    flex: 0 0 min(10rem, 78vw);
  }

  #main.section {
    padding-block: var(--space-md);
  }
}

@media (min-width: 768px) {
  .product-page-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Cart drawer — safe areas on notched phones */
@media (max-width: 767px) {
  .cart-drawer {
    width: 100%;
    max-width: 100%;
    padding-top: max(var(--space-md), env(safe-area-inset-top));
    padding-bottom: max(var(--space-md), env(safe-area-inset-bottom));
  }
}

@media (max-width: 639px) {
  .page-hero {
    padding-block: var(--space-md);
  }

  .page-hero-lead {
    font-size: 1rem;
  }
}

/* Touch targets site-wide on coarse pointers */
@media (pointer: coarse) {
  .btn,
  .filter-toggle,
  .shop-facet-pill,
  .shop-quick-filter,
  .shop-department-card,
  .cart-toggle,
  .nav-toggle {
    min-height: 44px;
  }
}

/* Brands section */
.brands-section {
  background: var(--nb-cream);
}

.brands-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brands-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: var(--nb-soft-white);
  border: 1px solid color-mix(in srgb, var(--nb-sage) 45%, transparent);
  border-top: 3px solid var(--nb-sage);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--nb-text);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--nb-olive) 12%, transparent);
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.brands-card:hover {
  border-color: color-mix(in srgb, var(--nb-sage) 55%, transparent);
  border-top-color: color-mix(in srgb, var(--nb-sage) 70%, var(--nb-olive));
  transform: translateY(-2px);
  color: var(--nb-text);
  box-shadow: 0 6px 20px rgba(111, 108, 67, 0.1);
}

.brands-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: color-mix(in srgb, var(--nb-sage) 18%, #ffffff);
}

.brands-card-image--cornhole {
  object-position: center 88%;
}

.brands-card-body {
  padding: var(--space-md) var(--space-lg);
}

.brands-card h3 {
  margin: 0 0 0.35rem;
  color: var(--nb-olive);
}

.brands-card p {
  margin: 0 0 0.75rem;
  color: var(--nb-text);
}

.brands-card-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nb-olive);
  font-weight: 700;
}

.shop-showcase-grid--single {
  max-width: 28rem;
}

.shop-showcase-card--featured {
  width: 100%;
}

.shop-showcase-secondary-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  align-items: center;
}

.page-hero-actions {
  margin-top: var(--space-md);
}

.page-hero-note {
  margin: var(--space-sm) 0 0;
  max-width: 40rem;
  font-size: 0.975rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--nb-cream) 90%, transparent);
}

.page-hero-note a {
  font-weight: 600;
  color: var(--nb-chamomile);
}

.page-hero-note a:hover {
  color: var(--nb-cream);
}

.featured-games-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .featured-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .featured-games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.featured-game-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--nb-text);
  background: var(--nb-card);
  border: 1px solid var(--nb-card-border);
  border-top: 3px solid var(--nb-chamomile);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--nb-olive) 16%, transparent);
  min-height: 100%;
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.featured-game-card:hover {
  color: var(--nb-text);
  border-color: color-mix(in srgb, var(--nb-olive) 40%, transparent);
  border-top-color: var(--nb-chamomile);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--nb-olive) 22%, transparent);
  transform: translateY(-3px);
}

.featured-game-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: var(--nb-soft-white);
  border-bottom: 1px solid var(--nb-card-border);
}

.featured-game-card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.featured-game-card h3 {
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: var(--nb-ink);
  text-decoration: none;
  text-transform: uppercase;
}

.featured-game-card:hover h3 {
  text-decoration: none;
  color: var(--nb-olive);
}

.featured-game-card-body > p:not(.product-card-price) {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--nb-text) 82%, transparent);
}

.featured-game-card .product-card-price {
  margin-top: auto;
  padding-top: 0.65rem;
}

/* Checkout result pages */
.checkout-result {
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.checkout-result-inner {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.checkout-result-inner h1 {
  color: var(--nb-green-dark);
}

.legal-page {
  max-width: 42rem;
}

.legal-page h1 {
  margin-bottom: var(--space-md);
}

.legal-page h2 {
  margin-top: var(--space-lg);
  font-size: 1.35rem;
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-page li {
  margin-bottom: 0.35rem;
}

/* Contact page */
.contact-layout {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.contact-address {
  font-style: normal;
  line-height: 1.7;
  margin: 0 0 var(--space-md);
}

.contact-note {
  margin-top: var(--space-md);
  font-size: 0.975rem;
  color: var(--nb-text);
  max-width: 28rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-field label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--nb-green-dark);
}

.contact-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(111, 108, 67, 0.55);
}

.contact-field input,
.contact-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 2px solid rgba(111, 108, 67, 0.28);
  border-radius: var(--radius-sm);
  background: var(--nb-soft-white);
  color: var(--nb-ink);
  width: 100%;
}

.contact-field textarea {
  resize: vertical;
  min-height: 9rem;
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible {
  outline: 2px solid var(--nb-yellow);
  outline-offset: 2px;
  border-color: var(--nb-green);
}

.contact-status {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.975rem;
}

.contact-status.is-success {
  background: rgba(172, 176, 144, 0.45);
  color: var(--nb-green-dark);
}

.contact-status.is-error {
  background: color-mix(in srgb, var(--nb-olive) 12%, var(--nb-cream));
  color: var(--nb-olive);
  border: 1px solid color-mix(in srgb, var(--nb-olive) 28%, transparent);
}

.contact-form .btn-primary {
  align-self: flex-start;
  margin-top: var(--space-xs);
}
