/* ============================================================
   CHAI TATTVA — Design System
   ============================================================ */

/* --- Tokens --- */
:root {
  --cream: #faf6f0;
  --cream-2: #f2eae0;
  --cream-3: #e8ddd0;
  --warm-white: #fffdf9;

  --chai: #c8722a;
  --chai-light: #e8954a;
  --chai-dark: #9e5318;
  --chai-muted: #d4966a;

  --earth: #6b4423;
  --earth-light: #8b5e3c;
  --earth-deep: #3d2010;

  --brown-dark: #1c0f08;
  --brown-mid: #2e1a0e;

  --slate: #5c4a3a;
  --slate-light: #7a6a5a;
  --text-muted: #9a8070;

  --success: #5b8a5e;
  --warning: #d4842a;
  --error: #c0442a;

  --shadow-sm: 0 2px 8px rgba(60, 30, 10, 0.08);
  --shadow-md: 0 6px 24px rgba(60, 30, 10, 0.12);
  --shadow-lg: 0 16px 48px rgba(60, 30, 10, 0.16);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--earth-deep);
  background: var(--warm-white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chai);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--earth-deep);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-divider {
  width: 48px;
  height: 2px;
  background: var(--chai);
  border-radius: 2px;
  margin-bottom: 40px;
}

/* --- Scroll animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(60, 30, 10, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}

.nav-logo-img:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(60, 30, 10, 0.08);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 8px 24px rgba(60, 30, 10, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}

.nav-status-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.nav-status-open {
  color: var(--success);
}

.nav-status-open .nav-status-dot {
  background: var(--success);
}

.nav-status-soon {
  color: var(--warning);
}

.nav-status-soon .nav-status-dot {
  background: var(--warning);
}

.nav-status-closed {
  color: var(--error);
}

.nav-status-closed .nav-status-dot {
  background: var(--error);
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--earth-deep);
  opacity: 0.75;
  transition:
    opacity var(--transition),
    color var(--transition);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--chai);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--earth-deep);
  transition: var(--transition);
}

.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);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(250, 246, 240, 0.98);
  backdrop-filter: blur(12px);
  padding: 8px 0 24px;
  border-top: 1px solid rgba(60, 30, 10, 0.06);
}

.nav-mobile.open {
  display: flex;
}

.mobile-link {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 400;
  color: var(--earth-deep);
  border-bottom: 1px solid rgba(60, 30, 10, 0.04);
  transition:
    color var(--transition),
    background var(--transition);
}

.mobile-link:hover {
  color: var(--chai);
  background: rgba(200, 114, 42, 0.04);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(rgba(107, 68, 35, 0.08) 0.7px, transparent 0.7px),
    radial-gradient(rgba(200, 114, 42, 0.05) 0.7px, transparent 0.7px);
  background-position:
    0 0,
    14px 14px;
  background-size: 28px 28px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.35)
  );
}

.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.5;
  mix-blend-mode: screen;
}

.hero-light-1 {
  width: 480px;
  height: 480px;
  top: -160px;
  left: 8%;
  background: radial-gradient(
    circle,
    rgba(255, 250, 242, 0.85) 0%,
    rgba(255, 250, 242, 0) 68%
  );
  animation: ambient-drift-1 14s ease-in-out infinite alternate;
}

.hero-light-2 {
  width: 360px;
  height: 360px;
  right: 10%;
  bottom: 6%;
  background: radial-gradient(
    circle,
    rgba(232, 149, 74, 0.12) 0%,
    rgba(232, 149, 74, 0) 70%
  );
  animation: ambient-drift-2 16s ease-in-out infinite alternate;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(200, 114, 42, 0.25) 0%,
    transparent 70%
  );
  top: -120px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(107, 68, 35, 0.2) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: -60px;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 149, 74, 0.15) 0%,
    transparent 70%
  );
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-motif {
  position: absolute;
  opacity: 0.9;
}

.motif-left {
  width: 180px;
  height: 180px;
  left: 7%;
  top: 22%;
  animation: motif-float-1 11s ease-in-out infinite;
}

.motif-right {
  width: 200px;
  height: 200px;
  right: 6%;
  top: 18%;
  animation: motif-float-2 13s ease-in-out infinite;
}

.bean {
  position: absolute;
  width: 18px;
  height: 26px;
  border-radius: 50% 50% 46% 46%;
  background: linear-gradient(
    145deg,
    rgba(107, 68, 35, 0.24) 0%,
    rgba(61, 32, 16, 0.1) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(255, 253, 249, 0.12);
  opacity: 0.45;
}

.bean::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.22);
}

.bean-1 {
  left: 16%;
  bottom: 18%;
  transform: rotate(-22deg);
  animation: bean-drift-1 10s ease-in-out infinite;
}

.bean-2 {
  right: 18%;
  bottom: 24%;
  transform: rotate(18deg);
  animation: bean-drift-2 12s ease-in-out infinite;
}

.bean-3 {
  right: 28%;
  top: 28%;
  transform: rotate(-10deg);
  animation: bean-drift-3 11s ease-in-out infinite;
}

.steam-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 400px;
  opacity: 0.6;
}

.steam-svg {
  width: 100%;
  height: 100%;
}

.steam-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: steam-rise 4s ease-in-out infinite;
}

.steam-path.s1 {
  animation-delay: 0s;
}
.steam-path.s2 {
  animation-delay: 1.3s;
}
.steam-path.s3 {
  animation-delay: 2.6s;
}

@keyframes steam-rise {
  0% {
    stroke-dashoffset: 600;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes ambient-drift-1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(24px, 18px, 0) scale(1.06);
  }
}

@keyframes ambient-drift-2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-20px, -14px, 0) scale(1.08);
  }
}

@keyframes motif-float-1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}

@keyframes motif-float-2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(8px) rotate(-3deg);
  }
}

@keyframes bean-drift-1 {
  0%,
  100% {
    transform: translateY(0) rotate(-22deg);
  }
  50% {
    transform: translateY(-10px) rotate(-14deg);
  }
}

@keyframes bean-drift-2 {
  0%,
  100% {
    transform: translateY(0) rotate(18deg);
  }
  50% {
    transform: translateY(8px) rotate(26deg);
  }
}

@keyframes bean-drift-3 {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-7px) rotate(-2deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 680px;
  width: 100%;
}

.hero-logo-wrap {
  margin-bottom: -22px;
}

.hero-logo {
  height: 250px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(200, 114, 42, 0.15));
  transition: transform var(--transition);
}

.hero-logo:hover {
  transform: scale(1.03);
}

.hero-logo-wrap.visible .hero-logo {
  animation:
    hero-logo-enter 1s cubic-bezier(0.22, 1, 0.36, 1) both,
    logo-pulse 4.8s ease-in-out 1s infinite;
}

@keyframes logo-pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 8px 32px rgba(200, 114, 42, 0.15));
  }
  50% {
    transform: scale(1.005);
    filter: drop-shadow(0 10px 36px rgba(200, 114, 42, 0.2));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 8px 32px rgba(200, 114, 42, 0.15));
  }
}

@keyframes hero-logo-enter {
  0% {
    transform: translateY(18px) scale(0.96);
    filter: drop-shadow(0 4px 18px rgba(200, 114, 42, 0.08));
  }
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 8px 32px rgba(200, 114, 42, 0.15));
  }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  font-weight: 400;
  color: var(--earth-deep);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    letter-spacing 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-tagline.fade-up {
  letter-spacing: 0.04em;
}

.hero-tagline.fade-up.visible {
  letter-spacing: -0.01em;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  color: var(--slate);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--chai);
  color: #fff;
  border-color: var(--chai);
  box-shadow: 0 4px 16px rgba(200, 114, 42, 0.3);
}

.btn-primary:hover {
  background: var(--chai-dark);
  border-color: var(--chai-dark);
  box-shadow: 0 8px 24px rgba(200, 114, 42, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--earth-deep);
  border-color: rgba(60, 30, 10, 0.3);
}

.btn-outline:hover {
  border-color: var(--chai);
  color: var(--chai);
  transform: translateY(-1px);
}

.btn-light {
  background: var(--cream);
  color: var(--earth-deep);
  border-color: var(--cream);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
  background: var(--warm-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-scroll-hint {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* --- Hero stats (sales counters) --- */
.hero-stats {
  margin-top: 20px;
  width: 100%;
}
.hero-stats-grid {
  display: grid;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  grid-template-columns: repeat(6, minmax(120px, 140px));
  justify-content: center;
  gap: 20px 24px;
  align-items: stretch;
}
.hero-stat {
  text-align: center;
  background: var(--cream);
  padding: 18px 18px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(18, 20, 24, 0.06);
  border: 1px solid rgba(18, 20, 24, 0.04);
  transition:
    transform 220ms var(--transition),
    box-shadow 220ms var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 86px;
}
.hero-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(18, 20, 24, 0.1);
}
.hero-stat-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(200, 114, 42, 0.08);
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1;
  transition:
    background 220ms var(--transition),
    transform 220ms var(--transition);
}
.hero-stat:hover .hero-stat-icon {
  background: rgba(200, 114, 42, 0.14);
  transform: translateY(-1px);
}
.hero-stat-number {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--chai);
  line-height: 1.1;
  white-space: nowrap;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 6px;
  font-weight: 400;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-stats-grid {
    grid-template-columns: repeat(3, auto);
  }
}

@media (max-width: 520px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, auto);
    gap: 14px;
  }
  .hero-stat-number {
    font-size: 1.25rem;
  }
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--chai-muted));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--warm-white);
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-inner .about-divider {
  margin: 0 auto 40px;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 24px;
  font-weight: 300;
}

.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  padding: 40px 48px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-3);
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--chai);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--cream-3);
}

/* ============================================================
   MENU
   ============================================================ */
.menu-section {
  background: var(--cream);
}

.menu-category {
  margin-bottom: 64px;
}

.menu-category:last-of-type {
  margin-bottom: 0;
}

.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-3);
}

.menu-cat-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.menu-cat-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--earth-deep);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.menu-card {
  position: relative;
  background: var(--warm-white);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
  cursor: default;
}

.menu-card:hover {
  border-color: rgba(200, 114, 42, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.menu-card.featured-card {
  background: linear-gradient(
    135deg,
    rgba(200, 114, 42, 0.04) 0%,
    rgba(250, 246, 240, 1) 100%
  );
  border-color: rgba(200, 114, 42, 0.2);
}

.featured-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chai);
  background: rgba(200, 114, 42, 0.1);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--earth-deep);
  line-height: 1.3;
}

.menu-item-price {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--chai);
  white-space: nowrap;
  padding-top: 2px;
}

.menu-item-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}

.menu-cta {
  text-align: center;
  margin-top: 56px;
  padding: 32px;
  border: 1px dashed var(--cream-3);
  border-radius: var(--radius-md);
}

.menu-cta-note {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--slate-light);
  font-weight: 300;
}

/* ============================================================
   WHY CUSTOMERS LOVE US
   ============================================================ */
.love {
  background: var(--warm-white);
}

.love-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.love-card {
  background: var(--cream);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
}

.love-card:hover {
  border-color: rgba(200, 114, 42, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.love-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 114, 42, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.love-card:hover .love-icon {
  background: rgba(200, 114, 42, 0.14);
}

.love-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--earth-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}

.love-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--slate);
  font-weight: 300;
}

/* ============================================================
   BANNER
   ============================================================ */
.banner {
  position: relative;
  background: var(--earth-deep);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 120%,
      rgba(200, 114, 42, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 40% at 20% -20%,
      rgba(107, 68, 35, 0.3) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 32px;
}

.banner-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chai-light);
  margin-bottom: 20px;
}

.banner-heading {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.banner-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(242, 234, 224, 0.7);
  margin-bottom: 40px;
  font-weight: 300;
}

/* ============================================================
   DELIVERY
   ============================================================ */
.delivery {
  background:
    radial-gradient(
      ellipse 70% 60% at 10% 10%,
      rgba(232, 149, 74, 0.08) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.delivery-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.delivery-inner .about-divider {
  margin: 0 auto 32px;
}

.delivery-intro {
  max-width: 700px;
  margin: 0 auto 44px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--slate);
  font-weight: 300;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
}

.delivery-card {
  position: relative;
  text-align: left;
  padding: 30px 28px;
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(200, 114, 42, 0.14);
  box-shadow: 0 18px 44px rgba(61, 32, 16, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(61, 32, 16, 0.12);
  border-color: rgba(200, 114, 42, 0.24);
}

.delivery-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.delivery-badge {
  width: 82px;
  height: 82px;
  border-radius: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(250, 246, 240, 0.9) 0%,
    rgba(232, 221, 208, 0.72) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.delivery-badge-svg {
  width: 82px;
  height: 82px;
  display: block;
}

.delivery-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chai-dark);
  background: rgba(200, 114, 42, 0.1);
  border: 1px solid rgba(200, 114, 42, 0.14);
}

.delivery-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--earth-deep);
  margin-bottom: 14px;
}

.delivery-text {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--slate);
  font-weight: 300;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  background: var(--cream-2);
}

.gallery-item.g-tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gallery-item.g-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 12, 4, 0.55) 0%,
    transparent 50%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.03em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-block {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 114, 42, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-value {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.6;
  font-weight: 300;
  display: block;
  margin: 0;
}

.contact-link {
  color: var(--chai);
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--chai-dark);
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--chai);
  border-bottom: 1px solid rgba(200, 114, 42, 0.3);
  padding-bottom: 1px;
  transition: all var(--transition);
}

.map-btn:hover {
  color: var(--chai-dark);
  border-color: var(--chai-dark);
}

.hours-wrap {
  display: flex;
  justify-content: flex-start;
}

.hours-card {
  background: var(--cream);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  width: 100%;
  max-width: 400px;
}

.hours-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--earth-deep);
  margin-bottom: 20px;
}

.hours-divider {
  width: 32px;
  height: 2px;
  background: var(--chai);
  border-radius: 2px;
  margin-bottom: 28px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-3);
  gap: 16px;
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-day {
  font-size: 0.875rem;
  color: var(--slate);
  font-weight: 400;
}

.hours-time {
  font-size: 0.875rem;
  color: var(--earth);
  font-weight: 500;
}

.hours-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--success);
  font-weight: 500;
}

.hours-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hours-status.status-open {
  color: var(--success);
}

.hours-status.status-open .hours-dot {
  background: var(--success);
}

.hours-status.status-soon {
  color: var(--warning);
}

.hours-status.status-soon .hours-dot {
  background: var(--warning);
}

.hours-status.status-closed {
  color: var(--error);
}

.hours-status.status-closed .hours-dot {
  background: var(--error);
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--brown-dark);
  padding: 56px 32px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  filter: brightness(0.9);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.footer-tagline-text {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--chai-muted);
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 234, 224, 0.5);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-copy {
  font-size: 12px;
  color: rgba(242, 234, 224, 0.3);
  letter-spacing: 0.06em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hours-wrap {
    justify-content: center;
  }
  .hours-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }
  .nav-status {
    padding: 8px 12px;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-inner {
    padding: 0 20px;
  }

  .hero-logo {
    height: 160px;
  }
  .motif-left,
  .motif-right {
    width: 140px;
    height: 140px;
    opacity: 0.65;
  }
  .bean-3 {
    display: none;
  }
  .hero-ctas {
    gap: 12px;
  }

  .about-stats {
    padding: 28px 20px;
    gap: 0;
  }

  .stat-num {
    font-size: 2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .love-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.g-tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .gallery-item.g-wide {
    grid-column: span 2;
  }

  .banner-content {
    padding: 64px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 56px 0;
  }

  .hero-logo {
    height: 180px;
  }
  .hero-light-1 {
    width: 320px;
    height: 320px;
    left: -12%;
  }
  .hero-light-2 {
    width: 240px;
    height: 240px;
    right: -10%;
  }
  .motif-left,
  .motif-right,
  .bean {
    opacity: 0.4;
  }

  .nav-status-text {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .about-stats {
    flex-direction: column;
    gap: 24px;
  }

  .delivery-card {
    padding: 26px 22px;
  }

  .delivery-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.g-wide {
    grid-column: span 1;
  }
  .gallery-item.g-tall {
    aspect-ratio: 4/3;
  }

  .footer-logo-wrap {
    flex-direction: column;
    text-align: center;
  }
  .footer-nav {
    gap: 20px;
  }

  .btn {
    padding: 13px 28px;
    font-size: 12px;
  }
}

.menu-explore-wrap {
  margin-top: 1.8rem;
  display: flex;
  justify-content: flex-end;
}

.menu-explore-link {
  color: var(--chai);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  opacity: 0.9;
}

.menu-explore-link:hover {
  opacity: 1;
  transform: translateX(4px);
}
