:root {
  /* ── COLORS ── */
  --color-bg-base: #0f0b07;
  --color-bg-raised: #1a1208;
  --color-bg-deepest: #0a0704;
  --color-bg-amber: #b8740a;
  --color-bg-amber-dark: #8a5608;
  --color-primary: #d4900e;
  --color-primary-hover: #f0a820;
  --color-primary-glow: rgba(212, 144, 14, 0.35);
  --color-secondary: #c8791a;
  --color-text-white: #ffffff;
  --color-text-light: #e8d5b0;
  --color-text-mid: #a08060;
  --color-text-muted: #6b5040;
  --color-text-dark: #0f0b07;
  --color-border: rgba(212, 144, 14, 0.2);
  --color-border-light: rgba(255, 255, 255, 0.08);
  --color-star: #f5a623;
  --color-card-bg: #1e1408;
  --color-overlay: rgba(10, 7, 4, 0.72);
  --color-error: #e05c5c;
  --color-error-glow: rgba(224, 92, 92, 0.2);

  /* ── TYPOGRAPHY ── */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.75rem;
  --text-4xl: 3.5rem;
  --text-5xl: 4.5rem;

  --leading-tight: 1.15;
  --leading-normal: 1.6;
  --leading-loose: 1.8;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* ── SPACING ── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* ── BORDER RADIUS ── */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* ── SHADOWS ── */
  --shadow-card: 0 4px 32px rgba(0,0,0,0.5);
  --shadow-card-hover: 0 12px 48px rgba(0,0,0,0.7);
  --shadow-btn: 0 4px 20px rgba(212, 144, 14, 0.4);
  --shadow-btn-hover: 0 8px 32px rgba(212, 144, 14, 0.6);
  --shadow-glow: 0 0 40px rgba(212, 144, 14, 0.15);

  /* ── TRANSITIONS ── */
  --transition-fast: 0.18s ease;
  --transition-smooth: 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* ── IMAGE CONTROL VARIABLES ── */
  --hero-img-position: center center;
  --hero-img-scale: 1;
  --about-img-size: 480px;
  --about-img-rotate: 0deg;
  --order-img-position: center center;
  --origin-card-img-height: 200px;
  --menu-card-img-height: 220px;
  --menu-card-img-position: center center;

  /* ── LAYOUT ── */
  --container-max: 1200px;
  --section-py: var(--space-24);
  --section-py-mobile: var(--space-12);
  --section-px: var(--space-20);
  --section-px-mobile: var(--space-5);

  /* ── Z-INDEX ── */
  --z-base: 1;
  --z-card: 10;
  --z-sticky: 50;
  --z-nav: 100;
  --z-overlay: 200;
  --z-toast: 300;
}

/* ── BASE RESETS ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: initial; /* Lenis handles smooth scrolling */
}

body {
  background-color: var(--color-bg-base);
  color: var(--color-text-light);
  font-family: var(--font-body);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-white);
  line-height: var(--leading-tight);
  font-weight: var(--weight-bold);
}

.accent-text {
  font-family: var(--font-accent);
  color: var(--color-primary);
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px-mobile);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--section-px);
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ════════════════════════════
   SHARED: BUTTON SYSTEM
════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  border-radius: var(--radius-pill);
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-bg-deepest);
  padding: var(--space-4) 44px;
  font-size: var(--text-md);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-btn-hover);
  transform: scale(1.04);
}
.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  padding: 14px 36px;
  font-size: var(--text-md);
}
.btn--ghost:hover {
  background: var(--color-primary);
  color: var(--color-bg-deepest);
}

/* ════════════════════════════
   SHARED: FOCUS-VISIBLE RING
════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* ════════════════════════════
   SHARED: NAV ICON BUTTONS
════════════════════════════ */
.nav__icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast);
}
.nav__icon-btn:hover {
  color: var(--color-primary);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  background-color: transparent;
  transition: background-color var(--transition-smooth), box-shadow var(--transition-smooth);
  padding: var(--space-4) 0;
}

.nav.nav--scrolled {
  background-color: var(--color-bg-deepest);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
  padding: var(--space-3) 0;
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav__logo a {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-primary);
  font-weight: var(--weight-bold);
  line-height: 1;
}

.nav__logo-label {
  font-size: var(--text-xs);
  color: var(--color-text-mid);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav__links {
  display: none;
}

.nav__right {
  display: none;
}

.nav__hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  width: 28px;
  height: 28px;
}

.nav__hamburger svg {
  width: 100%;
  height: 100%;
}

/* Nav Desktop */
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
    gap: var(--space-8);
    align-items: center;
  }

  .nav__link {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    transition: color var(--transition-fast);
    padding-bottom: 4px;
    position: relative;
  }

  .nav__link:hover, .nav__link.active {
    color: var(--color-primary);
  }

  .nav__link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
  }

  .nav__right {
    display: flex;
    align-items: center;
    gap: var(--space-6);
  }

  .nav__phone {
    font-size: var(--text-sm);
    color: var(--color-primary);
  }

  .nav__icons {
    display: flex;
    gap: var(--space-4);
    align-items: center;
  }

  .icon {
    width: 24px;
    height: 24px;
    color: var(--color-text-light);
  }

  .nav__cart {
    position: relative;
    cursor: pointer;
  }

  .nav__cart-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background-color: var(--color-primary);
    color: var(--color-bg-deepest);
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav__hamburger {
    display: none;
  }
}

/* Navigation Overlay (Mobile) */
.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-deepest);
  z-index: calc(var(--z-nav) + 10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.nav-overlay.is-active {
  transform: translateX(0);
}

.nav-overlay__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  background: none;
  border: none;
  color: var(--color-text-white);
  font-size: var(--text-3xl);
  cursor: pointer;
  line-height: 1;
}

.nav-overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.nav-overlay__link {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-text-white);
}

.nav-overlay__btn {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  background-color: var(--color-primary);
  color: var(--color-bg-deepest);
  padding: 16px 44px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-btn);
  display: inline-block;
  margin-top: var(--space-4);
}

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero_image.png');
  background-size: cover;
  background-position: var(--hero-img-position);
  transform: scale(var(--hero-img-scale));
  z-index: var(--z-base);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,7,4,0.92) 0%, rgba(10,7,4,0.55) 60%, rgba(10,7,4,0.2) 100%);
  z-index: calc(var(--z-base) + 1);
}

.hero__container {
  position: relative;
  z-index: calc(var(--z-base) + 2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero__content {
  max-width: 600px;
}

.hero__label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: var(--text-md);
  color: var(--color-primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-left: 3px solid var(--color-primary);
  padding-left: var(--space-3);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-text-white);
  line-height: var(--leading-tight);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-5);
}

.hero__title-line {
  display: block;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: var(--text-5xl);
  }
}

.hero__desc {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--color-text-light);
  max-width: 480px;
  margin-top: var(--space-5);
  line-height: var(--leading-normal);
}

.hero__cta {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-deepest);
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  padding: 16px 44px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-btn);
  margin-top: var(--space-8);
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.hero__cta:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-btn-hover);
  transform: scale(1.04);
}



/* ── WHY CHOOSE US ── */
.why-section {
  background-color: var(--color-bg-amber);
  padding: var(--space-12) 0;
}

.why__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: center;
}

.why__item {
  width: 100%;
}

.why__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.why__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.why__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-text-white);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
}

.why__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--leading-loose);
  margin-top: var(--space-2);
}

@media (min-width: 1024px) {
  .why__container {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .why__item {
    flex: 1;
    padding-right: var(--space-8);
  }
  
  .why__item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* ── ABOUT US ── */
.about-section {
  background-color: var(--color-bg-base);
  padding: var(--section-py-mobile) 0;
  overflow: hidden;
}

.about__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.about__content {
  width: 100%;
}

.about__label {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.about__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-text-white);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
}

.about__mission-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  font-weight: var(--weight-bold);
}

.about__mission-icon {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.about__text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: var(--leading-loose);
}

.about__rule {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-6) 0;
}

.about__image-column {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.about__image-wrapper {
  position: relative;
  width: 100%;
  max-width: var(--about-img-size, 480px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-circle);
  border: 4px solid var(--color-primary);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  transform: rotate(var(--about-img-rotate, 0deg));
  transition: transform var(--transition-slow);
  position: relative;
  z-index: 2;
}

.about__img:hover {
  transform: rotate(3deg) scale(1.03);
}

.about__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  color: var(--color-text-white);
  opacity: 0.06;
  pointer-events: none;
  z-index: var(--z-base);
}

@media (min-width: 1024px) {
  .about-section {
    padding: var(--section-py) 0;
  }

  .about__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .about__content {
    width: 55%;
    padding-right: var(--space-8);
  }
  
  .about__image-column {
    width: 45%;
  }
}

/* ── MENU SECTION ── */
.menu-section {
  background-color: var(--color-bg-raised);
  padding: var(--section-py-mobile) 0;
}

@media (min-width: 1024px) {
  .menu-section {
    padding: var(--section-py) 0;
  }
}

.menu__header-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: flex-start;
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .menu__header-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.menu__heading {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-text-white);
  font-weight: var(--weight-bold);
}

.menu__header-right {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .menu__header-right {
    width: auto;
  }
}

.menu__tabs {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding-bottom: 4px;
}

.menu__tab {
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-mid);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.menu__tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.menu__tab.active {
  background-color: var(--color-primary);
  color: var(--color-bg-deepest);
  font-weight: var(--weight-bold);
  box-shadow: var(--shadow-btn);
  border-color: var(--color-primary);
}

.menu__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-white);
}

.menu__cart .icon {
  width: 24px;
  height: 24px;
}

.menu__cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background-color: var(--color-primary);
  color: var(--color-bg-deepest);
  font-size: 10px;
  font-weight: bold;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__carousel-container {
  display: flex;
  align-items: center;
  position: relative;
  gap: var(--space-4);
}

.menu__arrow {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background-color: rgba(255,255,255,0.08);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .menu__arrow {
    display: flex;
  }
}

.menu__arrow:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-deepest);
}

.menu__arrow svg {
  width: 20px;
  height: 20px;
}

.menu__carousel {
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.menu__carousel::-webkit-scrollbar {
  display: none;
}

.menu__track {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-2) 0;
}

.menu-card {
  width: 280px;
  flex-shrink: 0;
  background-color: var(--color-card-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  overflow: hidden;
  scroll-snap-align: start;
}

@media (min-width: 1024px) {
  .menu-card {
    width: 320px;
  }
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
}

.menu-card__image-container {
  position: relative;
  height: var(--menu-card-img-height, 220px);
  width: 100%;
}

.menu-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--menu-card-img-position, center);
}

.menu-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(10,7,4,0.6) 0%, transparent 100%);
}

.menu-card__body {
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
}

.menu-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-text-white);
  font-weight: var(--weight-bold);
  margin-bottom: 2px;
}

.menu-card__subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-style: italic;
  margin-bottom: var(--space-2);
  line-height: var(--leading-tight);
}

.menu-card__details-link {
  font-size: var(--text-xs);
  color: var(--color-text-mid);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.menu-card__details-link:hover {
  color: var(--color-primary);
}

.menu-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-4);
}

.menu-card__price {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.menu-card__add-btn {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-white);
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.menu-card__add-btn:hover {
  transform: scale(1.1);
}

.menu-card__add-btn svg {
  width: 18px;
  height: 18px;
}

/* ── COFFEE ORIGINS ── */
.origins-section {
  background-color: var(--color-bg-base);
  padding: var(--section-py-mobile) 0;
  position: relative;
}

@media (min-width: 1024px) {
  .origins-section {
    padding: var(--section-py) 0;
  }
}

.origins__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(212,144,14,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.origins__container {
  position: relative;
  z-index: 2;
}

.origins__header {
  margin-bottom: var(--space-12);
}

.origins__heading {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-text-white);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-3);
}

.origins__underline {
  width: 48px;
  height: 3px;
  background-color: var(--color-primary);
}

.origins__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .origins__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.origin-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.origin-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.origin-card__img {
  width: 100%;
  height: var(--origin-card-img-height, 200px);
  object-fit: cover;
}

.origin-card__body {
  padding: var(--space-8);
}

.origin-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-primary);
  font-weight: var(--weight-bold);
  margin-bottom: 2px;
}

.origin-card__sub-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-3);
}

  .origin-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-loose);
    font-family: var(--font-body);
  }
  
  /* ── ONLINE ORDER CTA ── */
  .order-section {
    background-color: var(--color-bg-raised);
    padding: var(--section-py-mobile) 0;
    overflow: hidden;
  }
  
  @media (min-width: 1024px) {
    .order-section {
      padding: var(--section-py) 0;
    }
  }
  
  .order__container {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
  }
  
  .order__content {
    width: 100%;
  }
  
  .order__label {
    display: block;
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    color: var(--color-primary);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-5);
  }
  
  .order__text {
    font-family: var(--font-body);
    font-size: var(--text-md);
    color: var(--color-text-light);
    line-height: var(--leading-loose);
  }
  
  .order__text--margin {
    margin-top: var(--space-5);
  }
  
  .order__closing {
    font-family: var(--font-accent);
    font-size: var(--text-lg);
    color: var(--color-primary);
    font-style: italic;
    margin-top: var(--space-6);
  }
  
  .order__cta {
    width: fit-content;
  }
  
  .order__image-column {
    width: 100%;
    position: relative;
  }
  
  .order__image-wrapper {
    position: relative;
    width: 100%;
  }
  
  .order__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: var(--order-img-position);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
  }
  
  .order__heart-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    z-index: 2;
  }
  
  @media (min-width: 1024px) {
    .order__container {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
    
    .order__content {
      width: 52%;
      padding-right: var(--space-8);
    }
    
    .order__image-column {
      width: 48%;
    }
  
    .order__img {
      height: 500px;
    }
  }
  
  /* ── LOCATIONS & CONTACT ── */
  .contact-section {
    background-color: var(--color-bg-base);
    padding: var(--section-py-mobile) 0;
  }
  
  @media (min-width: 1024px) {
    .contact-section {
      padding: var(--section-py) 0;
    }
  }
  
  .contact__container {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
  }
  
  .contact__heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-text-white);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-4);
  }
  
  .contact__underline {
    width: 48px;
    height: 3px;
    background-color: var(--color-primary);
    margin-bottom: var(--space-6);
  }
  
  .contact__locations,
  .contact__form-col {
    width: 100%;
  }
  
  .contact__info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
  }
  
  .contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--color-text-light);
    font-size: var(--text-sm);
    line-height: var(--leading-loose);
  }
  
  .contact__icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
  }
  
  .contact__closing {
    font-family: var(--font-accent);
    font-size: var(--text-md);
    color: var(--color-primary);
    font-style: italic;
  }
  
  .contact__subtext {
    font-size: var(--text-sm);
    color: var(--color-text-mid);
    margin-bottom: var(--space-6);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .contact-form__input {
    width: 100%;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-white);
    padding: 14px 18px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
  }
  
  .contact-form__input::placeholder {
    color: var(--color-text-muted);
  }
  
  .contact-form__input:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--color-primary-glow);
  }
  
  .contact-form__input.is-invalid {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px var(--color-error-glow);
  }
  
  .contact-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    position: relative;
    margin-top: var(--space-2);
  }
  
  .contact-form__checkbox {
    opacity: 0;
    position: absolute;
    width: 1px;
    height: 1px;
  }
  
  .contact-form__checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-card-bg);
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-fast);
    margin-top: 2px;
  }
  
  .contact-form__checkbox:checked ~ .contact-form__checkmark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
  }
  
  .contact-form__checkbox:checked ~ .contact-form__checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid var(--color-bg-deepest);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  .contact-form__checkbox:focus-visible ~ .contact-form__checkmark {
    box-shadow: 0 0 0 3px var(--color-primary-glow);
  }
  
  .contact-form__checkbox-text {
    font-size: var(--text-xs);
    color: var(--color-text-mid);
    line-height: var(--leading-normal);
  }
  
  .contact-form__link {
    color: var(--color-primary);
    text-decoration: underline;
  }
  
  .contact-form__submit {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-bg-deepest);
    font-family: var(--font-body);
    font-weight: var(--weight-bold);
    font-size: var(--text-base);
    padding: 16px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    margin-top: var(--space-4);
    transition: all var(--transition-fast);
  }
  
  .contact-form__submit:hover {
    background-color: var(--color-primary-hover);
    box-shadow: var(--shadow-btn-hover);
  }
  
  .contact__message-success {
    color: var(--color-primary);
    font-size: var(--text-md);
    font-weight: var(--weight-bold);
    text-align: center;
    padding: var(--space-8) 0;
  }
  
  @media (min-width: 1024px) {
    .contact__container {
      flex-direction: row;
      align-items: flex-start;
    }
  
    .contact__locations,
    .contact__form-col {
      width: 50%;
    }
    
    .contact__locations {
      padding-right: var(--space-12);
    }
  }
  
  /* ── FOOTER ── */
  .footer {
    background-color: var(--color-bg-deepest);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-16);
    padding-bottom: var(--space-10);
  }
  
  .footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
  }
  
  @media (min-width: 768px) {
    .footer__top {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .footer__top {
      grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    }
  }
  
  .footer__col {
    display: flex;
    flex-direction: column;
  }
  
  .footer__col--brand {
    grid-column: 1;
  }
  
  @media (min-width: 768px) and (max-width: 1023px) {
    .footer__col--brand {
      grid-column: 1 / -1;
    }
  }
  
  .footer__logo {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-primary);
    font-weight: var(--weight-bold);
    line-height: 1;
  }
  
  .footer__tagline {
    font-size: var(--text-sm);
    color: var(--color-text-mid);
    margin-top: var(--space-2);
  }
  
  .footer__socials {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-6);
  }
  
  .footer__socials a {
    color: var(--color-text-mid);
    transition: all var(--transition-fast);
    display: inline-flex;
  }
  
  .footer__socials a:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
  }
  
  .footer__socials svg {
    width: 20px;
    height: 20px;
  }
  
  .footer__heading {
    font-size: var(--text-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
    font-family: var(--font-body);
  }
  
  .footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .footer__links a {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    transition: color var(--transition-fast);
  }
  
  .footer__links a:hover {
    color: var(--color-primary);
  }
  
  .footer__links--text span {
    font-size: var(--text-sm);
    color: var(--color-text-light);
  }
  
  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    border-top: 1px solid var(--color-border-light);
    padding-top: var(--space-6);
  }
  
  @media (min-width: 768px) {
    .footer__bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .footer__copy,
  .footer__credit {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
  }

/* ── CRO ENHANCEMENTS ── */

.contact-form__group {
  position: relative;
  width: 100%;
}

.contact-form__floating-label {
  position: absolute;
  left: 18px;
  top: 14px;
  color: var(--color-text-muted);
  font-size: 16px;
  pointer-events: none;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.contact-form__input:focus ~ .contact-form__floating-label,
.contact-form__input:not(:placeholder-shown) ~ .contact-form__floating-label {
  top: -10px;
  left: 12px;
  font-size: var(--text-xs);
  background-color: var(--color-card-bg);
  padding: 0 6px;
  color: var(--color-primary);
}

.mobile-order-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background-color: var(--color-primary);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
}

.mobile-order-bar--visible {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .mobile-order-bar {
    display: none !important;
  }
}

.mobile-order-bar__text {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--color-text-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  cursor: pointer;
  height: 100%;
}

.mobile-order-bar__close {
  background: transparent;
  border: none;
  color: var(--color-text-white);
  font-size: 24px;
  padding: 0 var(--space-5);
  cursor: pointer;
  height: 100%;
}

.social-proof {
  background-color: var(--color-bg-raised);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6) 0;
}

.social-proof__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}

@media (min-width: 768px) {
  .social-proof__container {
    display: flex;
    justify-content: space-evenly;
  }
}

.social-proof__number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-primary);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-1);
}

.social-proof__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trust-signals {
  background-color: var(--color-bg-raised);
  border-top: 1px solid var(--color-border);
  padding: var(--space-10) 0;
}

.trust-signals__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}

@media (min-width: 768px) {
  .trust-signals__container {
    display: flex;
    justify-content: space-evenly;
  }
}

.trust-signals__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.trust-signals__icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.trust-signals__label {
  font-size: var(--text-sm);
  color: var(--color-text-mid);
  font-family: var(--font-body);
}

.menu-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.menu-card__badge--primary {
  background-color: var(--color-primary);
  color: var(--color-bg-deepest);
}

.menu-card__badge--secondary {
  background-color: var(--color-secondary);
  color: var(--color-bg-deepest);
}

.menu-card__urgency {
  font-size: var(--text-xs);
  color: var(--color-error);
  font-family: var(--font-body);
  margin-top: var(--space-1);
  display: block;
}

.hero__cta:active,
.contact-form__submit:active,
.order__cta:active {
  transform: scale(0.96);
  transition: transform 0.1s;
}

@keyframes cartRipple {
  0% { box-shadow: 0 0 0 0 rgba(212, 144, 14, 0.4); }
  100% { box-shadow: 0 0 0 12px rgba(212, 144, 14, 0); }
}

/* ── STRICT HOVER RULES ── */

.menu-card {
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  border: 1px solid transparent;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 12px rgba(212, 144, 14, 0.3);
  border-color: var(--color-border);
}

.hero__cta, .order__cta, .contact-form__submit {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}
.hero__cta:hover, .order__cta:hover, .contact-form__submit:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(212, 144, 14, 0.4);
}

.nav__link {
  position: relative;
  transition: color var(--transition-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-smooth);
}
.nav__link:hover {
  color: var(--color-primary);
}
.nav__link:hover::after {
  width: 100%;
}

.origin-card {
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
  border: 1px solid var(--color-border);
}
.origin-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.about__img {
  transition: transform var(--transition-smooth) !important;
}
.about__img:hover {
  transform: rotate(3deg) scale(1.03) !important;
}

.footer__socials a {
  transition: color var(--transition-fast), transform var(--transition-smooth);
}
.footer__socials a:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.menu-card__add-btn.is-animating {
  animation: cartRipple 0.4s ease-out;
}

/* ── MOBILE OVERRIDES (max-width: 768px) ── */

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.hero__title {
  font-size: clamp(1.8rem, 6vw, 4.5rem) !important;
}

.nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-deepest);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right var(--transition-smooth);
}

.nav-overlay.is-active {
  right: 0;
}

.nav-overlay__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 36px;
  cursor: pointer;
}

.nav-overlay__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  padding-inline: var(--space-6);
}

.nav-overlay__link {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-text-white);
  text-decoration: none;
}

.nav-overlay__btn {
  display: block;
  width: calc(100% - 40px);
  margin: 0 auto;
  background-color: var(--color-primary);
  color: var(--color-bg-deepest);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  padding: 16px;
  border-radius: var(--radius-pill);
  text-align: center;
  text-decoration: none;
  margin-top: var(--space-4);
}

/* Touch Targets & Inputs */
input, button, .nav__link {
  min-height: 44px;
}

.contact-form__input {
  font-size: 16px !important;
}

.menu__swipe-hint {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 1024px) {
  .menu__swipe-hint {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-section {
    height: 100svh;
    align-items: center;
  }
  
  .hero__container {
    padding: var(--section-py-mobile) var(--section-px-mobile);
    text-align: center;
    justify-content: center;
  }
  
  .hero__title {
    line-height: var(--leading-tight);
    text-align: center;
  }

  .hero__desc {
    text-align: center;
  }
  
  .hero__cta {
    width: 100%;
  }
  
  .hero__cup-img, .hero__image-wrapper {
    display: none !important;
  }
  
  .hero__overlay {
    background: linear-gradient(180deg, rgba(15, 11, 7, 0.4) 0%, rgba(15, 11, 7, 0.85) 100%);
  }

  /* Why Choose Us */
  .why__container {
    flex-direction: column !important;
  }

  .why__item {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: var(--space-6);
    margin-bottom: var(--space-4);
    width: 100% !important;
  }
  
  .why__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .why__header {
    justify-content: center;
  }
  
  .why__desc {
    text-align: center;
  }

  /* About */
  .about__container {
    flex-direction: column;
    text-align: center;
  }
  
  .about__image-column {
    width: 100%;
    margin-top: var(--space-8);
  }
  
  .about__img {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }
  
  .about__watermark {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Menu */
  .menu-card {
    width: 80vw;
  }

  .menu__carousel {
    scrollbar-width: none;
  }

  .menu__carousel::-webkit-scrollbar {
    display: none;
  }
  
  /* Order CTA */
  .order__content {
    order: 2;
  }

  .order__image-column {
    order: 1;
  }
  
  .order__img {
    height: 260px !important;
  }
  
  .order__cta {
    width: 100%;
  }

  /* Locations/Contact */
  .contact__container {
    flex-direction: column;
  }
  .contact__form-col {
    margin-top: var(--space-8);
  }

  /* Social proof & Trust signals */
  .social-proof__container,
  .trust-signals__container {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__socials {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer__socials {
    justify-content: center;
  }
}

/* ── COOKIE CONSENT ── */
.cookie-consent {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-toast);
  background-color: var(--color-bg-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-card-hover);
  width: calc(100% - var(--space-5) * 2);
  max-width: 600px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
}

.cookie-consent__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-consent__text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin: 0;
  text-align: center;
}

.cookie-consent__actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
}

.cookie-consent__btn {
  padding: 10px 24px;
  font-size: var(--text-sm);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .cookie-consent__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .cookie-consent__text {
    text-align: left;
    margin-right: var(--space-4);
  }
  .cookie-consent__actions {
    flex-shrink: 0;
  }
}

