/* ==========================================================================
   Blue Mountain Design - "Etched" design system
   Static site. One stylesheet. Palette lives in :root as CSS variables.
   ========================================================================== */

:root {
  /* Brand palette (pulled from the logo) */
  --navy:   #0E2A3F;
  --navy-2: #153B57;
  --steel:  #3E7CB1;
  --ice:    #A9D3F0;
  --spark:  #19C3FF;
  --chrome: #C3CDD6;
  --gun:    #6B7680;
  --wood:   #A9702E;
  --snow:   #F5F9FC;
  --ink:    #0B1F2E;

  /* Derived tones */
  --navy-ink:   #052835;   /* text sitting on spark cyan */
  --line:       #D3DBE2;   /* hairline on light backgrounds */
  --line-dark:  #24455f;   /* hairline on navy backgrounds */
  --card-bg:    #ffffff;
  --mint:       #DFF3E6;
  --mint-ink:   #1C6B3A;

  /* Type */
  --font-display: "Oswald", "Arial Narrow", "Segoe UI", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --wrap: 1160px;
  --radius: 10px;
  --radius-lg: 14px;
  --gap: clamp(1rem, 2.5vw, 1.6rem);
  --section-y: clamp(3rem, 7vw, 5.5rem);

  /* Etched shadows */
  --plaque: 0 1px 0 rgba(255,255,255,.85) inset,
            0 -1px 0 rgba(107,118,128,.28) inset,
            0 2px 6px rgba(11,31,46,.08),
            0 12px 24px -18px rgba(11,31,46,.35);
  --plaque-hover: 0 1px 0 rgba(255,255,255,.9) inset,
                  0 -1px 0 rgba(62,124,177,.4) inset,
                  0 4px 10px rgba(11,31,46,.12),
                  0 20px 30px -18px rgba(11,31,46,.45);
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--snow);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--steel); text-underline-offset: 3px; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 .5em;
  color: var(--navy);
}
p { margin: 0 0 1rem; }
:focus-visible {
  outline: 2px solid var(--spark);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--spark); color: var(--navy-ink); font-weight: 800;
  padding: 10px 16px; border-radius: 8px; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* Eyebrow label, engraved caps */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--steel);
  margin: 0 0 .6rem;
}

/* Hairline engraved divider */
.rule {
  height: 1px;
  border: 0;
  background: var(--gun);
  box-shadow: 0 1px 0 rgba(255,255,255,.7);
  opacity: .5;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Buttons (one system, per spec section 6)
   -------------------------------------------------------------------------- */
.btn {
  --lift: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .92rem;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease,
              transform .15s ease, box-shadow .15s ease;
  transform: translateY(var(--lift));
  line-height: 1.1;
  -webkit-appearance: none;
  appearance: none;
}
.btn:focus-visible { outline: 2px solid var(--spark); outline-offset: 2px; }

/* Primary: navy -> spark on hover, lifts 1px */
.btn--primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--spark); color: var(--navy-ink); border-color: var(--spark);
  --lift: -1px; box-shadow: 0 6px 16px -6px rgba(25,195,255,.6);
}

/* Spark: the bright "pop" CTA for dark backgrounds (e.g. the hero over navy).
   Spark-cyan fill + navy text with a cyan glow; hover brightens to white. */
.btn--spark {
  background: var(--spark); color: var(--navy-ink); border-color: var(--spark);
  box-shadow: 0 8px 22px -8px rgba(25,195,255,.6);
}
.btn--spark:hover,
.btn--spark:focus-visible {
  background: #fff; color: var(--navy); border-color: #fff;
  --lift: -1px; box-shadow: 0 12px 26px -8px rgba(255,255,255,.45);
}

/* Secondary / outline (Add to inquiry) */
.btn--secondary { background: #fff; color: var(--steel); border-color: var(--steel); }
.btn--secondary:hover,
.btn--secondary:focus-visible { background: var(--steel); color: #fff; }

/* Ghost / text */
.btn--ghost {
  background: transparent; color: var(--navy); border-color: transparent;
  padding-inline: 6px; border-radius: 4px;
}
.btn--ghost span { box-shadow: inset 0 -1px 0 transparent; transition: box-shadow .15s ease; }
.btn--ghost:hover span, .btn--ghost:focus-visible span { box-shadow: inset 0 -1px 0 currentColor; }

/* Success / added */
.btn--added {
  background: var(--mint); color: var(--mint-ink); border-color: #BFE6CD; cursor: default;
}
.btn--added:hover { background: var(--mint); }

.btn:disabled, .btn[aria-disabled="true"] {
  background: var(--gun); color: #eef; border-color: var(--gun);
  cursor: not-allowed; --lift: 0; box-shadow: none;
}
.btn--block { width: 100%; }
.btn--sm { font-size: .82rem; padding: 9px 14px; }

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  color: var(--snow);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset;
}
.site-header__bar {
  display: flex; align-items: center; gap: 1rem;
  padding: .7rem 0;
}

/* Transparent badge sits directly on navy (no plate) next to a legible wordmark.
   The badge art is too fine to read at header size, so the Cinzel wordmark
   carries the name; the tagline sits under it. */
.logo-home { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; border-radius: 12px; }
.logo-plate {
  display: inline-flex; align-items: center; justify-content: center;
  flex: none; transition: transform .15s ease;
}
.logo-home:hover .logo-plate { transform: translateY(-1px); }
.logo-plate img { height: 64px; width: auto; }

.logo-lockup { display: flex; flex-direction: column; justify-content: center; line-height: 1; }
.logo-name {
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  letter-spacing: .015em;
  text-transform: uppercase;
  color: var(--snow);
  white-space: nowrap;
}
.logo-tag {
  font-family: var(--font-display);
  font-size: .62rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--ice);
  margin-top: .34rem; white-space: nowrap;
}

/* Phones: fit the badge, the legible wordmark, the Inquiry button, and the
   hamburger without crowding or sideways scroll. The Inquiry button drops to
   icon + count, the tagline is dropped, and the wordmark wraps to two lines. */
@media (max-width: 640px) {
  .logo-home { gap: .5rem; }
  .logo-plate img { height: 40px; }
  .logo-name { font-size: .88rem; letter-spacing: 0; line-height: 1.08; white-space: normal; }
  .logo-tag { display: none; }
  .inq-label { display: none; }
  .inquiry-btn { padding: 9px 12px; }
  .nav-toggle { flex: none; }
}

.primary-nav { display: flex; align-items: center; gap: .3rem; }
.primary-nav a {
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .08em; font-weight: 500; font-size: .9rem;
  color: var(--snow); text-decoration: none;
  padding: .5rem .8rem; border-radius: 8px;
  transition: background-color .15s ease, color .15s ease;
}
.primary-nav a:hover { background: var(--navy-2); color: #fff; }
.primary-nav a[aria-current="page"] { color: var(--ice); box-shadow: inset 0 -2px 0 var(--spark); border-radius: 8px 8px 0 0; }

.header-actions { display: flex; align-items: center; gap: .6rem; flex: none; }

/* Inquiry button + count */
.inquiry-btn { position: relative; }
.inq-icon { width: 18px; height: 18px; flex: none; }
.inquiry-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.4em; height: 1.4em; padding: 0 .35em;
  background: var(--spark); color: var(--navy-ink);
  border-radius: 999px; font-size: .78rem; font-weight: 800; line-height: 1;
  margin-left: .1em;
}
.inquiry-btn[data-count="0"] .inquiry-count { background: var(--gun); color: #fff; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: var(--navy-2); color: var(--snow);
  border: 1px solid var(--line-dark); border-radius: 8px;
  width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; order: 3; }
  .primary-nav {
    position: fixed; inset: 0 0 auto 0; top: var(--header-h, 62px);
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy); border-bottom: 1px solid var(--line-dark);
    padding: .5rem 1.2rem 1.2rem;
    transform: translateY(-130%);
    transition: transform .22s ease;
    box-shadow: 0 18px 30px -18px rgba(0,0,0,.8);
    max-height: calc(100dvh - var(--header-h, 62px)); overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav a { padding: .95rem .4rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-dark); border-radius: 0; }
  .primary-nav a[aria-current="page"] { box-shadow: none; color: var(--spark); }
}

/* --------------------------------------------------------------------------
   Hero (summer koozie image hero)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: clamp(460px, 80vh, 680px);
  background: var(--navy);
  color: var(--snow);
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}
/* Full-bleed photo, biased so the koozie on the left stays fully visible. */
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 35% 50%;
}
/* Gradient overlay weighted to the RIGHT. rgba values are the --navy token
   (#0E2A3F). Left ~34% stays transparent so the koozie is crisp; it ramps to
   ~92% navy at the right so white text clears AA. A slight top-down darken at
   the very top keeps the sticky header legible over the sky. */
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,31,46,.55) 0%, rgba(5,31,46,0) 24%),
    linear-gradient(90deg, rgba(14,42,63,0) 34%, rgba(14,42,63,.45) 52%, rgba(14,42,63,.8) 72%, rgba(14,42,63,.92) 100%);
}
.hero .wrap { position: relative; z-index: 1; height: 100%; }
.hero__inner { height: 100%; display: flex; align-items: center; justify-content: flex-end; }
.hero__content {
  display: flex; flex-direction: column; align-items: flex-end; text-align: right;
  max-width: 480px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--snow); margin-bottom: .55rem;
  text-shadow: 0 1px 10px rgba(5,31,46,.65);
}
.hero__eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--spark); border-radius: 2px; }
.hero__title {
  color: #fff; font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1.02;
  text-transform: uppercase; letter-spacing: .01em; margin: 0 0 .7rem;
  text-shadow: 0 1px 14px rgba(5,31,46,.5);
}
.hero__title-accent { color: var(--spark); }
.hero__subhead {
  color: var(--snow); font-size: clamp(1rem, 1.8vw, 1.18rem);
  max-width: 34ch; margin: 0 0 1.6rem auto;
  text-shadow: 0 1px 12px rgba(5,31,46,.55);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-end; }
.hero__actions .btn { font-size: 1rem; padding: 14px 24px; }

/* Mobile: text + CTA drop to the lower third over a bottom-heavy gradient;
   the image shifts up so the koozie/can sits above a clean dark text band. */
@media (max-width: 760px) {
  .hero__img { object-position: 50% 26%; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(5,31,46,.5) 0%, rgba(5,31,46,0) 20%),
      linear-gradient(180deg, rgba(14,42,63,0) 32%, rgba(14,42,63,.6) 52%, rgba(14,42,63,.9) 70%, rgba(14,42,63,.98) 100%);
  }
  .hero__inner { align-items: flex-end; justify-content: center; padding-bottom: clamp(1.8rem, 6vw, 2.6rem); }
  .hero__content { align-items: center; text-align: center; max-width: 32rem; }
  .hero__eyebrow { justify-content: center; }
  .hero__subhead { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__title { font-size: clamp(2rem, 8.5vw, 2.9rem); }
}

/* "This Week" special chip, top corner of the hero */
.special-chip {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  max-width: min(340px, 78vw);
  background: rgba(5,31,46,.72);
  backdrop-filter: blur(4px);
  border: 1px solid var(--steel);
  border-radius: 12px;
  padding: .7rem .9rem;
  text-align: left;
  box-shadow: 0 10px 24px -14px #000;
}
.special-chip__label {
  display: inline-block; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .16em; font-size: .68rem; font-weight: 600; color: var(--spark); margin-bottom: .2rem;
}
.special-chip__text { font-size: .86rem; color: var(--snow); margin: 0; line-height: 1.35; }
.special-chip a { color: var(--ice); font-weight: 700; text-decoration: none; box-shadow: inset 0 -1px 0 currentColor; }
@media (max-width: 560px) {
  .special-chip { position: static; max-width: none; margin: 1rem auto 0; }
}

/* Seasonal strip directly under hero */
.season-strip {
  background: var(--navy-2); color: var(--snow);
  border-bottom: 1px solid var(--line-dark);
}
.season-strip__inner {
  display: flex; align-items: center; flex-wrap: wrap; gap: .4rem 1rem;
  padding: .8rem 0;
}
.season-strip .tag {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .16em;
  font-size: .7rem; font-weight: 600; color: var(--navy-ink);
  background: var(--spark); padding: .2rem .6rem; border-radius: 999px;
}
.season-strip strong { color: #fff; }
.season-strip p { margin: 0; font-size: .95rem; }
.season-strip a { color: var(--ice); font-weight: 700; white-space: nowrap; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section-head { margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); text-transform: uppercase; letter-spacing: .02em; }
.section-head .lead { color: var(--gun); font-size: 1.05rem; max-width: 60ch; margin: 0; }
.section-head__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Product grid + plaque cards
   -------------------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: var(--gap);
}
.product-grid--home { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--chrome);
  border-radius: var(--radius-lg);
  box-shadow: var(--plaque);
  overflow: hidden;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--plaque-hover); border-color: var(--steel); }

.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #fff, #eef3f7);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 -1px 0 rgba(255,255,255,.8) inset;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }

/* Branded "photo coming" placeholder tile */
.card__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; color: var(--navy);
}
.card__placeholder svg { width: 46px; height: 46px; opacity: .85; }
.card__placeholder .tint { position: absolute; inset: 0; opacity: .5; }
.tint--wood { background: linear-gradient(160deg, #d8b38a, #b98a52); }
.tint--slate { background: linear-gradient(160deg, #9aa6ad, #6b7680); }
.tint--steel { background: linear-gradient(160deg, #dfe6ec, #b7c2cb); }
.tint--acrylic { background: linear-gradient(160deg, #dcefff, #a9d3f0); }
.card__placeholder .photo-coming {
  position: relative;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em;
  font-size: .64rem; font-weight: 600; color: var(--navy);
  background: rgba(245,249,252,.85); padding: .25rem .55rem; border-radius: 999px; border: 1px solid var(--chrome);
}
.card__placeholder .mark { position: relative; }

/* Badges over the media */
.card__badges { position: absolute; top: .6rem; left: .6rem; display: flex; flex-direction: column; gap: .35rem; z-index: 2; }
.badge {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em;
  font-size: .64rem; font-weight: 600; padding: .22rem .5rem; border-radius: 6px; line-height: 1.2;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.badge--best { background: var(--wood); color: #fff; }
.badge--new { background: var(--spark); color: var(--navy-ink); }

.status {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  font-size: .64rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .07em;
  font-weight: 600; padding: .22rem .5rem; border-radius: 6px;
  background: rgba(5,31,46,.78); color: var(--snow); border: 1px solid var(--line-dark);
}
.status--available { background: var(--mint); color: var(--mint-ink); border-color: #BFE6CD; }

.card__body { display: flex; flex-direction: column; gap: .5rem; padding: .9rem 1rem 1.1rem; flex: 1; }
.card__name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--navy); margin: 0; line-height: 1.15; }
.card__meta { font-size: .8rem; color: var(--gun); margin: 0; }
.card__price { font-weight: 700; color: var(--wood); margin: 0; font-size: .95rem; }

.color-chips { display: flex; gap: .35rem; flex-wrap: wrap; margin: .1rem 0; }
.color-chip {
  width: 20px; height: 20px; border-radius: 999px; padding: 0; cursor: pointer;
  border: 1.5px solid var(--chrome);
  box-shadow: 0 1px 2px rgba(0,0,0,.12); position: relative;
}
.color-chip[aria-pressed="true"] { border-color: var(--navy); outline: 2px solid var(--spark); outline-offset: 1px; }
.color-chip:focus-visible { outline: 2px solid var(--spark); outline-offset: 2px; }

.card__actions { margin-top: auto; display: flex; gap: .5rem; align-items: center; }
.card__actions .btn { flex: 1; }
.card__custom-link { font-size: .78rem; color: var(--steel); text-decoration: none; white-space: nowrap; }
.card__custom-link:hover { text-decoration: underline; }

/* Empty state for filtered grid */
.grid-empty {
  grid-column: 1 / -1; text-align: center; padding: 3rem 1rem; color: var(--gun);
  border: 1px dashed var(--chrome); border-radius: var(--radius-lg); background: #fff;
}

/* --------------------------------------------------------------------------
   Catalogue controls (chips, sort, search, toggle)
   -------------------------------------------------------------------------- */
.controls { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--plaque); padding: 1rem 1.1rem; margin-bottom: 1.6rem; }
.controls__row { display: flex; flex-wrap: wrap; gap: .9rem 1.2rem; align-items: center; }
.controls__row + .controls__row { margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--line); }

.filter-label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 600; color: var(--gun); margin-right: .2rem; }

.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip {
  font-size: .82rem; font-weight: 600; color: var(--navy);
  background: var(--snow); border: 1px solid var(--chrome); border-radius: 999px;
  padding: .35rem .8rem; cursor: pointer;
  transition: background-color .12s ease, color .12s ease, border-color .12s ease;
}
.chip:hover { border-color: var(--steel); }
.chip[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.chip:focus-visible { outline: 2px solid var(--spark); outline-offset: 2px; }

.search-field { position: relative; flex: 1 1 220px; min-width: 180px; }
.search-field input {
  width: 100%; font: inherit; font-size: .95rem;
  padding: .6rem .9rem .6rem 2.2rem;
  border: 1px solid var(--chrome); border-radius: 10px; background: var(--snow); color: var(--ink);
}
.search-field input:focus-visible { outline: 2px solid var(--spark); outline-offset: 1px; border-color: var(--steel); }
.search-field svg { position: absolute; left: .7rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--gun); pointer-events: none; }

.select-field { display: inline-flex; align-items: center; gap: .5rem; }
.select-field select {
  font: inherit; font-size: .9rem; padding: .5rem 2rem .5rem .7rem;
  border: 1px solid var(--chrome); border-radius: 10px; background: var(--snow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7680' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right .7rem center;
  color: var(--ink); cursor: pointer; -webkit-appearance: none; appearance: none;
}
.select-field select:focus-visible { outline: 2px solid var(--spark); outline-offset: 1px; }

/* Available-now toggle */
.toggle { display: inline-flex; align-items: center; gap: .55rem; cursor: pointer; font-size: .88rem; font-weight: 600; color: var(--navy); user-select: none; }
.toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle__track { width: 42px; height: 24px; border-radius: 999px; background: var(--chrome); position: relative; transition: background-color .15s ease; flex: none; }
.toggle__track::after { content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 999px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.3); transition: transform .15s ease; }
.toggle input:checked + .toggle__track { background: var(--steel); }
.toggle input:checked + .toggle__track::after { transform: translateX(18px); }
.toggle input:focus-visible + .toggle__track { outline: 2px solid var(--spark); outline-offset: 2px; }

.result-count { font-size: .85rem; color: var(--gun); margin-left: auto; }
.controls__clear { background: none; border: 0; color: var(--steel); font: inherit; font-size: .85rem; font-weight: 600; cursor: pointer; padding: .2rem; }
.controls__clear:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Category lanes (home)
   -------------------------------------------------------------------------- */
.lanes { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: var(--gap); }
.lane {
  display: flex; flex-direction: column; gap: .5rem; align-items: flex-start;
  text-decoration: none; color: var(--navy);
  background: #fff; border: 1px solid var(--chrome); border-radius: var(--radius-lg);
  box-shadow: var(--plaque); padding: 1.1rem; transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.lane:hover { transform: translateY(-2px); box-shadow: var(--plaque-hover); border-color: var(--steel); }
.lane__icon { width: 34px; height: 34px; color: var(--steel); }
.lane__name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; font-size: 1rem; }
.lane__go { font-size: .8rem; color: var(--gun); display: inline-flex; align-items: center; gap: .25rem; }
.lane:hover .lane__go { color: var(--steel); }

/* --------------------------------------------------------------------------
   Reviews (real Facebook reviews)
   -------------------------------------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--gap); }
.review-card {
  display: flex; flex-direction: column; gap: .7rem;
  background: var(--card-bg); border: 1px solid var(--chrome); border-radius: var(--radius-lg);
  box-shadow: var(--plaque); padding: 1.2rem 1.2rem 1.1rem;
}
.review-stars { display: inline-flex; gap: .12rem; }
.review-stars span { width: 17px; height: 17px; display: inline-flex; }
.review-stars .is-on { color: var(--wood); }
.review-stars .is-off { color: var(--chrome); }
.review-text { margin: 0; color: var(--ink); font-size: .98rem; line-height: 1.55; flex: 1; }
.review-foot { display: flex; flex-direction: column; gap: .1rem; border-top: 1px solid var(--line); padding-top: .7rem; }
.review-name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; font-size: .9rem; color: var(--navy); }
.review-src { font-size: .78rem; color: var(--gun); }
.reviews__more { text-align: center; margin: 1.6rem 0 0; }

/* --------------------------------------------------------------------------
   "Who we are" band
   -------------------------------------------------------------------------- */
.about-band { background: var(--navy); color: var(--snow); border-block: 1px solid var(--line-dark); }
.about-band .wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding-block: var(--section-y); }
.about-band h2 { color: #fff; }
.about-band p { color: var(--ice); font-size: 1.08rem; }
.about-band .placeholder-note { color: var(--chrome); }
.about-band__mark { display: flex; justify-content: center; }
.about-band__mark svg { width: min(220px, 60%); height: auto; color: var(--ice); }
@media (max-width: 720px) { .about-band .wrap { grid-template-columns: 1fr; } .about-band__mark { order: -1; } }

/* Placeholder marker used across the site */
.placeholder {
  background: rgba(169,112,46,.12); color: var(--wood);
  border: 1px dashed var(--wood); border-radius: 6px;
  padding: 0 .35em; font-size: .9em; font-style: normal;
}

/* --------------------------------------------------------------------------
   Inquiry drawer
   -------------------------------------------------------------------------- */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(5,31,46,.55); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; z-index: 300;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(440px, 100%);
  background: var(--snow); z-index: 310;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .24s ease;
  box-shadow: -18px 0 40px -20px rgba(0,0,0,.6);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.2rem; background: var(--navy); color: var(--snow); border-bottom: 1px solid var(--line-dark);
}
.drawer__head h2 { color: #fff; margin: 0; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .04em; }
.drawer__close {
  background: var(--navy-2); border: 1px solid var(--line-dark); color: var(--snow);
  width: 40px; height: 40px; border-radius: 8px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.drawer__close:hover { background: var(--steel); }
.drawer__body { flex: 1; overflow-y: auto; padding: 1.2rem; }
.drawer__note { font-size: .85rem; color: var(--gun); background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: .7rem .85rem; margin-bottom: 1rem; }

.inquiry-items { list-style: none; margin: 0 0 1.2rem; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.inquiry-item { display: flex; align-items: center; gap: .8rem; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: .5rem; box-shadow: 0 1px 0 rgba(255,255,255,.7) inset; }
.inquiry-item__thumb { width: 52px; height: 52px; border-radius: 7px; object-fit: cover; border: 1px solid var(--line); flex: none; background: #eef3f7; display: flex; align-items: center; justify-content: center; }
.inquiry-item__thumb svg { width: 26px; height: 26px; color: var(--gun); }
.inquiry-item__main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .35rem; }
.inquiry-item__name { font-weight: 600; font-size: .92rem; color: var(--navy); }

/* Quantity stepper in the inquiry drawer */
.qty-stepper { display: inline-flex; align-items: center; align-self: flex-start; border: 1px solid var(--chrome); border-radius: 8px; overflow: hidden; background: #fff; }
.qty-btn { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 0; color: var(--navy); cursor: pointer; padding: 0; transition: background-color .12s ease; }
.qty-btn:hover:not(:disabled) { background: var(--ice); }
.qty-btn:disabled { color: var(--chrome); cursor: not-allowed; }
.qty-btn:focus-visible { outline: 2px solid var(--spark); outline-offset: -2px; }
.qty-value { min-width: 2.2ch; text-align: center; font-weight: 700; font-size: .9rem; color: var(--navy); padding: 0 .35rem; }
.qty-min { font-size: .72rem; color: var(--wood); font-weight: 600; }

.inquiry-item__remove { background: none; border: 0; color: var(--gun); cursor: pointer; padding: .3rem; border-radius: 6px; line-height: 0; align-self: flex-start; }
.inquiry-item__remove:hover { color: #b23; background: #fbeaea; }

.drawer-empty { text-align: center; color: var(--gun); padding: 2rem 1rem; }
.drawer-empty svg { width: 48px; height: 48px; color: var(--chrome); margin-bottom: .6rem; }

/* Post-submit confirmation inside the drawer */
.drawer-success { text-align: center; padding: 2.4rem 1rem 1rem; }
.drawer-success__icon { color: var(--mint-ink); margin-bottom: .4rem; }
.drawer-success h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: 1.5rem; color: var(--navy); margin: 0 0 .5rem; outline: none; }
.drawer-success p { color: var(--gun); font-size: .95rem; max-width: 34ch; margin: 0 auto 1.4rem; }
.drawer-success__actions { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }

/* Forms */
.field { margin-bottom: .9rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: .3rem; }
.field .req { color: var(--wood); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: .95rem; padding: .6rem .75rem;
  border: 1px solid var(--chrome); border-radius: 9px; background: #fff; color: var(--ink);
}
.field input:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--spark); outline-offset: 1px; border-color: var(--steel); }
.field textarea { resize: vertical; min-height: 84px; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #C0392B; background: #fdf3f2; }
.field-error { display: none; color: #C0392B; font-size: .8rem; margin-top: .25rem; font-weight: 600; }
.field-error.is-shown { display: block; }

.file-drop { border: 1.5px dashed var(--chrome); border-radius: 10px; padding: .8rem; background: #fff; }
.file-drop input { font-size: .85rem; }
.file-hint { font-size: .78rem; color: var(--gun); margin: .4rem 0 0; }

.upload-callout { display: flex; gap: .6rem; background: rgba(62,124,177,.08); border: 1px solid var(--ice); border-radius: 10px; padding: .75rem .85rem; font-size: .85rem; color: var(--navy-2); margin: .3rem 0 .9rem; }
.upload-callout svg { width: 20px; height: 20px; color: var(--steel); flex: none; margin-top: .1rem; }

.disclaimer { font-size: .8rem; color: var(--gun); background: #fff; border-left: 3px solid var(--gun); border-radius: 0 6px 6px 0; padding: .6rem .8rem; margin: .8rem 0; }
.no-checkout-line { font-size: .85rem; color: var(--navy); font-weight: 600; margin: .6rem 0; }

.form-status { display: none; padding: .8rem 1rem; border-radius: 10px; font-size: .9rem; font-weight: 600; margin-bottom: 1rem; }
.form-status.is-shown { display: block; }
.form-status--ok { background: var(--mint); color: var(--mint-ink); border: 1px solid #BFE6CD; }
.form-status--err { background: #fdf3f2; color: #C0392B; border: 1px solid #f2c9c4; }
.form-status--info { background: rgba(169,112,46,.12); color: var(--wood); border: 1px dashed var(--wood); }

/* --------------------------------------------------------------------------
   Seasonal pop-up (built, OFF by default via config)
   -------------------------------------------------------------------------- */
.popup-backdrop { position: fixed; inset: 0; background: rgba(5,31,46,.6); display: flex; align-items: center; justify-content: center; padding: 1.2rem; z-index: 400; opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
.popup-backdrop.is-open { opacity: 1; visibility: visible; }
.popup {
  position: relative; max-width: 420px; width: 100%;
  background: var(--snow); border: 1px solid var(--chrome); border-radius: var(--radius-lg);
  box-shadow: var(--plaque-hover); padding: 1.6rem; text-align: center;
  transform: translateY(12px); transition: transform .2s ease;
}
.popup-backdrop.is-open .popup { transform: translateY(0); }
.popup__label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; color: var(--steel); font-weight: 600; }
.popup h2 { font-size: 1.5rem; margin: .3rem 0 .5rem; }
.popup__close { position: absolute; top: .7rem; right: .7rem; background: none; border: 0; color: var(--gun); cursor: pointer; padding: .3rem; line-height: 0; border-radius: 6px; }
.popup__close:hover { color: var(--navy); background: #e7edf2; }

/* --------------------------------------------------------------------------
   Simple content pages (custom / contact)
   -------------------------------------------------------------------------- */
.page-head { background: var(--navy); color: var(--snow); border-bottom: 1px solid var(--line-dark); }
.page-head .wrap { padding-block: clamp(2.4rem, 6vw, 4rem); }
.page-head h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; letter-spacing: .02em; }
.page-head .lead { color: var(--ice); font-size: 1.1rem; max-width: 60ch; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } }

.panel { background: #fff; border: 1px solid var(--chrome); border-radius: var(--radius-lg); box-shadow: var(--plaque); padding: clamp(1.2rem, 3vw, 1.8rem); }
.panel h2 { font-size: 1.4rem; text-transform: uppercase; letter-spacing: .03em; }

.info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.info-list li { display: flex; gap: .8rem; align-items: flex-start; }
.info-list svg { width: 22px; height: 22px; color: var(--steel); flex: none; margin-top: .15rem; }
.info-list strong { display: block; color: var(--navy); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }
.info-list span { color: var(--gun); font-size: .95rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--chrome); border-top: 1px solid var(--line-dark); }
.site-footer .wrap { padding-block: clamp(2.4rem, 5vw, 3.4rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.footer-brand .logo-plate { margin-bottom: 1rem; }
.footer-brand .logo-plate img { height: 64px; }
.footer-brand p { color: var(--gun); font-size: .92rem; max-width: 40ch; }
.footer-col h3 { color: var(--snow); font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .8rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { color: var(--chrome); text-decoration: none; font-size: .92rem; }
.footer-col a:hover { color: var(--spark); }
.footer-col .muted { color: var(--gun); font-size: .92rem; }
.footer-bottom { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .82rem; color: var(--gun); }
.footer-bottom a { color: var(--gun); }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mono-note { font-size: .82rem; color: var(--gun); }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
