/* ==========================================================================
   ANGEL FALLS COFFEE COMPANY — STYLESHEET
   Highland Square · Akron, Ohio · Est. 1996
   ========================================================================== */

:root {
  --espresso: #17100c;
  --dark: #211611;
  --dark-surface: #2b1d16;
  --dark-hover: #36251d;
  --dark-border: rgba(255, 255, 255, 0.12);
  
  --oat: #ede4d6;
  --cream: #f7f2eb;
  --cream-alt: #f1e8dc;
  --cream-card: #ffffff;
  
  --brass: #c89547;
  --brass-light: #dfb86c;
  --brass-soft: #edd095;
  --brass-dark: #a8762d;
  
  --moss: #5a734e;
  --moss-light: #769666;
  --closed-red: #a4483a;
  
  --ink: #1f1814;
  --ink-muted: #61564d;
  --ink-light: #8e8277;
  --line: rgba(31, 24, 20, 0.14);
  
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "DM Mono", "SF Mono", Consolas, monospace;
  
  --shadow-sm: 0 4px 18px rgba(23, 16, 12, 0.08);
  --shadow-md: 0 12px 35px rgba(23, 16, 12, 0.14);
  --shadow-lg: 0 24px 60px rgba(23, 16, 12, 0.28);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

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

/* Subtle Film Grain */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.7'/%3E%3C/svg%3E");
  z-index: 999;
}

/* --------------------------------------------------------------------------
   Typography & Reusable Utilities
   -------------------------------------------------------------------------- */
.section-kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 10px;
  display: block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.button .btn-arrow {
  font-size: 14px;
  transition: transform var(--transition-fast);
}

.button:hover .btn-arrow {
  transform: translate(2px, -2px);
}

.button-gold {
  background: var(--brass);
  color: var(--espresso);
  box-shadow: 0 8px 24px rgba(200, 149, 71, 0.25);
}

.button-gold:hover {
  background: var(--brass-light);
  box-shadow: 0 10px 28px rgba(200, 149, 71, 0.38);
  transform: translateY(-2px);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.button-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.button-trans {
  border: 1px solid var(--dark-border);
  background: transparent;
  color: #ffffff;
}

.button-trans:hover {
  border-color: var(--brass);
  color: var(--brass-light);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.topbar {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(16, 10, 7, 0.68) 0%, rgba(16, 10, 7, 0) 100%);
  transition: all var(--transition-smooth);
}

.topbar.scrolled {
  background: rgba(23, 16, 12, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 6px;
  background: rgba(33, 22, 17, 0.5);
}

.brand-mark span {
  display: block;
  width: 3px;
  border-radius: 4px;
  background: var(--brass-light);
}

.brand-mark span:nth-child(1) { height: 10px; }
.brand-mark span:nth-child(2) { height: 18px; }
.brand-mark span:nth-child(3) { height: 7px; }

.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-word strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.brand-word em {
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  color: var(--brass-soft);
  font-weight: 400;
}

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

.nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding: 6px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brass);
  transition: width var(--transition-fast);
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  width: 100%;
}

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

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.phone-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.phone-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.directions-btn {
  background: var(--brass);
  color: var(--espresso);
  border: 1px solid var(--brass);
}

.directions-btn:hover {
  background: var(--brass-light);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--espresso);
  z-index: 200;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  transition: right var(--transition-smooth);
  color: #ffffff;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-border);
}

.drawer-brand strong {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.drawer-brand span {
  font-size: 11px;
  color: var(--brass-soft);
}

.drawer-close {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.drawer-link {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-link:hover {
  color: var(--brass-light);
  padding-left: 6px;
}

.drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-border);
}

.drawer-address {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.drawer-phone-btn, .drawer-dir-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.drawer-phone-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.drawer-dir-btn {
  background: var(--brass);
  color: var(--espresso);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #140d0a;
  color: #ffffff;
  padding-bottom: 90px;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url("Images/01_Storefront_and_Exterior/storefront_and_exterior_08.jpg") center 40% / cover no-repeat;
  transform: scale(1.04);
  filter: saturate(0.9) contrast(1.06);
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 11, 8, 0.84) 0%, rgba(17, 11, 8, 0.45) 45%, rgba(17, 11, 8, 0.15) 80%),
              linear-gradient(180deg, rgba(14, 9, 6, 0.25) 0%, rgba(14, 9, 6, 0.05) 40%, rgba(14, 9, 6, 0.88) 100%);
}

.steam {
  position: absolute;
  z-index: 2;
  right: 18%;
  bottom: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.steam i {
  position: absolute;
  bottom: 8vh;
  left: 0;
  width: 80px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.35), transparent 70%);
  filter: blur(18px);
  animation: rise 8.5s infinite ease-in;
}

.steam i:nth-child(2) { left: 95px; height: 160px; animation-delay: 2.2s; }
.steam i:nth-child(3) { left: 180px; height: 210px; animation-delay: 4.3s; }
.steam i:nth-child(4) { left: 50px; height: 130px; animation-delay: 5.6s; }
.steam i:nth-child(5) { left: 240px; height: 175px; animation-delay: 1.2s; }

@keyframes rise {
  0% { transform: translateY(90px) scale(0.7); opacity: 0; }
  30% { opacity: 0.55; }
  100% { transform: translateY(-440px) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(920px, 92vw);
  padding: 0 0 4vh 5.5vw;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(23, 16, 12, 0.6);
  border: 1px solid rgba(223, 184, 108, 0.35);
  backdrop-filter: blur(10px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 24px;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 8px var(--brass);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.94;
  font-size: clamp(56px, 8.5vw, 130px);
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}

.hero h1 span {
  font-style: italic;
  color: #f7ebdb;
  font-weight: 400;
}

.hero-copy {
  max-width: 520px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 34px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-call-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--brass-soft);
  border-bottom: 1px solid rgba(223, 184, 108, 0.4);
  padding-bottom: 4px;
}

.hero-call-link:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.hero-footer {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 5.5vw;
  right: 5.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.scroll-note {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-note .line {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.status-chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  background: rgba(18, 12, 9, 0.5);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-indicator {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--moss-light);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(118, 150, 102, 0.8);
}

.status-indicator.closed {
  background: var(--closed-red);
  box-shadow: 0 0 8px rgba(164, 72, 58, 0.8);
}

/* --------------------------------------------------------------------------
   Story & Manifesto Section
   -------------------------------------------------------------------------- */
.manifesto {
  padding: 10vw 6vw 9vw;
  background-color: var(--cream);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 6vw;
  align-items: start;
}

.manifesto-stamp {
  position: sticky;
  top: 100px;
}

.stamp-inner {
  border: 2px dashed rgba(31, 24, 20, 0.25);
  border-radius: 6px;
  padding: 16px 12px;
  text-align: center;
  font-family: var(--mono);
  transform: rotate(-3deg);
  background: var(--cream-alt);
}

.stamp-inner strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.15em;
}

.stamp-inner span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin: 4px 0;
}

.stamp-inner em {
  display: block;
  font-size: 9px;
  font-style: normal;
  color: var(--brass-dark);
  font-weight: 700;
  border-top: 1px solid rgba(31, 24, 20, 0.12);
  padding-top: 4px;
  margin-top: 4px;
}

.manifesto-main h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}

.manifesto-main h2 em {
  font-style: italic;
  color: var(--brass-dark);
}

.manifesto-copy {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.8;
  color: var(--ink-muted);
  max-width: 820px;
  margin-bottom: 48px;
}

.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

.pillar-card {
  padding: 24px;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 12px;
}

.pillar-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--espresso);
}

.pillar-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   The Atmosphere & Shop Split Scene
   (Updated with store interior photo as hero)
   -------------------------------------------------------------------------- */
.split-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  background-color: var(--espresso);
  color: #f7f2eb;
}

.scene-visuals {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--dark-border);
}

.scene-photo {
  flex: 1;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Store interior photo with purple wall, art, and leather seating */
.scene-interior {
  background-image: url("Images/01_Storefront_and_Exterior/storefront_and_exterior_10.jpg");
  background-position: center 45%;
}

.photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(23, 16, 12, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--dark-border);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
}

.badge-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--brass-light);
  font-weight: 700;
}

.scene-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
}

.thumb-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.thumb-card:hover img {
  transform: scale(1.08);
}

.thumb-card span {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  color: #ffffff;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 8px;
  text-align: center;
}

.scene-copy {
  padding: 8vw 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scene-copy h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 12px 0 24px;
}

.scene-copy h2 em {
  font-style: italic;
  color: var(--brass-soft);
}

.scene-copy > p:not(.section-kicker) {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 36px;
}

.small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  border-top: 1px solid var(--dark-border);
  padding-top: 32px;
  margin-bottom: 40px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  padding: 18px;
  border-radius: var(--radius-sm);
}

.box-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass-light);
  display: block;
  margin-bottom: 6px;
}

.feature-box b {
  display: block;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 6px;
}

.feature-box p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.scene-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Roast Craft Section
   -------------------------------------------------------------------------- */
.roast-section {
  background: var(--dark);
  color: #f7f2eb;
  padding: 0 6vw 9vw;
  overflow: hidden;
}

.roast-marquee {
  display: flex;
  gap: 0;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 1;
  padding: 3vw 0 4vw;
  color: rgba(255, 255, 255, 0.035);
  user-select: none;
  animation: marqueeScroll 35s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.roast-marquee span {
  padding-right: 4vw;
}

.roast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
}

.roast-copy h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 12px 0 20px;
}

.roast-copy h2 em {
  font-style: italic;
  color: var(--brass-soft);
}

.roast-copy > p:not(.section-kicker) {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 34px;
}

.roast-sequence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

.roast-step {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  transition: var(--transition-fast);
}

.roast-step span {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--brass-light);
  opacity: 0.6;
}

.roast-step b {
  display: block;
  font-size: 13px;
  color: #ffffff;
}

.roast-step em {
  display: block;
  font-size: 11px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
}

.roast-step.active, .roast-step:hover {
  background: var(--dark-hover);
  border-color: var(--brass);
}

.roast-step.active span {
  opacity: 1;
}

.roast-step.active b {
  color: var(--brass-soft);
}

.roast-readout {
  padding: 22px;
  background: rgba(200, 149, 71, 0.08);
  border-left: 3px solid var(--brass);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.readout-index {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--brass-light);
  text-transform: uppercase;
}

.readout-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 6px 0 8px;
}

.readout-body {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.roast-image-frame {
  position: relative;
}

.roast-image-wrapper {
  aspect-ratio: 1.15;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dark-border);
}

.roast-active-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.image-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(23, 16, 12, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.image-label span:last-child {
  color: var(--brass-light);
}

/* --------------------------------------------------------------------------
   Curated Menu Section
   -------------------------------------------------------------------------- */
.menu-section {
  padding: 9vw 6vw 8vw;
  background: var(--oat);
}

.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5vw;
  margin-bottom: 44px;
}

.menu-head h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-top: 8px;
}

.menu-head h2 em {
  font-style: italic;
  color: var(--brass-dark);
}

.menu-intro {
  max-width: 480px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-muted);
}

.menu-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(31, 24, 20, 0.14);
  padding-bottom: 18px;
}

.menu-tab {
  padding: 11px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(31, 24, 20, 0.2);
  background: var(--cream);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition-fast);
  cursor: pointer;
}

.menu-tab.active, .menu-tab:hover {
  background: var(--espresso);
  color: #ffffff;
  border-color: var(--espresso);
  box-shadow: var(--shadow-sm);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.35s ease-out;
}

.tab-panel.active {
  display: grid;
}

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

.menu-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brass);
}

.menu-card.featured {
  background: #ffffff;
  border: 1.5px solid var(--brass);
  box-shadow: 0 10px 30px rgba(200, 149, 71, 0.16);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-tag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brass-dark);
  text-transform: uppercase;
}

.card-badge {
  font-family: var(--mono);
  font-size: 9px;
  background: rgba(200, 149, 71, 0.16);
  color: var(--brass-dark);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.menu-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 10px;
  line-height: 1.2;
}

.card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 18px;
}

.card-meta {
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-footer-note {
  margin-top: 45px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.note-box strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--espresso);
  margin-bottom: 4px;
}

.note-box p {
  font-size: 13px;
  color: var(--ink-muted);
  max-width: 600px;
}

/* --------------------------------------------------------------------------
   Curated Photo Mosaic Section
   (Fixed card container & text overflowing issues)
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 9vw 6vw 8vw;
  background: #d8cdbe;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4vw;
  margin-bottom: 36px;
}

.gallery-header h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 8px;
}

.gallery-header h2 em {
  font-style: italic;
  color: var(--brass-dark);
}

.gallery-catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--espresso);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.gallery-catalog-btn:hover {
  background: var(--dark-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.mosaic-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: #201510;
  min-height: 0;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mosaic-item:hover img {
  transform: scale(1.06);
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 11, 8, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.mosaic-item:hover .mosaic-overlay {
  opacity: 1;
}

.mosaic-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--brass-light);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mosaic-overlay h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.mosaic-zoom {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
}

.item-wide {
  grid-row: span 2;
}

.item-tall {
  grid-row: span 2;
}

/* Mosaic Note Card - Flawlessly contained on all screen sizes */
.mosaic-note {
  background: var(--cream);
  border: 1px solid rgba(31, 24, 20, 0.14);
  border-radius: var(--radius-sm);
  padding: clamp(24px, 3.5vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
  overflow: hidden;
  height: 100%;
  min-height: 0;
}

.mosaic-note-content {
  display: flex;
  flex-direction: column;
}

.mosaic-note h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.02;
  font-weight: 500;
  margin: 6px 0 14px;
  letter-spacing: -0.03em;
}

.mosaic-note h3 em {
  font-style: italic;
  color: var(--brass-dark);
}

.mosaic-note p {
  font-size: clamp(12px, 1.1vw, 13.5px);
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.stamp-pill {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brass-dark);
  background: var(--cream-alt);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
  align-self: flex-start;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   Hours Band
   -------------------------------------------------------------------------- */
.hours-band {
  padding: 8vw 6vw;
  background: var(--oat);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
}

.hours-info h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 10px 0 20px;
}

.hours-info h2 em {
  font-style: italic;
  color: var(--brass-dark);
}

.hours-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 480px;
  margin-bottom: 32px;
}

.hours-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hours-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px;
  box-shadow: var(--shadow-md);
}

.hours-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hours-top strong {
  color: var(--brass-dark);
}

.hours-status {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
}

.status-led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 10px rgba(90, 115, 78, 0.8);
  flex-shrink: 0;
}

.status-led.closed {
  background: var(--closed-red);
  box-shadow: 0 0 10px rgba(164, 72, 58, 0.8);
}

.status-text-block strong {
  display: block;
  font-size: 16px;
  color: var(--espresso);
  font-weight: 700;
}

.status-text-block span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-muted);
}

.hours-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  margin-bottom: 22px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 13px;
}

.hours-row:not(:last-child) {
  border-bottom: 1px dashed var(--line);
}

.hours-row span {
  color: var(--ink-muted);
}

.hours-row b {
  font-weight: 700;
  color: var(--espresso);
}

.lunch-row b {
  color: var(--brass-dark);
}

.hours-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-muted);
  gap: 12px;
  flex-wrap: wrap;
}

.phone-link {
  font-weight: 700;
  color: var(--brass-dark);
}

.phone-link:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Visit & Location Section with Leaflet Map
   -------------------------------------------------------------------------- */
.visit {
  background: var(--espresso);
  color: #ffffff;
  padding-left: 6vw;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 760px;
}

.visit-copy {
  padding: 8vw 4vw 8vw 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-copy h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 12px 0 20px;
}

.visit-copy h2 em {
  font-style: italic;
  color: var(--brass-soft);
}

.visit-address {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
}

.detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.detail-icon {
  font-size: 18px;
}

.detail-item b {
  display: block;
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 2px;
}

.detail-item span, .detail-item a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.detail-item a:hover {
  color: var(--brass-light);
}

.visit-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.social-links-row {
  border-top: 1px solid var(--dark-border);
  padding-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.social-link:hover {
  color: var(--brass-light);
}

.map-shell {
  min-height: 600px;
  position: relative;
  background: #18110d;
}

.map-shell #map {
  position: absolute;
  inset: 0;
  filter: grayscale(0.8) sepia(0.2) saturate(0.85) contrast(1.08);
}

.leaflet-control-zoom {
  display: none !important;
}

.map-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(23, 16, 12, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.caption-left b {
  display: block;
  color: var(--brass-light);
  margin-bottom: 2px;
}

.caption-left span {
  color: rgba(255, 255, 255, 0.6);
}

.coord {
  color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------------
   Closing Section
   -------------------------------------------------------------------------- */
.closing {
  min-height: 70vh;
  background: #140d0a;
  color: #f7f2eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.closing-circle {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 600px;
  max-height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.closing-mark {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--brass);
  margin-bottom: 12px;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(60px, 9vw, 130px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.closing h2 em {
  font-style: italic;
  color: #f7ebdb;
}

.closing-copy {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 34px;
}

.closing-btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Full Rich Authentic Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #0f0907;
  color: rgba(255, 255, 255, 0.65);
  padding: 70px 6vw 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 5vw;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 20px;
}

.brand-col .footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-mark {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--brass-light);
}

.footer-brand strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-brand p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 360px;
}

.footer-address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}

.footer-address strong {
  color: #ffffff;
}

.footer-phone {
  font-size: 13px;
  margin-bottom: 16px;
}

.gold-link {
  color: var(--brass-light);
  font-weight: 700;
}

.gold-link:hover {
  text-decoration: underline;
}

.footer-dir-btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-soft);
  border-bottom: 1px solid rgba(223, 184, 108, 0.4);
  padding-bottom: 2px;
}

.footer-dir-btn:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.footer-hours-list, .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.footer-hours-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-hours-list span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-hours-list strong {
  color: #ffffff;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brass-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copy-line {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.5;
}

.footer-bottom-phone {
  color: var(--brass-soft);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom-phone:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-origin-line {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10.5px;
}

.footer-credit {
  display: flex;
  align-items: center;
}

.credit-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(200, 149, 71, 0.07) 100%);
  border: 1px solid rgba(200, 149, 71, 0.3);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.credit-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(223, 184, 108, 0.18), transparent);
  transition: left 0.6s ease;
}

.credit-pill:hover::before {
  left: 100%;
}

.credit-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 8px rgba(200, 149, 71, 0.8);
  display: inline-block;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.credit-label {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 10px;
}

.credit-name {
  color: var(--brass-light);
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.credit-arrow {
  color: var(--brass-soft);
  transition: transform 0.25s ease, color 0.25s ease;
}

.credit-pill:hover {
  background: linear-gradient(135deg, rgba(200, 149, 71, 0.2) 0%, rgba(223, 184, 108, 0.14) 100%);
  border-color: var(--brass-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 149, 71, 0.28), 0 0 12px rgba(200, 149, 71, 0.22);
}

.credit-pill:hover .credit-dot {
  transform: scale(1.35);
  background: #ffffff;
  box-shadow: 0 0 10px #ffffff, 0 0 16px var(--brass-light);
}

.credit-pill:hover .credit-name {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(223, 184, 108, 0.6);
}

.credit-pill:hover .credit-arrow {
  color: #ffffff;
  transform: translate(2px, -2px);
}

/* --------------------------------------------------------------------------
   Photo Lightbox Modal
   -------------------------------------------------------------------------- */
.photo-lightbox {
  width: min(880px, 94vw);
  max-height: 90vh;
  margin: auto;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  background: var(--espresso);
  color: #ffffff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.photo-lightbox::backdrop {
  background: rgba(14, 9, 7, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--brass);
  color: var(--espresso);
}

.lightbox-media {
  max-height: 65vh;
  background: #0d0806;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media img {
  max-height: 65vh;
  width: 100%;
  object-fit: contain;
}

.lightbox-caption {
  padding: 24px 30px;
  background: var(--dark);
}

.lightbox-caption h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 6px;
}

.lightbox-caption p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Mobile Sticky Quick Actions Bar
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(23, 16, 12, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--dark-border);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.mobile-sticky-bar .sticky-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-sticky-bar .call-action {
  background: var(--brass);
  color: var(--espresso);
}

.mobile-sticky-bar .dir-action {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .manifesto {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .manifesto-stamp {
    position: static;
    display: inline-block;
  }
  .stamp-inner {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    padding: 10px 18px;
    transform: none;
  }
  .stamp-inner span { margin: 0; }
  .stamp-inner em { border-top: none; padding-top: 0; margin-top: 0; border-left: 1px solid var(--line); padding-left: 14px; }
  
  .split-scene {
    grid-template-columns: 1fr;
  }
  .scene-visuals {
    border-right: none;
    border-bottom: 1px solid var(--dark-border);
  }
  .scene-photo {
    min-height: 440px;
  }
  
  .roast-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hours-band {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .visit {
    grid-template-columns: 1fr;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .visit-copy {
    padding: 8vw 0 6vw;
  }
  .map-shell {
    min-height: 480px;
    margin: 0 -6vw;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 820px) {
  .nav, .phone-btn, .directions-btn {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .topbar {
    padding: 0 5vw;
    height: 72px;
  }
  .hero-content {
    padding: 0 5vw 4vh;
  }
  .hero-footer {
    left: 5vw;
    right: 5vw;
  }
  .scroll-note {
    display: none;
  }
  
  .manifesto-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Robust Gallery Mosaic on Tablets */
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(180px, auto);
    gap: 12px;
  }
  .item-wide {
    grid-row: span 1;
    grid-column: span 2;
    min-height: 240px;
  }
  .item-tall {
    grid-row: span 1;
    grid-column: span 1;
    min-height: 200px;
  }
  .mosaic-note {
    grid-column: span 2;
    grid-row: auto;
    height: auto;
    min-height: auto;
    padding: 30px 24px;
  }
  
  .mobile-sticky-bar {
    display: flex;
    gap: 10px;
  }
  
  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(40px, 11vw, 54px);
  }
  .hero-copy {
    font-size: 15px;
  }
  .hero-badge {
    font-size: 9px;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-row .button {
    width: 100%;
  }
  
  .manifesto {
    padding: 14vw 5vw 12vw;
  }
  .manifesto-main h2 {
    font-size: 32px;
  }
  
  .scene-photo {
    min-height: 320px;
  }
  .scene-copy {
    padding: 12vw 6vw;
  }
  .small-grid {
    grid-template-columns: 1fr;
  }
  
  .roast-section {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .roast-sequence {
    grid-template-columns: 1fr;
  }
  
  .menu-section {
    padding: 14vw 5vw 12vw;
  }
  .menu-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-section {
    padding: 14vw 5vw 12vw;
  }
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Mobile Mosaic: Each photo gets clean height, Note Card adapts dynamically to its content with zero overflow */
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }
  .mosaic-item {
    height: 230px;
  }
  .item-wide, .item-tall {
    grid-column: span 1;
    grid-row: span 1;
    height: 240px;
  }
  .mosaic-note {
    grid-column: span 1;
    grid-row: auto;
    height: auto;
    min-height: auto;
    padding: 28px 22px;
  }
  .mosaic-note h3 {
    font-size: 28px;
    margin: 8px 0 10px;
  }
  .mosaic-note p {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .stamp-pill {
    margin-top: 0;
  }
  
  .hours-band {
    padding: 14vw 5vw;
  }
  .hours-card {
    padding: 22px;
  }
  
  .footer {
    padding: 50px 5vw 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-credit {
    width: 100%;
  }
  .credit-pill {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }
}
