/* ============================================================
   ELLE COFFEE HOUSE — style.css
   ✏️  CUSTOMIZATION: Update CSS variables below to match client's brand.
   Replace --color-espresso, --color-cream, --color-gold with actual brand colors.

   FONTS: Self-hosted via font-face.css + a /fonts/ folder.
   No Google Fonts CDN = no FOUT, no external network dependency.
   ============================================================ */

@import url('font-face.css');

/* ── ROOT TOKENS ── */
:root {
  /* 🎨 BRAND COLORS — replace with client's hex codes */
  --color-espresso:   #1C1007;
  --color-roast:      #3B1F0D;
  --color-caramel:    #8B5E3C;
  --color-latte:      #C8956A;
  --color-cream:      #F5EFE6;
  --color-oat:        #EDE3D5;
  --color-gold:       #C9A96E;
  --color-white:      #FDFAF6;
  --color-text:       #2A1A0E;
  --color-muted:      #7A6454;

  /* TYPOGRAPHY */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  /* SPACING */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  /* LAYOUT */
  --max-width: 1200px;
  --nav-height: 80px;

  /* TRANSITIONS */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.4s;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITY ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section { padding: var(--space-xl) 0; }
.section--dark { background: var(--color-espresso); color: var(--color-cream); }
.section--oat  { background: var(--color-oat); }
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 520px;
  line-height: 1.8;
}
.dark .section-subtitle { color: var(--color-latte); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--duration);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--color-gold);
  color: var(--color-espresso);
  border: 1.5px solid var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-caramel);
  border-color: var(--color-caramel);
  color: var(--color-cream);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid rgba(201,169,110,0.6);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--color-espresso);
  color: var(--color-cream);
  border: 1.5px solid var(--color-espresso);
}
.btn-dark:hover {
  background: var(--color-roast);
  transform: translateY(-2px);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--duration) var(--ease);
}
.nav.scrolled {
  background: var(--color-espresso);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-cream);
  letter-spacing: 0.04em;
}
/* ✏️  LOGO: Replace text with <img> tag if client has a logo file */
.nav-logo span { color: var(--color-gold); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.8);
  transition: color var(--duration);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: var(--space-sm); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-cream);
  transition: all var(--duration) var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay — smooth fade+slide instead of instant show/hide */
.nav-mobile {
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: var(--color-espresso);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  /* Always in DOM, hidden via opacity + pointer-events */
  display: flex;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-cream);
  letter-spacing: 0.05em;
  transition: color var(--duration);
}
.nav-mobile a:hover { color: var(--color-gold); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* ✏️  HERO IMAGE: Replace URL with client's hero photo */
  background: url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?w=1800&q=80') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,16,7,0.88) 0%, rgba(28,16,7,0.5) 60%, rgba(28,16,7,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  padding-top: var(--nav-height);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}
.hero-eyebrow span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(245,239,230,0.75);
  max-width: 440px;
  margin-bottom: var(--space-md);
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,239,230,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── FEATURED STRIP ── */
.features-strip {
  background: var(--color-roast);
  padding: var(--space-md) 0;
}
.features-strip-inner {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-cream);
}
.feature-item .icon {
  font-size: 1.4rem;
}
.feature-item p {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245,239,230,0.7);
}
.feature-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-cream);
  letter-spacing: 0.02em;
}

/* ── ABOUT PREVIEW (home) ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.about-split-image {
  position: relative;
  overflow: hidden;
  /* ✏️  ABOUT IMAGE: Replace with client's interior/team photo */
  background: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=900&q=80') center/cover;
}
.about-split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,16,7,0.3), transparent);
}
.about-split-text {
  background: var(--color-espresso);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split-text .section-title { color: var(--color-cream); }
.about-split-text .section-subtitle { color: var(--color-latte); }
.about-split-text p { color: rgba(245,239,230,0.7); line-height: 1.9; margin-bottom: 1rem; }

/* ── MENU PREVIEW (home) ── */
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: var(--space-lg);
}
.menu-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.menu-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.menu-card:hover .menu-card-bg { transform: scale(1.06); }
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,16,7,0.9) 0%, rgba(28,16,7,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
}
.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-cream);
}
.menu-card p {
  font-size: 0.78rem;
  color: rgba(245,239,230,0.65);
  margin-top: 0.3rem;
}
.menu-card .price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-top: 0.5rem;
}

/* ── FULL MENU PAGE ── */
.menu-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.menu-filter {
  padding: 0.5rem 1.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--color-oat);
  color: var(--color-muted);
  background: transparent;
  transition: all var(--duration);
  cursor: pointer;
}
.menu-filter.active,
.menu-filter:hover {
  background: var(--color-espresso);
  border-color: var(--color-espresso);
  color: var(--color-cream);
}
.menu-section {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.menu-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.menu-section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-espresso);
  border-bottom: 1px solid var(--color-oat);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.menu-item-card {
  background: var(--color-white);
  border: 1px solid var(--color-oat);
  padding: 1.5rem;
  transition: all var(--duration) var(--ease);
}
.menu-item-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139,94,60,0.1);
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.menu-item-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
}
.menu-item-card .price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  white-space: nowrap;
  margin-left: 1rem;
}
.menu-item-card p {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.menu-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  background: var(--color-oat);
  color: var(--color-caramel);
  margin-top: 0.5rem;
  margin-right: 0.3rem;
}
.menu-badge.vegan { background: #e8f4e8; color: #3a7c3a; }
.menu-badge.gf { background: #fdf3e3; color: #b07d2a; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
/* Bento-style layout */
.g1 { grid-column: span 7; grid-row: span 2; aspect-ratio: 16/10; }
.g2 { grid-column: span 5; aspect-ratio: 4/3; }
.g3 { grid-column: span 5; aspect-ratio: 4/3; }
.g4 { grid-column: span 4; aspect-ratio: 1/1; }
.g5 { grid-column: span 4; aspect-ratio: 1/1; }
.g6 { grid-column: span 4; aspect-ratio: 1/1; }

/* ── ABOUT PAGE ── */
.about-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  /* ✏️  ABOUT HERO IMAGE */
  background: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1800&q=80') center/cover;
}
.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,16,7,0.92) 0%, rgba(28,16,7,0.4) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-height) + 2rem);
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1.1;
}
.about-hero h1 em { font-style: italic; color: var(--color-gold); }
.about-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-xl);
  align-items: start;
}
.about-sticky {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.about-values {
  margin-top: var(--space-lg);
  border-top: 1px solid var(--color-oat);
}
.about-value {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-oat);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.about-value-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--color-gold);
  padding-top: 0.2rem;
}
.about-value h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.about-value p { font-size: 0.85rem; color: var(--color-muted); line-height: 1.7; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--space-lg);
}
.team-card { text-align: center; }
.team-avatar {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: grayscale(20%);
  transition: filter var(--duration);
}
.team-card:hover .team-avatar { filter: grayscale(0); }
.team-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; }
.team-card p { font-size: 0.75rem; color: var(--color-gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-oat);
}
.contact-detail-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail-text h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 0.3rem; }
.contact-detail-text p { font-size: 0.95rem; color: var(--color-text); }
.contact-hours { margin-top: var(--space-md); }
.contact-hours h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 1rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-oat);
  font-size: 0.88rem;
}
.hours-row span:last-child { color: var(--color-gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--color-espresso);
  padding: var(--space-lg);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-latte);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(245,239,230,0.07);
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--color-cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--duration);
  -webkit-appearance: none;
  appearance: none;
}
/* BUG FIX: custom arrow for select — previously had no visible dropdown indicator */
.form-group select {
  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='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,239,230,0.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--color-gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--color-espresso); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

/* Map */
.map-wrap {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}
/* ✏️  MAP: Replace with actual Google Maps embed iframe */
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: sepia(20%) contrast(90%);
}

/* ── LOCATION PAGE ── */
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.location-map { position: relative; }
.location-map iframe { width: 100%; height: 100%; border: none; min-height: 500px; }
.location-info {
  background: var(--color-espresso);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info .section-title { color: var(--color-cream); }
.location-info p { color: rgba(245,239,230,0.7); margin-bottom: 1rem; }

/* ── REVIEWS ── */
.reviews-hero {
  background: var(--color-espresso);
  padding: var(--space-xl) 0;
  text-align: center;
}
.reviews-hero .section-title { color: var(--color-cream); }
.reviews-hero .section-subtitle { color: var(--color-latte); margin: 0 auto; }
.rating-big {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
  margin: 1rem 0 0.3rem;
}
.stars { color: var(--color-gold); font-size: 1.2rem; letter-spacing: 0.1em; }
.reviews-count { font-size: 0.75rem; color: var(--color-latte); letter-spacing: 0.1em; margin-top: 0.5rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}
.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-oat);
  padding: 2rem;
  position: relative;
  transition: all var(--duration) var(--ease);
}
.review-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(139,94,60,0.12);
}
.review-card .quote {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.4;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.review-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-oat);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-caramel);
  flex-shrink: 0;
  overflow: hidden;
}
.reviewer-info h5 { font-size: 0.85rem; font-weight: 600; }
.reviewer-info p { font-size: 0.7rem; color: var(--color-muted); margin-bottom: 0; font-style: normal; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--space-lg);
}
.blog-card {
  border: 1px solid var(--color-oat);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}
.blog-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(139,94,60,0.12);
}
.blog-card-img {
  height: 220px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-body .tag { margin-bottom: 0.5rem; }
.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.7rem;
}
.blog-card-body p { font-size: 0.82rem; color: var(--color-muted); line-height: 1.7; margin-bottom: 1rem; }
.blog-meta { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--color-muted); }

/* ── TESTIMONIAL QUOTE (homepage) ── */
.quote-section {
  background: var(--color-roast);
  padding: var(--space-xl) 0;
  text-align: center;
}
.quote-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: var(--color-cream);
  max-width: 780px;
  margin: 0 auto 1.5rem;
  line-height: 1.4;
  font-style: italic;
}
.quote-section cite {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--color-oat);
  padding: var(--space-lg) 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.newsletter h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
}
.newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 440px;
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--color-caramel);
  border-right: none;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--color-espresso); }
.newsletter-form .btn { border-radius: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--color-espresso);
  color: var(--color-cream);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(245,239,230,0.1);
}
.footer-brand .nav-logo { display: block; font-size: 1.8rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(245,239,230,0.5); line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--color-latte);
  transition: all var(--duration);
}
.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201,169,110,0.1);
}
.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(245,239,230,0.55);
  padding: 0.3rem 0;
  transition: color var(--duration);
}
.footer-col a:hover { color: var(--color-cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  font-size: 0.72rem;
  color: rgba(245,239,230,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}
/* ✏️  FOOTER: Update café name, social links, address */

/* ── LIGHTBOX ── */
/* BUG FIX: old lightbox had no CSS — was built entirely inline in JS with no animation */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 4, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(4px);
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img-wrap {
  max-width: 92vw;
  max-height: 90vh;
  transform: scale(0.92);
  transition: transform 0.4s var(--ease);
}
.lightbox-overlay.open .lightbox-img-wrap {
  transform: scale(1);
}
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--color-cream);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(28,16,7,0.6);
  transition: all var(--duration) var(--ease);
  z-index: 10000;
}
.lightbox-close:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(28,16,7,0.9);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 0 var(--space-lg);
  background: var(--color-espresso);
  text-align: center;
}
.page-hero .tag { margin-bottom: 0.5rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: var(--color-gold); }
.page-hero p {
  max-width: 480px;
  margin: 1rem auto 0;
  font-size: 0.95rem;
  color: rgba(245,239,230,0.6);
  line-height: 1.8;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BLOG FEATURED POST ── */
/* BUG FIX: was hardcoded inline grid with no mobile breakpoint */
.blog-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  min-height: 420px;
  margin-bottom: var(--space-lg);
  overflow: hidden;
}
.blog-featured-img {
  overflow: hidden;
}
.blog-featured-img img {
  transition: transform 0.7s var(--ease);
}
.blog-featured:hover .blog-featured-img img {
  transform: scale(1.04);
}
.blog-featured-body {
  background: var(--color-espresso);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split-image { aspect-ratio: 16/7; }
  .about-split-text { padding: var(--space-lg) var(--space-md); }
  .menu-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .about-body { grid-template-columns: 1fr; }
  .about-sticky { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .location-split { grid-template-columns: 1fr; }
  .location-info { padding: var(--space-lg) var(--space-md); }
}

@media (max-width: 768px) {
  :root { --space-xl: 4rem; --space-lg: 2.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .menu-preview-grid { grid-template-columns: 1fr; }
  .reviews-grid, .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .features-strip-inner { gap: var(--space-md); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g1, .g2, .g3, .g4, .g5, .g6 { grid-column: span 1; grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: var(--space-md); }
  /* BUG FIX: blog featured post was not responsive — hardcoded 2-col grid broke on mobile */
  .blog-featured { grid-template-columns: 1fr !important; }
  .blog-featured-img { min-height: 260px; aspect-ratio: 16/9; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}
