/* ============================================
   STRATA COFFEE BAR — Main Stylesheet
   Palette: dark espresso / warm cream / slate blue accent
   ============================================ */

:root {
  --ink:        #1a1a18;
  --cream:      #f5f0e8;
  --cream-dark: #ece5d8;
  --warm-mid:   #8c7b6b;
  --accent:     #5b7b8a;   /* muted slate-blue — the one bold choice */
  --accent-dark:#3d5a67;
  --gold:       #c9a96e;
  --white:      #ffffff;
  --text-body:  #2e2e2a;
  --text-light: #6b6458;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius: 6px;
  --shadow: 0 2px 16px rgba(26,26,24,.10);
  --max-w: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--cream);
}

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--text-body); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--ink);
}
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ---- NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}
.nav-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,24,0.82) 0%, rgba(26,26,24,0.45) 60%, rgba(26,26,24,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  color: var(--white);
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- HOURS STRIP ---- */
.hours-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 24px;
}
.hours-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.hours-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 32px;
  text-align: center;
}
.hours-day {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.hours-time {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}
.hours-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ---- DRINKS SECTION ---- */
.drinks-section {
  padding: 80px 0;
  background: var(--cream);
}
.section-title {
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 48px;
  font-size: 1.02rem;
}
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.drink-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}
.drink-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26,26,24,0.14);
}
.drink-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: var(--cream-dark);
  padding: 20px;
}
.drink-card-body { padding: 20px 22px 24px; }
.drink-card-body h3 { margin-bottom: 6px; font-size: 1.1rem; }
.drink-card-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }
.link-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--accent-dark); }

/* ---- ROASTING STRIP ---- */
.roasting-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.roasting-img-wrap { overflow: hidden; }
.roasting-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.roasting-text {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.roasting-text h2 { color: var(--white); margin-bottom: 4px; }
.roasting-text p { color: rgba(255,255,255,0.8); line-height: 1.7; }
.roasting-note {
  font-size: 0.88rem;
  color: var(--gold) !important;
  font-style: italic;
}

/* ---- SHOP SECTION ---- */
.shop-section {
  padding: 80px 0;
  background: var(--cream-dark);
}
.shop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.shop-text { display: flex; flex-direction: column; gap: 16px; }
.shop-text h2 { margin-bottom: 4px; }
.shop-text .btn-outline {
  color: var(--ink);
  border-color: var(--ink);
  align-self: flex-start;
}
.shop-text .btn-outline:hover { background: var(--ink); color: var(--white); }
.shop-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ---- PWA BANNER ---- */
.pwa-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.pwa-banner-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
}
.pwa-logo { width: 36px; height: 36px; filter: brightness(0) invert(1); }
.pwa-banner-inner div { flex: 1; display: flex; flex-direction: column; }
.pwa-banner-inner strong { font-size: 0.92rem; }
.pwa-banner-inner span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.pwa-dismiss {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* ---- PAGE HEROS ---- */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 72px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--gold), var(--accent));
}
.page-hero-content h1 { color: var(--white); margin-bottom: 10px; }
.page-hero-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ---- MENU PAGE ---- */
.menu-page { padding: 48px 24px 80px; }

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 0;
}
.menu-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  border-radius: 0;
}
.menu-tab:hover { color: var(--ink); }
.menu-tab.active { color: var(--ink); border-bottom-color: var(--accent); }

.menu-section { display: none; }
.menu-section.active { display: block; }

.menu-category-title {
  font-size: 1.9rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.menu-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 560px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  overflow: hidden;
}
.menu-item {
  background: var(--white);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-item-name {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink);
}
.menu-item-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
}
.menu-item-price {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 2px;
}

.menu-order-cta {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 40px 24px;
}
.menu-order-cta .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.menu-order-cta p { color: rgba(255,255,255,0.9); font-size: 1.05rem; }
.menu-order-cta .btn-primary {
  background: var(--white);
  color: var(--accent-dark);
  border-color: var(--white);
}
.menu-order-cta .btn-primary:hover { background: var(--cream); }

/* ---- ABOUT PAGE ---- */
.about-page { padding: 64px 24px 80px; }

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.about-intro-text { display: flex; flex-direction: column; gap: 16px; }
.about-intro-img { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.about-intro-img img { width: 100%; height: 400px; object-fit: cover; }

.about-values {
  text-align: center;
  margin-bottom: 80px;
}
.about-values .section-title { margin-bottom: 40px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.value-item {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
}
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-item h3 { margin-bottom: 8px; }
.value-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

.about-space {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.about-space-img { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.about-space-img img { width: 100%; height: 380px; object-fit: cover; }
.about-space-text { display: flex; flex-direction: column; gap: 16px; }

.about-beans-story {
  background: var(--ink);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.beans-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.beans-story-img { height: 360px; object-fit: cover; width: 100%; }
.beans-story-text {
  padding: 52px 48px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.beans-story-text h2 { color: var(--white); }
.beans-story-text p { color: rgba(255,255,255,0.8); line-height: 1.7; }

/* ---- CONTACT PAGE ---- */
.contact-page { padding: 64px 24px 80px; }
.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.contact-block { margin-bottom: 36px; }
.contact-block h2 { font-size: 1.3rem; margin-bottom: 10px; color: var(--ink); }
.contact-block p { color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.contact-block a { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 6px 0; font-size: 0.9rem; color: var(--text-light); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.contact-map iframe { width: 100%; border-radius: 8px; }

/* ---- FOOTER ---- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 56px 24px 0; }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { height: 40px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-col p { font-size: 0.9rem; line-height: 1.7; }
.footer-col a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 1rem; }
  .nav-cta { margin: 8px 24px 0; border-radius: var(--radius); }

  /* Hero */
  .hero { min-height: 75vh; }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(26,26,24,0.7) 0%, rgba(26,26,24,0.6) 100%);
  }
  .hero-btns { flex-direction: column; align-items: flex-start; }

  /* Hours */
  .hours-divider { display: none; }
  .hours-grid { flex-direction: column; gap: 4px; }
  .hours-item { padding: 8px 16px; flex-direction: row; justify-content: space-between; width: 100%; max-width: 340px; text-align: left; }

  /* Drinks */
  .drinks-section { padding: 56px 0; }
  .drinks-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Roasting */
  .roasting-strip { grid-template-columns: 1fr; }
  .roasting-img-wrap { height: 260px; }
  .roasting-text { padding: 40px 28px; }

  /* Shop */
  .shop-section { padding: 56px 0; }
  .shop-inner { grid-template-columns: 1fr; gap: 32px; }
  .shop-img-wrap { order: -1; }

  /* About */
  .about-intro, .about-space { grid-template-columns: 1fr; gap: 32px; }
  .about-intro-img img { height: 280px; }
  .about-space-img img { height: 260px; }
  .beans-story-inner { grid-template-columns: 1fr; }
  .beans-story-img { height: 240px; }
  .beans-story-text { padding: 36px 28px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Menu tabs scroll */
  .menu-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 1px; }
  .menu-tab { white-space: nowrap; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .drinks-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.4rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ============================================
   ADDITIONS — Coming Soon, Bar, Roasting
   ============================================ */

/* Coming Soon badge on nav */
.nav-cta--soon {
  opacity: 0.75;
  cursor: default;
  pointer-events: none;
  position: relative;
}
.coming-soon-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* Coming Soon CTA bar on menu page */
.menu-order-cta--soon {
  background: var(--ink);
  color: var(--white);
  text-align: left;
}
.menu-order-cta--soon .container {
  display: block;
  padding: 32px 24px;
}
.menu-order-cta--soon p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}
.menu-order-cta--soon span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
}
.menu-order-cta--soon a { color: var(--gold); }

/* Bar section on menu */
.bar-intro { margin-bottom: 32px; }
.bar-categories { display: flex; flex-direction: column; gap: 40px; }
.bar-category h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--warm-mid);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-dark);
}
.bar-note {
  background: var(--cream-dark);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
}
.bar-note p { font-size: 0.88rem; color: var(--text-light); }

/* ---- ROASTING PAGE ---- */
.roasting-page { padding-bottom: 80px; }

.roasting-intro { padding: 72px 24px; }
.roasting-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.roasting-intro-text { display: flex; flex-direction: column; gap: 16px; }
.roasting-intro-img { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.roasting-intro-img img { width: 100%; height: 420px; object-fit: cover; }

.sourcing-section {
  background: var(--ink);
  padding: 72px 24px;
  color: var(--white);
}
.sourcing-section .eyebrow { color: var(--gold); }
.sourcing-section h2 { color: var(--white); margin-bottom: 48px; }
.sourcing-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.sourcing-pillar { display: flex; flex-direction: column; gap: 10px; }
.pillar-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
}
.sourcing-pillar h3 { color: var(--white); font-size: 1.05rem; }
.sourcing-pillar p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.65; }

.wholesale-section {
  background: var(--cream-dark);
  padding: 80px 0;
}
.wholesale-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.wholesale-text { display: flex; flex-direction: column; gap: 16px; }
.wholesale-text strong { color: var(--ink); }
.wholesale-benefits { display: flex; flex-direction: column; gap: 10px; margin: 8px 0; }
.wholesale-benefit {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
}
.wholesale-benefit span:first-child { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.wholesale-img { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.wholesale-img img { width: 100%; height: 420px; object-fit: cover; object-position: center 20%; }

.takehome-section { padding: 72px 24px; }
.takehome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.takehome-img { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.takehome-img img { width: 100%; height: 380px; object-fit: cover; }
.takehome-text { display: flex; flex-direction: column; gap: 16px; }
.takehome-pricing {
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 12px 0;
  margin: 4px 0;
}
.takehome-price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.95rem;
}
.takehome-price-row span:last-child { font-weight: 700; color: var(--ink); }
.btn-dark {
  color: var(--ink);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink); color: var(--white); }

/* Roasting page mobile */
@media (max-width: 768px) {
  .roasting-intro-grid,
  .wholesale-inner,
  .takehome-inner { grid-template-columns: 1fr; gap: 32px; }
  .roasting-intro-img img,
  .wholesale-img img { height: 260px; }
  .sourcing-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .sourcing-pillars { grid-template-columns: 1fr; }
}

/* ============================================
   MENU LIST STYLE (replaces grid/boxes)
   ============================================ */
.menu-list {
  list-style: none;
  border-top: 1px solid var(--cream-dark);
}
.menu-list-item {
  display: flex;
  flex-direction: column;
  padding: 14px 4px;
  border-bottom: 1px solid var(--cream-dark);
  gap: 3px;
}
.menu-list-item:last-child { border-bottom: none; }
.menu-list-name {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink);
}
.menu-list-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.45;
}

/* Menu subsections (Beans & Water) */
.menu-subsection {
  margin-bottom: 40px;
}
.menu-subsection-title {
  font-size: 1.15rem;
  color: var(--warm-mid);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--cream-dark);
}

/* Water callout on About / Roasting pages */
.water-callout {
  background: linear-gradient(135deg, #d6eaf4 0%, #e8f4fb 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin: 40px 0;
}
.water-callout h3 {
  color: var(--accent-dark);
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.water-callout p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 6px;
}
.water-callout .water-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.water-spec-tag {
  background: rgba(91,123,138,0.15);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ============================================
   HOT/ICED TEMP BADGES
   ============================================ */
.temp-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.temp-hot  { background: #fde8d8; color: #b84a1a; }
.temp-iced { background: #d8ecf7; color: #1a5f8a; }

/* ============================================
   MOUNTAIN DIVIDER (from label art)
   ============================================ */
.mountain-divider {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.mountain-divider img,
.mountain-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Mountain divider between sections on homepage */
.mountain-divider-wrap {
  position: relative;
  margin: 0;
  line-height: 0;
}
.mountain-divider-wrap img {
  width: 100%;
  display: block;
}

/* Page hero mountain accent at bottom */
.page-hero {
  position: relative;
  padding-bottom: 0;
}
.page-hero-mountain {
  display: block;
  width: 100%;
  line-height: 0;
  margin-top: -2px;
}
.page-hero-mountain img {
  width: 100%;
  display: block;
  height: 80px;
  object-fit: cover;
  object-position: top;
}

/* ============================================
   LABEL ART SECTIONS
   ============================================ */

/* Homepage label art feature */
.label-art-section {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}
.label-art-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.label-art-text {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  color: var(--cream);
}
.label-art-text h2 { color: var(--white); }
.label-art-text p  { color: rgba(255,255,255,0.8); line-height: 1.7; }
.label-art-text .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  align-self: flex-start;
}
.label-art-text .btn-outline:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.label-art-img-wrap {
  overflow: hidden;
  position: relative;
}
.label-art-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Mountain banner used as page section divider */
.mountain-divider-wrap img {
  width: 100%;
  display: block;
  height: 120px;
  object-fit: cover;
  object-position: center 60%;
}
.page-hero-mountain img {
  height: 100px;
  object-position: top center;
}

/* About label showcase — full-width banner */
.about-label-showcase {
  margin: 0 0 0 0;
  overflow: hidden;
}
.label-showcase-banner {
  position: relative;
}
.label-showcase-banner img {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: cover;
  object-position: center 65%;
}
.label-showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,26,24,0.75));
  padding: 24px 32px 16px;
}
.label-showcase-caption p {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-style: italic;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .label-art-inner {
    grid-template-columns: 1fr;
  }
  .label-art-text {
    padding: 44px 28px;
    order: 2;
  }
  .label-art-img-wrap {
    height: 280px;
    order: 1;
  }
  .mountain-divider-wrap img { height: 70px; }
  .page-hero-mountain img { height: 60px; }
  .label-showcase-banner img { max-height: 260px; }
}

/* Wholesale section — single column when no image present */
.wholesale-inner {
  grid-template-columns: 1fr;
  max-width: 720px;
}
