/* Designs By Bauer customer website — 2026-07-11 Display Font Cleanup */
:root {
  --forest: #1e2e25;
  --forest-2: #263c30;
  --charcoal: #2f3331;
  --cream: #f2ede1;
  --cream-light: #faf7f0;
  --copper: #b86a3c;
  --sage: #7c8f74;
  --white: #fffdf8;
  --border: rgba(30, 46, 37, 0.18);
  --shadow: 0 24px 70px rgba(30, 46, 37, 0.13);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream-light);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 1000; transform: translateY(-150%);
  background: var(--forest); color: white; padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,240,.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--border); box-shadow: 0 10px 35px rgba(30,46,37,.07); }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-link { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; font-family: "Playfair Display", Georgia, serif; font-size: 1.3rem; font-weight: 700; color: var(--forest); }
.brand-link img { width: 34px; height: 48px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a, .cart-button { text-decoration: none; font-size: .94rem; font-weight: 600; color: var(--charcoal); }
.site-nav a:hover, .cart-button:hover { color: var(--copper); }
.cart-button { border: 0; background: none; padding: 8px 0; cursor: pointer; }
.cart-button span { color: var(--sage); }
.menu-button { display: none; width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-button span:not(.sr-only) { display: block; width: 22px; height: 2px; background: var(--forest); transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { padding: 52px 0 88px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--copper); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; color: var(--forest); line-height: 1.07; margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(3.3rem, 6vw, 5.8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.25rem, 4vw, 3.8rem); letter-spacing: -.035em; margin-bottom: 20px; }
h3 { font-size: 1.45rem; }
.hero-lede { max-width: 610px; margin: 0 0 32px; font-size: 1.14rem; color: #58605c; }
.button-row, .product-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 22px; border-radius: 999px; border: 1px solid transparent; text-decoration: none; font-weight: 700; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: white; box-shadow: 0 12px 25px rgba(30,46,37,.17); }
.button-primary:hover { background: var(--forest-2); }
.button-secondary { background: var(--copper); color: white; }
.button-outline { border-color: var(--forest); color: var(--forest); background: transparent; }
.button-light { background: var(--cream); color: var(--forest); }
.hero-values { display: flex; flex-wrap: wrap; gap: 16px 26px; margin-top: 34px; color: var(--sage); font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.hero-values span::before { content: "✦"; color: var(--copper); margin-right: 8px; }
.hero-visual { position: relative; min-width: 0; }
.product-photo-frame { position: relative; border-radius: 36px; overflow: hidden; background: var(--cream); box-shadow: var(--shadow); transform: rotate(1.2deg); }
.product-photo-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.5); border-radius: inherit; pointer-events: none; }
.product-photo-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.photo-badge { position: absolute; left: 22px; bottom: 22px; display: grid; gap: 3px; background: rgba(30,46,37,.92); color: white; padding: 14px 18px; border-radius: 14px; backdrop-filter: blur(8px); }
.photo-badge small { text-transform: uppercase; letter-spacing: .12em; color: #d8c1aa; font-size: .65rem; font-weight: 800; }
.photo-badge strong { font-family: "Playfair Display", Georgia, serif; font-size: 1.25rem; }
.hero-brand-stamp { position: absolute; width: 150px; right: -42px; bottom: -38px; filter: drop-shadow(0 15px 24px rgba(30,46,37,.22)); transform: rotate(-7deg); }

.collections-section { background: var(--cream); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.text-link { color: var(--forest); text-decoration: none; font-weight: 800; white-space: nowrap; }
.text-link span { color: var(--copper); }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.collection-card { min-width: 0; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); overflow: hidden; text-decoration: none; box-shadow: 0 12px 35px rgba(30,46,37,.05); transition: transform .2s ease, box-shadow .2s ease; }
.collection-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(30,46,37,.11); }
.collection-image { height: 280px; overflow: hidden; background: #eadcc9; }
.collection-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; transition: transform .35s ease; }
.collection-card:hover .collection-image img { transform: scale(1.035); }
.collection-copy { padding: 24px; }
.collection-copy span { color: var(--copper); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.collection-copy h3 { margin: 8px 0 10px; }
.collection-copy p { margin: 0; color: #626a66; }
.collection-mark-wrap { height: 280px; display: grid; place-items: center; background: var(--forest); }
.collection-mark-wrap img { width: 180px; filter: drop-shadow(0 16px 24px rgba(0,0,0,.14)); }
.monogram-wrap { background: linear-gradient(145deg, var(--charcoal), var(--forest)); }
.monogram-wrap img { width: 126px; }

.tumbler-collection { background: var(--cream-light); }
.tumbler-heading { align-items: end; }
.section-intro { max-width: 430px; margin: 0; color: #626a66; }
.theme-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.theme-card { min-width: 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 14px 38px rgba(30,46,37,.07); transition: transform .2s ease, box-shadow .2s ease; }
.theme-card:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(30,46,37,.13); }
.theme-visual { position: relative; min-height: 260px; overflow: hidden; background: #e9dfcf; }
.theme-visual > img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; transition: transform .35s ease; }
.theme-card:hover .theme-visual > img { transform: scale(1.03); }
.theme-photo-pair { display: grid; grid-template-columns: 1fr 1fr; }
.theme-photo-pair > img { min-width: 0; }
.theme-photo-pair > img:first-child { object-position: 46% center; }
.theme-photo-pair > img:last-child { object-position: 54% center; }
.theme-photo-label { position: absolute; left: 16px; top: 16px; padding: 8px 11px; border-radius: 999px; background: rgba(30,46,37,.9); color: white; font-size: .66rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; backdrop-filter: blur(8px); }
.theme-copy { padding: 24px; }
.theme-copy h3 { margin: 6px 0 10px; }
.theme-copy > p:not(.theme-eyebrow) { min-height: 78px; margin: 0; color: #626a66; }
.theme-eyebrow { margin: 0; color: var(--copper); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.theme-shop-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--forest); font-size: .86rem; font-weight: 800; text-decoration: none; }
.theme-shop-link span { color: var(--copper); transition: transform .18s ease; }
.theme-shop-link:hover span { transform: translateX(4px); }
.theme-symbol-visual { display: grid; place-items: center; align-content: center; gap: 12px; isolation: isolate; }
.theme-symbol-visual::before, .theme-symbol-visual::after { content: ""; position: absolute; border-radius: 50%; opacity: .35; z-index: -1; }
.theme-symbol-visual::before { width: 210px; height: 210px; top: -72px; right: -48px; background: rgba(255,255,255,.55); }
.theme-symbol-visual::after { width: 130px; height: 130px; bottom: -46px; left: -28px; border: 1px solid rgba(255,255,255,.65); }
.theme-symbol { font-family: "Playfair Display", Georgia, serif; color: var(--forest); line-height: 1; text-shadow: 0 8px 30px rgba(30,46,37,.12); }
.theme-symbol-large { font-size: 5.2rem; }
.theme-symbol-note { font-size: 7rem; }
.theme-symbol-book { padding: 22px 30px; border: 2px solid rgba(30,46,37,.28); border-radius: 8px 24px 24px 8px; font-size: 4rem; background: rgba(255,255,255,.35); }
.theme-symbol-bake { font-size: 4.7rem; }
.theme-symbol-caption { color: rgba(30,46,37,.72); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.theme-teacher .theme-visual { background: linear-gradient(145deg, #dce9d4, #f5edd4); }
.theme-music .theme-visual { background: linear-gradient(145deg, #d7cfdf, #ead9d0); }
.theme-literature .theme-visual { background: linear-gradient(145deg, #d8e0da, #e9dfcf); }
.theme-baking .theme-visual { background: linear-gradient(145deg, #efd7c7, #f5ead4); }
.theme-order-panel { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; margin-top: 34px; padding: 34px 38px; border-radius: var(--radius-md); background: var(--forest); color: #d9dfd9; box-shadow: 0 18px 48px rgba(30,46,37,.16); }
.theme-order-panel h3 { margin-bottom: 8px; color: var(--cream); font-size: 1.85rem; }
.theme-order-panel p:not(.eyebrow) { max-width: 720px; margin: 0; }
.theme-order-panel .eyebrow { color: #d5966e; }
.theme-order-action { display: grid; justify-items: end; min-width: 210px; }
.theme-order-action strong { font-family: "Playfair Display", Georgia, serif; color: var(--cream); font-size: 2.35rem; line-height: 1; }
.theme-order-action span { margin: 5px 0 14px; color: #b8c1ba; font-size: .74rem; }
.theme-order-action .button { background: var(--cream); color: var(--forest); box-shadow: none; }
.theme-product-selector { margin-top: 34px; padding: 34px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(242,237,225,.92), rgba(255,253,248,.96)); box-shadow: 0 14px 42px rgba(30,46,37,.08); scroll-margin-top: 104px; }
.theme-selector-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.theme-selector-heading h3 { margin-bottom: 8px; font-size: clamp(1.8rem, 3vw, 2.55rem); }
.theme-selector-heading p:not(.eyebrow) { max-width: 720px; margin: 0; color: #5d665f; }
.theme-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.theme-product-card { display: grid; grid-template-columns: .9fr 1fr; min-width: 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 12px 32px rgba(30,46,37,.07); }
.theme-product-image { min-height: 260px; overflow: hidden; background: #e9dfcf; }
.theme-product-image img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.theme-product-copy { display: flex; flex-direction: column; justify-content: center; padding: 24px; }
.theme-product-copy span { color: var(--copper); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.theme-product-copy h4 { margin: 8px 0 10px; font-family: "Playfair Display", Georgia, serif; color: var(--forest); font-size: 1.55rem; line-height: 1.1; }
.theme-product-copy p { margin: 0 0 18px; color: #626a66; }
.theme-product-copy .button { width: fit-content; min-height: 46px; padding-inline: 18px; font-size: .86rem; }

.featured-product { background: var(--cream); }
.product-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.product-media { position: relative; }
.product-media > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.product-tag { position: absolute; left: 20px; top: 20px; padding: 9px 13px; border-radius: 999px; background: var(--copper); color: white; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-details h2 { margin-bottom: 14px; }
.price-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px; }
.price-row strong { font-family: "Playfair Display", Georgia, serif; font-size: 2rem; color: var(--forest); }
.price-row span { color: #6a716d; font-size: .82rem; }
.product-description { font-size: 1.05rem; color: #555e59; }
.details-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 30px 0; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.details-columns h3 { margin-bottom: 12px; font-size: 1.05rem; }
.details-columns ul { margin: 0; padding-left: 20px; color: #5c645f; }
.details-columns li + li { margin-top: 6px; }
.availability-note { display: flex; align-items: center; gap: 9px; margin: 18px 0 0; color: #68716c; font-size: .84rem; }
.availability-note span { width: 9px; height: 9px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 5px rgba(124,143,116,.14); }

.markets-section { background: var(--forest); color: #d9dfd9; padding: 76px 0; }
.markets-section h2 { color: var(--cream); }
.markets-section .eyebrow { color: #d5966e; }
.markets-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.market-panel { justify-self: end; width: min(100%, 430px); padding: 28px 30px; border: 1px solid rgba(242,237,225,.16); border-radius: var(--radius-md); background: rgba(255,255,255,.05); }
.market-panel-label { color: #d5966e; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.market-panel strong { display: block; margin: 9px 0; font-family: "Playfair Display", Georgia, serif; font-size: 2rem; color: var(--cream); }
.market-panel .text-link { color: var(--cream); }
.market-panel-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 10px; }
.market-panel-header small { color: rgba(242,237,225,.68); font-size: .63rem; font-weight: 700; letter-spacing: .04em; text-align: right; }
.market-event-list { display: grid; gap: 8px; max-height: 205px; margin: 10px 0 14px; padding-right: 7px; overflow-y: auto; overscroll-behavior: contain; scroll-snap-type: y proximity; scrollbar-width: thin; scrollbar-color: rgba(242,237,225,.34) rgba(255,255,255,.05); mask-image: linear-gradient(to bottom, #000 0%, #000 84%, transparent 100%); }
.market-event-list::-webkit-scrollbar { width: 8px; }
.market-event-list::-webkit-scrollbar-track { background: rgba(255,255,255,.05); border-radius: 999px; }
.market-event-list::-webkit-scrollbar-thumb { background: rgba(242,237,225,.34); border-radius: 999px; }
.market-event-card { scroll-snap-align: start; padding: 11px 13px 10px; border: 1px solid rgba(242,237,225,.16); border-radius: 14px; background: rgba(255,255,255,.06); }
.market-event-card h3 { margin: 6px 0 3px; color: var(--cream); font-size: .98rem; letter-spacing: -.01em; }
.market-event-card p { margin: 0; color: #d9dfd9; }
.market-event-date { display: block; color: var(--white); font-size: .78rem; font-weight: 800; }
.market-event-time, .market-event-address { display: block; margin-top: 2px; color: #cbd5cd; font-size: .73rem; line-height: 1.3; }
.market-event-status { display: inline-flex; align-items: center; gap: 5px; padding: 3px 7px; border-radius: 999px; background: rgba(213,150,110,.13); color: #e2a178; font-size: .54rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.market-event-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(213,150,110,.12); }
.market-event-status.is-active { background: rgba(124,143,116,.18); color: #dce7d8; }
.market-map-link { display: inline-flex; margin-top: 6px; color: var(--cream); font-size: .7rem; font-weight: 800; text-decoration: none; }
.market-map-link:hover { color: #d5966e; }
.market-contact-link { display: inline-flex; margin-top: 0; }

.story-section { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.story-mark { display: grid; place-items: center; min-height: 470px; border-radius: var(--radius-lg); background: linear-gradient(145deg, #e8dfd0, #f9f5ec); border: 1px solid var(--border); }
.story-mark img { width: min(90%, 460px); filter: drop-shadow(0 25px 35px rgba(30,46,37,.14)); }
.story-copy p:not(.eyebrow) { color: #5c645f; font-size: 1.04rem; }

.contact-section { background: var(--cream-light); }
.contact-panel { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 42px 48px; border-radius: var(--radius-lg); background: var(--copper); color: white; box-shadow: 0 20px 50px rgba(184,106,60,.18); }
.contact-panel img { width: 72px; height: 100px; object-fit: contain; }
.contact-panel h2 { color: white; margin-bottom: 8px; }
.contact-panel .eyebrow { color: #ffe3d1; }
.contact-panel p { margin-bottom: 0; }

.site-footer { padding: 46px 0; background: var(--charcoal); color: #d7ddd8; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 58px; }
.footer-brand strong { display: block; color: white; font-family: "Playfair Display", Georgia, serif; font-size: 1.15rem; }
.footer-brand span { font-size: .82rem; color: #aeb8b1; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: white; text-decoration: none; font-weight: 600; font-size: .85rem; }
.copyright { grid-column: 1 / -1; margin: 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #98a29b; font-size: .78rem; }

.toast { position: fixed; right: 22px; bottom: 22px; z-index: 100; width: min(360px, calc(100% - 44px)); padding: 18px 20px; border-radius: 16px; background: var(--charcoal); color: white; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.toast strong, .toast span { display: block; }
.toast span { margin-top: 4px; color: #c9d1cc; font-size: .84rem; }
.toast[hidden] { display: none; }

@media (max-width: 900px) {
  .section { padding: 76px 0; }
  .hero-grid, .product-grid, .markets-grid, .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 34px; }
  .hero-copy { text-align: center; }
  .hero-lede { margin-inline: auto; }
  .button-row, .hero-values { justify-content: center; }
  .hero-visual { max-width: 660px; margin-inline: auto; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .theme-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .theme-card:last-child { grid-column: 1 / -1; }
  .theme-order-panel { grid-template-columns: 1fr; }
  .theme-order-action { justify-items: start; }
  .collection-card:last-child { grid-column: 1 / -1; }
  .story-mark { min-height: 380px; }
  .contact-panel { grid-template-columns: auto 1fr; }
  .contact-panel .button { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; }
  .brand-link { font-size: 1.02rem; }
  .brand-link img { width: 28px; height: 40px; }
  .menu-button { display: flex; }
  .site-nav { position: absolute; left: 14px; right: 14px; top: calc(100% + 8px); display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 14px; border: 1px solid var(--border); border-radius: 18px; background: var(--white); box-shadow: 0 20px 50px rgba(30,46,37,.14); }
  .site-nav.is-open { display: flex; }
  .site-nav a, .cart-button { width: 100%; text-align: left; padding: 13px 12px; border-radius: 10px; }
  .site-nav a:hover, .cart-button:hover { background: var(--cream); }
  h1 { font-size: clamp(2.8rem, 13vw, 4.25rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .hero { padding-bottom: 68px; }
  .hero-grid { gap: 44px; }
  .hero-values { gap: 11px; flex-direction: column; }
  .hero-brand-stamp { width: 108px; right: -6px; bottom: -28px; }
  .photo-badge { left: 14px; bottom: 14px; }
  .section-heading { align-items: start; flex-direction: column; }
  .collection-grid { grid-template-columns: 1fr; }
  .theme-grid { grid-template-columns: 1fr; }
  .theme-card:last-child { grid-column: auto; }
  .tumbler-heading { gap: 14px; }
  .collection-card:last-child { grid-column: auto; }
  .collection-image, .collection-mark-wrap { height: 245px; }
  .details-columns { grid-template-columns: 1fr; gap: 24px; }
  .price-row { align-items: flex-start; flex-direction: column; gap: 2px; }
  .market-panel { padding: 24px; }
  .market-panel-header { align-items: flex-start; flex-direction: column; gap: 6px; }
  .market-panel-header small { text-align: left; }
  .market-event-list { max-height: 240px; padding-right: 6px; }
  .market-event-card { padding: 13px 14px; }
  .product-actions { flex-direction: column; }
  .product-actions .button { width: 100%; }
  .theme-copy > p:not(.theme-eyebrow) { min-height: 0; }
  .theme-order-panel { padding: 28px 24px; }
  .theme-order-action { width: 100%; }
  .theme-order-action .button { width: 100%; }
  .story-mark { min-height: 300px; }
  .contact-panel { grid-template-columns: 1fr; text-align: center; padding: 36px 24px; }
  .contact-panel img { margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 16px; }
}

@media (max-width: 900px) {
  .theme-selector-heading { align-items: start; flex-direction: column; }
  .theme-product-card { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .theme-product-selector { padding: 24px 18px; }
  .theme-product-grid { grid-template-columns: 1fr; }
  .theme-product-copy .button { width: 100%; }
}

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

/* Outdoors tumbler chooser modal */
.design-modal[hidden] { display: none; }
.design-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 24px; }
.design-modal-backdrop { position: absolute; inset: 0; background: rgba(17, 27, 22, .62); backdrop-filter: blur(8px); }
.design-modal-panel { position: relative; z-index: 1; width: min(100%, 980px); max-height: min(760px, calc(100vh - 48px)); overflow-x: hidden; overflow-y: auto; border: 1px solid rgba(242,237,225,.32); border-radius: 30px; background: var(--cream-light); box-shadow: 0 28px 90px rgba(0,0,0,.32); overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: rgba(30,46,37,.32) rgba(30,46,37,.08); }
.design-modal-panel::-webkit-scrollbar { width: 9px; }
.design-modal-panel::-webkit-scrollbar-track { background: rgba(30,46,37,.08); border-radius: 999px; }
.design-modal-panel::-webkit-scrollbar-thumb { background: rgba(30,46,37,.32); border-radius: 999px; }
.design-modal-close { position: absolute; right: 18px; top: 16px; z-index: 2; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 999px; background: var(--white); color: var(--forest); font-size: 1.6rem; line-height: 1; cursor: pointer; box-shadow: 0 10px 24px rgba(30,46,37,.10); }
.design-modal-close:hover { background: var(--cream); }
.design-modal-heading { padding: 34px 72px 18px 34px; }
.design-modal-heading h2 { margin-bottom: 10px; font-size: clamp(2rem, 4vw, 3.2rem); }
.design-modal-heading p:not(.eyebrow) { max-width: 720px; margin: 0; color: #5d665f; }
.design-modal-reel { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(320px, 1fr); gap: 18px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; padding: 8px 34px 34px; scrollbar-width: thin; scrollbar-color: rgba(30,46,37,.32) rgba(30,46,37,.08); }
.design-modal-reel::-webkit-scrollbar { height: 9px; }
.design-modal-reel::-webkit-scrollbar-track { background: rgba(30,46,37,.08); border-radius: 999px; }
.design-modal-reel::-webkit-scrollbar-thumb { background: rgba(30,46,37,.32); border-radius: 999px; }
.design-choice-card { scroll-snap-align: start; min-width: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 24px; background: var(--white); box-shadow: 0 12px 32px rgba(30,46,37,.08); }
.design-choice-image { aspect-ratio: 4 / 5; height: auto; overflow: hidden; background: #e9dfcf; }
.design-choice-image img { width: 100%; height: 100%; object-fit: cover; object-position: center center; padding: 0; }
.design-choice-copy { padding: 24px; }
.design-choice-copy span { color: var(--copper); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.design-choice-copy h3 { margin: 8px 0 10px; font-size: 1.7rem; }
.design-choice-copy p { margin: 0 0 18px; color: #626a66; }
.design-choice-copy .button { min-height: 46px; padding-inline: 18px; font-size: .88rem; }
body.modal-open { overflow: hidden; }

@media (max-width: 720px) {
  .design-modal { padding: 14px; align-items: end; }
  .design-modal-panel { width: 100%; max-height: calc(100vh - 28px); border-radius: 24px 24px 0 0; overflow-y: auto; }
  .design-modal-heading { padding: 28px 62px 14px 20px; }
  .design-modal-reel { grid-auto-columns: minmax(78%, 1fr); gap: 14px; padding: 6px 20px 26px; }
  .design-choice-image { aspect-ratio: 4 / 5; height: auto; }
  .design-choice-copy { padding: 20px; }
  .design-choice-copy .button { width: 100%; }
}

/* Website Operations Phase 1B */
.website-mode-banner {
  position: sticky;
  top: 76px;
  z-index: 48;
  border-bottom: 1px solid rgba(29, 78, 216, .2);
  background: rgba(239, 246, 255, .97);
  color: #173b6d;
  box-shadow: 0 10px 28px rgba(30, 64, 175, .08);
}

.website-mode-banner[hidden] { display: none; }

.website-mode-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding-block: 10px;
  text-align: center;
  font-size: .86rem;
  line-height: 1.4;
}

.website-mode-banner-inner strong {
  color: #1d4ed8;
  white-space: nowrap;
}

body[data-website-mode="testing"] .website-mode-banner {
  display: block;
}

.website-offline-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(30, 46, 37, .92);
  backdrop-filter: blur(10px);
}

.website-offline-overlay[hidden] { display: none; }

.website-offline-card {
  width: min(620px, 100%);
  padding: 44px;
  border: 1px solid rgba(242, 237, 225, .34);
  border-radius: 28px;
  background: var(--cream-light);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .3);
  text-align: center;
}

.website-offline-card img {
  width: 64px;
  height: auto;
  margin-bottom: 18px;
}

.website-offline-card h2 { margin-bottom: 12px; }
.website-offline-card p:not(.eyebrow) { max-width: 480px; margin-inline: auto; color: #5c645f; }
.website-offline-card .button { margin-top: 22px; }
body.website-operations-offline { overflow: hidden; }

@media (max-width: 720px) {
  .website-mode-banner { top: 72px; }
  .website-mode-banner-inner { align-items: flex-start; flex-direction: column; gap: 3px; text-align: left; }
  .website-mode-banner-inner strong { white-space: normal; }
  .website-offline-card { padding: 34px 22px; border-radius: 22px; }
}
