/* ============================================================
   Ố PẢN — Landing Page CSS
   Color Palette:
   --forest:  #2C4A35  (xanh rừng đậm)
   --pine:    #3D6B4F  (xanh lá)
   --sage:    #7A9E7E  (xanh sage)
   --blush:   #F2A8B0  (hồng pastel)
   --cream:   #FAF5EE  (kem/be)
   --sand:    #EDE4D7  (cát nhạt)
   --dark:    #1A2E1F
   ============================================================ */

:root {
  --forest: #2C4A35;
  --pine:   #3D6B4F;
  --sage:   #7A9E7E;
  --blush:  #F2A8B0;
  --blush-dark: #E8909A;
  --cream:  #FAF5EE;
  --sand:   #EDE4D7;
  --sand2:  #E0D5C5;
  --dark:   #1A2E1F;
  --text:   #3A3028;
  --text-light: #6B5E52;
  --white:  #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Be Vietnam Pro', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(44,74,53,0.08);
  --shadow-md: 0 8px 32px rgba(44,74,53,0.12);
  --shadow-lg: 0 20px 60px rgba(44,74,53,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ========== SECTION LABELS ========== */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid var(--sage);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 50px;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn-primary:hover {
  background: var(--pine);
  border-color: var(--pine);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,74,53,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}

.navbar.scrolled {
  background: rgba(250,245,238,0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-o {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blush);
  line-height: 1;
}

.logo-pan {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--sage);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--sage); }

.nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--pine) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 16px 24px;
  border-top: 1px solid var(--sand);
}

.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 12px 0;
  font-weight: 500;
  color: var(--forest);
  border-bottom: 1px solid var(--sand);
  font-size: 1rem;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream) 0%, #F0EBE0 50%, var(--sand) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
  gap: 40px;
}

.hero-bg-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.leaf {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: 0.06;
}

.leaf-1 {
  width: 400px; height: 400px;
  background: var(--forest);
  top: -100px; right: -100px;
  transform: rotate(20deg);
}

.leaf-2 {
  width: 300px; height: 300px;
  background: var(--pine);
  bottom: -80px; left: -60px;
  transform: rotate(-15deg);
}

.leaf-3 {
  width: 200px; height: 200px;
  background: var(--blush);
  top: 40%; left: 45%;
  transform: rotate(35deg);
  opacity: 0.1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--sand2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
}

.hero-title em {
  font-style: italic;
  color: var(--blush-dark);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--sand2);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
}

.stat span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--sand2);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-cup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-cup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cup-glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(122,158,126,0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.cup-body {
  width: 160px;
  height: 220px;
  background: var(--forest);
  border-radius: 8px 8px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44,74,53,0.3);
  animation: floatCup 4s ease-in-out infinite;
}

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

.cup-drink {
  flex: 1;
  background: linear-gradient(180deg, #C8A870 0%, #B8906A 100%);
  margin: 12px 8px 0;
  border-radius: 4px;
}

.cup-foam {
  height: 28px;
  background: linear-gradient(180deg, #FFF8EE 0%, #F0E8D8 100%);
  margin: 0 8px;
  border-radius: 50% 50% 0 0 / 20px 20px 0 0;
  position: absolute;
  bottom: 0; left: 0; right: 0;
}

.cup-logo-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
}

.cup-straw {
  width: 10px;
  height: 100px;
  background: linear-gradient(180deg, var(--blush) 0%, var(--blush-dark) 100%);
  border-radius: 5px;
  margin-top: -80px;
  margin-left: 40px;
  transform: rotate(8deg);
  transform-origin: bottom center;
}

/* Floating tags */
.floating-tag {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: floatTag 3s ease-in-out infinite;
}

.tag-1 { left: -110px; top: 20%; animation-delay: 0s; }
.tag-2 { right: -110px; top: 35%; animation-delay: 0.5s; }
.tag-3 { left: -100px; bottom: 20%; animation-delay: 1s; }

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

.leaves-deco {
  position: absolute;
  inset: -30px;
  pointer-events: none;
}

.deco-leaf {
  position: absolute;
  font-size: 2rem;
  animation: spinLeaf 8s linear infinite;
  opacity: 0.6;
}

.dl-1 { top: 0; left: 30%; animation-delay: 0s; }
.dl-2 { bottom: 10%; right: 5%; animation-delay: 2s; }
.dl-3 { top: 50%; left: -10px; animation-delay: 4s; }

@keyframes spinLeaf {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  25% { transform: rotate(15deg) translateY(-5px); }
  75% { transform: rotate(-10deg) translateY(5px); }
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--sage));
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== STORY ========== */
.story { background: var(--white); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.story-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.75;
}

.story-quote {
  border-left: 3px solid var(--blush);
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--forest);
  font-size: 1.05rem;
  margin-top: 24px;
}

.story-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
  transition: all 0.3s ease;
  transition-delay: var(--delay, 0s);
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  border-color: var(--sage);
}

.value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-content h4 {
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.value-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ========== MISSION ========== */
.mission {
  background: var(--forest);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.mission-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(122,158,126,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(242,168,176,0.15) 0%, transparent 40%);
}

.mission .container { position: relative; }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.mission-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
  margin-top: 24px;
}

.mission-item {
  text-align: center;
  padding: 20px;
}

.mission-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.mission-item h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.mission-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.mission-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.mission-quote {
  text-align: center;
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.mission-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ========== MENU ========== */
.menu-section { background: var(--cream); }

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--sand2);
  background: var(--white);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn:hover {
  border-color: var(--sage);
  color: var(--forest);
}

.tab-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadePanel 0.3s ease; }

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

.menu-panel-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-bottom: 1px solid var(--sand);
  margin-bottom: 0;
}

.panel-icon { font-size: 2.5rem; flex-shrink: 0; margin-top: 4px; }

.menu-panel-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 6px;
}

.menu-panel-header p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.signature-badge {
  display: inline-block;
  background: var(--blush);
  color: var(--forest);
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  vertical-align: middle;
  margin-left: 8px;
}

.signature-badge.green { background: rgba(122,158,126,0.2); color: var(--pine); }
.signature-badge.brown { background: rgba(184,144,106,0.2); color: #7A5C3A; }

.menu-size-header {
  display: grid;
  grid-template-columns: 1fr 60px 60px;
  gap: 12px;
  padding: 10px 28px;
  background: var(--sand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

.menu-size-header.single {
  grid-template-columns: 1fr 80px;
}

.menu-items { background: var(--white); border-radius: 0 0 var(--radius-lg) var(--radius-lg); overflow: hidden; }
.menu-items.single-price .menu-item { grid-template-columns: 1fr 80px; }

.menu-item {
  display: grid;
  grid-template-columns: 1fr 60px 60px;
  gap: 12px;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--sand);
  transition: background 0.2s;
}

.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: var(--cream); }

.menu-item.featured { background: rgba(242,168,176,0.08); }
.menu-item.featured:hover { background: rgba(242,168,176,0.15); }

.item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.item-name {
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
}

.item-star {
  font-size: 0.75rem;
  color: var(--blush-dark);
  font-weight: 600;
}

.item-price {
  font-weight: 700;
  color: var(--pine);
  font-size: 0.95rem;
  text-align: center;
}

/* ========== CUSTOMERS ========== */
.customers { background: var(--white); }

.customer-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 50px 0 40px;
}

.customer-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand);
  transition: all 0.3s ease;
}

.customer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
  background: var(--white);
}

.customer-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.customer-card h4 {
  font-weight: 700;
  color: var(--forest);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.customer-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.customers-quote {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  background: var(--cream);
}

/* ========== FRANCHISE ========== */
.franchise { background: var(--sand); }

.franchise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 60px 0;
}

.franchise-model h3,
.franchise-invest h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 28px;
}

.model-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.model-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: box-shadow 0.3s;
}

.model-step:hover { box-shadow: var(--shadow-md); }

.step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blush);
  line-height: 1;
  flex-shrink: 0;
}

.step-content h4 {
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.invest-table {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--sand2);
}

.invest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--sand);
  font-size: 0.9rem;
}

.invest-row:last-child { border-bottom: none; }

.invest-row span:first-child { color: var(--text-light); }
.invest-row span:last-child { font-weight: 600; color: var(--forest); }

.invest-row.total {
  background: var(--forest);
  padding: 20px 24px;
}

.invest-row.total span { color: var(--white) !important; font-weight: 700; }
.invest-row.total span:last-child { font-size: 1.1rem; color: var(--blush) !important; }

.invest-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.5;
}

/* Roadmap */
.roadmap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 48px;
}

.roadmap h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 20px;
  text-align: center;
}

.roadmap-target {
  text-align: center;
  background: var(--forest);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  margin: 0 auto 40px;
  width: fit-content;
  font-weight: 700;
  font-size: 1.05rem;
}

.roadmap-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.roadmap-step {
  text-align: center;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  min-width: 160px;
  border: 1px solid var(--sand);
}

.road-icon { font-size: 2rem; margin-bottom: 10px; }

.road-label {
  font-weight: 700;
  color: var(--forest);
  font-size: 0.85rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.road-desc {
  font-size: 0.82rem;
  color: var(--text-light);
}

.road-arrow {
  font-size: 1.5rem;
  color: var(--sage);
  font-weight: 300;
}

.roadmap-dist {
  display: flex;
  justify-content: center;
  gap: 60px;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--sand);
}

.dist-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--forest);
  font-weight: 700;
}

.dist-item span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.franchise-form-wrapper {
  margin-top: 64px;
  background-color: var(--creamy);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(44, 76, 59, 0.1);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.franchise-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.franchise-form-header h3 {
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.franchise-form-header p {
  color: var(--text-color);
  font-size: 0.95rem;
}

.franchise-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--forest);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background-color: #fff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(44, 76, 59, 0.1);
}

.submit-group {
  margin-top: 10px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

/* ========== CONTACT ========== */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
  transition: box-shadow 0.3s;
}

.contact-card:hover { box-shadow: var(--shadow-md); }

.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.contact-card h4 {
  font-weight: 700;
  color: var(--forest);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-locations h4 {
  margin-bottom: 8px;
}

.location-item {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--sand);
}

.location-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.location-item strong {
  color: var(--forest);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.location-item span {
  display: block;
}

.contact-card p, .contact-card a {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-card a:hover { color: var(--pine); }

.contact-social {
  margin-top: 8px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  width: 100%;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.social-btn:hover {
  background: var(--pine);
  transform: translateY(-2px);
  color: var(--white);
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 10px;
}

.footer .logo-o { color: var(--blush); font-size: 2rem; }
.footer .logo-pan { color: var(--white); font-size: 2rem; }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-tagline {
  font-style: italic;
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.4) !important;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--blush); }

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ========== REAL LOGO IN NAVBAR ========== */
.nav-logo-img {
  height: 44px;
  width: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
}

/* ========== HERO LOGO ========== */
.hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-img {
  width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  animation: floatCup 4s ease-in-out infinite;
}

/* ========== STORE PHOTOS ========== */
.store-section {
  padding: 0;
  background: var(--dark);
}

.store-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 420px;
}

.store-photo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.store-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.store-photo-item:hover img {
  transform: scale(1.08);
}

.store-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,31,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.store-photo-item:hover .store-photo-overlay {
  opacity: 1;
}

/* ========== MENU IMAGE BANNER ========== */
.menu-img-banner {
  margin-bottom: 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.menu-img-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== FOOTER LOGO IMG ========== */
.footer-logo-img {
  height: 64px;
  width: 64px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 8px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    text-align: center;
  }

  .hero-content { max-width: 100%; align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .story-grid,
  .franchise-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mission-divider { display: none; }

  .customer-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .roadmap-steps { flex-direction: column; align-items: center; }
  .road-arrow { transform: rotate(90deg); }

  .roadmap-dist { gap: 40px; }
}

@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .customer-cards { grid-template-columns: 1fr 1fr; }
  .franchise-cta { padding: 32px 24px; }
  .roadmap { padding: 28px 20px; }
  .menu-tabs { gap: 6px; }
  .tab-btn { padding: 8px 14px; font-size: 0.8rem; }
}
