/* ==========================================================================
   MAISON CREMA — Shared Design System
   Extracted literally from the source Stitch reference: Playfair Display +
   Inter + Material Symbols, a black / warm-white / gold-brown token system.
   Pure static CSS. No build step, no framework.
   ========================================================================== */

:root {
  --primary: #000000;
  --on-primary: #ffffff;
  --primary-container: #181c22;
  --on-primary-container: #80848c;
  --secondary: #775a19;
  --on-secondary: #ffffff;
  --secondary-container: #fed488;
  --on-secondary-container: #785a1a;
  --secondary-fixed: #ffdea5;
  --secondary-fixed-dim: #e9c176;
  --on-secondary-fixed-variant: #5d4201;
  --background: #f9f9f9;
  --surface: #f9f9f9;
  --surface-container-low: #f3f3f4;
  --surface-container: #eeeeee;
  --surface-container-high: #e8e8e8;
  --surface-container-highest: #e2e2e2;
  --on-surface: #1a1c1c;
  --on-background: #1a1c1c;
  --on-surface-variant: #45474b;
  --outline: #76777b;
  --outline-variant: #c6c6cb;
  --error: #ba1a1a;
  --max-width: 1280px;
  --max-width-header: 1536px;
  --gutter: 32px;
  --margin-desktop: 64px;
  --margin-mobile: 24px;
  --section-gap: 128px;
  --unit: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-background);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin: 0;
  color: var(--primary);
}

p { margin: 0 0 1.25em 0; }

.icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  color: currentColor;
}
.icon-lg { width: 26px; height: 26px; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--margin-mobile);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--margin-desktop); }
}

/* ==========================================================================
   Typography scale
   ========================================================================== */

.display-lg {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .display-lg { font-size: 56px; letter-spacing: -0.02em; }
}
@media (min-width: 1100px) {
  .display-lg { font-size: 72px; line-height: 1.1; }
}

.headline-lg {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .headline-lg { font-size: 48px; }
}

.headline-md {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .headline-md { font-size: 32px; }
}

.headline-sm {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .headline-sm { font-size: 23px; }
}

.body-lg {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .body-lg { font-size: 18px; }
}

.label-caps {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}

.pull-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.5;
  color: var(--primary);
}
@media (min-width: 768px) {
  .pull-quote { font-size: 24px; }
}

.text-gold { color: var(--secondary); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--on-surface-variant); }
.text-white { color: var(--on-primary); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 0;
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn:disabled, button:disabled, input:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.btn:disabled:hover { transform: none; filter: none; opacity: 0.55; }

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}
.btn-primary:hover { opacity: 0.78; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--on-primary); }

/* Hero CTAs — a slim underlined text link rather than a solid block, so
   the call to action reads as editorial wayfinding, not a box pasted over
   the photograph. Used only inside .hero-buttons (main + hub-page heroes). */
.btn-primary, .btn-outline-light {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding: 0 0 8px;
  border-radius: 0;
  color: var(--on-primary);
}
.btn-primary:hover, .btn-outline-light:hover {
  opacity: 1;
  border-bottom-color: var(--secondary-fixed-dim);
  color: var(--secondary-fixed-dim);
}

/* Gold outline reserved for monetized "Shop on Amazon" CTAs — a slim
   bordered button rather than a filled block, so it reads as a refined
   accent, not a dated gradient "buy now" widget. Fills solid black
   on hover for clear affordance. */
.btn-gold {
  background: var(--background);
  border: 1px solid var(--secondary);
  color: var(--secondary);
}
.btn-gold:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}

.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header — desktop: split nav / centered logo. Mobile: hamburger / logo / search.
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background);
  border-bottom: 1px solid var(--outline-variant);
}

.header-desktop {
  display: none;
}
@media (min-width: 1300px) {
  .header-desktop { display: block; }
}

.header-desktop .header-inner {
  max-width: var(--max-width-header);
  margin: 0 auto;
  padding: var(--unit) var(--margin-desktop);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.header-nav-group {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav-group.left { justify-content: flex-start; }
.header-nav-group.right { justify-content: flex-end; }

.header-nav-group a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--on-surface-variant);
  transition: color 200ms ease;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.header-nav-group a:hover { color: var(--primary); }
.header-nav-group a.active { color: var(--secondary); border-bottom-color: var(--secondary); }

.logo {
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--primary);
  text-align: center;
}

a.header-shop-btn {
  padding: 9px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--secondary);
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease;
}
a.header-shop-btn:hover {
  background: var(--primary);
  color: var(--background);
  border-color: var(--primary);
}

/* Desktop "SHOP GEAR" mega-menu. Pure CSS, no JS: revealed on hover and
   on keyboard focus-within so it stays reachable without a mouse. The
   panel sits flush against the button (top: 100%, no gap) so the hover
   state survives the move from button down into the panel. */
.shop-gear-menu { position: relative; }

.shop-gear-panel {
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  z-index: 110;
}
.shop-gear-menu:hover .shop-gear-panel,
.shop-gear-menu:focus-within .shop-gear-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.shop-gear-panel-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 28px;
  width: max-content;
  max-width: 960px;
  background: var(--background);
  border: 1px solid var(--outline-variant);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  padding: 32px;
}

.shop-gear-col { display: flex; flex-direction: column; }

/* Scoped under .shop-gear-panel-inner (specificity 0-2-0) so these
   deliberately beat .header-nav-group a (0-1-1), the ambient nav-tab
   style that these links inherit by sitting inside the header nav.
   Without that extra scope every link here silently rendered as an
   uppercase 11px nav tab, headers included, no visual hierarchy at all. */
.shop-gear-panel-inner .shop-gear-col-title {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--secondary);
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--secondary);
}
.shop-gear-panel-inner .shop-gear-col-title:hover { color: var(--primary); border-bottom-color: var(--primary); }

.shop-gear-panel-inner .shop-gear-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--on-surface-variant);
  padding: 6px 0;
}
.shop-gear-panel-inner .shop-gear-link:hover { color: var(--primary); }

.header-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px var(--margin-mobile);
}
@media (min-width: 1300px) {
  .header-mobile { display: none; }
}

.header-mobile .logo { font-size: 20px; }

.header-mobile-spacer {
  width: 16px;
  height: 16px;
}

#mobile-menu-toggle { display: none; }

.hamburger-label {
  display: flex;
  width: 16px;
  height: 16px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--on-surface-variant);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 57px 0 0 0;
  background: var(--background);
  z-index: 99;
  overflow-y: auto;
  padding: 8px var(--margin-mobile) 32px;
}

#mobile-menu-toggle:checked ~ .mobile-nav {
  display: block;
}

.mobile-nav a {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  padding: 16px 0;
  border-bottom: 1px solid var(--outline-variant);
}
.mobile-nav a.active { color: var(--secondary); }

/* Mobile "SHOP GEAR" accordion. A native <details>/<summary> element, so
   it expands and collapses with no JavaScript at all. */
.mobile-shop-gear {
  margin: 8px 0 20px;
}

.mobile-shop-gear summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--background);
  background: var(--primary);
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}
.mobile-shop-gear summary::-webkit-details-marker { display: none; }
.mobile-shop-gear summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--background);
  border-bottom: 1.5px solid var(--background);
  transform: rotate(45deg);
  transition: transform 200ms ease;
}
.mobile-shop-gear[open] summary::after { transform: rotate(-135deg); }

.mobile-shop-gear-content {
  padding: 28px 4px 8px;
  border-bottom: 1px solid var(--outline-variant);
}

.mobile-shop-gear-content .shop-gear-col + .shop-gear-col { margin-top: 24px; }

.mobile-shop-gear-content .shop-gear-col-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
}

.mobile-shop-gear-content .mobile-shop-gear-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--on-surface);
  padding: 10px 0;
  border-bottom: 1px solid var(--outline-variant);
}
.mobile-shop-gear-content .shop-gear-col:last-child .mobile-shop-gear-link:last-child { border-bottom: none; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  width: 100%;
  margin-top: var(--section-gap);
  background: var(--primary);
  color: var(--on-primary);
}

.footer-inner {
  max-width: var(--max-width-header);
  margin: 0 auto;
  padding: 72px var(--margin-mobile) 0;
}
@media (min-width: 768px) {
  .footer-inner { padding: 88px var(--margin-desktop) 0; }
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-bottom: 56px;
}
@media (min-width: 900px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--gutter);
  }
}

.footer-brand { max-width: 280px; flex-shrink: 0; }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 30px;
  color: var(--on-primary);
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: var(--secondary-fixed-dim);
  line-height: 1.6;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
  flex: 1;
}
@media (min-width: 640px) {
  .footer-columns { grid-template-columns: repeat(4, 1fr); }
}

.footer-col-title {
  color: var(--secondary-fixed-dim);
  display: block;
  margin-bottom: 20px;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col nav a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.75);
  transition: color 200ms ease;
}
.footer-col nav a:hover { color: var(--on-primary); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
@media (min-width: 700px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright, .footer-disclosure {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.55);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero { height: 870px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--margin-mobile);
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-content { padding: 0 var(--margin-desktop); }
}

.hero-content .display-lg { color: var(--on-primary); max-width: 800px; margin: 24px 0 0; }
.hero-divider { width: 64px; height: 1px; background: var(--secondary); margin: 32px 0; }
.hero-content .body-lg { color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 40px; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.hero-caption {
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 12px;
}
@media (min-width: 900px) {
  .hero-caption { display: flex; right: 48px; }
}
.hero-caption .line { width: 40px; height: 1px; background: var(--secondary); }
.hero-caption span.label-caps { color: rgba(255,255,255,0.85); }

/* Smaller sub-page hero */
.page-hero {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-hero { height: 520px; }
}
.page-hero .hero-content .display-lg { max-width: 760px; }
.page-hero .hero-content .body-lg { margin-bottom: 32px; }

/* ==========================================================================
   Sections
   ========================================================================== */

section { padding: 56px 0; }
@media (min-width: 768px) {
  section { padding: var(--section-gap) 0; }
}

.section-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .section-header.split {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--secondary);
    padding-bottom: 16px;
    margin-bottom: 56px;
  }
}
.section-header.center { align-items: center; text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header .label-caps { color: var(--secondary); display: block; }
.section-header p { color: var(--on-surface-variant); margin: 0; }
.section-header .view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
}
.section-header .view-all:hover { color: var(--secondary); }
.section-header .view-all .material-symbols-outlined { font-size: 16px; transition: transform 200ms ease; }
.section-header .view-all:hover .material-symbols-outlined { transform: translateX(3px); }

.bg-surface-low { background: var(--surface-container-low); }
.bg-surface-high { background: var(--surface-container-highest); }
.bg-primary-section { background: var(--primary); color: var(--on-primary); }
.bg-white { background: var(--background); }
.bg-beige { background: var(--surface-container-low); }
.bg-navy { background: var(--primary); color: var(--on-primary); }
.bg-navy .headline-md, .bg-navy h2, .bg-navy h3 { color: var(--on-primary); }

.hairline-divider {
  height: 1px;
  background: var(--outline-variant);
  border: none;
  margin: 0;
}
.hairline-divider.gold { background: var(--secondary); }

/* ==========================================================================
   Grids
   ========================================================================== */

.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
.grid-8 { grid-template-columns: repeat(1, 1fr); }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-8 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-8 { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Cards — borderless editorial style: image, label, headline, thin divider
   ========================================================================== */

.card {
  background: var(--background);
}
.card.beige { background: var(--surface-container-low); }

.category-card {
  display: block;
  cursor: pointer;
}

.category-card .img-wrap { overflow: hidden; height: 240px; background: var(--surface-container-low); margin-bottom: 24px; }
.category-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.category-card:hover .img-wrap img { transform: scale(1.05); }

.category-card .card-number { color: var(--secondary); margin-bottom: 12px; display: block; }
.category-card h3 { margin-bottom: 12px; }
.category-card .card-divider { width: 32px; height: 1px; background: var(--outline-variant); margin-bottom: 16px; transition: width 300ms ease; }
.category-card:hover .card-divider { width: 64px; }
.category-card p { color: var(--on-surface-variant); font-size: 15px; margin-bottom: 0; }
.category-card .view-link { color: var(--secondary); display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; }
.category-card .view-link .material-symbols-outlined { font-size: 14px; transition: transform 200ms ease; }
.category-card:hover .view-link .material-symbols-outlined { transform: translateX(3px); }

.article-card { display: block; }
.article-card .img-wrap { overflow: hidden; height: 220px; margin-bottom: 20px; background: var(--surface-container-low); }
.article-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.article-card:hover .img-wrap img { transform: scale(1.05); }
.article-card .tag { color: var(--secondary); margin-bottom: 10px; display: block; }
.article-card h3 { margin-bottom: 10px; }
.article-card p { color: var(--on-surface-variant); font-size: 15px; margin-bottom: 12px; }
.article-card .read-link { color: var(--primary); border-bottom: 1px solid var(--secondary); padding-bottom: 2px; font-size: 12px; }

.city-card {
  position: relative;
  display: block;
  height: 340px;
  overflow: hidden;
  background: var(--primary);
}
.city-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 600ms ease, opacity 400ms ease; }
.city-card:hover img { transform: scale(1.05); opacity: 1; }
.city-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%, transparent 100%); }
.city-card .city-content { position: absolute; left: 0; bottom: 0; padding: 24px; z-index: 2; }
.city-card h3 { color: var(--on-primary); margin-bottom: 6px; }
.city-card .label-caps { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; }
.city-card-soon { cursor: default; }
.city-card-soon img { opacity: 0.5; filter: grayscale(60%); }
.city-card-soon:hover img { transform: none; opacity: 0.5; }
.city-card-soon .label-caps { color: rgba(255,255,255,0.6); }

.product-card { background: var(--surface-container-low); padding: 28px; }
.product-card .img-wrap { height: 220px; overflow: hidden; margin-bottom: 20px; background: var(--surface-container-high); }
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-card .brand-badge { color: var(--secondary); margin-bottom: 10px; display: block; }
.product-card h3 { margin-bottom: 8px; font-size: 19px; }
.product-card .spec { color: var(--on-surface-variant); font-size: 14px; margin-bottom: 10px; }
.product-card .price { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--primary); margin-bottom: 18px; display: block; }

/* ==========================================================================
   Asymmetric featured grid
   ========================================================================== */

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
}
@media (min-width: 900px) {
  .featured-grid { grid-template-columns: repeat(12, 1fr); }
  .featured-main { grid-column: span 7; }
  .featured-side { grid-column: span 5; display: flex; flex-direction: column; gap: 48px; }
}
.featured-main .img-wrap { height: 340px; margin-bottom: 24px; }
@media (min-width: 768px) {
  .featured-main .img-wrap { height: 560px; }
}
.featured-side .img-wrap { height: 280px; margin-bottom: 24px; }

/* ==========================================================================
   Bento grid (homepage journal)
   ========================================================================== */

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 800px;
  }
  .bento-1 { grid-column: span 2; grid-row: span 2; }
  .bento-2 { grid-column: span 2; grid-row: span 1; }
  .bento-3 { grid-column: span 2; grid-row: span 1; }
}

.bento-card {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  overflow: hidden;
  background: var(--primary);
}
.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 600ms ease;
}
.bento-card:hover img { transform: scale(1.06); }
.bento-card .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.1) 100%);
}
.bento-card .tag, .bento-card h3, .bento-card p, .bento-card .link {
  position: relative;
  z-index: 2;
}
.bento-card .tag { color: var(--secondary-fixed-dim); margin-bottom: 12px; display: block; }
.bento-card h3 { margin-bottom: 12px; color: var(--on-primary); }
.bento-card p { color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.bento-card .link { color: var(--secondary-fixed-dim); font-size: 12px; }

/* ==========================================================================
   Homepage slideshow — CSS-only horizontal scroll-snap carousel, no JS.
   Prev/next controls are plain anchor links to each slide's id; the browser
   scrolls the track natively via :target-style anchor navigation.
   ========================================================================== */

.slideshow-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--margin-mobile);
  padding: 0 var(--margin-mobile) 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .slideshow-track { padding: 0 var(--margin-desktop) 8px; scroll-padding-left: var(--margin-desktop); }
}
.slideshow-track::-webkit-scrollbar { display: none; }

.slide {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: min(82vw, 400px);
  position: relative;
  height: 480px;
  overflow: hidden;
  display: block;
}
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.slide:hover img { transform: scale(1.06); }
.slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.slide .slide-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px;
  z-index: 2;
}
.slide .slide-content .tag { color: var(--secondary-fixed-dim); display: block; margin-bottom: 10px; }
.slide .slide-content h3 { color: var(--on-primary); margin-bottom: 10px; }
.slide .slide-content p { color: rgba(255,255,255,0.82); margin: 0 0 14px; font-size: 14px; }
.slide .slide-content .read-link { color: var(--on-primary); border-bottom: 1px solid var(--secondary-fixed-dim); padding-bottom: 2px; font-size: 12px; }

.slideshow-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.slideshow-nav a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--outline-variant);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.slideshow-nav a:hover { background: var(--primary); border-color: var(--primary); color: var(--on-primary); }
.slideshow-nav a .icon { width: 16px; height: 16px; }

/* ==========================================================================
   Atmospheric city section wrapper
   ========================================================================== */

.atmospheric-section { background: var(--surface-container-highest); border-top: 1px solid var(--outline-variant); border-bottom: 1px solid var(--outline-variant); }

/* ==========================================================================
   Craft architecture / pillars
   ========================================================================== */

.pillar { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--outline-variant); }
.pillar:last-child { border-bottom: none; }
.pillar .num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 400; color: var(--secondary); min-width: 56px; }
.pillar h3 { margin-bottom: 10px; }
.pillar p { color: var(--on-surface-variant); margin: 0; }

.dot-grid-bg {
  background-image: radial-gradient(var(--outline-variant) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ==========================================================================
   Product spotlight
   ========================================================================== */

.spotlight-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) {
  .spotlight-grid { grid-template-columns: 1.1fr 1fr; }
}
.spotlight-grid img { width: 100%; height: 100%; object-fit: cover; max-height: 560px; background: var(--surface-container-low); }
.spec-row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--outline-variant); }
.spec-row .label-caps { color: var(--on-surface-variant); }
.spec-row .val { font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--primary); }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb {
  padding: 20px 0;
  border-bottom: 1px solid var(--outline-variant);
}
.breadcrumb .label-caps { color: var(--on-surface-variant); }
.breadcrumb .label-caps a:hover { color: var(--secondary); }
.breadcrumb .sep { margin: 0 8px; color: var(--outline-variant); }

/* ==========================================================================
   Article typography
   ========================================================================== */

.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--on-surface-variant);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 20px 0 40px;
}
.article-meta-bar .dot { color: var(--outline-variant); }

.article-body { max-width: 720px; margin: 0 auto; }
.article-body p { font-size: 18px; line-height: 1.8; color: var(--on-surface); }
.article-body h2 {
  font-size: 27px;
  font-weight: 400;
  margin: 56px 0 20px;
}
.article-body h3 {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin: 36px 0 16px;
}
.article-body ul, .article-body ol { font-size: 18px; line-height: 1.8; color: var(--on-surface); padding-left: 24px; margin: 0 0 1.25em; }
.article-body li { margin-bottom: 10px; }

.article-body > p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 0.78;
  float: left;
  padding-right: 14px;
  padding-top: 8px;
  color: var(--secondary);
}

.pull-quote-block {
  border-left: 2px solid var(--secondary);
  padding: 4px 0 4px 28px;
  margin: 44px 0;
}

.article-cta-box {
  background: var(--surface-container-low);
  border: 1px solid var(--outline-variant);
  padding: 28px;
  margin: 44px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.article-cta-box .cta-info { flex: 1; min-width: 220px; }
.article-cta-box .label-caps { color: var(--secondary); margin-bottom: 8px; display: block; }
.article-cta-box h3 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 400; margin: 0 0 6px; }
.article-cta-box .spec-line { color: var(--on-surface-variant); font-size: 14px; margin: 0; }
.article-cta-box .cta-action { display: flex; align-items: center; }

.affiliate-banner {
  background: var(--surface-container-low);
  border-top: 1px solid var(--outline-variant);
  border-bottom: 1px solid var(--outline-variant);
  padding: 28px 0;
  text-align: center;
}
.affiliate-banner p { margin: 0; color: var(--on-surface-variant); font-size: 13px; max-width: 680px; margin: 0 auto; }

/* Dark navy "empirical data" table styling — ported from the equipment-review
   Stitch reference's Thermal Stability Analysis module. */
.comparison-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 15px; background: var(--primary-container); }
.comparison-table th, .comparison-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.comparison-table th:first-child, .comparison-table td:first-child { padding-left: 24px; }
.comparison-table th:last-child, .comparison-table td:last-child { padding-right: 24px; }
.comparison-table thead tr { border-bottom: 1px solid rgba(255,255,255,0.3); }
.comparison-table th { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-primary-container); font-weight: 600; background: transparent; padding-top: 24px; }
.comparison-table tbody tr:last-child td { border-bottom: none; padding-bottom: 24px; }
.comparison-table td { color: var(--on-primary); }
.comparison-table tbody tr:hover { background: rgba(255,255,255,0.04); }

.table-footnote { color: var(--on-surface-variant); font-size: 12px; margin-top: -16px; }

/* ==========================================================================
   Article hero v2 — centered badge, display headline, quote-style subhead,
   full-width image below (not overlaid). Ported literally from the
   equipment-review Stitch reference.
   ========================================================================== */

.article-hero-v2 { padding-top: 48px; }
.article-hero-v2 .container { text-align: center; }
.article-hero-v2 .hero-badge {
  display: inline-block;
  border: 1px solid var(--secondary);
  padding: 8px 16px;
  margin-bottom: 28px;
  color: var(--secondary);
}
.article-hero-v2 h1.display-lg { max-width: 900px; margin: 0 auto; }
.article-hero-v2 p.pull-quote { max-width: 640px; margin: 24px auto 0; color: var(--on-surface-variant); font-size: 19px; }
@media (min-width: 768px) { .article-hero-v2 p.pull-quote { font-size: 22px; } }
.article-hero-v2 .article-meta-bar { justify-content: center; margin: 28px 0 0; }
.article-hero-v2 .hero-v2-img-wrap { margin-top: 40px; height: 320px; overflow: hidden; background: var(--surface-container-low); }
@media (min-width: 768px) { .article-hero-v2 .hero-v2-img-wrap { height: 60vh; max-height: 620px; } }
.article-hero-v2 .hero-v2-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Sticky section-number sidebar + narrower reading column */
.article-layout { display: grid; grid-template-columns: 1fr; gap: var(--gutter); padding: 56px 0; }
@media (min-width: 900px) {
  .article-layout { grid-template-columns: 3fr 9fr; gap: var(--gutter); align-items: start; }
}
.article-sidenav { display: none; }
@media (min-width: 900px) {
  .article-sidenav { display: block; }
}
.article-sidenav-inner {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.article-sidenav-inner a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--on-surface-variant);
  line-height: 1.5;
}
.article-sidenav-inner a.active { color: var(--primary); }
.article-sidenav-inner a:hover { color: var(--secondary); }

.article-layout .article-body { max-width: 760px; margin: 0; }

/* ==========================================================================
   Shop module — the prominent, early product placement directly under the
   hero. Ported from the reference's "Curate Your Ritual" module.
   ========================================================================== */

.shop-module { padding: 48px 0 var(--section-gap); }
.shop-module-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--margin-desktop);
  border-bottom: 1px solid var(--secondary);
  padding-bottom: 16px;
}
.shop-module-grid { display: grid; grid-template-columns: 1fr; gap: var(--gutter); max-width: 640px; margin: 0 auto; }
.shop-module-grid.two { max-width: none; }
@media (min-width: 700px) {
  .shop-module-grid.two { grid-template-columns: repeat(2, 1fr); }
}
.shop-module-card .img-wrap { display: block; overflow: hidden; margin-bottom: 24px; background: var(--surface-container-high); height: 320px; }
@media (min-width: 768px) { .shop-module-card .img-wrap { height: 400px; } }
.shop-module-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.shop-module-card:hover .img-wrap img { transform: scale(1.05); }
.shop-module-card .eyebrow { color: var(--secondary); margin-bottom: 8px; display: block; }
.shop-module-card h3 { margin-bottom: 10px; }
.shop-module-card .desc { color: var(--on-surface-variant); margin-bottom: 20px; }
.shop-module-card .shop-module-footer { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.shop-module-card .price { color: var(--primary); }

/* ==========================================================================
   Product review page
   ========================================================================== */

.verdict-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary-fixed-dim);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px;
  margin-bottom: 16px;
}

.star-rating { color: var(--secondary); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }

.specs-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.specs-table td { padding: 14px 0; border-bottom: 1px solid var(--outline-variant); font-size: 13px; }
.specs-table td:first-child { font-family: 'Inter', sans-serif; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-surface-variant); font-weight: 600; width: 40%; }
.specs-table td:last-child { color: var(--primary); font-weight: 500; }

.pros-cons { display: grid; grid-template-columns: 1fr; gap: 32px; margin: 24px 0; }
@media (min-width: 700px) {
  .pros-cons { grid-template-columns: 1fr 1fr; }
}
.pros-cons .label-caps { display: block; margin-bottom: 16px; }
.pros-cons ul { list-style: none; padding: 0; margin: 0; }
.pros-cons li { padding: 10px 0 10px 24px; position: relative; border-bottom: 1px solid var(--outline-variant); font-size: 15px; color: var(--on-surface); }
.pros-cons .pros li::before { content: "+"; position: absolute; left: 0; color: var(--secondary); font-weight: 600; }
.pros-cons .cons li::before { content: "\2013"; position: absolute; left: 0; color: var(--on-surface-variant); font-weight: 600; }

/* ==========================================================================
   Misc utilities
   ========================================================================== */

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.text-center { text-align: center; }

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

@media (max-width: 1023px) {
  .desktop-only { display: none !important; }
}

/* ==========================================================================
   404 page
   ========================================================================== */

.not-found-section { padding: 128px 0; text-align: center; }
@media (min-width: 768px) {
  .not-found-section { padding: 168px 0; }
}

.not-found-copy { max-width: 560px; margin: 20px auto 0; color: var(--on-surface-variant); }

.not-found-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 560px) {
  .not-found-actions { flex-direction: row; justify-content: center; }
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--outline-variant);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.not-found-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--on-surface-variant);
  transition: color 200ms ease;
}
.not-found-links a:hover { color: var(--primary); }
