/* ============================================================
   KOMUNIKASIH COFFEE & RESTO PWT
   style.css — Fully Synced with HTML Classes
   Palette: Sage Green + Cream White + Deep Forest
   ============================================================ */

:root {
  --sage: #7a9e7e;
  --sage-light: #9db89f;
  --sage-dark: #4f7a54;
  --forest: #2d4a30;
  --forest-deep: #1a2e1c;
  --cream: #f7f3ed;
  --cream-dark: #ede7dd;
  --white: #ffffff;
  --text-dark: #1e2d21;
  --text-body: #3d4f3f;
  --text-muted: #7a8c7c;
  --accent-sage: #7a9e7e;
  --border-dark: rgba(45, 74, 48, 0.15);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  --navbar-height: 80px;
  --container-max: 1200px;
  --container-px: clamp(1.5rem, 5vw, 3rem);
  --section-py: clamp(4rem, 8vw, 7rem);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  --shadow-sm: 0 4px 12px rgba(26, 46, 28, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 46, 28, 0.12);
  --shadow-lg: 0 16px 40px rgba(26, 46, 28, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--forest);
  border: 1.5px solid rgba(45, 74, 48, 0.3);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

/* ── GLOBAL TYPOGRAPHY ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sage);
}
.section-eyebrow.light {
  color: var(--sage-light);
}
.section-eyebrow.light::before {
  background: var(--sage-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title.light {
  color: var(--cream);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── REVEAL ANIMATIONS ── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate="fade-right"] {
  transform: translateX(-30px);
}
[data-animate="fade-left"] {
  transform: translateX(30px);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ── LOADER ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: 0.6s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
}
.loader-leaf {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.loader-leaf span {
  width: 12px;
  height: 12px;
  background: var(--sage);
  border-radius: 50%;
  animation: bounce 1s infinite alternate;
}
.loader-leaf span:nth-child(2) {
  animation-delay: 0.2s;
  background: var(--sage-light);
}
.loader-leaf span:nth-child(3) {
  animation-delay: 0.4s;
  background: var(--cream);
}
.loader-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 2px;
}

@keyframes bounce {
  to {
    transform: translateY(-10px);
    opacity: 0.5;
  }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 1000;
  transition: 0.3s ease;
}
.navbar.scrolled {
  background: rgba(247, 243, 237, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-dark);
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 44px;
  border-radius: 6px;
}
.nav-logo-fallback {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  align-items: center;
}
.navbar.scrolled .nav-logo-fallback {
  color: var(--forest);
}

.nav-links {
  display: flex;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  font-weight: 500;
  color: rgba(247, 243, 237, 0.8);
  border-radius: 6px;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.navbar.scrolled .nav-link {
  color: var(--text-body);
}
.navbar.scrolled .nav-link:hover {
  color: var(--forest);
  background: rgba(45, 74, 48, 0.08);
}

.nav-cta {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}
.nav-cta:hover {
  background: var(--cream);
  color: var(--forest);
}
.navbar.scrolled .nav-cta {
  background: var(--forest);
  border: none;
  color: var(--cream);
}
.navbar.scrolled .nav-cta:hover {
  background: var(--sage-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}
.navbar.scrolled .nav-toggle span {
  background: var(--forest);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  background: rgba(247, 243, 237, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px var(--container-px) 32px;
  border-top: 1px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-link {
  padding: 12px 16px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 8px;
}
.mobile-link:hover {
  background: rgba(45, 74, 48, 0.08);
  color: var(--forest);
}
.mobile-cta {
  justify-content: center;
  margin-top: 16px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--forest-deep);
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 46, 28, 0.8),
    rgba(45, 74, 48, 0.4)
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--navbar-height) + 40px) var(--container-px) 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-title-line {
  display: block;
}
.hero-title-italic {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--sage-light);
  font-weight: 400;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(247, 243, 237, 0.8);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
.hero-btn-secondary {
  color: var(--cream);
  border-color: rgba(247, 243, 237, 0.4);
}
.hero-btn-secondary:hover {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  color: var(--cream);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 1.5rem;
  animation: float 2s infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--forest);
  color: var(--sage-light);
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scrollLeft 25s linear infinite;
}
@keyframes scrollLeft {
  to {
    transform: translateX(-50%);
  }
}

/* ── ABOUT ── */
.about {
  padding: var(--section-py) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 500px;
}
.about-img-main {
  width: 80%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  border: 8px solid var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  top: 10%;
  right: -5%;
  background: var(--sage);
  color: white;
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}

.about-lead {
  font-size: 1.1rem;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 16px;
}
.about-body {
  margin-bottom: 32px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--cream-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--sage-dark);
  flex-shrink: 0;
}
.about-feature strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-size: 1.05rem;
}
.about-feature p {
  font-size: 0.9rem;
  margin: 0;
}

/* ── MENU ── */
.menu {
  padding: var(--section-py) 0;
  background: var(--white);
  position: relative;
}
.menu-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(122, 158, 126, 0.1) 0%,
    transparent 70%
  );
}
.menu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.menu-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid var(--cream-dark);
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.menu-card-img {
  position: relative;
  height: 220px;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 28, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}
.menu-card-overlay span {
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
}
.menu-card:hover .menu-card-overlay {
  opacity: 1;
}
.menu-card-body {
  padding: 24px;
}
.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.menu-card-body p {
  font-size: 0.95rem;
  margin: 0;
}

.menu-cta-wrapper {
  margin-top: 48px;
}
.menu-cta-card {
  background: var(--forest-deep);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  box-shadow: var(--shadow-lg);
}
.menu-cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.menu-cta-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--sage-light);
  flex-shrink: 0;
}
.menu-pdf-btn:hover {
  background: var(--white) !important;
  color: var(--forest) !important;
}

/* ── GALLERY ── */
.gallery {
  padding: var(--section-py) 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 32px 24px 24px;
  background: linear-gradient(transparent, rgba(26, 46, 28, 0.9));
  color: white;
  font-family: var(--font-display);
  font-size: 1.2rem;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s;
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}
.gallery-instagram {
  text-align: center;
}
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-dark);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: var(--text-dark);
  transition: 0.3s;
  background: white;
}
.instagram-btn:hover {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* ── DELIVERY ── */
.delivery {
  padding: var(--section-py) 0;
  position: relative;
}
.delivery-bg {
  position: absolute;
  inset: 0;
}
.delivery-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.delivery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 28, 0.85);
  backdrop-filter: blur(4px);
}
.delivery-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.delivery-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.delivery-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: 0.3s ease;
  color: white;
}
.delivery-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

/* PERBAIKAN: CSS Khusus untuk Vektor Logo Delivery */
.delivery-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.delivery-card-info strong {
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-display);
  margin-bottom: 4px;
}
.delivery-card-info span {
  font-size: 0.9rem;
  opacity: 0.7;
}
.delivery-arrow {
  align-self: flex-end;
  font-size: 1.5rem;
  opacity: 0.5;
  margin-top: auto;
  transition: 0.3s;
}
.delivery-card:hover .delivery-arrow {
  opacity: 1;
  transform: translate(4px, -4px);
}

.gofood-hover:hover {
  border-color: #e94a35;
  box-shadow: 0 10px 30px rgba(233, 74, 53, 0.2);
}
.gofood-hover:hover .delivery-arrow {
  color: #e94a35;
}
.grab-hover:hover {
  border-color: #00b14f;
  box-shadow: 0 10px 30px rgba(0, 177, 79, 0.2);
}
.grab-hover:hover .delivery-arrow {
  color: #00b14f;
}
.shopee-hover:hover {
  border-color: #ee4d2d;
  box-shadow: 0 10px 30px rgba(238, 77, 45, 0.2);
}
.shopee-hover:hover .delivery-arrow {
  color: #ee4d2d;
}

/* ── RESERVATION ── */
.reservation {
  padding: var(--section-py) 0;
  background: var(--white);
}
.reservation-inner {
  background: var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  border: 1px solid rgba(122, 158, 126, 0.2);
}
.reservation-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reservation-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-dark);
}
.reservation-info i {
  color: var(--sage-dark);
  font-size: 1.25rem;
}
.reservation-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.reservation-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.reservation-card-top i {
  font-size: 2rem;
  color: var(--sage);
}
.reservation-card-top h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text-dark);
}
.btn-whatsapp {
  margin-bottom: 12px;
}

/* ── CONTACT ── */
.contact {
  padding: var(--section-py) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-left: 64px;
}
.social-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  font-size: 1.3rem;
  color: var(--forest);
  transition: 0.3s;
}
.social-btn.wa:hover {
  background: #25d366;
  color: white;
  border-color: #25d366;
}
.social-btn.ig:hover {
  background: #e1306c;
  color: white;
  border-color: #e1306c;
}
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  margin-bottom: 16px;
  border: 1px solid var(--border-dark);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
}
.map-direction-btn {
  width: 100%;
  justify-content: center;
}

/* ── FOOTER ── */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 64px;
}
.footer-logo {
  height: 50px;
  margin-bottom: 24px;
}
.footer-brand p {
  opacity: 0.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.3s;
}
.footer-socials a:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
  transform: translateY(-3px);
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sage-light);
  margin-bottom: 20px;
}
.footer-nav ul,
.footer-order ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a,
.footer-order a {
  opacity: 0.7;
  transition: 0.3s;
  font-size: 0.95rem;
}
.footer-nav a:hover,
.footer-order a:hover {
  opacity: 1;
  color: var(--sage-light);
  padding-left: 5px;
}
.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0.7;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.footer-contact-info i {
  color: var(--sage);
  font-size: 1.2rem;
  margin-top: 2px;
}
.footer-wa-btn {
  margin-top: 24px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #4ade80;
  width: 100%;
  justify-content: center;
}
.footer-wa-btn:hover {
  background: #25d366;
  color: white;
  border-color: #25d366;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  text-align: center;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--forest);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.4s ease;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--sage-dark);
  transform: translateY(-5px);
}

/* ── RESPONSIVE TABLET ── */
@media (max-width: 992px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 4rem;
  }
  .hero-sub-row {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-images {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
  }
  .menu-categories,
  .delivery-platforms {
    grid-template-columns: 1fr 1fr;
  }
  .reservation-inner {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 600px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions a {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-stat-divider {
    display: none;
  }
  .about-images {
    height: 300px;
  }
  .menu-categories,
  .delivery-platforms,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--large,
  .gallery-item--wide {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4/3;
  }
  .menu-cta-card {
    flex-direction: column;
    text-align: center;
  }
  .menu-cta-left {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .reservation-inner {
    padding: 24px;
  }
  .reservation-card {
    padding: 24px;
  }
  .contact-socials {
    padding-left: 0;
  }
}
