/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body { margin: 0; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; }
button { font: inherit; }

/* ============ THEME TOKENS — Diamond & Ridge Mercantile ============ */
:root {
  --cream:        #f8f2e6;
  --cream-deep:   #efe4cf;
  --paper:        #fffdf9;
  --ink:          #2c2419;
  --ink-soft:     #574a38;
  --terracotta:   #c1603c;
  --terracotta-dk:#9c4a2c;
  --terracotta-lt:#e8a180;
  --sage:         #7c8b6f;
  --sage-dk:      #5c6a51;
  --sage-lt:      #b9c6ac;
  --gold:         #c9a24b;
  --gold-lt:      #e6cd94;
  --line:         #dcd0b8;

  --font-head: 'Outfit', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(44,36,25,0.08);
  --shadow-md: 0 10px 30px rgba(44,36,25,0.14);
  --shadow-lg: 0 20px 50px rgba(44,36,25,0.22);
  --maxw: 1200px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; margin: 0 0 0.5em; color: var(--ink); }
p { margin: 0 0 1em; }
.serif { font-family: var(--font-serif); font-weight: 400; font-style: normal; }
.eyebrow {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.72rem; font-weight: 600; color: var(--terracotta-dk);
  display: inline-flex; align-items: center; gap: 0.5em;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--terracotta); display: inline-block; }
.price { font-family: var(--font-mono); font-weight: 600; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 640px) { .wrap { padding-inline: 2rem; } }

section { padding-block: clamp(3rem, 7vw, 6rem); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--terracotta-dk);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--ink); color: var(--cream); padding: 0.9em 1.4em;
  border-radius: 0 0 8px 0; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 0.85em 1.7em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color .18s ease;
  line-height: 1.1; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--terracotta); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--terracotta-dk); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-light:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-sm { padding: 0.6em 1.2em; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(248, 242, 230, 0.9);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.9rem;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: conic-gradient(from 220deg, var(--terracotta), var(--gold), var(--sage), var(--terracotta));
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word strong { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; letter-spacing: 0.01em; }
.brand-word span { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 2rem; align-items: center; }
.main-nav a {
  text-decoration: none; font-weight: 500; font-size: 0.96rem; color: var(--ink);
  position: relative; padding-block: 0.3em;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--terracotta); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--terracotta-dk); font-weight: 600; }
.main-nav a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

.icon-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); cursor: pointer; color: var(--ink); transition: background .18s ease, transform .18s ease;
}
.icon-btn:hover { background: var(--cream-deep); transform: translateY(-1px); }
.icon-btn svg { width: 21px; height: 21px; }

.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--terracotta); color: var(--paper);
  font-family: var(--font-mono); font-size: 0.66rem; font-weight: 700;
  min-width: 19px; height: 19px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding-inline: 3px; border: 2px solid var(--cream);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.cart-badge.bump { animation: bump .35s ease; }
@keyframes bump { 0%{transform:scale(1);} 40%{transform:scale(1.35);} 100%{transform:scale(1);} }
@media (prefers-reduced-motion: reduce) { .cart-badge.bump { animation: none; } }

.hamburger { display: inline-flex; }
@media (min-width: 900px) {
  .main-nav { display: block; }
  .hamburger { display: none; }
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px); height: 100%;
  background: var(--paper); z-index: 700; padding: 1.5rem;
  transform: translateX(100%); transition: transform 0.32s cubic-bezier(.65,0,.35,1);
  box-shadow: var(--shadow-lg); overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.3rem; }
.mobile-menu a {
  display: block; padding: 0.9em 0.4em; text-decoration: none; font-size: 1.15rem; font-weight: 600;
  border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-menu a.is-active { color: var(--terracotta-dk); }
.scrim {
  position: fixed; inset: 0; background: rgba(44,36,25,0.45); z-index: 600;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.scrim.show { opacity: 1; pointer-events: auto; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden; padding-block: clamp(3rem, 9vw, 7rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(201,162,75,0.28), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(124,139,111,0.25), transparent 50%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; } }
.hero h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); margin-bottom: 0.35em; }
.hero h1 em { font-style: normal; font-family: var(--font-serif); color: var(--terracotta-dk); font-size: 1.05em; }
.hero-lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-size: 1.5rem; font-family: var(--font-head); color: var(--terracotta-dk); }
.hero-stats div span { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); }

.hero-art {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid var(--paper);
  aspect-ratio: 4/5; background: linear-gradient(140deg, var(--terracotta) 0%, var(--gold) 55%, var(--sage) 100%);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: normal; }
.hero-art .hero-art-tag {
  position: absolute; left: 1rem; bottom: 1rem; background: rgba(255,253,249,0.92);
  padding: 0.6em 1em; border-radius: var(--radius-sm); font-family: var(--font-mono);
  font-size: 0.72rem; box-shadow: var(--shadow-sm); color: var(--ink);
}

/* ============ SECTION HEADERS ============ */
.section-head { max-width: 60ch; margin-bottom: 2.4rem; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-head-row {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

/* ============ PRODUCT GRID ============ */
.product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1080px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--paper); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.product-media {
  aspect-ratio: 1/1; position: relative; overflow: hidden;
}
.product-media::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.35) 1px, transparent 1.4px);
  background-size: 14px 14px; mix-blend-mode: overlay; opacity: 0.6;
}
.product-media svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.pm-1 { background: linear-gradient(135deg, #d98a4e 0%, #c1603c 55%, #7c4326 100%); }
.pm-2 { background: linear-gradient(160deg, #8a9a7d 0%, #5c6a51 100%); }
.pm-3 { background: linear-gradient(135deg, #e6cd94 0%, #c9a24b 60%, #8a6a2c 100%); }
.pm-4 { background: linear-gradient(150deg, #f2c9a0 0%, #c1603c 70%); }
.pm-5 { background: linear-gradient(135deg, #b9c6ac 0%, #7c8b6f 60%, #465340 100%); }
.pm-6 { background: linear-gradient(160deg, #6b4630 0%, #9c4a2c 55%, #c1603c 100%); }
.pm-7 { background: linear-gradient(135deg, #efe4cf 0%, #d9c6a0 55%, #b9a06e 100%); }
.pm-8 { background: linear-gradient(150deg, #c9a24b 0%, #7c8b6f 100%); }

.product-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage-dk); }
.product-name { font-size: 1.02rem; font-weight: 600; margin: 0; line-height: 1.3; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; padding-top: 0.6rem; }
.product-price { font-size: 1.02rem; color: var(--terracotta-dk); }

.add-btn {
  display: inline-flex; align-items: center; gap: 0.4em; background: var(--ink); color: var(--cream);
  border: none; border-radius: 999px; padding: 0.55em 0.95em; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: background 0.18s ease, transform 0.18s ease; white-space: nowrap;
}
.add-btn:hover { background: var(--terracotta-dk); transform: translateY(-1px); }
.add-btn svg { width: 14px; height: 14px; }
.add-btn.added { background: var(--sage-dk); }

/* ============ COLLECTIONS ============ */
.collections-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.1rem; }
@media (min-width: 720px) { .collections-grid { grid-template-columns: repeat(4,1fr); gap: 1.4rem; } }

.collection-tile {
  position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4;
  display: flex; align-items: flex-end; padding: 1.2rem; text-decoration: none; color: var(--paper);
  box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none; cursor: pointer; font: inherit; text-align: left; width: 100%;
}
.collection-tile:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-md); }
.collection-tile::before { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,15,8,0.75) 0%, rgba(20,15,8,0.05) 55%); }
.collection-tile-bg { position: absolute; inset: 0; z-index: -1; }
.ct-1 { background: linear-gradient(150deg, #c1603c, #7c4326); }
.ct-2 { background: linear-gradient(150deg, #7c8b6f, #3f4a38); }
.ct-3 { background: linear-gradient(150deg, #c9a24b, #8a6a2c); }
.ct-4 { background: linear-gradient(150deg, #9c4a2c, #574a38); }
.collection-tile span { position: relative; font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; display: block; margin-bottom: 0.2em; }
.collection-tile h3 { position: relative; color: var(--paper); margin: 0; font-size: 1.25rem; }

/* ============ NEW ARRIVALS STRIP ============ */
.strip-wrap { overflow-x: auto; padding-bottom: 0.6rem; scrollbar-width: thin; scrollbar-color: var(--terracotta) var(--cream-deep); }
.strip {
  display: flex; gap: 1.1rem;
}
.strip-card {
  flex: 0 0 220px; background: var(--paper); border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.strip-media { aspect-ratio: 4/3; }
.strip-body { padding: 0.9rem 1rem; }
.strip-body .product-name { font-size: 0.92rem; }
.strip-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.08em; background: var(--gold-lt); color: var(--terracotta-dk); padding: 0.25em 0.6em; border-radius: 999px;
  margin-bottom: 0.5rem;
}

/* ============ STORY ============ */
.story { background: var(--paper); border-block: 1px solid var(--line); }
.story-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .story-grid { grid-template-columns: 0.9fr 1.1fr; } }
.story-photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4/3; background: linear-gradient(140deg, var(--sage), var(--sage-dk));
  border: 6px solid var(--cream);
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-copy h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.story-copy p { color: var(--ink-soft); font-size: 1.05rem; }
.story-makers { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.maker-chip { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; }
.maker-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.maker-dot.c1 { background: var(--terracotta); }
.maker-dot.c2 { background: var(--sage); }
.maker-dot.c3 { background: var(--gold); }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: linear-gradient(135deg, var(--ink) 0%, #3a2f21 100%);
  color: var(--cream); border-radius: var(--radius-lg); padding: clamp(2rem, 6vw, 3.5rem);
  display: grid; gap: 1.5rem; align-items: center;
  box-shadow: var(--shadow-md);
}
@media (min-width: 800px) { .newsletter { grid-template-columns: 1.1fr 1fr; } }
.newsletter h2 { color: var(--cream); font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.newsletter p { color: #d8cbb4; }
.newsletter-form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1 1 220px; padding: 0.9em 1.1em; border-radius: 999px; border: 1px solid #5a4c37;
  background: rgba(255,253,249,0.06); color: var(--cream); font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: #b7a98c; }
.newsletter-msg { font-family: var(--font-mono); font-size: 0.85rem; margin-top: 0.8rem; color: var(--gold-lt); min-height: 1.2em; }

/* ============ VISIT ============ */
.visit-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.visit-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow-sm);
}
.visit-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.visit-row { display: flex; gap: 0.9rem; align-items: flex-start; }
.visit-row svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--terracotta-dk); margin-top: 2px; }
.visit-row strong { display: block; font-size: 0.95rem; }
.visit-row span { color: var(--ink-soft); font-size: 0.92rem; }

table.hours { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
table.hours th { text-align: left; font-family: var(--font-mono); text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.08em; color: var(--sage-dk); padding-bottom: 0.6rem; border-bottom: 1px solid var(--line); }
table.hours td { padding: 0.55em 0; border-bottom: 1px dashed var(--line); }
table.hours tr:last-child td { border-bottom: none; }
.hours-note {
  margin-top: 1.2rem; padding: 0.9rem 1.1rem; background: var(--cream-deep); border-radius: var(--radius-sm);
  font-size: 0.88rem; display: flex; gap: 0.6rem; align-items: flex-start;
}
.hours-note svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--terracotta-dk); margin-top: 1px; }

/* ============ REVIEWS ============ */
.reviews-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }
.review-card {
  background: var(--paper); border-radius: var(--radius-md); padding: 1.6rem; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.8rem;
}
.stars { display: flex; gap: 3px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.review-quote { font-family: var(--font-serif); font-size: 1.2rem; line-height: 1.4; color: var(--ink); }
.review-who { font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============ FOOTER ============ */
footer.site-footer { background: var(--ink); color: #e8dfcd; padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand strong { font-family: var(--font-head); font-size: 1.1rem; color: var(--paper); }
footer.site-footer h4 { color: var(--paper); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); margin-bottom: 1rem; }
footer.site-footer a { color: #cabfa4; text-decoration: none; font-size: 0.92rem; }
footer.site-footer a:hover { color: var(--gold-lt); }
footer.site-footer ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-desc { color: #b7a98c; font-size: 0.92rem; max-width: 34ch; }
.footer-nap { font-style: normal; color: #cabfa4; font-size: 0.92rem; line-height: 1.7; }
.footer-nap a { color: #cabfa4; }
.footer-nap a:hover { color: var(--gold-lt); }

.payment-icons { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1rem; }
.payment-icons svg { width: 42px; height: 28px; border-radius: 4px; }

.social-row { display: flex; gap: 0.7rem; margin-top: 1rem; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid #4a3d2a;
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { border-color: var(--gold); }
.social-row svg { width: 17px; height: 17px; }

.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid #4a3d2a;
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: #9c8f74;
}

/* ============ CART DRAWER ============ */
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(92vw, 400px);
  background: var(--paper); z-index: 800; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform 0.34s cubic-bezier(.65,0,.35,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.4rem; border-bottom: 1px solid var(--line); }
.cart-head h2 { margin: 0; font-size: 1.2rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; display: flex; flex-direction: column; gap: 0.9rem; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 2.5rem 1rem; font-size: 0.95rem; }
.cart-item { display: flex; gap: 0.8rem; align-items: center; padding-bottom: 0.9rem; border-bottom: 1px dashed var(--line); }
.cart-item-media { width: 54px; height: 54px; border-radius: 10px; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info strong { display: block; font-size: 0.88rem; line-height: 1.3; }
.cart-item-info span { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); }
.cart-item-qty { display: flex; align-items: center; gap: 0.4rem; }
.qty-btn {
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line); background: var(--cream);
  display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.9rem; line-height: 1;
}
.cart-foot { padding: 1.2rem 1.4rem 1.6rem; border-top: 1px solid var(--line); }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 1rem; font-size: 1.05rem; }
.cart-checkout-msg { font-family: var(--font-mono); font-size: 0.82rem; color: var(--sage-dk); margin-top: 0.8rem; text-align: center; min-height: 1.2em; }

/* ============ TOAST ============ */
.toast {
  position: fixed; left: 50%; bottom: 1.6rem; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--cream); padding: 0.85em 1.4em; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500; box-shadow: var(--shadow-lg); z-index: 900;
  opacity: 0; pointer-events: none; transition: opacity 0.28s ease, transform 0.28s ease;
  display: flex; align-items: center; gap: 0.6em;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--gold-lt); flex-shrink: 0; }

/* ============ CONCEPT BADGE ============ */
.concept-badge {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 950;
  background: rgba(44,36,25,0.82); color: var(--cream); backdrop-filter: blur(4px);
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.03em;
  padding: 0.6em 0.9em; border-radius: 999px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5em; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,253,249,0.15);
}
.concept-badge:hover { background: rgba(44,36,25,0.95); }
.concept-badge svg { width: 12px; height: 12px; color: var(--gold-lt); }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 1; transform: none; }
.js-reveal-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-reveal-ready .reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal-ready .reveal { opacity: 1; transform: none; transition: none; }
}

.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;
}

.divider-note { text-align: center; color: var(--ink-soft); font-size: 0.85rem; margin-top: 2rem; font-family: var(--font-mono); }

/* ============ ADDED FOR MULTI-PAGE BUILD (same palette tokens) ============ */

/* Interior page hero (smaller than the home hero) */
.page-hero {
  position: relative; overflow: hidden; padding-block: clamp(2.4rem, 6vw, 4rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(201,162,75,0.24), transparent 55%),
    radial-gradient(circle at 6% 92%, rgba(124,139,111,0.20), transparent 50%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.1rem); margin-bottom: 0.3em; max-width: 20ch; }
.page-hero h1 em { font-style: normal; font-family: var(--font-serif); color: var(--terracotta-dk); }
.page-hero p { font-size: 1.1rem; color: var(--ink-soft); max-width: 54ch; margin: 0; }

/* Breadcrumb */
.breadcrumb { padding-block: 0.9rem 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.breadcrumb a { text-decoration: none; color: var(--terracotta-dk); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li[aria-current="page"] { color: var(--ink-soft); }
.breadcrumb .sep { opacity: 0.5; }

/* Prose block for long-form local content */
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-top: 2.2rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6rem; }
.prose p { color: var(--ink-soft); font-size: 1.02rem; }
.prose ul.bullets { margin: 0 0 1.2rem; padding-left: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.prose ul.bullets li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); }
.prose ul.bullets li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); }

/* Info card grid (directions / parking / area highlights) */
.info-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .info-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .info-grid.cols-3 { grid-template-columns: repeat(3,1fr); } }
.info-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.info-card h3 svg { width: 20px; height: 20px; color: var(--terracotta-dk); flex-shrink: 0; }
.info-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* Towns / areas served chips */
.town-grid { display: grid; gap: 0.9rem; grid-template-columns: repeat(2,1fr); }
@media (min-width: 720px) { .town-grid { grid-template-columns: repeat(3,1fr); } }
.town-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.15rem; box-shadow: var(--shadow-sm); }
.town-card strong { display: block; font-size: 0.98rem; }
.town-card span { font-size: 0.86rem; color: var(--ink-soft); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; max-width: 70ch; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm); }
.faq-item h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.faq-item p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, #3a2f21 100%); color: var(--cream);
  border-radius: var(--radius-lg); padding: clamp(2rem, 6vw, 3.5rem); text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color: var(--cream); font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.cta-band p { color: #d8cbb4; max-width: 52ch; margin-inline: auto; }
.cta-band .hero-ctas { justify-content: center; }

/* Teaser cards (home) */
.teaser-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 680px) { .teaser-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .teaser-grid { grid-template-columns: repeat(3,1fr); } }
.teaser-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.6rem 1.7rem; box-shadow: var(--shadow-sm); text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: 0.5rem; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.teaser-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.teaser-card .teaser-ico { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--cream-deep); color: var(--terracotta-dk); margin-bottom: 0.4rem; }
.teaser-card .teaser-ico svg { width: 22px; height: 22px; }
.teaser-card h3 { font-size: 1.2rem; margin: 0; }
.teaser-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.teaser-card .teaser-more { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--terracotta-dk); margin-top: auto; }

/* Contact form */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sage-dk); }
.field input, .field textarea, .field select {
  padding: 0.8em 1em; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); font-size: 0.96rem; font-family: var(--font-body);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-msg { font-family: var(--font-mono); font-size: 0.85rem; color: var(--sage-dk); min-height: 1.2em; margin-top: 0.4rem; }

/* Simple two-column feature row */
.feature-split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .feature-split { grid-template-columns: 1fr 1fr; } }
.feature-split.reverse > :first-child { order: 2; }

/* Maker cards */
.maker-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .maker-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .maker-grid { grid-template-columns: repeat(3,1fr); } }
.maker-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.maker-card .maker-band { height: 90px; }
.maker-card .maker-body { padding: 1.2rem 1.4rem 1.5rem; }
.maker-card h3 { font-size: 1.08rem; margin-bottom: 0.3rem; }
.maker-card .maker-tag { font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sage-dk); }
.maker-card p { color: var(--ink-soft); font-size: 0.94rem; margin: 0.6rem 0 0; }
