/* ═══════════════════════════════════════════════════════════════════════
   The Weather Shack — Mesa, AZ
   Palette sampled straight off their badge: the ring is #000, the flame is
   #CE2029. Everything else is Sonoran — bone paper, sun-bleached sand, and
   the near-black of that arched building on Main Street.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --ink:        #16120F;
  --ink-2:      #2C241E;
  --paper:      #F7F3EC;
  --paper-2:    #EFE7DA;
  --sand:       #E2D7C4;
  --muted:      #6E6459;
  --red:        #CE2029;   /* the flame */
  --red-deep:   #A4141C;
  --line:       rgba(22, 18, 15, .14);
  --line-soft:  rgba(22, 18, 15, .08);

  --wrap:       1220px;
  --gut:        clamp(1.15rem, 4vw, 2.75rem);
  --radius:     4px;

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body:    "Instrument Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;

  --tab-h: 0px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  padding-bottom: var(--tab-h);
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.06;
  letter-spacing: -.017em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6.4vw, 4.55rem); }
h2 { font-size: clamp(1.95rem, 4.1vw, 3.05rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -.012em; }

p { margin: 0 0 1.05em; text-wrap: pretty; }

/* The one italic beat — used once per page, in the hero. */
.beat { font-style: italic; font-variation-settings: "SOFT" 18, "WONK" 1; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 760px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper); padding: .8rem 1.2rem;
}
.skip:focus { left: 0; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2.5px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

.eyebrow {
  font-family: var(--body);
  font-size: .705rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1.05rem;
}
.on-dark .eyebrow { color: #E9A0A4; }

.lede { font-size: clamp(1.06rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 62ch; }
.on-dark .lede { color: rgba(247, 243, 236, .74); }

/* ─────────────────────────────────────────────────────── header */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: .795rem;
  letter-spacing: .01em;
}
.topbar .wrap { display: flex; gap: 1.4rem; align-items: center; justify-content: center;
  min-height: 40px; text-align: center; }
.topbar b { font-weight: 600; }
.topbar .sep { opacity: .34; }
@media (max-width: 700px) { .topbar .hide-sm { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247, 243, 236, .93);
  backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-in {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: .68rem; text-decoration: none; margin-right: auto; }
.brand img { width: 50px; height: 50px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.02; }
.brand-txt b {
  font-family: var(--display); font-weight: 600; font-size: 1.235rem;
  letter-spacing: -.02em;
}
.brand-txt span {
  font-size: .625rem; letter-spacing: .155em; text-transform: uppercase;
  color: var(--muted); margin-top: .22rem;
}

.nav { display: flex; align-items: center; gap: .3rem; }
.navlink {
  font: inherit; font-size: .93rem; font-weight: 500;
  background: none; border: 0; cursor: pointer;
  color: var(--ink); text-decoration: none;
  padding: .62rem .8rem; border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: .3rem;
}
.navlink:hover { background: rgba(22, 18, 15, .055); }
.navlink[aria-current="page"] { color: var(--red); }
.chev { width: 13px; height: 13px; transition: transform .18s; }
.navlink[aria-expanded="true"] .chev { transform: rotate(180deg); }

.header-cta {
  display: inline-flex; align-items: center; gap: .48rem;
  background: var(--red); color: #fff; text-decoration: none;
  padding: .72rem 1.15rem; border-radius: var(--radius);
  font-weight: 600; font-size: .93rem; white-space: nowrap;
}
.header-cta:hover { background: var(--red-deep); }
.header-cta svg { width: 16px; height: 16px; }

.burger {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--radius); padding: .58rem .7rem; cursor: pointer;
}
.burger svg { width: 20px; height: 20px; display: block; }

@media (max-width: 1000px) {
  .nav, .header-cta { display: none; }
  .burger { display: block; }
  .header-in { min-height: 66px; }
  .brand img { width: 42px; height: 42px; }
}

/* ─────────────────────────────────────────────────────── mega panel */
.navitem { position: relative; }
.mega {
  position: absolute; top: calc(100% + .5rem); left: 50%; transform: translateX(-50%);
  width: min(920px, 92vw);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 6px; box-shadow: 0 26px 60px -22px rgba(22, 18, 15, .42);
  overflow: hidden;
}
.mega-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.1rem; padding: 1.9rem 0 1.6rem; }
.mega-h {
  font-size: .655rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 .72rem; font-weight: 600;
}
.mega ul { list-style: none; margin: 0 0 1.35rem; padding: 0; }
.mega li + li { margin-top: .16rem; }
.mega li a {
  display: block; text-decoration: none; padding: .4rem .55rem;
  border-radius: var(--radius); font-size: .9rem;
}
.mega li a:hover { background: rgba(22, 18, 15, .055); }
.mega li a b { display: block; font-weight: 600; }
.mega li a span { display: block; font-size: .785rem; color: var(--muted); }
.mega-brands { background: var(--paper-2); border-top: 1px solid var(--line-soft); padding: 1.05rem 0; }
.mega-brands ul { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; margin: 0; }
.mega-brands li a { padding: .2rem 0; font-size: .875rem; }
.mega-brands li a:hover { background: none; color: var(--red); }

/* ─────────────────────────────────────────────────────── drawer */
.scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(22, 18, 15, .5);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.scrim.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; inset: 0 0 0 auto; z-index: 100;
  width: min(400px, 88vw);
  background: var(--paper); color: var(--ink);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column;
  overscroll-behavior: contain;
}
.drawer.open { transform: none; }
.drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.15rem; border-bottom: 1px solid var(--line-soft);
}
.drawer-top img { width: 40px; height: 40px; }
.x { background: none; border: 0; cursor: pointer; padding: .5rem; }
.x svg { width: 21px; height: 21px; display: block; }
.drawer-body { overflow-y: auto; padding: .5rem 0 1.5rem; flex: 1; -webkit-overflow-scrolling: touch; }
.dgroup { border-bottom: 1px solid var(--line-soft); }
.dgroup > button {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: 0; cursor: pointer; font: inherit; font-weight: 500;
  padding: .95rem 1.15rem; text-align: left; color: inherit;
}
.dgroup > button[aria-expanded="true"] { color: var(--red); }
.dgroup ul { list-style: none; margin: 0; padding: 0 0 .7rem; background: var(--paper-2); }
.dgroup ul a {
  display: block; padding: .58rem 1.15rem .58rem 1.9rem;
  text-decoration: none; font-size: .93rem;
}
.dlink {
  display: block; padding: .95rem 1.15rem; text-decoration: none;
  font-weight: 500; border-bottom: 1px solid var(--line-soft);
}
.drawer-foot { padding: 1.15rem; border-top: 1px solid var(--line); display: grid; gap: .6rem; }

/* ─────────────────────────────────────────────────────── mobile tab bar */
.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; background: rgba(247, 243, 236, .96);
  backdrop-filter: blur(14px) saturate(1.4);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.tabbar ul { display: flex; list-style: none; margin: 0; padding: 0; }
.tabbar li { flex: 1; }
.tabbar a, .tabbar button {
  width: 100%; background: none; border: 0; font: inherit; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: .18rem;
  padding: .52rem .2rem .46rem; text-decoration: none;
  font-size: .625rem; letter-spacing: .045em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.tabbar svg { width: 21px; height: 21px; }
.tabbar a[aria-current="page"] { color: var(--red); }
.tabbar .accent { color: var(--red); }

@media (max-width: 1000px) {
  .tabbar { display: block; }
  :root { --tab-h: 60px; }
}

/* ─────────────────────────────────────────────────────── hero */
.hero { position: relative; background: var(--ink); color: var(--paper); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* The hero photograph has to read as fire at a glance, so the scrim is kept
   deliberately light and concentrated behind the headline only. Legibility
   comes from the text shadow below rather than from flooding the picture. */
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(14, 10, 8, .88) 0%, rgba(14, 10, 8, .66) 28%,
                    rgba(14, 10, 8, .3) 52%, rgba(14, 10, 8, .06) 100%),
    linear-gradient(to top, rgba(14, 10, 8, .34) 0%, rgba(14, 10, 8, 0) 38%);
}
.hero h1, .hero-sub, .hero-since, .hero-proof b, .hero-proof span {
  text-shadow: 0 1px 18px rgba(10, 7, 5, .78), 0 1px 3px rgba(10, 7, 5, .6);
}
@media (max-width: 940px) {
  .hero-media::after {
    background: linear-gradient(to bottom, rgba(14, 10, 8, .8) 0%, rgba(14, 10, 8, .62) 42%,
                                rgba(14, 10, 8, .86) 100%);
  }
}
.hero-in {
  position: relative;
  display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3.2rem, 7vw, 6.2rem) 0 clamp(3.2rem, 7vw, 5.4rem);
}
.hero h1 { color: var(--paper); }
.hero-sub {
  font-size: clamp(1.06rem, 1.75vw, 1.235rem);
  color: rgba(247, 243, 236, .8);
  margin: 1.5rem 0 0; max-width: 46ch;
}
.hero-since {
  display: inline-flex; align-items: center; gap: .62rem;
  font-size: .705rem; letter-spacing: .17em; text-transform: uppercase;
  color: rgba(247, 243, 236, .66); margin-bottom: 1.5rem; font-weight: 600;
}
.hero-since::before { content: ""; width: 34px; height: 1px; background: var(--red); }

.hero-proof { display: flex; flex-wrap: wrap; gap: 1.5rem 2.4rem; margin-top: 2.3rem; }
.hero-proof div { }
.hero-proof b {
  display: block; font-family: var(--display); font-size: 1.72rem;
  font-weight: 600; letter-spacing: -.02em; line-height: 1;
}
.hero-proof span {
  display: block; font-size: .705rem; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(247, 243, 236, .6); margin-top: .42rem;
}

@media (max-width: 940px) {
  .hero-in { grid-template-columns: 1fr; padding-top: clamp(2.4rem, 8vw, 3.4rem); }
}

/* ─────────────────────────────────────────────────────── lead form */
.lead-form {
  background: var(--paper); color: var(--ink);
  border-radius: 8px; padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 30px 70px -26px rgba(0, 0, 0, .6);
  border: 1px solid rgba(255, 255, 255, .1);
}
.lead-title { font-size: 1.52rem; margin: 0 0 1.35rem; }
.lead-title span {
  display: block; font-family: var(--body); font-size: .875rem; font-weight: 400;
  color: var(--muted); letter-spacing: 0; margin-top: .48rem; line-height: 1.5;
}
.field { margin-bottom: .88rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .72rem; }
.field label {
  display: block; font-size: .735rem; font-weight: 600;
  letter-spacing: .085em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .34rem;
}
.field .opt { text-transform: none; letter-spacing: 0; font-weight: 400; opacity: .78; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .96rem;
  padding: .72rem .82rem;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.field textarea { min-height: 88px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); }

.drop {
  border: 1.5px dashed var(--line); border-radius: var(--radius);
  padding: 1rem; text-align: center; cursor: pointer;
  background: rgba(226, 215, 196, .22);
  transition: border-color .16s, background .16s;
}
.drop:hover, .drop.over { border-color: var(--red); background: rgba(206, 32, 41, .05); }
.drop svg { width: 22px; height: 22px; color: var(--muted); margin-bottom: .3rem; }
.drop p { margin: 0; font-size: .855rem; color: var(--muted); }
.drop b { color: var(--ink); font-weight: 600; }
.drop input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }
.drop-list { margin: .55rem 0 0; padding: 0; list-style: none; font-size: .82rem; color: var(--muted); }
.drop-list li { display: flex; gap: .4rem; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 600; font-size: .96rem;
  padding: .88rem 1.5rem; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
}
.btn svg { width: 17px; height: 17px; }
.btn-red { background: var(--red); color: #fff; width: 100%; }
.btn-red:hover { background: var(--red-deep); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-2); }
.btn-ghost { background: none; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.on-dark .btn-ghost { border-color: rgba(247, 243, 236, .3); color: var(--paper); }
.on-dark .btn-ghost:hover { border-color: var(--paper); }

.form-note { font-size: .77rem; color: var(--muted); margin: .82rem 0 0; line-height: 1.5; }
.hidden-field { position: absolute; left: -9999px; }

/* ─────────────────────────────────────────────────────── sections */
.section { padding: clamp(3.4rem, 7vw, 6rem) 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-sand { background: var(--paper-2); }
.section-head { max-width: 66ch; margin-bottom: clamp(2rem, 4vw, 3.1rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* product grid — real photographs, no icons */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(276px, 1fr)); gap: 1.15rem; }
.tile {
  position: relative; display: block; text-decoration: none;
  border-radius: 6px; overflow: hidden; background: var(--ink);
  aspect-ratio: 4 / 3;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.3,1); }
.tile:hover img { transform: scale(1.045); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18, 14, 12, .9) 8%, rgba(18, 14, 12, .28) 52%, rgba(18, 14, 12, .04) 100%);
}
.tile-txt { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.25rem; color: var(--paper); }
.tile-txt h3 { color: var(--paper); }
.tile-txt p { margin: .34rem 0 0; font-size: .875rem; color: rgba(247, 243, 236, .76); }
.tile-txt .go {
  display: inline-flex; align-items: center; gap: .38rem; margin-top: .72rem;
  font-size: .77rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: #F0B3B6;
}
.tile-txt .go svg { width: 15px; height: 15px; transition: transform .22s; }
.tile:hover .go svg { transform: translateX(4px); }

/* Categories we do not yet have Weather Shack photography for get a typographic
   panel in the same grid — deliberate, and never a stock photo standing in. */
.tile-plain { background: var(--ink-2); }
.tile-plain::after {
  background: radial-gradient(120% 90% at 82% 6%, rgba(206, 32, 41, .3) 0%, rgba(0, 0, 0, 0) 62%);
}
.tile-plain .tile-txt { top: 0; display: flex; flex-direction: column; justify-content: flex-end; }

/* text cards, used where a photo would be filler */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 1.15rem; }
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 6px; padding: 1.5rem;
}
.section-sand .card { background: var(--paper); }
.on-dark .card { background: rgba(247, 243, 236, .05); border-color: rgba(247, 243, 236, .15); }
.card h3 { margin-bottom: .55rem; }
.card p:last-child { margin-bottom: 0; }
.card p { font-size: .93rem; color: var(--muted); }
.on-dark .card p { color: rgba(247, 243, 236, .74); }

/* split feature */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4.5vw, 4rem); align-items: center;
}
.split-media img { border-radius: 6px; width: 100%; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.flip .split-media { order: -1; } }

/* Short clip beside its copy. The source is a phone video shot upright, so it
   is capped rather than stretched: full width would give it a 1:1.9 column and
   push the text off the screen. */
.split-video { align-items: center; }
.clip {
  display: block; width: 100%; max-width: 340px; margin-inline: auto;
  border-radius: 6px; background: var(--ink);
}
@media (max-width: 860px) { .clip { max-width: 300px; } }

/* Landscape footage runs full width instead. */
.clip-wide { max-width: 100%; }
@media (max-width: 860px) { .clip-wide { max-width: 100%; } }

/* spec list */
.speclist { list-style: none; margin: 0; padding: 0; }
.speclist li { display: flex; gap: .82rem; padding: .82rem 0; border-bottom: 1px solid var(--line-soft); }
.speclist li:last-child { border-bottom: 0; }
.speclist .k { font-weight: 600; min-width: 160px; flex-shrink: 0; }
.speclist .v { color: var(--muted); }
.on-dark .speclist li { border-bottom-color: rgba(247, 243, 236, .13); }
.on-dark .speclist .v { color: rgba(247, 243, 236, .74); }
@media (max-width: 620px) { .speclist li { flex-direction: column; gap: .18rem; } .speclist .k { min-width: 0; } }

/* review strip */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 1.15rem; }
.review {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 6px; padding: 1.5rem;
  display: flex; flex-direction: column;
}
.stars { color: var(--red); letter-spacing: .13em; font-size: .95rem; margin-bottom: .68rem; }
.review blockquote { margin: 0 0 1rem; font-size: .96rem; line-height: 1.6; }
.review cite { font-style: normal; font-size: .82rem; color: var(--muted); margin-top: auto; }

.ratingbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .7rem 1.5rem; text-align: center;
}
.ratingbar .big {
  font-family: var(--display); font-size: 2.4rem; font-weight: 600; line-height: 1;
  letter-spacing: -.02em;
}

/* brand row */
.brandrow { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; margin: 0; padding: 0; }
.brandrow a {
  display: inline-block; text-decoration: none; font-size: .875rem; font-weight: 500;
  padding: .5rem .95rem; border: 1px solid var(--line); border-radius: 100px;
}
.brandrow a:hover { border-color: var(--red); color: var(--red); }
.on-dark .brandrow a { border-color: rgba(247, 243, 236, .24); }
.on-dark .brandrow a:hover { border-color: var(--paper); color: var(--paper); }

/* faq */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.25rem 2.4rem 1.25rem 0;
  font-family: var(--display); font-size: 1.14rem; font-weight: 600;
  position: relative; letter-spacing: -.012em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .5rem; top: 1.62rem;
  width: 11px; height: 11px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.75rem; }
.faq .answer { padding: 0 0 1.35rem; color: var(--muted); max-width: 74ch; }
.faq .answer p:last-child { margin-bottom: 0; }

/* callout band */
.band {
  background: var(--red); color: #fff;
  padding: clamp(2.4rem, 5vw, 3.6rem) 0;
}
.band .wrap { display: flex; flex-wrap: wrap; gap: 1.5rem 2.4rem; align-items: center; justify-content: space-between; }
.band h2 { color: #fff; max-width: 20ch; }
.band p { color: rgba(255, 255, 255, .88); margin: .6rem 0 0; max-width: 46ch; }
.band .btn-ghost { border-color: rgba(255, 255, 255, .55); color: #fff; }
.band .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .12); }
.band-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.band .btn-ink { background: #fff; color: var(--red); }
.band .btn-ink:hover { background: rgba(255, 255, 255, .9); }

/* store card */
.storecard {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
}
.storecard img { border-radius: 6px; }
.hours { list-style: none; margin: 1.3rem 0 0; padding: 0; max-width: 340px; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .42rem 0; border-bottom: 1px solid var(--line-soft); font-size: .93rem; }
.hours li:last-child { border-bottom: 0; }
.hours .today { color: var(--red); font-weight: 600; }
.on-dark .hours li { border-bottom-color: rgba(247, 243, 236, .13); }
@media (max-width: 860px) { .storecard { grid-template-columns: 1fr; } }

/* gallery */
.masonry { columns: 3 260px; column-gap: 1rem; }
.masonry figure { margin: 0 0 1rem; break-inside: avoid; }
.masonry img { border-radius: 6px; width: 100%; }
.masonry figcaption { font-size: .8rem; color: var(--muted); margin-top: .45rem; }

/* breadcrumb */
.crumb { font-size: .8rem; color: var(--muted); padding: 1.1rem 0 0; }
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--red); }
.crumb span { opacity: .5; margin: 0 .4rem; }

/* page head */
.pagehead { padding: clamp(2.4rem, 5vw, 3.8rem) 0 clamp(1.8rem, 4vw, 2.8rem); }
.pagehead .lede { margin-top: 1.15rem; }

/* ─────────────────────────────────────────────────────── footer */
.site-footer { background: var(--ink); color: var(--paper); padding: clamp(3rem, 6vw, 4.4rem) 0 0; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.4rem; }
.foot-brand img { width: 62px; height: 62px; margin-bottom: 1rem; }
.foot-brand p { font-size: .9rem; color: rgba(247, 243, 236, .68); max-width: 34ch; }
.foot-col h4 {
  font-family: var(--body); font-size: .655rem; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(247, 243, 236, .5);
  margin: 0 0 .95rem; font-weight: 600;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: .48rem; }
.foot-col a { text-decoration: none; font-size: .9rem; color: rgba(247, 243, 236, .82); }
.foot-col a:hover { color: #fff; }
.foot-contact a { display: block; font-size: .93rem; color: rgba(247, 243, 236, .82); text-decoration: none; margin-bottom: .4rem; }
.foot-contact .tel { font-family: var(--display); font-size: 1.42rem; color: var(--paper); font-weight: 600; }
.social { display: flex; gap: .55rem; margin-top: 1.1rem; }
.social a {
  width: 38px; height: 38px; border: 1px solid rgba(247, 243, 236, .22);
  border-radius: 50%; display: grid; place-items: center;
}
.social a:hover { border-color: var(--paper); background: rgba(247, 243, 236, .08); }
.social svg { width: 17px; height: 17px; }
.foot-bottom {
  margin-top: clamp(2.4rem, 5vw, 3.4rem); border-top: 1px solid rgba(247, 243, 236, .14);
  padding: 1.35rem 0 calc(1.35rem + var(--tab-h));
  display: flex; flex-wrap: wrap; gap: .7rem 1.6rem; justify-content: space-between;
  font-size: .8rem; color: rgba(247, 243, 236, .56);
}
.foot-bottom a { color: inherit; text-decoration: none; }
.foot-bottom a:hover { color: var(--paper); }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-top { grid-template-columns: 1fr; gap: 1.9rem; } }

/* ─────────────────────────────────────────────────────── utility */
.stack > * + * { margin-top: 1.15rem; }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.pill {
  display: inline-block; font-size: .69rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: .34rem .72rem; border-radius: 100px;
  background: rgba(206, 32, 41, .1); color: var(--red);
}
.on-dark .pill { background: rgba(247, 243, 236, .12); color: #F0B3B6; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; transition-duration: .001ms !important;
  }
  .tile:hover img { transform: none; }
}

@media print {
  .site-header, .tabbar, .drawer, .scrim, .band, .topbar { display: none !important; }
  body { background: #fff; }
}


/* ---------------------------------------------------------------------------
   Crutchfield Marketing credit — added 27 Jul 2026.
   Palette-agnostic on purpose: it inherits the footer's own color, so it sits
   as a peer of the copyright line beside it on any ground.

   NO opacity fade. The first version used opacity:.55 and measured 2.0-3.5:1
   contrast, because footers already pass a semi-transparent color and the two
   compounded. Inheriting outright gives 4.6-9.0:1. It recedes because it is
   small, muted and at the edge — not because it is washed out.
   --------------------------------------------------------------------------- */
.cm-credit{
  display:inline-flex;
  align-items:center;
  gap:.42em;
  font-size:.75rem;
  line-height:1;
  letter-spacing:.01em;
  text-decoration:none;
  color:inherit;
  padding:.5em .2em;          /* keeps the tap target >=24px */
  border-radius:999px;
  white-space:nowrap;
}
.cm-credit svg{ height:1.35em; width:auto; flex:none; display:block; }
.cm-credit b{ font-weight:600; }
.cm-credit:hover b,
.cm-credit:focus-visible b{ text-decoration:underline; text-underline-offset:.25em; }
