/* ==========================================================================
   PRAKETA KOPI - Premium Stylesheet
   Theme: Modern, Minimalist, Dark Red Accent, Cream Background
   ========================================================================== */

:root {
  /* Colors */
  --c-primary: #a31d1d; /* Aksen merah elegan Praketa */
  --c-primary-hover: #7a1414;
  --c-bg: #f9f6f0; /* Cream muda */
  --c-bg-alt: #f1ebe1;
  --c-text: #1a1a1a;
  --c-text-muted: #5c5c5c;
  --c-white: #ffffff;
  --c-black: #0a0a0a;

  /* Typography */
  --f-heading: "Syne", sans-serif;
  --f-body: "DM Sans", sans-serif;
  --f-serif: "Fraunces", serif;

  /* Structure */
  --nav-height: 80px;
  --container-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--f-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===== UTILITIES ===== */
.container {
  width: 90%;
  max-width: var(--container-w);
  margin: 0 auto;
}
.section-chip {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(163, 29, 29, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.section-chip--light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--c-white);
}
.section-title {
  font-family: var(--f-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-black);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.section-title em {
  font-family: var(--f-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--c-primary);
}
.section-title--light {
  color: var(--c-white);
}
.section-desc {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  max-width: 500px;
}
.section-desc--light {
  color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all var(--transition);
  border: 1px solid var(--c-primary);
}
.btn-primary:hover {
  background: var(--c-primary-hover);
  border-color: var(--c-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(163, 29, 29, 0.2);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--c-white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: var(--c-white);
  color: var(--c-black);
  transform: translateY(-3px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--c-black);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--c-black);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--c-black);
  color: var(--c-white);
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--c-white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--c-white);
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background: var(--c-white);
  color: var(--c-black);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--c-black);
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 0;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.tb-sep {
  opacity: 0.3;
}
.topbar a:hover {
  color: var(--c-primary);
}

/* ===== NAVBAR ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(249, 246, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--transition);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}
#navbar.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  width: 90%;
  max-width: var(--container-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.logo-fb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 1.5rem;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand strong {
  font-family: var(--f-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-black);
  letter-spacing: -0.02em;
}
.nav-brand small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-text-muted);
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--c-primary);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-cta {
  background: var(--c-black);
  color: var(--c-white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  transition: background var(--transition);
}
.nav-cta:hover {
  background: var(--c-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-black);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: calc(var(--nav-height) + 38px);
  background: var(--c-bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  gap: 24px;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.4s ease;
  visibility: hidden;
}
.mobile-nav.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-nav a {
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 16px;
}
.mobile-nav .mobile-cta {
  margin-top: auto;
  font-size: 1.2rem;
  color: var(--c-primary);
  border: none;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(10, 10, 10, 0.4) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: flex-end;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-content {
  color: var(--c-white);
  max-width: 650px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--c-primary);
  border-radius: 50%;
}
.hero-title {
  font-family: var(--f-heading);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-family: var(--f-serif);
  font-weight: 300;
  color: var(--c-primary);
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--f-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}
.stat-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  z-index: 1;
  transform-origin: left;
  transform: rotate(-90deg);
}
.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-primary);
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ===== ORDER STRIP ===== */
.order-strip {
  padding: 80px 0;
  background: var(--c-white);
}
.order-strip-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.order-label h2 {
  font-family: var(--f-heading);
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.order-label em {
  font-family: var(--f-serif);
  font-weight: 300;
  color: var(--c-primary);
}
.order-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.order-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--c-bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}
.order-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--c-white);
}
.order-card--red {
  background: rgba(163, 29, 29, 0.05);
  border-color: rgba(163, 29, 29, 0.1);
}
.order-card--red:hover {
  background: rgba(163, 29, 29, 0.1);
}
.order-card-icon {
  font-size: 2rem;
}
.order-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.order-card-body strong {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  color: var(--c-black);
  margin-bottom: 4px;
}
.order-card-body span {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}
.order-arrow {
  color: var(--c-text-muted);
  transition: transform 0.3s;
}
.order-card:hover .order-arrow {
  transform: translateX(5px) translateY(-5px);
  color: var(--c-primary);
}

/* ===== TENTANG ===== */
.about-section {
  padding: 120px 0;
  background: var(--c-bg-alt);
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 600px;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 280px;
  height: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 8px solid var(--c-bg-alt);
  box-shadow: var(--shadow-md);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: 40px;
  left: -40px;
  background: var(--c-primary);
  color: var(--c-white);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.badge-num {
  display: block;
  font-family: var(--f-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}
.about-pillars {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar-icon {
  font-size: 1.8rem;
  background: var(--c-white);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.pillar strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--f-heading);
  color: var(--c-black);
  margin-bottom: 4px;
}
.pillar p {
  font-size: 0.95rem;
  color: var(--c-text-muted);
}

/* ===== MENU ===== */
.menu-section {
  padding: 120px 0;
  background: var(--c-black);
  color: var(--c-white);
  position: relative;
}
.menu-bg-deco {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(163, 29, 29, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.menu-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.menu-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #222;
}
.menu-card--large {
  height: 100%;
  min-height: 500px;
}
.menu-col .menu-card {
  height: 288px;
}
.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover img {
  transform: scale(1.05);
}
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.menu-card-tag {
  align-self: flex-start;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.menu-card h3 {
  font-family: var(--f-heading);
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--c-white);
}
.menu-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ===== GALLERY MARQUEE ===== */
.gallery-marquee {
  padding: 40px 0;
  background: var(--c-black);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.mq-item {
  width: 300px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.mq-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.mq-item:hover img {
  opacity: 1;
}

/* ===== KEUNGGULAN ===== */
.features-section {
  padding: 120px 0;
  background: var(--c-bg);
}
.features-header {
  text-align: center;
  margin-bottom: 60px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--c-white);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.feature-card--big {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  flex-direction: row;
}
.feature-card--big .feature-img {
  width: 50%;
}
.feature-card--big .feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card--big .feature-card-body {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(163, 29, 29, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}
.feature-num {
  font-family: var(--f-serif);
  font-size: 2.5rem;
  color: rgba(0, 0, 0, 0.05);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--c-black);
}
.feature-card p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== STATS TICKER ===== */
.stats-section {
  padding: 60px 0;
  background: var(--c-primary);
  color: var(--c-white);
}
.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stats-item {
  text-align: center;
}
.stats-num {
  font-family: var(--f-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}
.stats-suffix {
  font-family: var(--f-heading);
  font-size: 2.5rem;
  font-weight: 700;
}
.stats-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 8px;
  opacity: 0.9;
}
.stats-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}

/* ===== LOKASI ===== */
.location-section {
  padding: 120px 0;
  background: var(--c-white);
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-list {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--c-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row strong {
  display: block;
  font-family: var(--f-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--c-black);
}
.contact-row p,
.contact-row a {
  color: var(--c-text-muted);
  font-size: 1rem;
}
.contact-row a:hover {
  color: var(--c-primary);
  text-decoration: underline;
}
.location-actions {
  display: flex;
  gap: 16px;
}
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 500px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: var(--c-white);
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(163, 29, 29, 0.85);
  backdrop-filter: blur(4px);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-family: var(--f-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-banner em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
}
.cta-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}
.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--c-black);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.footer-logo strong {
  display: block;
  font-family: var(--f-heading);
  font-size: 1.2rem;
  color: var(--c-white);
}
.footer-logo small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.f-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: var(--c-white);
}
.f-social:hover {
  background: var(--c-primary);
}
.footer-col h4 {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  color: var(--c-white);
  margin-bottom: 24px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.footer-col a {
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--c-primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: transform var(--transition);
}
.wa-float:hover {
  transform: scale(1.1) translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }
  .hero-scroll-cue {
    display: none;
  }
  .order-strip-inner {
    grid-template-columns: 1fr;
  }
  .order-label {
    text-align: center;
  }
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-pillars {
    text-align: left;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card--big {
    grid-column: span 2;
  }
  .location-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    border-radius: 12px;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    width: 45%;
  }
  .order-cards {
    grid-template-columns: 1fr;
  }
  .about-img-accent {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card--big {
    grid-column: 1;
    flex-direction: column;
    grid-row: auto;
  }
  .feature-card--big .feature-img,
  .feature-card--big .feature-card-body {
    width: 100%;
  }
  .stats-row {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .stats-divider {
    display: none;
  }
  .stats-item {
    width: 40%;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
  }
  .menu-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .cta-banner h2 {
    font-size: 2.5rem;
  }
}
