/* ===== BREW & BLOOM — COFFEE SHOP LANDING ===== */
:root {
  --cb-dark: #2C1810;
  --cb-dark2: #1A0E08;
  --cb-copper: #C67B4B;
  --cb-copper-light: #D4946E;
  --cb-cream: #F5E8D3;
  --cb-cream2: #FBF4EB;
  --cb-warm: #FDF8F3;
  --cb-text: #3D2C24;
  --cb-text-light: #8B7355;
  --cb-white: #FFFFFF;
  --cb-shadow: 0 4px 32px rgba(44,24,16,.08);
  --serif: 'Cormorant Garamond', 'Book Antiqua', serif;
  --sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Caveat', cursive;
}

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

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

.page-coffee {
  font-family: var(--sans);
  color: var(--cb-text);
  background: var(--cb-warm);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.coffee-cursor {
  position: fixed;
  width: 24px; height: 24px;
  border: 2px solid var(--cb-copper);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width .2s, height .2s, border-color .2s, background .2s;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
}
.coffee-cursor.coffee-cursor--hover {
  width: 48px; height: 48px;
  background: rgba(198,123,75,.15);
  border-color: var(--cb-copper-light);
}

/* ===== HEADER ===== */
.coffee-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.coffee-header--scrolled {
  background: rgba(44,24,16,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .7rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.coffee-header__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.coffee-header__brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; color: var(--cb-cream);
}
.coffee-header__logo {
  width: 40px; height: 40px;
  background: var(--cb-copper);
  color: var(--cb-dark);
  font-family: var(--serif); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: transform .3s;
}
.coffee-header__brand:hover .coffee-header__logo { transform: scale(1.1); }
.coffee-header__name {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  letter-spacing: -.01em;
}
.coffee-header__nav { display: flex; gap: 2rem; }
.coffee-header__nav a {
  color: var(--cb-cream); text-decoration: none; font-size: .9rem;
  font-weight: 500; opacity: .8; transition: opacity .3s;
  position: relative;
}
.coffee-header__nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--cb-copper); transition: width .3s;
}
.coffee-header__nav a:hover { opacity: 1; }
.coffee-header__nav a:hover::after { width: 100%; }

/* ===== BUTTONS ===== */
.coffee-btn {
  display: inline-block; padding: .85rem 1.8rem;
  font-family: var(--sans); font-size: .88rem; font-weight: 500;
  border: none; border-radius: 50px; text-decoration: none;
  cursor: pointer; transition: all .35s ease;
  letter-spacing: -.01em;
}
.coffee-btn--primary {
  background: var(--cb-copper); color: var(--cb-white);
  box-shadow: 0 4px 20px rgba(198,123,75,.35);
}
.coffee-btn--primary:hover {
  background: var(--cb-copper-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198,123,75,.45);
}
.coffee-btn--ghost {
  background: transparent; color: var(--cb-cream);
  border: 1px solid rgba(245,232,211,.35);
}
.coffee-btn--ghost:hover { border-color: var(--cb-copper); color: var(--cb-copper); }
.coffee-btn--ghost-light {
  background: transparent; color: var(--cb-cream);
  border: 1px solid rgba(245,232,211,.3);
}
.coffee-btn--ghost-light:hover { background: rgba(245,232,211,.1); border-color: var(--cb-cream); }
.coffee-btn--outline {
  background: transparent; color: var(--cb-dark);
  border: 1.5px solid var(--cb-dark);
}
.coffee-btn--outline:hover { background: var(--cb-dark); color: var(--cb-cream); }
.coffee-btn--small { padding: .55rem 1.2rem; font-size: .82rem; }

/* ===== EYEBROW ===== */
.coffee-eyebrow {
  display: inline-block; font-size: .75rem; text-transform: uppercase;
  letter-spacing: .15em; color: var(--cb-copper); font-weight: 600;
  margin-bottom: .75rem;
}
.coffee-eyebrow--center { display: block; text-align: center; }

/* ===== REVEAL ANIMATION ===== */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.25,.46,.45,.94);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-left] {
  opacity: 0; transform: translateX(-40px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.25,.46,.45,.94);
}
[data-reveal-left].revealed { opacity: 1; transform: translateX(0); }

/* ===== HERO ===== */
.coffee-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; color: var(--cb-cream);
}
.coffee-hero__bg { position: absolute; inset: 0; }
.coffee-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.coffee-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,14,8,.85) 0%, rgba(44,24,16,.55) 50%, rgba(198,123,75,.15) 100%);
}
.coffee-hero__grain {
  position: absolute; border-radius: 50%; background: rgba(198,123,75,.08);
  filter: blur(100px);
}
.coffee-hero__grain--1 { width: 500px; height: 500px; top: -100px; right: -80px; }
.coffee-hero__grain--2 { width: 350px; height: 350px; bottom: 15%; left: -60px; }
.coffee-hero__grain--3 { width: 250px; height: 250px; top: 40%; right: 30%; background: rgba(245,232,211,.05); }

.coffee-hero__content {
  position: relative; z-index: 2; max-width: 860px; margin: 0 auto;
  padding: 120px 1.5rem 80px; text-align: center;
}
.coffee-hero__kicker {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--cb-copper-light); margin-bottom: 1.2rem; font-weight: 500;
  transition-delay: .1s;
}
.coffee-hero h1 {
  font-family: var(--serif); font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 600; line-height: 1.05; letter-spacing: -.01em;
  margin-bottom: 1.4rem; color: var(--cb-cream);
  transition-delay: .2s;
}
.coffee-hero__text {
  font-size: 1.05rem; line-height: 1.7; opacity: .85; max-width: 620px;
  margin: 0 auto 2rem; transition-delay: .3s;
}
.coffee-hero__actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem; transition-delay: .4s;
}
.coffee-hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  max-width: 700px; margin: 0 auto; transition-delay: .5s;
}
.coffee-hero__stat {
  text-align: center; padding: 1rem .5rem;
  border-right: 1px solid rgba(245,232,211,.15);
}
.coffee-hero__stat:last-child { border: none; }
.coffee-hero__stat-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
  color: var(--cb-copper); line-height: 1.1;
}
.coffee-hero__stat span {
  display: block; font-size: .78rem; opacity: .7; margin-top: .3rem;
}

/* scroll hint */
.coffee-hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: .6; animation: scroll-float 2s ease-in-out infinite;
  z-index: 2;
}
.coffee-hero__scroll span { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
@keyframes scroll-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== USP STRIP ===== */
.coffee-usp {
  background: var(--cb-dark); padding: 3rem 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1200px; margin: 0 auto; gap: 2.5rem;
}
.coffee-usp__item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  color: var(--cb-cream); gap: .6rem;
}
.coffee-usp__icon { color: var(--cb-copper); margin-bottom: .3rem; }
.coffee-usp__item strong { font-size: .95rem; font-weight: 600; }
.coffee-usp__item span { font-size: .82rem; opacity: .65; line-height: 1.5; }

/* ===== MENU ===== */
.coffee-menu { padding: 6rem 1.5rem; background: var(--cb-cream2); }
.coffee-menu__container { max-width: 1100px; margin: 0 auto; }
.coffee-menu h2 { font-family: var(--serif); font-size: 2.6rem; margin-bottom: .8rem; }
.coffee-menu__sub { color: var(--cb-text-light); max-width: 560px; margin-bottom: 3rem; line-height: 1.6; }
.coffee-menu__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.coffee-menu__card {
  background: var(--cb-white); border-radius: 18px; overflow: hidden;
  transition: transform .35s, box-shadow .35s;
  border: 1px solid rgba(139,115,85,.12);
}
.coffee-menu__card:hover { transform: translateY(-4px); box-shadow: var(--cb-shadow); }
.coffee-menu__card-img {
  height: 180px; background-size: cover; background-position: center;
}
.coffee-menu__card-body { padding: 1.3rem 1.5rem 1.5rem; }
.coffee-menu__card-top {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .5rem;
}
.coffee-menu__card-top h3 { font-size: 1.1rem; font-weight: 600; }
.coffee-menu__price {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--cb-copper);
}
.coffee-menu__card-body p { font-size: .88rem; color: var(--cb-text-light); line-height: 1.6; }
.coffee-menu__card--featured {
  border: 2px solid var(--cb-copper);
  background: linear-gradient(135deg, var(--cb-white), rgba(198,123,75,.04));
}
.coffee-menu__card-badge {
  display: inline-block; background: var(--cb-copper); color: var(--cb-white);
  font-size: .72rem; font-weight: 600; padding: .25rem .8rem; border-radius: 20px;
  margin-bottom: .6rem;
}
.coffee-menu__food-note {
  margin-top: 2.5rem; text-align: center; color: var(--cb-text-light);
  font-size: .92rem;
}

/* ===== ABOUT ===== */
.coffee-about { padding: 6rem 1.5rem; background: var(--cb-warm); }
.coffee-about__container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.coffee-about__image img {
  width: 100%; border-radius: 20px; object-fit: cover; aspect-ratio: 4/5;
}
.coffee-about__text h2 { font-family: var(--serif); font-size: 2.4rem; margin-bottom: 1.4rem; line-height: 1.15; }
.coffee-about__text p { font-size: 1rem; line-height: 1.8; color: var(--cb-text-light); margin-bottom: 1.2rem; }
.coffee-about__numbers {
  display: flex; gap: 2rem; margin-top: 1.8rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(139,115,85,.2);
}
.coffee-about__numbers > div { text-align: center; }
.coffee-about__numbers strong {
  display: block; font-family: var(--serif); font-size: 2rem;
  color: var(--cb-copper); line-height: 1.1;
}
.coffee-about__numbers span { font-size: .78rem; color: var(--cb-text-light); margin-top: .3rem; display: block; }

/* ===== PROCESS ===== */
.coffee-process { padding: 6rem 1.5rem; background: var(--cb-dark); color: var(--cb-cream); }
.coffee-process__container { max-width: 1100px; margin: 0 auto; text-align: center; }
.coffee-process h2 { font-family: var(--serif); font-size: 2.6rem; margin-bottom: .8rem; }
.coffee-process__sub { opacity: .65; max-width: 520px; margin: 0 auto 3.5rem; line-height: 1.6; }
.coffee-process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.coffee-process__step { position: relative; padding-top: 1.5rem; }
.coffee-process__step-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 700;
  color: var(--cb-copper); opacity: .3; line-height: 1;
  margin-bottom: .8rem;
}
.coffee-process__step-line {
  width: 40px; height: 2px; background: var(--cb-copper); opacity: .4;
  margin: 0 auto .8rem;
}
.coffee-process__step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .6rem; }
.coffee-process__step p { font-size: .85rem; line-height: 1.7; opacity: .6; }

/* ===== GALLERY ===== */
.coffee-gallery { padding: 6rem 1.5rem; background: var(--cb-cream2); }
.coffee-gallery__container { max-width: 1100px; margin: 0 auto; text-align: center; }
.coffee-gallery h2 { font-family: var(--serif); font-size: 2.6rem; margin-bottom: 2.5rem; }
.coffee-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.coffee-gallery__item {
  position: relative; border-radius: 14px; overflow: hidden;
  cursor: pointer; aspect-ratio: 3/4;
  transition: transform .35s;
}
.coffee-gallery__item:hover { transform: scale(1.03); }
.coffee-gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.coffee-gallery__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem; font-size: .85rem; font-weight: 500;
  background: linear-gradient(transparent, rgba(44,24,16,.75));
  color: var(--cb-cream); text-align: left;
}

/* ===== REVIEWS ===== */
.coffee-reviews { padding: 6rem 1.5rem; background: var(--cb-warm); }
.coffee-reviews__container { max-width: 1100px; margin: 0 auto; text-align: center; }
.coffee-reviews h2 { font-family: var(--serif); font-size: 2.6rem; margin-bottom: 2.5rem; }
.coffee-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.coffee-reviews__card {
  background: var(--cb-white); border-radius: 16px; padding: 2rem;
  text-align: left; border: 1px solid rgba(139,115,85,.1);
}
.coffee-reviews__stars {
  display: flex; gap: 3px; margin-bottom: 1rem; color: var(--cb-copper);
}
.coffee-reviews__card > p { font-size: .9rem; line-height: 1.75; color: var(--cb-text); font-style: italic; margin-bottom: 1.2rem; }
.coffee-reviews__author { border-top: 1px solid rgba(139,115,85,.1); padding-top: 1rem; }
.coffee-reviews__author strong { display: block; font-size: .92rem; margin-bottom: .15rem; }
.coffee-reviews__author span { font-size: .78rem; color: var(--cb-text-light); }

/* ===== CONTACTS ===== */
.coffee-contacts { padding: 6rem 1.5rem; background: var(--cb-cream2); }
.coffee-contacts__container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.coffee-contacts__info h2 { font-family: var(--serif); font-size: 2.4rem; margin-bottom: 1.5rem; }
.coffee-contacts__block { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.coffee-contacts__row {
  display: flex; align-items: center; gap: .8rem; font-size: .95rem; color: var(--cb-text);
}
.coffee-contacts__row svg { flex-shrink: 0; color: var(--cb-copper); }
.coffee-contacts__buttons { display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; }
.coffee-contacts__map { height: 100%; min-height: 350px; }
.coffee-contacts__map-placeholder {
  background: var(--cb-dark); border-radius: 20px; height: 100%; min-height: 350px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--cb-cream); text-align: center;
}
.coffee-contacts__map-pin { margin-bottom: 1rem; animation: pin-bounce 2s ease-in-out infinite; }
@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.coffee-contacts__map-placeholder p { font-family: var(--serif); font-size: 1.3rem; margin-bottom: .3rem; }
.coffee-contacts__map-placeholder span { font-size: .82rem; opacity: .5; }

/* ===== CTA ===== */
.coffee-cta { padding: 4rem 1.5rem 6rem; }
.coffee-cta__card {
  max-width: 800px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, var(--cb-dark), #3D2A1A);
  border-radius: 24px; padding: 4rem 2rem; color: var(--cb-cream);
  box-shadow: 0 20px 60px rgba(44,24,16,.25);
}
.coffee-cta__card h2 { font-family: var(--serif); font-size: 2.4rem; margin-bottom: 1rem; }
.coffee-cta__card > p { opacity: .75; max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; }
.coffee-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.coffee-footer {
  background: var(--cb-dark2); padding: 2.5rem 1.5rem; color: var(--cb-cream);
}
.coffee-footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.coffee-footer__brand { display: flex; align-items: center; gap: .7rem; opacity: .6; font-size: .85rem; }
.coffee-footer__logo {
  width: 32px; height: 32px; background: var(--cb-copper); color: var(--cb-dark);
  font-family: var(--serif); font-weight: 700; font-size: .8rem;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.coffee-footer__links { display: flex; gap: 1.5rem; }
.coffee-footer__links a { color: var(--cb-cream); text-decoration: none; font-size: .85rem; opacity: .5; transition: opacity .3s; }
.coffee-footer__links a:hover { opacity: .9; }
.coffee-footer__social a { color: var(--cb-cream); opacity: .5; transition: opacity .3s; }
.coffee-footer__social a:hover { opacity: .9; }

/* ===== LIGHTBOX ===== */
.coffee-lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(26,14,8,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.coffee-lightbox--open { opacity: 1; visibility: visible; }
.coffee-lightbox__img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.coffee-lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--cb-cream); cursor: pointer; z-index: 3;
  opacity: .7; transition: opacity .3s;
}
.coffee-lightbox__close:hover { opacity: 1; }
.coffee-lightbox__prev, .coffee-lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(245,232,211,.1); border: 1px solid rgba(245,232,211,.2);
  color: var(--cb-cream); cursor: pointer; z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.coffee-lightbox__prev:hover, .coffee-lightbox__next:hover { background: rgba(245,232,211,.2); }
.coffee-lightbox__prev { left: 1.5rem; }
.coffee-lightbox__next { right: 1.5rem; }
.coffee-lightbox__caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: var(--cb-cream); font-size: .9rem; opacity: .7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .coffee-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .coffee-hero__stat:nth-child(2) { border: none; }
  .coffee-usp { grid-template-columns: 1fr; gap: 2rem; }
  .coffee-menu__grid { grid-template-columns: 1fr; }
  .coffee-about__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .coffee-about__image img { aspect-ratio: 16/9; max-height: 350px; }
  .coffee-process__steps { grid-template-columns: repeat(2, 1fr); }
  .coffee-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .coffee-reviews__grid { grid-template-columns: 1fr; }
  .coffee-contacts__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .coffee-header__nav { display: none; }
  .coffee-cursor { display: none; }
}

@media (max-width: 600px) {
  html { font-size: 16px; }
  .coffee-hero h1 { font-size: 2.2rem; }
  .coffee-hero__text { font-size: .92rem; }
  .coffee-hero__actions { flex-direction: column; align-items: center; }
  .coffee-menu h2, .coffee-about__text h2, .coffee-process h2, .coffee-gallery h2, .coffee-reviews h2, .coffee-contacts__info h2 { font-size: 1.9rem; }
  .coffee-process__steps { grid-template-columns: 1fr; }
  .coffee-gallery__grid { grid-template-columns: 1fr; }
  .coffee-footer__inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .coffee-footer__links { flex-wrap: wrap; justify-content: center; }
  .coffee-cta__card { padding: 2.5rem 1.2rem; }
  .coffee-lightbox__prev, .coffee-lightbox__next { width: 36px; height: 36px; }
}
