/* ==========================================================================
   J CAFE — Premium Café Website
   Design system & core styles
   Theme : Dark brown · Cream · White · Gold accents
   ========================================================================== */

/* ---------------------------------- Tokens --------------------------------- */
:root {
  /* Brand palette */
  --clr-coffee-950: #171008;
  --clr-coffee-900: #241811;
  --clr-coffee-850: #2b1c12;
  --clr-coffee-800: #33221a;
  --clr-coffee-700: #4a301f;
  --clr-coffee-600: #6f4e37;
  --clr-coffee-500: #8a6b50;
  --clr-coffee-400: #a98a6e;
  --clr-cream: #f7f1e6;
  --clr-cream-100: #f3ead9;
  --clr-cream-200: #e9dcc4;
  --clr-white: #ffffff;
  --clr-gold: #d4a944;
  --clr-gold-light: #eccf7f;
  --clr-gold-dark: #b08a2e;
  --clr-text: #2c1e14;
  --clr-muted: #7d6a55;
  --clr-success: #3aa76d;
  --clr-danger: #e0453a;
  --clr-green: #2f9e44;
  --clr-red: #e03131;
  --clr-amber: #f5a623;

  /* Gradients */
  --grad-coffee: linear-gradient(135deg, #241811 0%, #4a301f 55%, #6f4e37 100%);
  --grad-gold: linear-gradient(135deg, #b08a2e 0%, #d4a944 45%, #eccf7f 100%);
  --grad-hero: linear-gradient(160deg, #171008 0%, #33221a 55%, #4a301f 100%);
  --grad-cream: linear-gradient(180deg, #f7f1e6 0%, #f3ead9 100%);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.16);
  --glass-blur: blur(16px) saturate(150%);

  /* Shadows */
  --shadow-xs: 0 2px 8px rgba(23, 16, 8, 0.08);
  --shadow-sm: 0 6px 18px rgba(23, 16, 8, 0.10);
  --shadow-md: 0 14px 34px rgba(23, 16, 8, 0.16);
  --shadow-lg: 0 26px 60px rgba(23, 16, 8, 0.26);
  --shadow-gold: 0 12px 30px rgba(212, 169, 68, 0.35);

  /* Radii */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --radius-full: 999px;

  /* Typography */
  --font-heading: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  /* Layout */
  --container: 1200px;
  --nav-height: 78px;
  --gutter: 24px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 0.35s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-text);
  background-color: var(--clr-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
}

/* --------------------------------- Utilities -------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: 88px;
}

.section--dark {
  background: var(--grad-coffee);
  color: var(--clr-cream);
}

.section--dark h2,
.section--dark h3 {
  color: var(--clr-white);
}

.section--dark .section-subtitle {
  color: var(--clr-cream-200);
}

.section--cream {
  background: var(--grad-cream);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  margin-bottom: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold));
}

.section-eyebrow::after {
  background: linear-gradient(90deg, var(--clr-gold), transparent);
}

.section--dark .section-eyebrow {
  color: var(--clr-gold-light);
}

.section-title {
  font-size: clamp(30px, 4.4vw, 46px);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-size: 15.5px;
  color: var(--clr-muted);
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--clr-gold-dark);
}

/* ------------------------------- Buttons ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease), background var(--speed) var(--ease);
  white-space: nowrap;
  position: relative;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(212, 169, 68, 0.5);
}

.btn-outline {
  border: 1.5px solid var(--clr-gold);
  color: var(--clr-gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--clr-gold);
  color: var(--clr-coffee-900);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-white-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--clr-white);
  background: transparent;
}

.btn-white-outline:hover {
  background: var(--clr-white);
  color: var(--clr-coffee-900);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--clr-coffee-900);
  color: var(--clr-white);
  box-shadow: var(--shadow-sm);
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

/* ================================ NAVBAR ================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease), height var(--speed) var(--ease);
}

.navbar.scrolled {
  background: rgba(23, 16, 8, 0.86);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  height: 64px;
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--clr-white);
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--grad-gold);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.brand-icon svg {
  width: 26px;
  height: 26px;
  color: var(--clr-coffee-900);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-name em {
  font-style: normal;
  color: var(--clr-gold-light);
}

.brand-tag {
  display: block;
  font-size: 9.5px;
  font-family: var(--font-body);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--clr-cream-200);
  margin-top: -3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-cream-200);
  border-radius: var(--radius-full);
  transition: color var(--speed) var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-white);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

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

.nav-cart-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--clr-white);
  display: grid;
  place-items: center;
  transition: transform var(--speed) var(--ease), background var(--speed) var(--ease);
}

.nav-cart-btn:hover {
  transform: translateY(-2px) scale(1.05);
  background: rgba(212, 169, 68, 0.22);
}

.nav-cart-btn svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: var(--radius-full);
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-xs);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--clr-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================ HERO ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--grad-hero);
  color: var(--clr-white);
  overflow: hidden;
}

/* floating steam/coffee blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
}

.hero-blob-1 {
  width: 420px;
  height: 420px;
  background: rgba(212, 169, 68, 0.5);
  top: -120px;
  right: -100px;
}

.hero-blob-2 {
  width: 340px;
  height: 340px;
  background: rgba(111, 78, 55, 0.8);
  bottom: -90px;
  left: -80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
  padding-block: 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: 26px;
  animation: fadeUp 0.9s var(--ease) both;
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  color: var(--clr-white);
  margin-bottom: 22px;
  line-height: 1.08;
  animation: fadeUp 0.9s var(--ease) 0.12s both;
}

.hero-title .grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-text {
  font-size: 16.5px;
  color: var(--clr-cream-200);
  max-width: 620px;
  margin-bottom: 34px;
  animation: fadeUp 0.9s var(--ease) 0.22s both;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--clr-cream-200);
  font-size: 13.5px;
  margin-bottom: 34px;
  animation: fadeUp 0.9s var(--ease) 0.27s both;
}

.hero-location svg {
  width: 18px;
  height: 18px;
  color: var(--clr-gold-light);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeUp 0.9s var(--ease) 0.32s both;
}

.hero-stats {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease) 0.45s both;
}

.hero-stat b {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--clr-gold-light);
}

.hero-stat span {
  font-size: 12.5px;
  color: var(--clr-cream-200);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--clr-cream-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--clr-cream-200);
  border-radius: 14px;
  position: relative;
}

.hero-scroll .mouse::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: var(--clr-gold);
  animation: scrollDot 1.8s infinite;
}

/* ============================ MARQUEE STRIP ============================ */
.marquee {
  background: var(--grad-gold);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-coffee-900);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.marquee-track span::after {
  content: "✦";
  color: var(--clr-coffee-800);
  font-size: 12px;
}

/* ============================ SERVICE CARDS ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  border: 1px solid rgba(23, 16, 8, 0.06);
  box-shadow: var(--shadow-xs);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed) var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

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

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f7f1e6, #e9dcc4);
  color: var(--clr-gold-dark);
  margin-bottom: 20px;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.service-card:hover .service-icon {
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
  transform: scale(1.06) rotate(-4deg);
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--clr-muted);
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-gold-dark);
}

.service-card .service-link svg {
  width: 15px;
  height: 15px;
  transition: transform var(--speed) var(--ease);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ============================ ABOUT / INTRO ============================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.about-content .section-head {
  text-align: left;
  margin-bottom: 22px;
}

.about-content .section-title {
  font-size: clamp(28px, 3.6vw, 40px);
}

.about-content p {
  color: var(--clr-muted);
  margin-bottom: 18px;
  font-size: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--clr-white);
  border: 1px solid rgba(23, 16, 8, 0.06);
  box-shadow: var(--shadow-xs);
  font-size: 13.5px;
  font-weight: 500;
}

.about-feature svg {
  width: 20px;
  height: 20px;
  color: var(--clr-gold-dark);
  flex-shrink: 0;
}

/* ============================ TESTIMONIALS ============================ */
.testimonial-wrap {
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 28px;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 340px;
  max-width: 340px;
  scroll-snap-align: center;
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 169, 68, 0.5);
}

.testimonial-stars {
  color: var(--clr-gold);
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 14.5px;
  color: var(--clr-cream-100);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.7;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--clr-coffee-900);
  flex-shrink: 0;
}

.testimonial-person b {
  display: block;
  color: var(--clr-white);
  font-size: 14.5px;
}

.testimonial-person span {
  font-size: 12.5px;
  color: var(--clr-cream-200);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.tnav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-gold);
  color: var(--clr-gold);
  display: grid;
  place-items: center;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease);
}

.tnav-btn:hover {
  background: var(--clr-gold);
  color: var(--clr-coffee-900);
}

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

/* ============================ FAQ ============================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--clr-white);
  border: 1px solid rgba(23, 16, 8, 0.07);
  box-shadow: var(--shadow-xs);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow var(--speed) var(--ease);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-text);
  text-align: left;
}

.faq-question .faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7f1e6, #e9dcc4);
  color: var(--clr-gold-dark);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform var(--speed) var(--ease), background var(--speed) var(--ease), color var(--speed) var(--ease);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--speed) var(--ease), padding var(--speed) var(--ease);
}

.faq-answer p {
  padding: 0 26px 22px;
  font-size: 14.5px;
  color: var(--clr-muted);
}

/* ============================ CTA BANNER ============================ */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 64px 40px;
  background: var(--grad-coffee);
  border: 1px solid var(--glass-border);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-banner > * {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--clr-white);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

.cta-banner p {
  color: var(--clr-cream-200);
  max-width: 560px;
  margin: 0 auto 30px;
}

.cta-banner .hero-cta {
  justify-content: center;
}

/* ============================ FOOTER ============================ */
.footer {
  background: var(--clr-coffee-950);
  color: var(--clr-cream-200);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 48px;
}

.footer-brand .brand {
  color: var(--clr-white);
  margin-bottom: 18px;
}

.footer-brand > p {
  font-size: 14px;
  color: var(--clr-cream-200);
  max-width: 300px;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--clr-cream-200);
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.footer-social a:hover {
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer h4 {
  color: var(--clr-white);
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--grad-gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--clr-cream-200);
  transition: color var(--speed) var(--ease), padding-left var(--speed) var(--ease);
}

.footer-links a:hover {
  color: var(--clr-gold-light);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--clr-cream-200);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--clr-coffee-400);
}

.footer-bottom a {
  color: var(--clr-gold-light);
}

/* ============================ PAGE HERO (inner pages) ============================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 90px) 0 70px;
  background: var(--grad-hero);
  color: var(--clr-white);
  text-align: center;
  overflow: hidden;
}

.page-hero > .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--clr-white);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--clr-cream-200);
  max-width: 560px;
  margin: 0 auto;
  font-size: 15.5px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 12.5px;
  color: var(--clr-gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.breadcrumb span {
  color: var(--clr-cream-200);
}

/* ============================ MENU PAGE ============================ */
.menu-toolbar {
  position: sticky;
  top: var(--nav-height);
  z-index: 40;
  padding: 16px 0;
  background: rgba(247, 241, 230, 0.88);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(23, 16, 8, 0.06);
  margin-bottom: 40px;
}

.menu-toolbar-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.menu-search-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-search {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: var(--radius-full);
  background: var(--clr-white);
  border: 1px solid rgba(23, 16, 8, 0.1);
  box-shadow: var(--shadow-xs);
  height: 50px;
}

.menu-search svg {
  width: 19px;
  height: 19px;
  color: var(--clr-muted);
  flex-shrink: 0;
}

.menu-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  height: 100%;
  font-size: 14.5px;
}

.menu-filter-btns {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.menu-filter-btns::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(23, 16, 8, 0.12);
  background: var(--clr-white);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
  white-space: nowrap;
  transition: all var(--speed) var(--ease);
}

.filter-btn:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold-dark);
}

.filter-btn.active {
  background: var(--grad-gold);
  border-color: transparent;
  color: var(--clr-coffee-900);
  box-shadow: var(--shadow-gold);
}

.menu-category {
  margin-bottom: 60px;
}

.menu-category-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.menu-category-head .cat-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 16px;
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-gold);
}

.menu-category-head .cat-icon svg {
  width: 26px;
  height: 26px;
}

.menu-category-head h2 {
  font-size: 26px;
}

.menu-category-head .cat-count {
  font-size: 12.5px;
  color: var(--clr-muted);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 1px;
}

.menu-category-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 169, 68, 0.5), transparent);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  border: 1px solid rgba(23, 16, 8, 0.06);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  position: relative;
}

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

.menu-card-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge-veg {
  background: rgba(47, 158, 68, 0.16);
  border: 1px solid rgba(47, 158, 68, 0.55);
  color: #2c8f3e;
}

.badge-nonveg {
  background: rgba(224, 49, 49, 0.16);
  border: 1px solid rgba(224, 49, 49, 0.55);
  color: #cf3b30;
}

.badge-spicy {
  background: rgba(23, 16, 8, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--clr-white);
}

.spice-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-danger);
}

.spice-dot.off {
  background: rgba(255, 255, 255, 0.35);
}

.badge-chef {
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
  border: none;
}

.menu-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-card-name {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-card-name h3 {
  font-size: 17.5px;
}

.menu-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--clr-gold-dark);
  white-space: nowrap;
}

.menu-card-desc {
  font-size: 13px;
  color: var(--clr-muted);
  margin-bottom: 18px;
  flex: 1;
}

.menu-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--clr-cream);
  border: 1px solid rgba(23, 16, 8, 0.1);
  border-radius: var(--radius-full);
  padding: 4px;
}

.qty-stepper button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-coffee-800);
  background: var(--clr-white);
  box-shadow: var(--shadow-xs);
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease);
}

.qty-stepper button:hover {
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
}

.qty-stepper .qty-value {
  min-width: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

.add-cart-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  background: var(--grad-coffee);
  color: var(--clr-white);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.add-cart-btn svg {
  width: 16px;
  height: 16px;
}

.add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.add-cart-btn.added {
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
}

.menu-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--clr-muted);
}

.menu-empty svg {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  opacity: 0.4;
}

/* ============================ CART DRAWER ============================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 16, 8, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--speed) var(--ease), visibility var(--speed) var(--ease);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 430px;
  max-width: 94vw;
  background: var(--clr-cream);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.45s var(--ease);
  box-shadow: var(--shadow-lg);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: var(--grad-coffee);
  color: var(--clr-white);
}

.cart-head h3 {
  color: var(--clr-white);
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-head h3 svg {
  width: 22px;
  height: 22px;
  color: var(--clr-gold);
}

.cart-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--clr-white);
  font-size: 18px;
  display: grid;
  place-items: center;
  transition: background var(--speed) var(--ease);
}

.cart-close:hover {
  background: rgba(224, 49, 49, 0.25);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 26px;
}

.cart-empty {
  text-align: center;
  padding: 60px 10px;
  color: var(--clr-muted);
}

.cart-empty svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  opacity: 0.35;
}

.cart-empty h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--clr-text);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(23, 16, 8, 0.12);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info h5 {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 3px;
}

.cart-item-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11.5px;
  color: var(--clr-muted);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-price {
  font-weight: 700;
  color: var(--clr-gold-dark);
  font-size: 14px;
}

.cart-remove {
  font-size: 12px;
  color: var(--clr-danger);
  cursor: pointer;
  transition: color var(--speed) var(--ease);
}

.cart-remove:hover {
  text-decoration: underline;
}

.cart-stepper {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--clr-white);
  border: 1px solid rgba(23, 16, 8, 0.1);
  border-radius: var(--radius-full);
  padding: 3px;
}

.cart-stepper button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--clr-cream-100);
  font-weight: 700;
  transition: background var(--speed) var(--ease);
}

.cart-stepper button:hover {
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
}

.cart-stepper span {
  min-width: 26px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.cart-coupon {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.cart-coupon input {
  flex: 1;
  height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(23, 16, 8, 0.12);
  background: var(--clr-white);
  outline: none;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-coupon input:focus {
  border-color: var(--clr-gold);
}

.coupon-apply {
  padding: 0 22px;
  border-radius: var(--radius-full);
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-gold);
  transition: transform var(--speed) var(--ease);
}

.coupon-apply:hover {
  transform: translateY(-2px);
}

.coupon-msg {
  font-size: 12.5px;
  margin: -10px 0 16px;
}

.coupon-msg.ok {
  color: var(--clr-success);
}

.coupon-msg.err {
  color: var(--clr-danger);
}

.cart-summary {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--clr-muted);
  padding: 7px 0;
}

.summary-row.total {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-text);
  border-top: 1px dashed rgba(23, 16, 8, 0.14);
  margin-top: 8px;
  padding-top: 14px;
}

.summary-row.discount {
  color: var(--clr-success);
}

.summary-row b {
  color: var(--clr-text);
}

.cart-foot {
  padding: 20px 26px 26px;
  background: var(--clr-cream-100);
  border-top: 1px solid rgba(23, 16, 8, 0.08);
}

.cart-checkout-btn {
  padding: 16px;
  font-size: 15px;
}

.cart-note {
  font-size: 12px;
  color: var(--clr-muted);
  text-align: center;
  margin-top: 12px;
}

/* ============================ CHECKOUT MODAL ============================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(23, 16, 8, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--speed) var(--ease), visibility var(--speed) var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--clr-cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s var(--ease);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: var(--grad-coffee);
  color: var(--clr-white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 2;
}

.modal-head h3 {
  color: var(--clr-white);
  font-size: 20px;
}

.modal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--clr-white);
  font-size: 17px;
  display: grid;
  place-items: center;
  transition: background var(--speed) var(--ease);
}

.modal-close:hover {
  background: rgba(224, 49, 49, 0.3);
}

.modal-body {
  padding: 26px;
}

.modal-foot {
  padding: 20px 26px 26px;
  border-top: 1px solid rgba(23, 16, 8, 0.08);
  background: var(--clr-cream-100);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ============================ FORMS ============================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
}

.form-group label .req {
  color: var(--clr-danger);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(23, 16, 8, 0.14);
  background: var(--clr-white);
  outline: none;
  font-size: 14px;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.form-control:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 4px rgba(212, 169, 68, 0.16);
}

.form-control::placeholder {
  color: #b3a28c;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-row-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.radio-card {
  position: relative;
  cursor: pointer;
  flex: 1;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.radio-card .radio-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(23, 16, 8, 0.12);
  background: var(--clr-white);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all var(--speed) var(--ease);
}

.radio-card input:checked + .radio-box {
  border-color: var(--clr-gold);
  background: linear-gradient(135deg, rgba(212, 169, 68, 0.18), rgba(212, 169, 68, 0.08));
  color: var(--clr-gold-dark);
  box-shadow: var(--shadow-gold);
}

.radio-card .radio-box svg {
  width: 17px;
  height: 17px;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* ============================ SUCCESS SCREEN ============================ */
.success-screen {
  text-align: center;
  padding: 20px 10px;
}

.success-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-gold);
  animation: popIn 0.5s var(--ease) both;
}

.success-icon svg {
  width: 46px;
  height: 46px;
  color: var(--clr-coffee-900);
}

.success-screen h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.success-screen p {
  color: var(--clr-muted);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.order-id-box {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  background: var(--clr-white);
  border: 1.5px dashed var(--clr-gold);
  font-family: monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-gold-dark);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

/* ============================ RESERVATIONS ============================ */
.reservation-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.reservation-side {
  position: sticky;
  top: calc(var(--nav-height) + 30px);
}

.info-card {
  border-radius: var(--radius-lg);
  background: var(--grad-coffee);
  color: var(--clr-cream);
  padding: 34px 30px;
  margin-bottom: 22px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.info-card h3 {
  color: var(--clr-white);
  font-size: 20px;
  margin-bottom: 16px;
}

.info-card ul li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--clr-cream-200);
}

.info-card ul svg {
  width: 18px;
  height: 18px;
  color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.hours-card {
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  border: 1px solid rgba(23, 16, 8, 0.07);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}

.hours-card h3 {
  font-size: 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-card h3 svg {
  width: 20px;
  height: 20px;
  color: var(--clr-gold-dark);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(23, 16, 8, 0.1);
}

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

.hours-row span {
  color: var(--clr-muted);
}

.hours-row b {
  font-weight: 600;
}

.hours-row.today {
  color: var(--clr-gold-dark);
  font-weight: 700;
}

.reservation-form-card,
.contact-form-card {
  background: var(--clr-white);
  border: 1px solid rgba(23, 16, 8, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 38px;
}

.form-section-title {
  font-size: 22px;
  margin-bottom: 6px;
}

.form-hint {
  font-size: 13.5px;
  color: var(--clr-muted);
  margin-bottom: 24px;
}

.form-error {
  font-size: 12px;
  color: var(--clr-danger);
  margin-top: 4px;
  display: none;
}

.form-control.invalid {
  border-color: var(--clr-danger);
}

.form-control.invalid + .form-error {
  display: block;
}

.occasion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.chip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(23, 16, 8, 0.14);
  background: var(--clr-cream);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--speed) var(--ease);
}

.chip svg {
  width: 16px;
  height: 16px;
  color: var(--clr-gold-dark);
}

.chip input:checked + span {
  background: var(--grad-gold);
  border-color: transparent;
  color: var(--clr-coffee-900);
  box-shadow: var(--shadow-gold);
}

/* ============================ PREMIUM PAGE ============================ */
.premium-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.experience-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--clr-white);
  border: 1px solid rgba(23, 16, 8, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  display: flex;
  flex-direction: column;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.exp-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.experience-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.experience-card-body h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.experience-card-body > p {
  font-size: 13.5px;
  color: var(--clr-muted);
  margin-bottom: 18px;
  flex: 1;
}

.exp-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.exp-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
}

.exp-features svg {
  width: 17px;
  height: 17px;
  color: var(--clr-gold-dark);
  flex-shrink: 0;
}

.exp-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px dashed rgba(23, 16, 8, 0.12);
  padding-top: 18px;
}

.exp-price {
  font-family: var(--font-heading);
}

.exp-price b {
  font-size: 24px;
  color: var(--clr-gold-dark);
}

.exp-price span {
  font-size: 12.5px;
  color: var(--clr-muted);
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 38px 30px;
  background: var(--clr-white);
  border: 1px solid rgba(23, 16, 8, 0.07);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  background: var(--grad-coffee);
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-card.featured h3,
.pricing-card.featured .price-amount {
  color: var(--clr-white);
}

.pricing-card.featured .price-period,
.pricing-card.featured .pricing-desc {
  color: var(--clr-cream-200);
}

.pricing-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 13.5px;
  color: var(--clr-muted);
  margin-bottom: 24px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--clr-gold-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.price-amount small {
  font-size: 20px;
}

.price-period {
  font-size: 12.5px;
  color: var(--clr-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 30px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  padding: 8px 0;
}

.pricing-features svg {
  width: 17px;
  height: 17px;
  color: var(--clr-gold-dark);
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features svg {
  color: var(--clr-gold-light);
}

.pricing-card.featured .pricing-features li {
  color: var(--clr-cream-100);
}

/* Premium steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-gold);
}

.step-card h3 {
  color: var(--clr-white);
  font-size: 16.5px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--clr-cream-200);
}

/* ============================ CONTACT PAGE ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 26px;
}

.contact-info-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--clr-white);
  border: 1px solid rgba(23, 16, 8, 0.07);
  box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-info-card .service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}

.contact-info-card h3 {
  font-size: 15.5px;
  margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 13.5px;
  color: var(--clr-muted);
  line-height: 1.6;
  transition: color var(--speed) var(--ease);
}

.contact-info-card a:hover {
  color: var(--clr-gold-dark);
}

.map-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(23, 16, 8, 0.08);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #3a2a1a 0%, #6b4a2f 45%, #2a1c10 100%);
}

.map-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 85%);
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(23, 16, 8, 0.35);
  backdrop-filter: blur(2px);
  text-align: center;
  padding: 20px;
}

.map-pin {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: grid;
  place-items: center;
  color: var(--clr-coffee-900);
  box-shadow: var(--shadow-gold);
  animation: bouncePin 2.2s infinite;
}

.map-pin svg {
  width: 30px;
  height: 30px;
}

.map-overlay b {
  color: var(--clr-white);
  font-size: 16px;
}

.map-overlay span {
  color: var(--clr-cream-100);
  font-size: 13px;
  max-width: 320px;
}

.social-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  background: var(--clr-white);
  border: 1.5px solid rgba(23, 16, 8, 0.1);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-gold);
}

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

.social-btn.insta { color: #d62976; }
.social-btn.fb { color: #1877f2; }
.social-btn.wa { color: #25d366; }

/* ============================ SCAN & ORDER ============================ */
.scanorder-section {
  background: var(--grad-coffee);
  color: var(--clr-cream);
  position: relative;
  overflow: hidden;
}

.scanorder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.scanorder-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.scanstep {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.scanstep-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--clr-coffee-900);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 17px;
}

.scanstep h4 {
  color: var(--clr-white);
  font-size: 15.5px;
  margin-bottom: 4px;
}

.scanstep p {
  font-size: 13px;
  color: var(--clr-cream-200);
}

.scanstep a {
  color: var(--clr-gold-light);
  font-weight: 600;
}

/* Order placed modal extra */
.order-receipt {
  text-align: left;
  background: var(--clr-white);
  border: 1px dashed rgba(23, 16, 8, 0.18);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 18px 0;
}

.order-receipt .summary-row {
  padding: 5px 0;
}

/* ============================ WHATSAPP WIDGET ============================ */
.wa-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.wa-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2bd467, #1faa52);
  display: grid;
  place-items: center;
  color: var(--clr-white);
  box-shadow: 0 12px 30px rgba(31, 170, 82, 0.5);
  position: relative;
  transition: transform var(--speed) var(--ease);
}

.wa-fab:hover {
  transform: scale(1.1) rotate(6deg);
}

.wa-fab svg {
  width: 30px;
  height: 30px;
}

.wa-fab::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(43, 212, 103, 0.6);
  animation: pulseRing 2s infinite;
}

.wa-popup {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 360px;
  max-width: calc(100vw - 48px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-white);
  box-shadow: var(--shadow-lg);
  transform-origin: bottom right;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.92) translateY(10px);
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease), visibility var(--speed) var(--ease);
}

.wa-popup.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.wa-popup-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: var(--clr-white);
}

.wa-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--clr-white);
  display: grid;
  place-items: center;
  color: #25d366;
  flex-shrink: 0;
}

.wa-avatar svg {
  width: 26px;
  height: 26px;
}

.wa-popup-head b {
  font-size: 15px;
  display: block;
}

.wa-popup-head span {
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wa-popup-head span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b9f6ca;
  animation: blink 1.6s infinite;
}

.wa-close {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--clr-white);
  font-size: 16px;
  background: rgba(255, 255, 255, 0.18);
}

.wa-popup-body {
  padding: 20px;
  background: #eae6dc;
  position: relative;
}

.wa-popup-body::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 26px;
  width: 20px;
  height: 20px;
  background: #eae6dc;
  transform: rotate(45deg);
}

.wa-bubble {
  background: var(--clr-white);
  border-radius: 14px 14px 14px 4px;
  padding: 14px 16px;
  font-size: 14px;
  box-shadow: var(--shadow-xs);
  color: var(--clr-text);
}

.wa-bubble b {
  color: var(--clr-coffee-800);
}

.wa-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 14px;
}

.wa-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  background: var(--clr-white);
  border: 1px solid rgba(23, 16, 8, 0.08);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--clr-text);
  text-align: left;
  box-shadow: var(--shadow-xs);
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease), background var(--speed) var(--ease);
}

.wa-option:hover {
  transform: translateY(-2px);
  border-color: #25d366;
  background: #f2fff5;
}

.wa-option svg {
  width: 17px;
  height: 17px;
  color: #1faa52;
  flex-shrink: 0;
}

.wa-option.span2 {
  grid-column: 1 / -1;
}

.wa-custom {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

.wa-custom input {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(23, 16, 8, 0.14);
  background: var(--clr-white);
  font-size: 13px;
  outline: none;
}

.wa-custom input:focus {
  border-color: #25d366;
}

.wa-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2bd467, #1faa52);
  color: var(--clr-white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform var(--speed) var(--ease);
}

.wa-send:hover {
  transform: scale(1.08);
}

.wa-send svg {
  width: 20px;
  height: 20px;
}

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

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

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ============================ KEYFRAMES ============================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
