/* ============================================================
   SUNRISE BAKEHOUSE — Shared Stylesheet
   Fonts: Arapey (headings) + Work Sans (body/UI)
   Brand: Deep teal #0e6363 | Gold #c4943a | Parchment #f9f5f0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --brand:        #0e6363;
  --brand-dark:   #094848;
  --brand-mid:    #1a7a7a;
  --brand-light:  #e6f4f4;
  --brand-pale:   #f0f9f9;

  /* Warm accent */
  --gold:         #c4943a;
  --gold-light:   #e8c87a;
  --gold-pale:    #fdf5e4;

  /* Neutral / backgrounds */
  --bg:           #f9f5f0;
  --surface:      #ffffff;
  --warm:         #f1e8de;
  --warm-mid:     #e8d5c0;

  /* Text */
  --text:         #1a2828;
  --text-muted:   #5a7070;
  --text-warm:    #6b5c53;
  --text-inv:     #ffffff;

  /* UI */
  --border:       #d8e8e8;
  --border-warm:  #e5d9cf;
  --error:        #c93030;
  --success:      #2d7a4a;

  /* Type */
  --font-display: 'Arapey', Georgia, serif;
  --font-body:    'Work Sans', system-ui, sans-serif;

  /* Spacing */
  --container:    1200px;
  --section-pad:  88px;
  --section-sm:   56px;

  /* Misc */
  --radius:       8px;
  --radius-sm:    4px;
  --shadow-card:  0 2px 12px rgba(14, 99, 99, 0.08);
  --shadow-hover: 0 8px 28px rgba(14, 99, 99, 0.15);
  --transition:   250ms ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h4, h5, h6 { font-family: var(--font-body); font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn, .btn-primary, .btn-outline, .btn-ghost, .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              transform 100ms ease, box-shadow var(--transition);
  border: 1.5px solid transparent;
}
.btn:active, .btn-primary:active, .btn-outline:active,
.btn-ghost:active, .btn-cta:active { transform: scale(0.97); }

.btn-primary {
  background: var(--brand);
  color: var(--text-inv);
  border-color: var(--brand);
}
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover { background: var(--brand); color: var(--text-inv); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--text-inv);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.7); }

.btn-cta {
  background: var(--gold);
  color: #1a1208;
  border-color: var(--gold);
  font-weight: 700;
}
.btn-cta:hover { background: #b8872f; border-color: #b8872f; box-shadow: 0 4px 16px rgba(196,148,58,0.4); }

.btn-sm { padding: 10px 20px; font-size: 12px; }

/* ── Header / Navigation ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(14,99,99,0.1); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  line-height: 1;
}
.nav-logo-name span {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brand);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}
.nav-cart:hover { background: var(--brand-pale); }
.nav-cart svg { width: 22px; height: 22px; }

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none; /* hidden by default, shown via JS */
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}
.cart-badge.visible { display: flex; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,30,30,0.5);
  backdrop-filter: blur(4px);
}
.mobile-nav-drawer {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--surface);
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 300ms ease;
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
}
.mobile-nav.open { display: block; }
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 24px;
  font-family: var(--font-display);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--brand); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10,50,50,0.88) 0%, rgba(14,99,99,0.65) 35%, rgba(30,15,5,0.7) 65%, rgba(0,0,0,0.4) 100%),
    linear-gradient(225deg, #c4943a 0%, #8f511f 30%, #3d2010 55%, #0a3030 80%, #051818 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 32px;
  max-width: 940px;
  animation: heroFadeIn 1s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .eyebrow { color: var(--gold-light); margin-bottom: 16px; }
.hero-content h1 {
  font-size: clamp(48px, 7vw, 76px);
  color: var(--text-inv);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero decorative scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Feature Strip ──────────────────────────────────────────── */
.feature-strip {
  background: var(--brand);
  padding: 0;
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.9);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.feature-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-inv);
  margin-bottom: 2px;
}
.feature-text span { font-size: 12px; opacity: 0.75; }

/* ── Section Base ───────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
}
.section-sm { padding: var(--section-sm) 0; }
.section-warm { background: var(--warm); }
.section-brand { background: var(--brand); color: var(--text-inv); }
.section-brand-dark { background: var(--brand-dark); color: var(--text-inv); }
.section-pale { background: var(--brand-pale); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(32px, 4vw, 44px); color: var(--text); margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-brand .section-header h2 { color: var(--text-inv); }
.section-brand .section-header p { color: rgba(255,255,255,0.75); }

/* ── Product Cards ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.product-card-img {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.product-card:hover .product-card-img::after { background: rgba(0,0,0,0.06); }

/* Gradient art placeholders per product type */
.img-sourdough   { background: linear-gradient(145deg, #d4aa70 0%, #a06a30 40%, #6b3c18 80%, #3d2010 100%); }
.img-rye         { background: linear-gradient(145deg, #8a7060 0%, #5c4030 45%, #3c2818 80%, #221208 100%); }
.img-pastry      { background: linear-gradient(145deg, #f5e8d0 0%, #e8c87a 40%, #d4aa60 75%, #b88030 100%); }
.img-seasonal    { background: linear-gradient(145deg, #2a9090 0%, #0e6363 45%, #094848 80%, #051818 100%); }
.img-spelt       { background: linear-gradient(145deg, #c8b890 0%, #a09060 45%, #786040 80%, #504020 100%); }
.img-focaccia    { background: linear-gradient(145deg, #e8d0a0 0%, #c8a060 45%, #a07030 80%, #784820 100%); }
.img-croissant   { background: linear-gradient(145deg, #f8e8b0 0%, #e8c860 45%, #c8a040 80%, #a07820 100%); }
.img-cinnamon    { background: linear-gradient(145deg, #d49860 0%, #b06828 45%, #884818 80%, #602808 100%); }
.img-story       { background: linear-gradient(160deg, #f1e8de 0%, #e0c898 30%, #c4943a 65%, #8f511f 100%); }
.img-hero-side   { background: linear-gradient(160deg, #0e4040 0%, #0e6363 35%, #c4943a 70%, #8f511f 100%); }
.img-mill        { background: linear-gradient(160deg, #f5e8d0 0%, #d4c090 40%, #a08050 70%, #706040 100%); }
.img-morning     { background: linear-gradient(160deg, #ffe8b0 0%, #ffd080 30%, #c4943a 60%, #8f511f 100%); }
.img-team        { background: linear-gradient(145deg, #0e6363 0%, #1a8080 35%, #c4943a 70%, #a07030 100%); }
.img-contact     { background: linear-gradient(160deg, #0e4040 0%, #0e6363 40%, #1a8080 70%, #2a9898 100%); }

/* Img inner label */
.product-card-img-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

.product-card-body { padding: 20px; }
.product-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-warm);
}
.product-price { font-size: 18px; font-weight: 700; color: var(--text); }
.product-price sup { font-size: 12px; font-weight: 600; vertical-align: super; margin-right: 1px; }
.product-available {
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-limited { color: var(--gold); }

/* ── Story Feature ──────────────────────────────────────────── */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.story-split.reverse { direction: rtl; }
.story-split.reverse > * { direction: ltr; }

.story-img-block {
  min-height: 540px;
  position: relative;
  overflow: hidden;
}
.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg) 100%);
}
.story-split.reverse .story-img-overlay {
  background: linear-gradient(to left, transparent 60%, var(--warm) 100%);
}

.story-text-block {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text-block h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 20px; }
.story-text-block p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.story-text-block .btn-outline { align-self: flex-start; margin-top: 16px; }

/* ── Process Steps ──────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  text-align: center;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--brand-light);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.3;
}
.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.step h3 { font-size: 18px; color: var(--text); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Connector lines between steps */
.steps-grid .step::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-light);
  font-size: 20px;
  opacity: 0.4;
}
.steps-grid .step:last-child::after { display: none; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  padding: var(--section-sm) 0;
  background:
    linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,148,58,0.15) 0%, transparent 60%);
}
.cta-banner .container { position: relative; }
.cta-banner .eyebrow { color: var(--gold-light); margin-bottom: 12px; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); color: var(--text-inv); margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.78); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Availability notice */
.availability-pills {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pill-light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
}
.pill-gold {
  background: rgba(196,148,58,0.2);
  color: var(--gold-light);
  border: 1px solid rgba(196,148,58,0.3);
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--brand-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--brand);
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--text); }
.author-meta { font-size: 12px; color: var(--text-muted); }

/* ── Reviews Carousel ───────────────────────────────────────── */
.reviews-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.reviews-carousel .testimonial-card {
  height: 420px;
  display: flex;
  flex-direction: column;
}
.reviews-carousel .testimonial-text {
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--text-inv);
  border: 2px solid var(--brand);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform 100ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: scale(1.08);
}
.carousel-btn:active {
  transform: scale(0.95);
}
.carousel-indicator {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 40px;
  text-align: center;
}

/* ── Instagram Teaser ───────────────────────────────────────── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.insta-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,99,99,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: white;
  font-size: 24px;
}
.img-insta-1 { background: linear-gradient(135deg, #d4aa70, #8f511f); }
.img-insta-2 { background: linear-gradient(135deg, #0e6363, #094848); }
.img-insta-3 { background: linear-gradient(135deg, #e8c87a, #c4943a); }
.img-insta-4 { background: linear-gradient(135deg, #5c4030, #3c2818); }
.img-insta-5 { background: linear-gradient(135deg, #1a8080, #0e6363); }
.img-insta-6 { background: linear-gradient(135deg, #c4943a, #8f511f); }

.instagram-cta {
  text-align: center;
  padding: 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.instagram-cta a {
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.instagram-cta a:hover { text-decoration: underline; }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed !important;
  text-align: center;
  color: var(--text-inv);
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { font-size: clamp(36px, 5vw, 58px); color: var(--text-inv); margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── Menu / Category Tabs ───────────────────────────────────── */
.category-tabs {
  display: flex;
  gap: 8px;
  padding: 0 0 36px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--brand); color: var(--brand); }
.tab-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--text-inv);
}

.menu-section { display: none; }
.menu-section.active { display: block; }
.menu-section h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  margin-bottom: 8px;
}
.menu-section-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 40px; }

/* ── Our Story Page ─────────────────────────────────────────── */
.story-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.story-intro-img {
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
}
.story-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  color: var(--brand);
  line-height: 1.4;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.value-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}
.value-card h3 { font-size: 20px; color: var(--text); margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Baker profile */
.baker-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}
.baker-photo {
  width: 300px;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.baker-name { font-size: 32px; margin-bottom: 4px; }
.baker-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 24px;
  display: block;
}
.baker-text { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

/* ── Order Page ─────────────────────────────────────────────── */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.hiw-step { text-align: center; padding: 20px; }
.hiw-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--text-inv);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.hiw-step h3 { font-size: 20px; margin-bottom: 10px; }
.hiw-step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.order-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.order-info-card {
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-align: center;
}
.order-info-card .icon { font-size: 32px; margin-bottom: 16px; display: block; }
.order-info-card h4 { font-size: 14px; color: var(--text); margin-bottom: 8px; }
.order-info-card p { font-size: 14px; color: var(--text-muted); }
.order-info-card strong { color: var(--brand); }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: 36px; margin-bottom: 8px; }
.contact-info .lead { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; line-height: 1.7; }

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 4px;
}
.contact-detail-text p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* Contact form */
.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.contact-form h3 { font-size: 24px; margin-bottom: 8px; }
.contact-form .sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(14,99,99,0.1);
  background: var(--surface);
}
textarea { min-height: 140px; resize: vertical; }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
  min-height: 320px;
  background: linear-gradient(160deg, var(--brand-light) 0%, var(--brand-pale) 50%, var(--warm) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
}
.map-placeholder-inner {
  text-align: center;
  color: var(--brand);
}
.map-placeholder-inner .map-icon { font-size: 40px; margin-bottom: 12px; display: block; }
.map-placeholder-inner p { font-size: 14px; font-weight: 600; color: var(--text-muted); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.8);
}
.footer-main {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand .nav-logo-name { color: var(--text-inv); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 28px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background var(--transition), border-color var(--transition);
  color: rgba(255,255,255,0.8);
}
.social-link:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.35); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-inv); }
.footer-hours { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; }
.footer-hours strong { color: var(--text-inv); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ── Utility ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 64px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid .step::after { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .story-split { grid-template-columns: 1fr; }
  .story-split .story-img-block { min-height: 380px; order: -1; }
  .story-split.reverse { direction: ltr; }
  .story-text-block { padding: 48px 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .baker-grid { grid-template-columns: 220px 1fr; gap: 40px; }
  .baker-photo { width: 220px; height: 280px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 48px; --section-sm: 40px; }
  .container { padding: 0 20px; }

  .nav-links, .nav-actions .btn-primary { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 60px 20px; }
  .hero-content h1 { font-size: 40px; }
  .hero-sub { font-size: 16px; }

  .feature-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .feature-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .feature-item:nth-child(3), .feature-item:nth-child(4) { border-bottom: none; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .how-it-works { grid-template-columns: 1fr; gap: 24px; }
  .order-info-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .story-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .baker-grid { grid-template-columns: 1fr; }
  .baker-photo { width: 100%; height: 280px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .instagram-grid .insta-item:nth-child(n+4) { display: none; }
  .section-header { margin-bottom: 40px; }
  .page-hero { height: 320px; padding: 0; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn, .hero-cta .btn-ghost { text-align: center; justify-content: center; }
  .availability-pills { flex-direction: column; align-items: center; }
}
