/* ============================================================
   COLDWATER MAPLE COMPANY — Main Stylesheet
   Aesthetic: Warm forest artisan — editorial, organic, refined
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Josefin+Sans:wght@300;400;600&family=Lora:ital,wght@0,400;1,400&display=swap');

:root {
  --maple-dark:    #1a0f00;
  --maple-brown:   #3d1f00;
  --maple-amber:   #c47a1e;
  --maple-gold:    #e8a030;
  --maple-cream:   #f5efe3;
  --maple-parchment: #ede5d0;
  --maple-sage:    #5a6b52;
  --maple-mist:    #f9f6f0;
  --maple-shadow:  rgba(26,15,0,0.15);
  --tap-bg:        #1a2e1a;
  --tap-accent:    #c47a1e;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Lora', Georgia, serif;
  --font-ui:       'Josefin Sans', sans-serif;
  --radius:        4px;
  --transition:    0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--maple-mist);
  color: var(--maple-dark);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ─────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--maple-dark);
  border-bottom: 2px solid var(--maple-amber);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}

.nav-brand {
  display: none;
}

.nav-brand span {
  color: var(--maple-cream);
  font-weight: 300;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: clamp(0.9rem, 1.8vw, 2rem);
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maple-cream);
  text-decoration: none;
  opacity: 0.85;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--maple-gold); }

.nav-tap-btn {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--maple-amber);
  color: var(--maple-dark);
  border: none;
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-tap-btn:hover { background: var(--maple-gold); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--maple-cream);
  transition: var(--transition);
}

/* ── HERO ───────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--maple-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196,122,30,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 30%, rgba(90,107,82,0.12) 0%, transparent 55%),
    linear-gradient(160deg, #0e0700 0%, #1a0f00 45%, #0d1a0d 100%);
}

.hero-photo-placeholder {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background: url('images/hero-sugarbush.jpg') center/cover no-repeat;
  mix-blend-mode: luminosity;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--maple-dark) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 2rem;
  animation: fadeUp 1s ease both;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maple-amber);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--maple-cream);
  margin-bottom: 0.4rem;
}

.hero h1 em {
  color: var(--maple-gold);
  font-style: italic;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--maple-amber);
  margin-bottom: 1.8rem;
  opacity: 0.9;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--maple-cream);
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--maple-amber);
  color: var(--maple-dark);
  border-color: var(--maple-amber);
}
.btn-primary:hover {
  background: var(--maple-gold);
  border-color: var(--maple-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,122,30,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--maple-cream);
  border-color: rgba(245,239,227,0.4);
}
.btn-outline:hover {
  border-color: var(--maple-cream);
  background: rgba(245,239,227,0.08);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--maple-dark);
  color: var(--maple-cream);
  border-color: var(--maple-dark);
}
.btn-dark:hover {
  background: var(--maple-brown);
  transform: translateY(-2px);
}

/* ── SECTIONS ───────────────────────────────────────────── */

section { padding: 5rem 2rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maple-amber);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-title em { font-style: italic; color: var(--maple-amber); }

.section-lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #4a3820;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ── PILLARS GRID ───────────────────────────────────────── */

.pillars {
  background: var(--maple-parchment);
  border-top: 1px solid rgba(196,122,30,0.2);
  border-bottom: 1px solid rgba(196,122,30,0.2);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 0;
}

.pillar {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--maple-cream);
  border: 1px solid rgba(196,122,30,0.15);
  border-radius: var(--radius);
  transition: var(--transition);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--maple-shadow);
  border-color: var(--maple-amber);
}

.pillar-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--maple-brown);
}

.pillar p {
  font-size: 0.92rem;
  color: #5a4030;
  line-height: 1.65;
}

/* ── PRODUCTS SECTION ───────────────────────────────────── */

.products-section { background: var(--maple-mist); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.product-card {
  background: white;
  border: 1px solid rgba(196,122,30,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--maple-shadow);
}

.product-photo {
  width: 100%;
  height: 220px;
  background: var(--maple-parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maple-amber);
  border-bottom: 1px solid rgba(196,122,30,0.12);
  position: relative;
  overflow: hidden;
}

.product-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 50%, rgba(196,122,30,0.08) 0%, transparent 70%);
}

.product-photo-label {
  position: relative;
  text-align: center;
  line-height: 2;
}

.product-photo-icon { font-size: 2.5rem; display: block; margin-bottom: 0.4rem; }

.product-info { padding: 1.5rem; }

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--maple-brown);
  margin-bottom: 0.4rem;
}

.product-info p {
  font-size: 0.9rem;
  color: #5a4030;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-price {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maple-amber);
  margin-bottom: 1rem;
}

.product-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--maple-parchment);
  color: var(--maple-brown);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

.stripe-placeholder {
  background: var(--maple-parchment);
  border: 1px dashed var(--maple-amber);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maple-amber);
  text-align: center;
  width: 100%;
  cursor: not-allowed;
  opacity: 0.8;
}



/* ── BAKERY / COZY ACRES ────────────────────────────────── */

.bakery-feature-section,
.bakery-intro-section {
  background: var(--maple-cream);
}

.bakery-products-section {
  background: var(--maple-mist);
}

.bakery-hero::before {
  background:
    radial-gradient(ellipse at 50% 75%, rgba(232,160,48,0.18) 0%, transparent 62%),
    radial-gradient(ellipse at 20% 20%, rgba(245,239,227,0.08) 0%, transparent 55%);
}

.bakery-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 3rem;
  align-items: center;
}

.bakery-feature-grid.reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.bakery-copy {
  color: #5a4030;
  line-height: 1.8;
  margin-bottom: 1.7rem;
}

.bakery-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.bakery-highlight-card {
  background:
    radial-gradient(circle at 18% 20%, rgba(232,160,48,0.18), transparent 42%),
    linear-gradient(145deg, #fffaf0 0%, var(--maple-parchment) 100%);
  border: 1px solid rgba(196,122,30,0.25);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 10px 36px rgba(26,15,0,0.08);
}

.bakery-highlight-card.large {
  padding: 2.4rem;
}

.bakery-highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--maple-brown);
  margin-bottom: 0.7rem;
}

.bakery-highlight-card p,
.bakery-highlight-card li {
  color: #5a4030;
  line-height: 1.75;
}

.bakery-highlight-card ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
}

.bakery-icon {
  display: block;
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}

.bakery-photo {
  background:
    radial-gradient(circle at 35% 45%, rgba(232,160,48,0.14), transparent 58%),
    var(--maple-parchment);
}

.bakery-menu-grid {
  margin-top: 1rem;
}

.maple-crossover-section {
  background: var(--maple-parchment);
}

.clean-list {
  padding-left: 1.2rem;
  color: #5a4030;
  line-height: 1.9;
}

.clean-list li { margin-bottom: 0.5rem; }

.fine-note {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--maple-amber) !important;
  margin-top: 1rem;
}

.wide-order-box { max-width: 760px; }

.bakery-inline-cta {
  margin: 2rem 0 0;
  padding: 2rem;
  background: var(--maple-parchment);
  border: 1px solid rgba(196,122,30,0.22);
  border-radius: var(--radius);
  text-align: center;
}

.bakery-inline-cta p {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  color: #5a4030;
}

/* ── STORY SECTION ──────────────────────────────────────── */

.story-section {
  background: var(--maple-dark);
  color: var(--maple-cream);
}

.story-section .section-title { color: var(--maple-cream); }
.story-section .section-lead  { color: rgba(245,239,227,0.75); }
.story-section .section-eyebrow { color: var(--maple-amber); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,122,30,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--maple-amber);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-photo-icon { font-size: 3rem; }

.story-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.story-points li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.story-points li .sp-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.story-points li strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--maple-gold);
  display: block;
  margin-bottom: 0.2rem;
}

.story-points li p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
}

/* ── FOREST EXPERIENCE ──────────────────────────────────── */

.experience-section { background: var(--maple-parchment); }

.experience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.exp-card {
  background: white;
  border: 1px solid rgba(196,122,30,0.18);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.exp-card:hover {
  box-shadow: 0 8px 30px var(--maple-shadow);
  border-color: var(--maple-amber);
}

.exp-icon { font-size: 2rem; margin-bottom: 1rem; }

.exp-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--maple-brown);
  margin-bottom: 0.5rem;
}

.exp-card p {
  font-size: 0.92rem;
  color: #5a4030;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.exp-detail {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--maple-amber);
  text-transform: uppercase;
}

/* ── ORDER / CONTACT ────────────────────────────────────── */

.order-section {
  background: var(--maple-cream);
  text-align: center;
}

.order-box {
  background: white;
  border: 1px solid rgba(196,122,30,0.2);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 680px;
  margin: 0 auto;
}

.order-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-detail {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #5a4030;
  margin-top: 1.5rem;
}

.contact-detail a { color: var(--maple-amber); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

/* ── FOOTER ─────────────────────────────────────────────── */

footer {
  background: var(--maple-dark);
  color: rgba(245,239,227,0.6);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 2px solid var(--maple-amber);
}

.footer-inner { max-width: 900px; margin: 0 auto; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--maple-gold);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--maple-amber);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--maple-gold); }

.footer-address {
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 1rem;
}

.mqa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(196,122,30,0.12);
  border: 1px solid rgba(196,122,30,0.3);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maple-amber);
  margin-top: 1rem;
}

/* ── TAP THE LOBSTER ────────────────────────────────────── */

#tap-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.tap-bubble-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--tap-bg);
  border: 2px solid var(--tap-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: var(--transition);
  position: relative;
}

.tap-bubble-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(196,122,30,0.5);
}

.tap-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--maple-amber);
  color: var(--maple-dark);
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 5px;
  border-radius: 8px;
  text-transform: uppercase;
}

.tap-panel {
  width: 360px;
  max-height: 520px;
  background: var(--tap-bg);
  border: 1px solid rgba(196,122,30,0.35);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: tapSlideIn 0.3s ease;
}

.tap-panel.open { display: flex; }

@keyframes tapSlideIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.tap-header {
  background: linear-gradient(135deg, #0d1f0d, #1a3a1a);
  border-bottom: 1px solid rgba(196,122,30,0.3);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tap-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tap-avatar {
  width: 40px;
  height: 40px;
  background: rgba(196,122,30,0.15);
  border: 1px solid var(--tap-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.tap-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--maple-cream);
  line-height: 1.2;
}

.tap-name small {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tap-accent);
  font-style: normal;
}

.tap-close {
  background: none;
  border: none;
  color: rgba(245,239,227,0.4);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  padding: 0.2rem;
}
.tap-close:hover { color: var(--maple-cream); }

.tap-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 200px;
  max-height: 300px;
  scrollbar-width: thin;
  scrollbar-color: rgba(196,122,30,0.3) transparent;
}

.tap-msg {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.55;
  animation: msgFade 0.3s ease;
}

@keyframes msgFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tap-msg.tap { 
  background: rgba(196,122,30,0.12);
  border: 1px solid rgba(196,122,30,0.25);
  color: var(--maple-cream);
  align-self: flex-start;
}

.tap-msg.user {
  background: rgba(245,239,227,0.08);
  border: 1px solid rgba(245,239,227,0.12);
  color: rgba(245,239,227,0.85);
  align-self: flex-end;
}

.tap-msg.typing {
  background: rgba(196,122,30,0.08);
  border: 1px solid rgba(196,122,30,0.15);
  align-self: flex-start;
  color: var(--tap-accent);
  font-style: italic;
  font-size: 0.8rem;
}

.tap-suggestions {
  padding: 0.6rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.tap-suggest-btn {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  background: rgba(196,122,30,0.12);
  border: 1px solid rgba(196,122,30,0.25);
  color: var(--tap-accent);
  padding: 0.3rem 0.65rem;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.tap-suggest-btn:hover {
  background: rgba(196,122,30,0.25);
  color: var(--maple-gold);
}

.tap-input-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(196,122,30,0.2);
  background: rgba(0,0,0,0.2);
}

.tap-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,122,30,0.25);
  border-radius: 20px;
  padding: 0.5rem 0.9rem;
  color: var(--maple-cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.tap-input:focus { border-color: var(--tap-accent); }
.tap-input::placeholder { color: rgba(245,239,227,0.3); }

.tap-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tap-accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.tap-send:hover { background: var(--maple-gold); transform: scale(1.05); }
.tap-send:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ── ABOUT PAGE ─────────────────────────────────────────── */

.page-hero {
  background: var(--maple-dark);
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(196,122,30,0.15) 0%, transparent 60%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--maple-cream);
  position: relative;
}

.page-hero p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--maple-amber);
  font-size: 1.1rem;
  margin-top: 0.6rem;
  position: relative;
}

/* ── GROW/TEND GRID ─────────────────────────────────────── */

.tend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tend-card {
  background: var(--maple-cream);
  border: 1px solid rgba(196,122,30,0.15);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: var(--transition);
}

.tend-card:hover {
  border-color: var(--maple-amber);
  box-shadow: 0 6px 24px var(--maple-shadow);
}

.tend-icon { font-size: 2rem; margin-bottom: 0.8rem; }

.tend-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--maple-brown);
  margin-bottom: 0.4rem;
}

.tend-card p {
  font-size: 0.88rem;
  color: #5a4030;
  line-height: 1.6;
}

/* ── UTILITY ────────────────────────────────────────────── */

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.divider {
  width: 60px;
  height: 2px;
  background: var(--maple-amber);
  margin: 1.5rem 0;
}

.divider.center { margin: 1.5rem auto; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--maple-dark);
    padding: 1rem 2rem 1.5rem;
    border-bottom: 2px solid var(--maple-amber);
  }
  .hamburger { display: flex; }
  .story-grid,
  .bakery-feature-grid,
  .bakery-feature-grid.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .tap-panel { width: calc(100vw - 3rem); right: 0; }
  #tap-widget { right: 1rem; bottom: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ── IMAGE INTEGRATION PASS: LOGOS + FARMSTAND PHOTOS ───────── */
.nav-brand.logo-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--maple-cream);
  border: 1px solid rgba(232,160,48,0.55);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
}

.nav-logo {
  display: block;
  width: clamp(150px, 18vw, 230px);
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.footer-logo-image {
  display: block;
  max-width: 280px;
  width: 80%;
  height: auto;
  margin: 0 auto 0.8rem;
  background: var(--maple-cream);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(232,160,48,0.35);
}

.hero-photo-placeholder {
  background: url('/images/hero-farmstand.jpg') center/cover no-repeat;
  opacity: 0.34;
  mix-blend-mode: normal;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(26,15,0,0.28) 58%, rgba(26,15,0,0.88) 100%);
  pointer-events: none;
}

.hero-content { z-index: 3; }

.product-photo.has-image,
.story-photo.has-image,
.bakery-image-card {
  background: #120b03;
}

.product-photo.has-image::before,
.story-photo.has-image::before { display: none; }

.product-photo.has-image img,
.story-photo.has-image img,
.bakery-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-photo.has-image img.contain-image {
  object-fit: contain;
  background: #f5efe3;
  padding: 0.2rem;
}

.bakery-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.cozy-logo-badge {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(196,122,30,0.3);
  box-shadow: 0 6px 22px rgba(26,15,0,0.12);
  flex-shrink: 0;
}

.bakery-image-card {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(196,122,30,0.25);
  box-shadow: 0 12px 40px rgba(26,15,0,0.12);
}

.page-hero.farmstand-photo-hero::before,
.page-hero.bakery-photo-hero::before,
.page-hero.forest-photo-hero::before {
  background: linear-gradient(rgba(26,15,0,0.68), rgba(26,15,0,0.78)), var(--hero-page-image) center/cover no-repeat;
}

.page-hero.bakery-photo-hero { --hero-page-image: url('/images/bread-crusty.jpg'); }
.page-hero.farmstand-photo-hero { --hero-page-image: url('/images/farmstand-bottles.jpg'); }
.page-hero.forest-photo-hero { --hero-page-image: url('/images/forest-experience.jpg'); }

@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-logo { width: 155px; max-height: 38px; }
  .nav-brand.logo-brand { padding: 0.22rem 0.5rem; }
  .bakery-brand-lockup { align-items: flex-start; }
  .cozy-logo-badge { width: 72px; height: 72px; }
}

/* ── PATCH V3: safer logo rendering + icon update ───────── */
.nav-brand.logo-brand {
  min-width: 190px;
  min-height: 44px;
  overflow: hidden;
}

.nav-logo {
  width: clamp(165px, 22vw, 245px);
  max-height: 38px;
  object-fit: contain;
}

.footer-logo-image {
  max-width: min(420px, 82vw);
  max-height: 150px;
  object-fit: contain;
  border-radius: 28px;
}

.tap-avatar,
.tap-bubble-btn {
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .nav-brand.logo-brand {
    min-width: 180px;
    min-height: 42px;
  }
  .nav-logo {
    width: 165px;
    max-height: 36px;
  }
}

/* ── PATCH V2.5: header logo scale + version marker ───────── */
nav::before {
  content: 'V2.8';
  position: absolute;
  left: 0.35rem;
  top: 0.18rem;
  font-family: var(--font-ui);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(245,239,227,0.72);
  z-index: 2;
  pointer-events: none;
}

.nav-brand.logo-brand {
  min-width: clamp(245px, 28vw, 360px);
  min-height: 48px;
  padding: 0.22rem 1rem;
  overflow: visible;
}

.nav-logo {
  width: clamp(220px, 25vw, 330px);
  max-height: 46px;
  object-fit: contain;
}

@media (max-width: 768px) {
  nav {
    height: 72px;
  }

  .nav-links.open {
    top: 72px;
  }

  .nav-brand.logo-brand {
    min-width: 230px;
    min-height: 48px;
    padding: 0.2rem 0.9rem;
  }

  .nav-logo {
    width: 205px;
    max-height: 44px;
  }

  nav::before {
    font-size: 0.5rem;
    left: 0.32rem;
    top: 0.15rem;
  }
}

@media (max-width: 390px) {
  .nav-brand.logo-brand {
    min-width: 205px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .nav-logo {
    width: 185px;
  }
}


/* ── PATCH V2.8: responsible adult beverage positioning page ───── */
.product-spec-list { list-style: none; margin: 0.8rem 0 1.1rem; padding: 0; color: #5a4030; font-size: 0.84rem; line-height: 1.55; }
.product-spec-list li { margin-bottom: 0.35rem; }
.product-spec-list strong { color: var(--maple-brown); }
.product-note { font-size: 0.8rem; color: #76523a; font-style: italic; line-height: 1.55; margin-top: 0.8rem; }
.idea-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.idea-card { background: white; border: 1px solid rgba(196,122,30,0.18); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 6px 22px rgba(0,0,0,0.04); }
.idea-card h3 { font-family: var(--font-display); color: var(--maple-brown); margin-bottom: 0.5rem; font-size: 1.2rem; }
.idea-card p { color:#5a4030; line-height:1.65; font-size:0.92rem; }
.catalog-note { background: rgba(196,122,30,0.10); border: 1px solid rgba(196,122,30,0.25); border-radius: var(--radius); padding: 1.25rem; margin: 2rem 0; color: #4a3820; line-height: 1.65; }

/* ── HEADER LOGO (true transparent, no background box) ───────── */
.header-logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  background: transparent;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  line-height: 0;
  z-index: 5;
  text-decoration: none;
}
.header-logo.header-logo-right { right: 1rem; }
.header-logo.header-logo-left { left: 1rem; }
.header-logo img {
  display: block;
  max-width: 160px;
  max-height: 60px;
  width: auto;
  height: auto;
  background: transparent;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  object-fit: contain;
}
@media (max-width: 768px) {
  .header-logo img { max-width: 130px; max-height: 48px; }
  .header-logo.header-logo-left { left: 3.5rem; }
  .header-logo.header-logo-right { right: 0.75rem; }
}
