:root {
  --cream: #F5F0E8;
  --dark: #1A1611;
  --warm: #3D2E1E;
  --gold: #C4973B;
  --gold-light: #D4A84A;
  --sand: #E8DFD0;
  --coffee: #6B4C30;
  --sage: #8A9A7B;
  --blush: #D4A88C;
  --white: #FEFCF9;
}

.landing * { margin: 0; padding: 0; box-sizing: border-box; }
.landing html { scroll-behavior: smooth; }

.landing {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.landing nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing nav.scrolled {
  background: rgba(26, 22, 17, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.landing .nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.landing .nav-logo span { color: var(--gold); }

.landing .nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.landing .nav-links a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.landing .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing .nav-links a:hover { color: var(--gold); }
.landing .nav-links a:hover::after { width: 100%; }

.landing .nav-cta {
  padding: 0.6rem 1.8rem !important;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: all 0.4s;
}

.landing .nav-cta:hover {
  background: var(--gold);
  color: var(--dark) !important;
}

.landing .nav-cta::after { display: none !important; }

/* ─── HERO ─── */
.landing .hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.landing .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(107, 76, 48, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(196, 151, 59, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #1A1611 0%, #2A2018 40%, #1A1611 100%);
}

.landing .hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.landing .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.landing .hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0;
  animation: landingFadeUp 0.8s 0.3s forwards;
}

.landing .hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: landingFadeUp 0.8s 0.5s forwards;
}

.landing .hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.landing .hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--sand);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: landingFadeUp 0.8s 0.7s forwards;
}

.landing .hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  opacity: 0;
  animation: landingFadeUp 0.8s 0.9s forwards;
}

.landing .btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing .btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(196, 151, 59, 0.3);
}

.landing .btn-ghost {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid rgba(232, 223, 208, 0.3);
  color: var(--sand);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s;
}

.landing .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Hero Visual */
.landing .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: landingFadeIn 1.2s 0.6s forwards;
}

.landing .hero-circle {
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #4A3523, #2A1E12 70%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4), inset 0 0 80px rgba(196, 151, 59, 0.1);
}

.landing .hero-circle::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(196, 151, 59, 0.15);
  animation: landingSpin 30s linear infinite;
}

.landing .hero-circle::after {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px dashed rgba(196, 151, 59, 0.08);
  animation: landingSpin 50s linear infinite reverse;
}

.landing .hero-cup-icon {
  font-size: 7rem;
  opacity: 0.9;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.landing .hero-steam {
  position: absolute;
  top: 18%;
  left: 55%;
  width: 60px;
  height: 80px;
}

.landing .steam-line {
  position: absolute;
  width: 2px;
  height: 40px;
  background: linear-gradient(to top, rgba(196, 151, 59, 0.3), transparent);
  border-radius: 2px;
  animation: landingSteam 3s ease-in-out infinite;
}

.landing .steam-line:nth-child(1) { left: 10px; }
.landing .steam-line:nth-child(2) { left: 25px; animation-delay: 0.5s; height: 50px; }
.landing .steam-line:nth-child(3) { left: 40px; animation-delay: 1s; height: 35px; }

@keyframes landingSteam {
  0%, 100% { opacity: 0; transform: translateY(0) scaleY(0.5); }
  50% { opacity: 1; transform: translateY(-20px) scaleY(1); }
}

.landing .hero-badge {
  position: absolute;
  background: rgba(26, 22, 17, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 151, 59, 0.2);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--sand);
  animation: landingFloat 6s ease-in-out infinite;
}

.landing .hero-badge.top-left { top: 10%; left: -10%; }
.landing .hero-badge.bottom-right { bottom: 12%; right: -5%; animation-delay: 2s; }

.landing .badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

@keyframes landingFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ─── SECTION SHARED ─── */
.landing section { padding: 8rem 4rem; }

.landing .section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.landing .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.landing .section-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--coffee);
  font-weight: 300;
  max-width: 540px;
}

/* ─── PHILOSOPHY ─── */
.landing .philosophy {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.landing .philosophy::before {
  content: '\201C';
  position: absolute;
  top: -40px; right: 8%;
  font-family: 'Playfair Display', serif;
  font-size: 30rem;
  color: var(--sand);
  opacity: 0.3;
  line-height: 1;
  pointer-events: none;
}

.landing .philosophy-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.landing .philosophy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.landing .stat {
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
}

.landing .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--dark);
  font-weight: 600;
}

.landing .stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--coffee);
  margin-top: 0.3rem;
}

.landing .phil-card {
  background: var(--cream);
  padding: 3rem;
  position: relative;
}

.landing .phil-card-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.landing .phil-icon {
  width: 60px; height: 60px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.landing .phil-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--warm);
}

.landing .phil-card p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--coffee);
  font-weight: 300;
}

.landing .phil-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--gold);
  opacity: 0.1;
}

/* ─── PRODUCTS ─── */
.landing .products {
  background: var(--dark);
  color: var(--cream);
}

.landing .products .section-desc { color: var(--sand); }

.landing .products-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.landing .products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.landing .product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.landing .product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}

.landing .product-card:hover::before { transform: scaleX(1); }

.landing .product-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.landing .product-emoji { font-size: 3.5rem; margin-bottom: 1.5rem; display: block; }
.landing .product-origin { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.landing .product-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.8rem; font-weight: 400; }
.landing .product-notes { font-size: 0.82rem; color: rgba(232,223,208,0.6); font-weight: 300; line-height: 1.5; margin-bottom: 1.5rem; }
.landing .product-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); }

/* ─── EXPERIENCE ─── */
.landing .experience { background: var(--cream); }

.landing .experience-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}

.landing .experience-header .section-desc { margin: 0 auto; }

.landing .experience-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.landing .exp-card {
  padding: 3rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--sand);
  transition: all 0.4s;
}

.landing .exp-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(61,46,30,0.08);
}

.landing .exp-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--sand);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}

.landing .exp-card:hover .exp-number { color: var(--gold); }

.landing .exp-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.landing .exp-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--coffee);
  font-weight: 300;
}

/* ─── LOCATIONS ─── */
.landing .locations {
  background: var(--warm);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.landing .locations::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at right center, rgba(196,151,59,0.08), transparent 70%);
  pointer-events: none;
}

.landing .locations-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.landing .locations .section-desc { color: rgba(232,223,208,0.7); }

.landing .location-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.landing .location-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
  cursor: pointer;
}

.landing .location-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,151,59,0.3);
}

.landing .location-pin {
  width: 36px; height: 36px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.landing .location-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.landing .location-info p {
  font-size: 0.78rem;
  color: rgba(232,223,208,0.5);
}

.landing .map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background:
    radial-gradient(circle at 30% 40%, rgba(196,151,59,0.15), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(196,151,59,0.1), transparent 40%),
    var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.landing .map-placeholder span {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
}

.landing .map-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: landingPulse 2s ease-in-out infinite;
}

.landing .map-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: landingPulseRing 2s ease-in-out infinite;
}

.landing .map-dot:nth-child(1) { top: 35%; left: 28%; }
.landing .map-dot:nth-child(2) { top: 42%; left: 45%; animation-delay: 0.5s; }
.landing .map-dot:nth-child(3) { top: 55%; left: 60%; animation-delay: 1s; }
.landing .map-dot:nth-child(4) { top: 30%; left: 65%; animation-delay: 1.5s; }

@keyframes landingPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes landingPulseRing {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.5); }
}

/* ─── FRANCHISE ─── */
.landing .franchise {
  background: var(--cream);
  text-align: center;
}

.landing .franchise-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 3rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.landing .franchise-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,151,59,0.08), transparent 70%);
}

.landing .franchise-inner .section-title { color: var(--cream); }
.landing .franchise-inner .section-desc { color: var(--sand); margin: 0 auto 2.5rem; }
.landing .franchise-inner > * { position: relative; z-index: 2; }

/* ─── FOOTER ─── */
.landing footer {
  background: var(--dark);
  color: var(--sand);
  padding: 5rem 4rem 2rem;
}

.landing .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.landing .footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.landing .footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(232,223,208,0.5);
  max-width: 300px;
}

.landing .footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.landing .footer-col a {
  display: block;
  color: rgba(232,223,208,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.landing .footer-col a:hover { color: var(--gold); }

.landing .footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(232,223,208,0.3);
}

.landing .footer-bottom a {
  color: rgba(232,223,208,0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.landing .footer-bottom a:hover { color: var(--gold); }

.landing .nasdaq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(196,151,59,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 1.5rem;
}

/* ─── ANIMATIONS ─── */
@keyframes landingFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes landingFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes landingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.landing .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .landing nav { padding: 1.2rem 2rem; }
  .landing nav.scrolled { padding: 0.8rem 2rem; }
  .landing section { padding: 5rem 2rem; }
  .landing .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .landing .hero-visual { display: none; }
  .landing .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .landing .products-grid { grid-template-columns: repeat(2, 1fr); }
  .landing .experience-grid { grid-template-columns: 1fr; }
  .landing .locations-content { grid-template-columns: 1fr; gap: 3rem; }
  .landing .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .landing .nav-links { display: none; }
}

@media (max-width: 640px) {
  .landing nav { padding: 1rem 1.5rem; }
  .landing section { padding: 4rem 1.5rem; }
  .landing .hero { min-height: 600px; }
  .landing .hero-content { padding: 0 1.5rem; }
  .landing .hero h1 { font-size: 2.5rem; }
  .landing .hero-actions { flex-direction: column; align-items: flex-start; }
  .landing .products-grid { grid-template-columns: 1fr; }
  .landing .philosophy-stats { grid-template-columns: 1fr; }
  .landing .footer-grid { grid-template-columns: 1fr; }
  .landing .franchise-inner { padding: 3rem 1.5rem; }
  .landing .products-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
