/* ==========================================================
   style.css — Coffee Time Global Design System
   8-page static site | Vanilla CSS | Cloudflare Pages ready
   ========================================================== */

/* ----------------------------------------------------------
   1. GOOGLE FONTS IMPORT
---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Playfair+Display:ital,wght@0,700;1,600&display=swap');

/* ----------------------------------------------------------
   2. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
---------------------------------------------------------- */
:root {
  --bg-main:      #f4ece1;
  --bg-card:      #fbf8f4;
  --bg-dark:      #1e110a;
  --text-dark:    #332211;
  --text-muted:   #6b5542;
  --accent:       #8b5a2b;
  --accent-light: #b07d50;
  --btn-bg:       #e3d1ba;
  --btn-hover:    #cbae92;
  --white:        #ffffff;

  --font-main:    'Poppins', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --section-pad:  90px;
  --container:    1200px;
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;

  --transition:      all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.65s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm:    0 4px 16px rgba(51, 34, 17, 0.06);
  --shadow-md:    0 12px 40px rgba(51, 34, 17, 0.10);
  --shadow-lg:    0 24px 60px rgba(51, 34, 17, 0.14);
}

/* ----------------------------------------------------------
   3. BASE RESETS
---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-weight: 600; color: var(--text-dark); line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ----------------------------------------------------------
   4. LAYOUT
---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
section { padding: var(--section-pad) 0; }
.page-wrapper  { padding-top: 80px; min-height: 80vh; }
.home-wrapper  { min-height: 100vh; }

/* ----------------------------------------------------------
   5. BUTTONS
---------------------------------------------------------- */
.btn-theme {
  background-color: var(--btn-bg);
  color: var(--text-dark);
  padding: 13px 32px;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: var(--font-main);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}
.btn-theme:hover {
  background-color: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 90, 43, 0.20);
}
.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 12px 32px;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: var(--font-main);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}
.btn-outline:hover {
  background-color: #fff;
  color: var(--text-dark);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-accent {
  background-color: var(--accent);
  color: #fff;
  padding: 13px 32px;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: var(--font-main);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}
.btn-accent:hover {
  background-color: #7a4e25;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 90, 43, 0.30);
}

/* ----------------------------------------------------------
   6. NAVBAR
---------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 22px 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(33, 21, 10, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.navbar.dark-navbar {
  background: rgba(33, 21, 10, 0.97);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  z-index: 1001;
  flex-shrink: 0;
}
.navbar-brand span { color: var(--btn-hover); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0; height: 2px;
  bottom: -2px; left: 0;
  background: var(--btn-hover);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }
.nav-cta {
  background-color: var(--btn-bg) !important;
  color: var(--text-dark) !important;
  padding: 8px 20px !important;
  border-radius: 3px !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.03em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background-color: var(--btn-hover) !important; }
.hamburger {
  display: none;
  background: none; border: none;
  color: #fff; font-size: 1.8rem;
  cursor: pointer; z-index: 1001;
  line-height: 1; padding: 4px;
}

/* ----------------------------------------------------------
   7. MOBILE MENU
---------------------------------------------------------- */
@media (max-width: 991px) {
  .hamburger { display: block; }
  .navbar { background: rgba(33, 21, 10, 0.98) !important; padding: 14px 0 !important; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--text-dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 48px;
    gap: 0;
    transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.30);
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    font-size: 1.1rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.8);
    opacity: 1;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.active, .nav-links a:hover { color: var(--btn-hover); }
  .nav-cta {
    background-color: transparent !important;
    color: var(--btn-hover) !important;
    padding: 14px 0 !important;
    border-radius: 0 !important;
  }
  .menu-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .menu-overlay.open { display: block; opacity: 1; }
}

/* ----------------------------------------------------------
   8. FOOTER
---------------------------------------------------------- */
footer {
  background-color: var(--text-dark);
  color: #fff;
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}
.footer-brand span { color: var(--btn-hover); }
.footer-title {
  color: #fff;
  margin-bottom: 22px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.footer-desc {
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  line-height: 1.85;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a, .footer-links span {
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links a:hover { color: var(--btn-hover); }
.footer-links i { font-size: 1rem; color: var(--accent-light); flex-shrink: 0; }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.42);
  font-size: 0.82rem;
}
@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 576px)  { .footer-grid { grid-template-columns: 1fr; gap: 36px; } .footer-desc { max-width: 100%; } }

/* ----------------------------------------------------------
   9. SCROLL REVEAL ANIMATIONS
---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal-stagger.active > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.05s; }
.reveal-stagger.active > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.15s; }
.reveal-stagger.active > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.25s; }
.reveal-stagger.active > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.35s; }
.reveal-stagger.active > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.45s; }
.reveal-stagger.active > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.55s; }

/* ----------------------------------------------------------
   10. PAGE HEROES (inner pages)
---------------------------------------------------------- */
.page-hero {
  position: relative;
  height: 52vh; min-height: 380px;
  display: flex; align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,17,8,0.92) 0%, rgba(0,0,0,0.30) 100%);
  z-index: 1;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1.04); }
.page-hero-content { position: relative; z-index: 2; color: #fff; }
.page-hero-eyebrow {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--btn-hover); margin-bottom: 14px;
}
.page-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 12px;
}
.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px; line-height: 1.75;
}

/* ----------------------------------------------------------
   11. SECTION HEADERS
---------------------------------------------------------- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--accent); margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--text-dark);
  font-family: var(--font-display);
}
.section-header p {
  color: var(--text-muted); font-size: 1rem;
  max-width: 580px; margin: 16px auto 0; line-height: 1.75;
}

/* ----------------------------------------------------------
   12. HOME — HERO
---------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh; min-height: 620px;
  background: url('https://images.unsplash.com/photo-1497935586351-b67a49e012bf?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.44) 55%, rgba(0,0,0,0.10) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 660px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--btn-hover); margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px; background: var(--btn-hover);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.08; margin-bottom: 22px; color: #fff;
}
.hero-subtitle {
  font-size: 1.08rem; font-weight: 300; margin-bottom: 38px;
  color: rgba(255,255,255,0.88); max-width: 500px; line-height: 1.85;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.4; transform:scaleY(1); }
  50%      { opacity:1; transform:scaleY(0.82); }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.8rem; }
  .hero-buttons { flex-direction: column; max-width: 280px; }
}

/* ----------------------------------------------------------
   13. HOME — HIGHLIGHTS
---------------------------------------------------------- */
.highlights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.highlight-card {
  background: var(--white); padding: 44px 32px;
  border-radius: var(--radius-md); text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--btn-hover));
  transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.highlight-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-icon {
  font-size: 2.8rem; color: var(--accent); margin-bottom: 22px; display: block;
  transition: transform 0.3s ease;
}
.highlight-card:hover .highlight-icon { transform: scale(1.12) rotate(-4deg); }
.highlight-title { font-size: 1.2rem; margin-bottom: 12px; font-weight: 600; }
.highlight-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }
@media (max-width: 768px) { .highlights-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   14. HOME — SPECIALS
---------------------------------------------------------- */
.specials-strip { background: linear-gradient(135deg, #2c1a0e 0%, #5a3520 100%); padding: 72px 0; }
.specials-strip .section-header h2 { color: #fff; }
.specials-strip .section-header p  { color: rgba(255,255,255,0.7); }
.specials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.special-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-md); padding: 32px 28px; transition: var(--transition);
}
.special-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); }
.special-badge {
  display: inline-block; background: var(--btn-hover); color: var(--text-dark);
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.special-name  { font-size: 1.18rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.special-desc  { font-size: 0.88rem; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 20px; }
.special-price { font-size: 1.5rem; font-weight: 700; color: var(--btn-hover); }
.special-price sup { font-size: 0.9rem; font-weight: 500; vertical-align: super; }
@media (max-width: 768px) { .specials-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   15. HOME — VIBE / TESTIMONIAL
---------------------------------------------------------- */
.vibe-section {
  background: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&q=80&w=2000') center/cover fixed;
  position: relative; padding: 130px 0; text-align: center;
}
.vibe-section::before { content: ''; position: absolute; inset: 0; background: rgba(30,17,8,0.87); }
.vibe-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.quote-icon { font-size: 3.5rem; color: var(--btn-hover); margin-bottom: 24px; display: block; opacity: 0.75; }
.vibe-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 28px;
  font-style: italic; line-height: 1.45;
}
.vibe-content p { font-size: 1.08rem; opacity: 0.85; margin-bottom: 32px; line-height: 1.85; font-style: italic; color: rgba(255,255,255,0.88); }
.testimonial-author { font-weight: 600; font-size: 0.8rem; color: var(--btn-hover); text-transform: uppercase; letter-spacing: 0.22em; }

/* ----------------------------------------------------------
   16. MENU PAGE
---------------------------------------------------------- */
.menu-tabs-wrapper { text-align: center; margin-bottom: 52px; }
.menu-tabs {
  display: inline-flex; gap: 6px; flex-wrap: wrap;
  padding: 7px; background: var(--white); border-radius: 50px; box-shadow: var(--shadow-sm);
}
.menu-tab-btn {
  padding: 10px 24px; border: none; background: transparent; border-radius: 40px;
  font-size: 0.88rem; font-weight: 500; font-family: var(--font-main);
  color: var(--text-muted); cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.menu-tab-btn:hover { color: var(--text-dark); }
.menu-tab-btn.active { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(139,90,43,0.30); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px 60px; }
@media (max-width: 768px) { .menu-grid { grid-template-columns: 1fr; gap: 36px; } }
.menu-category-title {
  font-family: var(--font-display); font-size: 1.55rem; color: var(--text-dark);
  margin-bottom: 28px; padding-bottom: 12px; border-bottom: 2px solid var(--btn-bg);
  display: flex; align-items: center; gap: 12px;
}
.menu-category-icon { font-size: 1.3rem; color: var(--accent); }
.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 22px; padding-bottom: 22px;
  border-bottom: 1px dashed rgba(107,85,66,0.2);
}
.menu-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.menu-item-info { flex: 1; padding-right: 20px; }
.menu-item-title { font-size: 1.03rem; font-weight: 600; margin-bottom: 5px; }
.menu-item-desc  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }
.menu-item-tags  { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.menu-tag { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 9px; border-radius: 20px; background: var(--bg-main); color: var(--text-muted); }
.menu-tag.new     { background: #d4edda; color: #155724; }
.menu-tag.popular { background: #fff3cd; color: #856404; }
.menu-tag.vegan   { background: #d1ecf1; color: #0c5460; }
.menu-item-price { font-weight: 700; color: var(--accent); font-size: 1.03rem; white-space: nowrap; flex-shrink: 0; }
.menu-highlight-banner {
  margin-top: 56px; padding: 48px 40px;
  background: linear-gradient(135deg, #2c1a0e 0%, #5a3520 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; color: #fff;
}
.menu-highlight-banner h3 { font-family: var(--font-display); font-size: 1.55rem; color: #fff; margin-bottom: 10px; }
.menu-highlight-banner p  { font-size: 0.92rem; color: rgba(255,255,255,0.75); max-width: 460px; line-height: 1.75; }
.menu-highlight-banner .price { font-size: 2rem; font-weight: 700; color: var(--btn-hover); }
@media (max-width: 768px) { .menu-highlight-banner { flex-direction: column; padding: 32px 24px; } }

/* ----------------------------------------------------------
   17. STORY PAGE
---------------------------------------------------------- */
.story-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 96px;
}
.story-block:last-of-type { margin-bottom: 0; }
.story-block.reverse .story-img  { order: 2; }
.story-block.reverse .story-text { order: 1; }
.story-img img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.story-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--accent); margin-bottom: 14px; display: block;
}
.story-text h2 { font-family: var(--font-display); font-size: clamp(1.7rem,3vw,2.4rem); margin-bottom: 20px; line-height: 1.3; }
.story-text p  { color: var(--text-muted); font-size: 0.97rem; line-height: 1.95; margin-bottom: 18px; }
.story-text p:last-of-type { margin-bottom: 0; }
.founder-quote { background: var(--text-dark); padding: 100px 0; text-align: center; }
.founder-quote blockquote {
  font-family: var(--font-display); font-size: clamp(1.2rem,2.5vw,1.65rem);
  font-style: italic; font-weight: 600; line-height: 1.7;
  max-width: 800px; margin: 0 auto 28px; color: rgba(255,255,255,0.92);
}
.founder-name { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--btn-hover); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.value-card {
  padding: 44px 32px; background: var(--white); border-radius: var(--radius-md);
  border-top: 3px solid var(--accent); box-shadow: var(--shadow-sm); transition: var(--transition);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.value-num { font-size: 3rem; font-weight: 700; color: var(--btn-bg); margin-bottom: 14px; font-family: var(--font-display); }
.value-card h4 { font-size: 1.12rem; margin-bottom: 12px; }
.value-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }
@media (max-width: 768px) {
  .story-block { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .story-block.reverse .story-img  { order: 0; }
  .story-block.reverse .story-text { order: 0; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   18. COFFEE / ROASTERY PAGE
---------------------------------------------------------- */
.origins-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.origin-card { background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.origin-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.origin-card .origin-img-wrap { overflow: hidden; }
.origin-card .origin-img-wrap img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s ease; }
.origin-card:hover .origin-img-wrap img { transform: scale(1.06); }
.origin-card-body { padding: 28px; }
.origin-flag { font-size: 2rem; margin-bottom: 10px; }
.origin-card-body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.origin-card-body p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }
.origin-tag { display: inline-block; margin-top: 16px; background: var(--btn-bg); color: var(--text-dark); padding: 5px 16px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.process-banner { position: relative; padding: 110px 0; overflow: hidden; }
.process-banner-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1594480184769-4a688f2fa4c9?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
}
.process-banner-bg::after { content: ''; position: absolute; inset: 0; background: rgba(24,14,6,0.90); }
.process-content { position: relative; z-index: 2; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.process-step { color: #fff; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--btn-hover);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; font-family: var(--font-display);
  color: var(--btn-hover); margin: 0 auto 20px; transition: var(--transition);
}
.process-step:hover .step-num { background: var(--btn-hover); color: var(--text-dark); }
.process-step h4 { color: #fff; margin-bottom: 10px; }
.process-step p  { font-size: 0.86rem; color: rgba(255,255,255,0.68); line-height: 1.65; }
.roast-profiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.roast-card {
  padding: 40px 32px; background: var(--white); border-radius: var(--radius-md);
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.roast-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.roast-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--btn-hover));
}
.roast-level { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent); margin-bottom: 10px; }
.roast-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 14px; }
.roast-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.roast-notes   { display: flex; flex-wrap: wrap; gap: 8px; }
.note-tag { background: var(--bg-main); color: var(--text-muted); padding: 4px 14px; border-radius: 20px; font-size: 0.76rem; }
.ethics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ethics-text h2 { font-family: var(--font-display); font-size: clamp(1.7rem,3vw,2.2rem); margin-bottom: 20px; }
.ethics-text p  { color: var(--text-muted); line-height: 1.95; margin-bottom: 16px; font-size: 0.97rem; }
.ethics-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card { padding: 32px 24px; background: var(--bg-card); border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--accent); display: block; line-height: 1; margin-bottom: 8px; }
.stat-label  { font-size: 0.84rem; color: var(--text-muted); font-weight: 500; }
@media (max-width: 768px) {
  .origins-grid, .roast-profiles { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .ethics-grid   { grid-template-columns: 1fr; gap: 48px; }
}

/* ----------------------------------------------------------
   19. EXPERIENCES PAGE
---------------------------------------------------------- */
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.event-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column;
}
.event-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.event-card-img { overflow: hidden; height: 220px; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.event-card:hover .event-card-img img { transform: scale(1.07); }
.event-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.event-type {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); background: var(--bg-main);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.event-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; font-family: var(--font-display); }
.event-card-body p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 20px; flex: 1; }
.event-meta { display: flex; gap: 14px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.event-meta span { display: flex; align-items: center; gap: 6px; }
.event-price { font-size: 1.05rem; font-weight: 700; color: var(--accent); margin-bottom: 16px; }
.event-price .free { color: #2d6a4f; }
@media (max-width: 991px) { .events-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .events-grid { grid-template-columns: 1fr; } }
.private-event-cta {
  background: linear-gradient(135deg, #1e110a 0%, #4a2a14 100%);
  border-radius: var(--radius-lg); padding: 64px 56px;
  text-align: center; color: #fff; margin-top: 64px;
}
.private-event-cta h2 { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.2rem); color: #fff; margin-bottom: 14px; }
.private-event-cta p  { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 32px; line-height: 1.75; }
@media (max-width: 576px) { .private-event-cta { padding: 48px 28px; } }

/* ----------------------------------------------------------
   20. GALLERY PAGE
---------------------------------------------------------- */
.gallery-grid { columns: 3; column-gap: 20px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 20px;
  border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.55s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: rgba(30,17,8,0.52);
  opacity: 0; transition: opacity 0.35s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 2rem; color: #fff; }
@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.93); z-index: 9000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius-sm); box-shadow: 0 24px 80px rgba(0,0,0,0.6); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: #fff;
  font-size: 2.4rem; cursor: pointer; opacity: 0.75; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ----------------------------------------------------------
   21. RESERVATIONS PAGE
---------------------------------------------------------- */
.reservation-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: start; }
.reservation-info h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.4rem); margin-bottom: 16px; }
.reservation-info p  { color: var(--text-muted); line-height: 1.85; margin-bottom: 36px; font-size: 0.97rem; }
.res-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.res-feature  { display: flex; align-items: flex-start; gap: 14px; }
.res-feature-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--btn-bg); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--accent); flex-shrink: 0; }
.res-feature-text strong { display: block; font-size: 0.92rem; margin-bottom: 3px; }
.res-feature-text span   { font-size: 0.82rem; color: var(--text-muted); }
.reservation-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px 44px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; color: var(--text-dark); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(107,85,66,0.22); border-radius: var(--radius-sm);
  background: var(--bg-main); color: var(--text-dark);
  font-family: var(--font-main); font-size: 0.92rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease; outline: none;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(139,90,43,0.12); background: var(--white); }
.form-control::placeholder { color: rgba(107,85,66,0.5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b5a2b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer;
}
textarea.form-control { resize: vertical; min-height: 100px; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); }
@media (max-width: 768px) {
  .reservation-grid { grid-template-columns: 1fr; gap: 48px; }
  .res-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .reservation-form-card { padding: 32px 24px; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
}

/* ----------------------------------------------------------
   22. CONTACT PAGE
---------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px 44px; box-shadow: var(--shadow-md); }
.contact-info-card h2 { font-family: var(--font-display); font-size: 1.9rem; margin-bottom: 10px; }
.contact-info-card .intro-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(107,85,66,0.10); }
.contact-detail:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-detail-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--bg-main); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--accent); flex-shrink: 0; }
.contact-detail-body strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 5px; }
.contact-detail-body p, .contact-detail-body a { font-size: 0.97rem; color: var(--text-dark); line-height: 1.65; }
.contact-detail-body a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table tr:not(:last-child) td { padding-bottom: 7px; }
.hours-table td:first-child { font-weight: 500; padding-right: 24px; width: 110px; }
.hours-table td:last-child  { color: var(--text-muted); font-size: 0.92rem; }
.map-panel { position: sticky; top: 100px; }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 420px; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }
.parking-card { background: var(--white); border-radius: var(--radius-md); padding: 24px 28px; margin-top: 24px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start; }
.parking-card i { font-size: 1.5rem; color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.parking-card h4 { font-size: 1rem; margin-bottom: 6px; }
.parking-card p  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }
.amenities-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.amenity-badge { display: flex; align-items: center; gap: 8px; background: var(--bg-main); border: 1px solid rgba(107,85,66,0.15); padding: 8px 16px; border-radius: 40px; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.amenity-badge i { color: var(--accent); }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-panel { position: static; }
  .map-wrapper { height: 300px; }
  .contact-info-card { padding: 32px 24px; }
}

/* ----------------------------------------------------------
   23. MISC UTILITIES
---------------------------------------------------------- */
@media (max-width: 576px) { :root { --section-pad: 60px; } .section-header { margin-bottom: 40px; } }
.divider { height: 1px; background: rgba(107,85,66,0.15); margin: 0; }
.bg-white-section { background: var(--white); }
.bg-warm { background: var(--bg-main); }
