:root {
  --burgundy: #7a1f22;
  --burgundy-dark: #601719;
  --sage: #7d9471;
  --sage-deep: #4e6344;
  --sage-tint: #eef1ea;
  --paper: #fdfbf7;
  --paper-warm: #f6f1e8;
  --ink: #1c1a18;
  --ink-soft: #56504a;
  --rule: #ded5c8;
  --rule-soft: #ebe4d9;
  --white: #ffffff;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
    Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;

  --wrap: 1180px;
  --gutter: 20px;
  --radius: 2px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

a { color: var(--burgundy); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--burgundy-dark); }

:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}
.on-dark :focus-visible,
.footer :focus-visible,
.announce :focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- layout helpers ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 44px 0; }
.section--tight { padding: 30px 0; }
.section--sage { background: var(--sage-tint); border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); }
.section--warm { background: var(--paper-warm); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 10px;
}
.section-head h2 { font-size: 1.5rem; margin: 0; }
.section-head p { margin: 0; color: var(--ink-soft); font-size: 0.875rem; }
.section-head a { font-size: 0.875rem; font-weight: 600; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage-deep);
  margin: 0 0 8px;
}

/* Near-black rather than burgundy so the focused skip link stays legible
   against the burgundy announcement bar it lands on top of. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 600;
  z-index: 50;
}
.skip-link:focus {
  left: 0;
  color: var(--white);
}
.skip-link:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: -4px;
}

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

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
  cursor: pointer;
}
.btn:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--burgundy);
}
.btn--ghost:hover { background: var(--burgundy); color: var(--white); }
.btn--block { display: block; width: 100%; text-align: center; }

/* ---------- announcement + header ---------- */

.announce {
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 8px var(--gutter);
}
.announce b { font-weight: 600; }
.header {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex: 0 0 auto;
}
.brand img {
  width: 64px;
  height: 42px;
  flex: 0 0 auto;
}
.brand__word {
  font-family: var(--serif);
  font-size: 1.3125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--burgundy);
  display: block;
}
.brand__tag {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: block;
  margin-top: 3px;
}

.nav {
  flex: 1 1 auto;
  min-width: 0;
}
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
}
.nav a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--burgundy); border-bottom-color: var(--burgundy); }
.nav a[aria-current="page"] { color: var(--burgundy); border-bottom-color: var(--burgundy); }

.header__tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.search {
  display: flex;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
  min-width: 0;
}
.search input {
  font: inherit;
  font-size: 0.875rem;
  border: 0;
  background: transparent;
  padding: 8px 10px;
  width: 150px;
  min-width: 0;
  color: var(--ink);
}
.search button {
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 0;
  border-left: 1px solid var(--rule);
  background: var(--paper-warm);
  color: var(--burgundy);
  padding: 8px 12px;
  cursor: pointer;
}
.cart-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.cart-link:hover { color: var(--burgundy); }

/* ---------- hero ---------- */

.hero__band {
  width: 100%;
  overflow: hidden;
  border-bottom: 3px solid var(--burgundy);
  background: var(--ink);
}
/* The storefront crop is 3500x414. At narrow widths its true proportion
   renders as a 46px sliver, so a minimum band height plus object-fit cover
   keeps it readable as a photograph without stretching it. */
.hero__band img {
  width: 100%;
  height: auto;
  min-height: 112px;
  object-fit: cover;
  object-position: 56% 45%;
  display: block;
}
.hero__copy {
  background: var(--paper);
  padding: 34px 0 40px;
}
.hero__copy .wrap {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
@media (min-width: 980px) {
  .hero__copy .wrap { grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); gap: 56px; }
  .hero__copy h1 { font-size: 2.625rem; }
}
.hero__copy h1 {
  font-size: 2rem;
  max-width: 20ch;
  margin-bottom: 14px;
}
.hero__panel {
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 20px 22px;
}
.hero__panel h2 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 12px;
}
.hero__panel dl { margin: 0; font-size: 0.9375rem; }
.hero__panel dt {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 12px;
}
.hero__panel dt:first-child { margin-top: 0; }
.hero__panel dd { margin: 2px 0 0; }
.hero__sub {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 22px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__note {
  margin-top: 18px;
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* ---------- product grid ---------- */

.grid {
  display: grid;
  gap: 22px 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 700px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.card a.card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--sage-tint);
  border: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 10px;
}
.card__monogram {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--sage-deep);
  opacity: 0.75;
}
.card__ph {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage-deep);
}
.card__title {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.3;
  margin: 10px 0 4px;
  color: var(--ink);
  /* two lines reserved so prices stay on a shared baseline across the row
     even when a product name wraps */
  min-height: 2.6em;
}
.card__price {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.card__meta {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin: 4px 0 0;
}

/* Badges live in a wrapping row so a second badge never lands on top of the
   first at narrow widths. */
.card__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.badge {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius);
  background: var(--burgundy);
  color: var(--white);
}
.badge--sage { background: var(--sage-deep); }
/* ---------- category tiles ---------- */

.tiles {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 700px) { .tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.tile {
  display: block;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 16px 14px;
  min-height: 112px;
  min-width: 0;
}
.tile:hover { border-color: var(--burgundy); color: var(--burgundy); }
.tile__name {
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.25;
  display: block;
  margin-bottom: 6px;
}
/* ---------- healdsburg strip ---------- */

.local__intro { max-width: 60ch; margin-bottom: 22px; }
.local__intro p { color: var(--ink-soft); }
.section--sage .card__media { background: var(--white); border-color: var(--rule); }

/* ---------- visit block ---------- */

.visit {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 860px) { .visit { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: start; } }

.visit dl { margin: 0; }
.visit dt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage-deep);
  margin-top: 14px;
}
.visit dt:first-child { margin-top: 0; }
.visit dd { margin: 3px 0 0; font-size: 1rem; }
.visit__photo {
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 8px;
}
.visit__photo img {
  width: 100%;
  min-height: 96px;
  object-fit: cover;
  object-position: 56% 45%;
}
.visit__caption {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin: 8px 0 0;
}
.visit__cta { margin-top: 18px; }

/* ---------- footer ---------- */

.footer {
  background: var(--ink);
  color: #e7e2da;
  padding: 40px 0 28px;
  margin-top: 8px;
}
.footer a { color: #f0e9de; text-decoration: none; }
.footer a:hover { color: var(--white); text-decoration: underline; }
.footer h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9b0a4;
  margin: 0 0 10px;
}
.footer__cols {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 700px) { .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .footer__cols { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 7px; font-size: 0.9375rem; }
.footer__brand-word {
  font-family: var(--serif);
  font-size: 1.0625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.footer p { font-size: 0.9375rem; color: #cfc7bb; }
.footer__legal {
  border-top: 1px solid #3a3630;
  margin-top: 30px;
  padding-top: 16px;
  font-size: 0.8125rem;
  color: #a49b8f;
}
/* ---------- category page ---------- */

.page-head {
  border-bottom: 1px solid var(--rule);
  padding: 30px 0 22px;
  background: var(--white);
}
.page-head h1 { font-size: 1.875rem; margin-bottom: 8px; }
.page-head p { color: var(--ink-soft); max-width: 62ch; margin: 0; }

.crumbs {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  padding: 12px 0 0;
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: 6px; color: var(--rule); }
.crumbs li:last-child::after { content: ""; }

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 24px;
}.sortbox { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sortbox label { font-size: 0.875rem; font-weight: 600; }
.sortbox select {
  font: inherit;
  font-size: 0.875rem;
  padding: 7px 10px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  max-width: 100%;
}
.sortbox .hint { font-size: 0.75rem; color: var(--ink-soft); }

.notebox {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--sage);
  background: var(--white);
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.notebox b { color: var(--ink); }
.notebox p { margin-bottom: 8px; }

/* ---------- product page ---------- */

.product {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
  padding: 28px 0 8px;
}
@media (min-width: 860px) { .product { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 44px; } }

.gallery__main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--sage-tint);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.gallery__monogram {
  font-family: var(--serif);
  font-size: 2.25rem;
  letter-spacing: 0.14em;
  color: var(--sage-deep);
  opacity: 0.8;
}
.gallery__ph {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage-deep);
}
.gallery__note { font-size: 0.8125rem; color: var(--ink-soft); max-width: 34ch; margin: 0; }
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.gallery__thumb {
  aspect-ratio: 1 / 1;
  background: var(--paper-warm);
  border: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  padding: 4px;
}

.buybox h1 { font-size: 1.75rem; margin-bottom: 6px; }
.buybox__brand {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage-deep);
  margin: 0 0 10px;
}
.buybox__price {
  font-family: var(--serif);
  font-size: 1.625rem;
  margin: 0 0 4px;
}
.buybox__avail {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin: 0 0 4px;
}
.buybox__ship { font-size: 0.875rem; color: var(--ink-soft); margin: 0 0 18px; }
.buybox__desc { font-size: 1rem; margin-bottom: 18px; }
.buybox__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.buybox__actions .btn { flex: 1 1 190px; text-align: center; }

.specs { border-top: 1px solid var(--rule-soft); padding-top: 14px; margin-bottom: 20px; }
.specs dl {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 6px 16px;
  margin: 0;
  font-size: 0.875rem;
}
.specs dt { color: var(--ink-soft); }
.specs dd { margin: 0; }

.accordion { border-top: 1px solid var(--rule); }
.accordion details {
  border-bottom: 1px solid var(--rule);
}
.accordion summary {
  cursor: pointer;
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--burgundy);
  line-height: 1;
}
.accordion details[open] summary::after { content: "-"; }
.accordion .accordion__body {
  padding: 0 0 16px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.accordion .accordion__body p:last-child { margin-bottom: 0; }

.statepair {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 700px) { .statepair { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.statepair figure {
  margin: 0;
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 16px;
}
.statepair figcaption {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 12px;
}
.statepair h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.state-demo {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 14px;
}
.state-demo--ph { background: var(--sage-tint); }
.state-demo--live { background: var(--paper-warm); }
.state-demo strong {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.state-demo span { font-size: 0.8125rem; color: var(--ink-soft); max-width: 30ch; }

/* ---------- small screens ---------- */

@media (max-width: 640px) {
  .header__inner { padding-top: 12px; padding-bottom: 12px; }
  .brand__word { font-size: 1.125rem; letter-spacing: 0.13em; }
  .nav { flex-basis: 100%; }
  .nav ul { gap: 4px 16px; }
  .header__tools { flex-basis: 100%; }
  .search { flex: 1 1 auto; }
  .search input { width: 100%; }
  .hero__copy h1 { font-size: 1.625rem; max-width: none; }
  .hero__sub { font-size: 1rem; }
  .hero__ctas .btn { flex: 1 1 100%; text-align: center; }
  .section { padding: 32px 0; }
  .section-head h2 { font-size: 1.3125rem; }
  .page-head h1 { font-size: 1.5rem; }
  .buybox h1 { font-size: 1.4375rem; }
  .gallery__thumb { font-size: 0.5625rem; letter-spacing: 0.06em; }
}

.card__media--photo { background: var(--white); padding: 0; }
.card__media--photo img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.tile--photo { padding: 0; display: flex; flex-direction: column; }
.tile__img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--white);
  border-bottom: 1px solid var(--rule-soft);
}
.tile__img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.tile__body { padding: 14px; }

.gallery__main--photo { background: var(--white); padding: 0; }
.gallery__main--photo img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.gallery__thumb--photo { position: relative; background: var(--white); padding: 0; }
.gallery__thumb--photo img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

/* buybox note under the single CTA (added 2026-08-17 copy fix) */
.buybox__note { font-size: 0.85rem; color: #555; margin-top: 8px; }
.buybox__note a { color: #7a1f22; }

/* badges must paint above the absolutely-positioned product photo */
.card__badges { z-index: 2; }

/* ---------- production storefront layer ----------
   Appended by scripts/build_storefront.py after the approved base stylesheet.
   This layer owns production media, controls, shared chrome, and the compact
   homepage composition. */

/* Controls that only work with scripting render with the hidden attribute.
   The base stylesheet gives .search a flex display, which would otherwise
   beat the attribute, so the attribute wins here. */
[hidden] { display: none !important; }

/* ---------- hero motion band ---------- */

.hero__band--video {
  position: relative;
  height: min(68vh, 650px);
  min-height: 520px;
  background: var(--ink);
  border: 0;
}
/* Two classes, so these beat the base `.hero__band img` rule that framed the
   old photograph band. The poster image and the video must sit on the same
   crop or the band would jump when the fallback appears. */
.hero__band--video .hero__video,
.hero__band--video .hero__fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.hero__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px 0 28px;
  background: rgba(28, 26, 24, 0.92);
  color: var(--white);
}
.hero__content-inner { max-width: 760px; }
.hero__content h1 {
  max-width: 19ch;
  margin: 0 0 10px;
  color: var(--white);
  font-size: 3.1rem;
  line-height: 1.02;
}
.hero__fulfillment {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: #f1ede7;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
}
.hero__fulfillment li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero__fulfillment-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
.hero__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  text-underline-offset: 4px;
}
.hero__link:hover { color: var(--white); }
.hero__note {
  margin: 12px 0 0;
  color: #f1ede7;
  font-size: 0.8125rem;
}
.hero__note-small { font-size: 0.75em; color: inherit; }

/* ---------- call the store ----------
   One green button, identical on every page. The Plaza sage is darkened to
   #4e6b45 so the white label clears WCAG AA: white on #4e6b45 measures
   5.98:1, and the hover shade #3f5738 measures 7.98:1. The focus ring is
   burgundy rather than green, because the ring sits on the light page
   ground beside the button, not on the button itself. */

.callbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #4e6b45;
  border-radius: var(--radius);
  background: #4e6b45;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.callbtn:hover {
  background: #3f5738;
  border-color: #3f5738;
  color: #ffffff;
}
.callbtn:focus-visible {
  outline: 3px solid var(--burgundy);
  outline-offset: 2px;
}
.callbtn__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.page-head__cta { margin: 14px 0 0; }

.header {
  position: relative;
  z-index: 30;
}
.header__tools {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: auto;
  justify-content: flex-end;
  gap: 4px;
}
.search-toggle,
.cart-link,
.menu-toggle,
.header__tools .callbtn {
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.search-toggle,
.cart-link,
.menu-toggle {
  background: transparent;
  color: var(--ink);
}
.search-toggle:hover,
.cart-link:hover,
.menu-toggle:hover {
  background: transparent;
  color: var(--burgundy);
}
.search-toggle,
.cart-link { display: inline-flex; }
.header-tool__icon,
.menu-toggle__icon {
  display: block;
  width: 20px;
  height: 20px;
}
.header__tools .callbtn { border-radius: 50%; }
.search {
  position: absolute;
  z-index: 40;
  top: calc(100% + 10px);
  right: 0;
  display: flex;
  width: 330px;
  max-width: calc(100vw - 40px);
  min-height: 48px;
  border: 1px solid var(--rule);
  background: var(--white);
}
.search input {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  padding: 10px 12px;
}
.search .search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--rule-soft);
  background: var(--white);
  color: var(--burgundy);
}
.search .search__submit:hover { background: var(--paper-warm); }

/* Keep the desktop header on one visual line at laptop widths. */
@media (min-width: 641px) {
  .header__inner {
    flex-wrap: nowrap;
    gap: 12px 22px;
    min-height: 72px;
  }
  .brand { gap: 8px; }
  .brand img { width: 50px; height: auto; }
  .brand__word { font-size: 1.0625rem; letter-spacing: 0.11em; }
  .brand__tag { font-size: 0.625rem; letter-spacing: 0.14em; }
  .nav { flex: 1 1 auto; }
  .nav ul { flex-wrap: nowrap; gap: 4px 20px; }
  .nav a { font-size: 0.8125rem; letter-spacing: 0; white-space: nowrap; }
  .header__tools { flex: 0 0 auto; }
}

/* ---------- compact mobile header ---------- */

.menu-toggle { display: none; }

@media (max-width: 640px) {
  .header__inner {
    display: grid;
    position: relative;
    grid-template-columns: minmax(0, 1fr) repeat(4, 44px);
    align-items: center;
    gap: 2px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .brand {
    min-width: 0;
    gap: 7px;
  }
  .brand img {
    display: none;
  }
  .brand > span { min-width: 0; }
  .brand__word {
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
  .brand__tag {
    font-size: 0.5rem;
    letter-spacing: 0.11em;
    white-space: nowrap;
  }
  .header__tools {
    display: contents;
    margin-left: 0;
  }
  .search-toggle {
    grid-column: 2;
    grid-row: 1;
  }
  .cart-link {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex;
  }
  .header__tools .callbtn {
    grid-column: 4;
    grid-row: 1;
  }
  .menu-toggle {
    grid-column: 5;
    grid-row: 1;
  }
  .header.has-menu .menu-toggle { display: inline-flex; }
  .menu-toggle:focus-visible {
    outline: 3px solid var(--burgundy);
    outline-offset: 2px;
  }
  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 6px;
    border-top: 1px solid var(--rule-soft);
  }
  .nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }
  .nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 7px 0;
  }
  .search {
    top: calc(100% + 7px);
    right: 0;
    width: calc(100vw - 40px);
  }
  .search input { width: 100%; }
  .header.has-menu:not(.is-menu-open) .nav { display: none; }
  .hero__band--video {
    height: calc(100svh - 122px);
    min-height: 500px;
    max-height: 590px;
  }
  .hero__band--video .hero__video,
  .hero__band--video .hero__fallback { object-position: 51% 30%; }
  .hero__content { padding: 22px 0 24px; }
  .hero__content h1 {
    max-width: 16ch;
    margin-bottom: 9px;
    font-size: 2rem;
    line-height: 1.04;
  }
  .hero__fulfillment {
    gap: 7px 18px;
    margin-bottom: 14px;
    font-size: 0.875rem;
  }
  .hero__ctas { gap: 4px 16px; }
  .hero__ctas .btn { flex: 0 0 auto; min-width: 0; }
}

@media (max-width: 350px) {
  .brand img {
    display: block;
    width: 58px;
    height: auto;
  }
  .brand > span { display: none; }
}

/* ---------- visit page and homepage visit block ---------- */

.visit--split { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 768px) {
  .visit--split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
}
.visit__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  min-height: 0;
  object-fit: cover;
  object-position: 58% 45%;
}
.visit__about h3 {
  font-family: var(--serif);
  font-size: 1.125rem;
  margin: 0 0 10px;
}
.visit__about p { color: var(--ink-soft); margin: 0; }
.visit__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.visit__panel { max-width: 640px; }

/* ---------- department links ---------- */

.tile--mark {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 0;
  padding: 4px 0;
  border: 0;
  background: transparent;
}
.tile--mark .tile__img {
  width: 58px;
  aspect-ratio: 1;
  border: 0;
  background: transparent;
}
.tile--mark .tile__img img {
  padding: 2px;
  transition: transform 160ms ease;
}
.tile--mark .tile__body { padding: 0; }
.tile--mark .tile__name {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
}
.tile--mark:hover {
  border-color: transparent;
  color: var(--burgundy);
}
.tile--mark:hover .tile__img img { transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  .tile--mark .tile__img img { transition: none; }
}

/* ---------- compact homepage ---------- */

.home-section { padding: 38px 0; }
.home-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 20px;
  margin: 0 0 18px;
}
.home-section__head h2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.08;
}
.home-section__head > a,
.home-departments__all a {
  flex: 0 0 auto;
  font-size: 0.8125rem;
  font-weight: 600;
  text-underline-offset: 4px;
}
.home-departments {
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--rule-soft);
  background: var(--paper);
}
.home-departments .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 28px;
}
.home-departments .tiles {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 24px;
}
.home-departments .tile--mark {
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 8px;
  padding: 0;
}
.home-departments .tile--mark .tile__img { width: 46px; }
.home-departments__all { margin: 0; white-space: nowrap; }
.home-products .card__media {
  border: 0;
  background: var(--white);
}
.home-products .card__title {
  margin-top: 9px;
  min-height: 0;
}
.home-products .card__meta { display: none; }
.home-local { border: 0; }
@media (min-width: 700px) {
  .home-local .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.home-visit__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 28px;
}
.home-visit__fact {
  min-width: 0;
  border-left: 1px solid var(--rule);
  padding-left: 16px;
}
.home-visit__label {
  display: block;
  margin-bottom: 5px;
  color: var(--sage-deep);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.home-visit__fact address { font-style: normal; }
.home-visit__fact p { margin: 0; }
.home-visit__fact a { color: var(--ink); }
.home-visit__fact a:hover { color: var(--burgundy); }

@media (max-width: 820px) {
  .home-departments .wrap { grid-template-columns: minmax(0, 1fr); }
  .home-departments__all { justify-self: start; }
  .home-visit__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .home-section { padding: 30px 0; }
  .home-section__head { margin-bottom: 14px; }
  .home-section__head h2 { font-size: 1.5rem; }
  .home-departments { padding: 16px 0 18px; }
  .home-departments .tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }
  .home-departments .tile--mark {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 6px;
  }
  .home-departments .tile--mark .tile__img { width: 38px; }
  .home-departments .tile--mark .tile__name { font-size: 0.75rem; }
  .home-products .grid { gap: 20px 12px; }
  .home-products .card__title { font-size: 0.9375rem; }
  .home-visit__facts { gap: 20px 14px; }
  .home-visit__fact { padding-left: 12px; }
}

/* ---------- product gallery ---------- */

button.gallery__thumb {
  font: inherit;
  color: inherit;
  padding: 0;
  cursor: pointer;
  border: 1px solid var(--rule-soft);
}
.gallery__thumb.is-active {
  border-color: var(--burgundy);
  box-shadow: inset 0 0 0 1px var(--burgundy);
}
.gallery__list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.gallery__list img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule-soft);
  background: var(--white);
}

/* ---------- actions and buy box ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 2px;
  font-size: 0.875rem;
  letter-spacing: 0;
}
.btn--ghost {
  min-height: 0;
  padding: 8px 2px;
  border-color: transparent;
  border-bottom-color: currentColor;
  background: transparent;
  color: var(--burgundy);
}
.btn--ghost:hover {
  border-color: transparent;
  border-bottom-color: currentColor;
  background: transparent;
  color: var(--burgundy-dark);
}
.buybox__actions { margin-bottom: 10px; }
.buybox__actions .btn--purchase {
  flex: 0 1 250px;
  min-width: 220px;
}
.buybox__handoff {
  max-width: 46ch;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.buybox__visit {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

/* ---------- shipping ---------- */

.shipping-panel {
  max-width: 720px;
  padding: clamp(24px, 4vw, 38px) 0;
  border: 0;
  border-top: 3px solid var(--burgundy);
  border-bottom: 1px solid var(--rule);
  background: transparent;
}
.shipping-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}
.shipping-panel__lead {
  max-width: 62ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.65;
}
.shipping-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 72px);
}
.shipping-details h2 { margin-top: 0; }
.shipping-details p { max-width: 54ch; }
@media (max-width: 700px) {
  .shipping-details { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  .buybox__actions .btn--purchase {
    flex-basis: 100%;
    width: 100%;
  }
}

/* ---------- search items, department filter, sort state ---------- */

.page-head--shop {
  padding-top: 22px;
  padding-bottom: 18px;
}
.page-head--shop h1 { margin-bottom: 5px; }
.page-head--shop p { max-width: 76ch; }

.shop-shell { border-bottom: 1px solid var(--rule-soft); }
.listing-results { padding: 24px 0 32px; }

.toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(140px, 170px);
  align-items: end;
  gap: 12px 18px;
  margin: 0;
  padding: 18px 0;
}
.toolbar--with-category {
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 220px) minmax(140px, 170px);
}
.itemsearch {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.itemsearch__label { font-size: 0.875rem; font-weight: 600; }
.itemsearch__field { position: relative; width: 100%; min-width: 0; }
.itemsearch__input {
  font: inherit;
  font-size: 0.875rem;
  padding: 8px 10px;
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.itemsearch__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 20;
  width: min(380px, 86vw);
  max-height: 62vh;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 8px 24px rgba(28, 26, 24, 0.14);
}
.itemsearch__opt {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-soft);
}
.itemsearch__opt:last-child { border-bottom: 0; }
/* On small screens the dropdown anchors to the whole control row, never the
   field, so it can never extend past the viewport (390px overflow fix). */
@media (max-width: 640px) {
  .itemsearch { position: relative; }
  .itemsearch__field { position: static; }
  .itemsearch__list { left: 0; right: 0; width: auto; }
}
.itemsearch__opt img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  background: var(--white);
}
.itemsearch__title { font-size: 0.875rem; line-height: 1.25; min-width: 0; }
.itemsearch__price {
  margin-left: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}
.itemsearch__opt:hover,
.itemsearch__opt.is-active {
  background: var(--paper-warm);
  color: var(--burgundy);
}
.itemsearch__opt:focus-visible {
  outline: 3px solid var(--burgundy);
  outline-offset: -3px;
}

.categoryfilter {
  display: grid;
  gap: 6px;
  min-width: 0;
  margin: 0;
}
.categoryfilter label {
  font-size: 0.875rem;
  font-weight: 600;
}
.categoryfilter select {
  font: inherit;
  font-size: 0.875rem;
  min-height: 44px;
  width: 100%;
  max-width: 100%;
  padding: 8px 34px 8px 10px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.sortbox {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.sortbox select {
  width: 100%;
  min-height: 44px;
}

@media (max-width: 640px) {
  .page-head--shop {
    padding-top: 20px;
    padding-bottom: 16px;
  }
  .toolbar,
  .toolbar--with-category {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    padding: 14px 0;
  }
  .toolbar--with-category {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }
  .toolbar .itemsearch { grid-column: 1 / -1; }
  .toolbar:not(.toolbar--with-category) {
    grid-template-columns: minmax(0, 1fr) minmax(108px, 0.72fr);
  }
  .toolbar:not(.toolbar--with-category) .itemsearch,
  .toolbar:not(.toolbar--with-category) .sortbox {
    grid-column: auto;
    width: auto;
  }
  .listing-results { padding-top: 20px; }
  .categoryfilter select { padding-right: 24px; }
}

.nomatch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--burgundy);
  background: var(--white);
  padding: 14px 16px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.nomatch__q { color: var(--ink); font-weight: 600; }
.nomatch__clear {
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--burgundy);
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 6px 12px;
  cursor: pointer;
}
.nomatch__clear:hover { background: var(--white); }

/* ---------- gift wrapping editorial ---------- */

.gift-wrap {
  padding: 28px 0;
  background: var(--sage-tint);
  border-bottom: 1px solid var(--rule-soft);
}
.gift-wrap__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.6fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}
.gift-wrap__media {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
}
.gift-wrap__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  object-position: 50% 52%;
}
.gift-wrap__copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
}
.gift-wrap__copy p:last-child {
  max-width: 32ch;
  margin: 0;
  color: var(--ink-soft);
}
@media (max-width: 700px) {
  .gift-wrap { padding: 20px 0 24px; }
  .gift-wrap__inner { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .gift-wrap__media img { aspect-ratio: 4 / 3; }
}

/* ---------- lean footer ---------- */

.footer {
  margin-top: 0;
  padding: 34px 0 22px;
}
.footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 28px 48px;
}
.footer__identity p {
  max-width: 37ch;
  margin: 0;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 20px;
}
.footer__links li { margin: 0; }
.footer__visit {
  display: grid;
  gap: 5px;
  color: #cfc7bb;
  font-size: 0.875rem;
  font-style: normal;
}
.footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 14px 24px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid #3a3630;
}
.footer__bottom p,
.footer__legal {
  margin: 0;
  padding: 0;
  border: 0;
  color: #a49b8f;
  font-size: 0.75rem;
}
.footer__bottom > p:last-child { justify-self: end; }
.footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 314px;
}
.footer__payment-mark {
  display: block;
  width: 34px;
  height: 24px;
}
@media (max-width: 760px) {
  .footer__main { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .footer__links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__bottom { grid-template-columns: minmax(0, 1fr); }
  .footer__bottom > p:last-child { justify-self: start; }
  .footer__payments { justify-content: flex-start; }
}
@media (max-width: 420px) {
  .footer__links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 360px) {
  .footer__payments { gap: 4px; }
  .footer__payment-mark { width: 31px; height: auto; }
}

/* ---------- motion job 1: identity arrival ---------- */

@media (prefers-reduced-motion: no-preference) {
  @keyframes pg-hero-photo {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes pg-hero-title {
    from { transform: translateY(12px); }
    to { transform: translateY(0); }
  }
  .hero__band--video { animation: pg-hero-photo 600ms ease-out both; }
  .hero__content h1 { animation: pg-hero-title 500ms ease-out both; }
}

/* ---------- motion job 2: interaction feedback ---------- */

.card__media { overflow: hidden; }

@media (hover: hover) {
  .card { transition: transform 180ms ease; }
  .card__media--photo img { transition: transform 180ms ease; }
  .card:hover { transform: translateY(-2px); }
  .card:hover .card__media--photo img { transform: scale(1.015); }
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .card__media--photo img { transition: none; }
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--burgundy);
  outline-offset: 2px;
}
.btn:focus-visible { outline: 3px solid var(--paper); }
.btn--ghost:focus-visible { outline: 3px solid var(--burgundy); }
.footer a:focus-visible { outline: 3px solid var(--paper); }

/* motion job 3, filter feedback, is instant by design: cards are shown and
   hidden with the hidden attribute and no transition. */
