/* ═══════════════════════════════════════════════
   SIKADU COFFEE — style.css
   Author: Senior Front-End Dev
   ═══════════════════════════════════════════════ */

/* ── 0. CSS VARIABLES ────────────────────────── */
:root {
  /* Brand Colors */
  --green-900: #1a3a2a;
  --green-800: #1f4a35;
  --green-700: #245c3f;
  --green-600: #2d7a52;
  --green-500: #36a069; /* Primary accent */
  --green-400: #4dbf85;
  --green-300: #72d4a0;
  --green-100: #dff3ea;
  --green-50: #f0faf5;

  --white: #ffffff;
  --off-white: #f7f8f5;
  --broken-white: #f2f3ee;
  --grey-100: #e8ebe4;
  --grey-200: #c8ccbf;
  --grey-400: #8a9080;
  --grey-700: #454a3e;
  --grey-900: #1c1f18;

  --text-dark: #1a1f18;
  --text-mid: #3d4838;
  --text-soft: #6a7262;

  /* Typography */
  --font-heading: "Syne", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  /* Spacing */
  --section-py: 6rem;
  --container-max: 1200px;
  --container-px: 1.5rem;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --shadow-green: 0 12px 36px rgba(54, 160, 105, 0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-base: 0.35s var(--ease-out);
}

/* ── 1. RESET & BASE ─────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── 2. UTILITY ─────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  padding-block: var(--section-py);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.highlight {
  color: var(--green-500);
  position: relative;
}
.highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--green-100);
  z-index: -1;
  border-radius: 2px;
}

/* ── 3. BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(54, 160, 105, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-gofood {
  background: #ee2737;
  color: var(--white);
  font-size: 1rem;
  padding: 1rem 2.25rem;
  box-shadow: 0 12px 36px rgba(238, 39, 55, 0.3);
  gap: 0.75rem;
}
.btn-gofood:hover {
  background: #cc1f2c;
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(238, 39, 55, 0.4);
}

.btn-maps {
  margin-top: 1.5rem;
}

/* ── 4. NAVBAR ──────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition:
    background var(--transition-base),
    padding var(--transition-base),
    box-shadow var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.08),
    var(--shadow-sm);
  padding: 0.6rem 0;
}

.nav-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-400);
  background: var(--green-100);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition-base);
  line-height: 1;
}
.logo-text em {
  font-style: normal;
  color: var(--green-400);
  display: block;
  font-size: 0.8em;
  font-weight: 600;
}

.navbar.scrolled .logo-text {
  color: var(--text-dark);
}
.navbar.scrolled .logo-text em {
  color: var(--green-500);
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  position: relative;
  transition:
    color var(--transition-base),
    background var(--transition-base);
  letter-spacing: 0.03em;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--green-400);
  border-radius: 1px;
  transition:
    left 0.3s var(--ease-out),
    right 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}
.nav-link:hover::after,
.nav-link.active::after {
  left: 0.9rem;
  right: 0.9rem;
}

.navbar.scrolled .nav-link {
  color: var(--text-mid);
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--green-600);
  background: var(--green-50);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}

.ham-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.35s var(--ease-out),
    opacity 0.25s,
    background var(--transition-base);
  transform-origin: center;
}
.navbar.scrolled .ham-bar {
  background: var(--text-dark);
}

.hamburger.open .ham-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .ham-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 5. HERO ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background: url("assets/hero-bg.jpg") center/cover no-repeat;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 40, 28, 0.78) 0%,
    rgba(30, 60, 42, 0.65) 50%,
    rgba(10, 25, 18, 0.72) 100%
  );
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  padding-top: 6rem;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUpIn 0.9s var(--ease-out) 0.3s forwards;
}

.eyebrow-line {
  display: block;
  height: 1px;
  width: 40px;
  background: rgba(255, 255, 255, 0.4);
}

.eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-300);
}

/* Title */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: lineReveal 0.85s var(--ease-out) forwards;
}
.title-line:nth-child(1) {
  animation-delay: 0.5s;
}
.title-line:nth-child(2) {
  animation-delay: 0.65s;
}
.title-line:nth-child(3) {
  animation-delay: 0.8s;
}

.title-accent {
  color: var(--green-300);
  font-style: italic;
}

/* Hours */
.hero-hours {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUpIn 0.9s var(--ease-out) 1s forwards;
}

.hour-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}
.hour-item .ph {
  color: var(--green-400);
  font-size: 1.1rem;
}
.hour-item strong {
  color: var(--white);
  font-weight: 600;
}

.hour-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
}

/* CTA Group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUpIn 0.9s var(--ease-out) 1.15s forwards;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUpIn 0.9s var(--ease-out) 1.4s forwards;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── 6. TICKER ──────────────────────────────── */
.ticker-wrap {
  background: var(--green-800);
  overflow: hidden;
  padding-block: 0.9rem;
  border-top: 1px solid var(--green-700);
  border-bottom: 1px solid var(--green-700);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-200, #a0d8bc);
}
.ticker-dot {
  color: var(--green-400) !important;
  font-size: 0.6rem !important;
}

/* ── 7. MENU SECTION ────────────────────────── */
.menu-section {
  background: var(--off-white);
}

/* Filter */
.menu-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--grey-100);
  color: var(--text-soft);
  background: var(--white);
  transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-500);
  color: var(--white);
  border-color: var(--green-500);
  box-shadow: var(--shadow-green);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Card */
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Make 1st card span 2 rows for asymmetric look */
.menu-card:nth-child(1) {
  grid-row: span 2;
}
.menu-card:nth-child(1) .card-img-wrap {
  aspect-ratio: 4/5;
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.menu-card:hover .card-img-wrap img {
  transform: scale(1.07);
}

.card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--green-500);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.card-badge--new {
  background: var(--grey-900);
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 0.35rem;
}

.card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

.card-desc {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--grey-100);
  gap: 0.5rem;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-600);
}

.card-order-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-600);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition-base);
}
.card-order-btn:hover {
  background: var(--green-500);
  color: var(--white);
  transform: scale(1.1);
}

/* Hidden cards */
.menu-card.hidden {
  display: none;
}

/* ── 8. ORDER SECTION ───────────────────────── */
.order-section {
  background: var(--broken-white);
  position: relative;
}

.order-card {
  background: linear-gradient(
    135deg,
    var(--green-900) 0%,
    var(--green-700) 60%,
    var(--green-600) 100%
  );
  border-radius: var(--radius-xl);
  padding: 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-green);
}

.order-card-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.order-deco-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  top: -100px;
  right: -80px;
}
.order-deco-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(77, 191, 133, 0.15) 0%,
    transparent 70%
  );
  bottom: -60px;
  left: 20%;
}
.order-deco-3 {
  width: 120px;
  height: 120px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  top: 30px;
  left: 35%;
}

.order-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.order-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 1rem;
}

.order-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.order-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.order-arrow {
  font-size: 1.1rem;
}

.order-visual {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.order-cup {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.order-cup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Steam animation */
.order-steam {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.steam-line {
  width: 3px;
  height: 30px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.4), transparent);
  border-radius: 2px;
  animation: steamRise 2.2s ease-in-out infinite;
}
.steam-line:nth-child(2) {
  animation-delay: 0.6s;
}
.steam-line:nth-child(3) {
  animation-delay: 1.2s;
}

/* ── 9. LOCATION SECTION ────────────────────── */
.location-section {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2.5rem;
  align-items: stretch;
  min-height: 420px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.loc-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.loc-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--green-50);
  color: var(--green-600);
  font-size: 1.25rem;
}

.loc-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.loc-text p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.loc-text p span {
  color: var(--green-600);
  font-weight: 500;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--green-600);
  font-weight: 500;
  transition: color 0.25s;
}
.contact-link:hover {
  color: var(--green-800);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  height: 100%;
  min-height: 400px;
}

/* ── 10. FOOTER ─────────────────────────────── */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding-block: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-600);
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.footer-logo em {
  font-style: normal;
  color: var(--green-400);
  display: block;
  font-size: 0.8em;
  font-weight: 600;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links strong,
.footer-social-block strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s;
}
.footer-links a:hover {
  color: var(--green-400);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
}

.social-icon:hover {
  transform: translateY(-4px);
}
.social-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.social-ig:hover {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.35);
}
.social-tt:hover {
  background: #000;
  border-color: #000;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.footer-address-short {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  padding-block: 1.25rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-credit .ph {
  color: var(--green-400);
}

/* ── 11. BACK TO TOP ────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-green);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.3s,
    transform 0.3s var(--ease-out);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--green-600);
  transform: translateY(-3px);
}

/* ── 12. SCROLL ANIMATIONS ──────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for menu cards */
.menu-grid .menu-card:nth-child(1) {
  transition-delay: 0.05s;
}
.menu-grid .menu-card:nth-child(2) {
  transition-delay: 0.1s;
}
.menu-grid .menu-card:nth-child(3) {
  transition-delay: 0.15s;
}
.menu-grid .menu-card:nth-child(4) {
  transition-delay: 0.2s;
}
.menu-grid .menu-card:nth-child(5) {
  transition-delay: 0.25s;
}
.menu-grid .menu-card:nth-child(6) {
  transition-delay: 0.3s;
}
.menu-grid .menu-card:nth-child(7) {
  transition-delay: 0.35s;
}
.menu-grid .menu-card:nth-child(8) {
  transition-delay: 0.4s;
}

/* ── 13. KEYFRAMES ──────────────────────────── */
@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes steamRise {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scaleX(1);
  }
  30% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-28px) scaleX(1.5);
    opacity: 0;
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

/* ── 14. RESPONSIVE ─────────────────────────── */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  :root {
    --section-py: 4.5rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-card:nth-child(1) {
    grid-row: span 1;
  }
  .menu-card:nth-child(1) .card-img-wrap {
    aspect-ratio: 4/3;
  }

  .order-card {
    padding: 2.75rem;
  }
  .order-cup {
    width: 180px;
    height: 180px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  :root {
    --section-py: 3.5rem;
    --container-px: 1.25rem;
  }

  /* Nav mobile */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(26, 58, 42, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      opacity 0.4s var(--ease-out),
      transform 0.4s var(--ease-out);
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.5rem;
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    width: 100%;
    text-align: center;
  }
  .nav-link::after {
    display: none;
  }
  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--green-300);
  }

  .navbar.scrolled .nav-link {
    color: var(--white);
  }
  .navbar.scrolled .ham-bar {
    background: var(--white);
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }
  .hero-cta-group .btn {
    font-size: 0.82rem;
    padding: 0.75rem 1.5rem;
  }
  .scroll-indicator {
    display: none;
  }
  .hour-divider {
    display: none;
  }

  /* Menu */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .card-name {
    font-size: 0.92rem;
  }

  /* Order */
  .order-card {
    flex-direction: column-reverse;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
  .order-cup {
    width: 150px;
    height: 150px;
  }
  .order-desc {
    margin-inline: auto;
  }
  .btn-gofood {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Small Mobile: ≤ 480px */
@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .hero-hours {
    flex-direction: column;
    align-items: flex-start;
  }
}
