/* ═══════════════════════════════════════════════════
   et al Coffee Purwokerto — Main Stylesheet
   Design: Refined Luxury | Palette: Forest Green × Cream × Warm Red
   ═══════════════════════════════════════════════════ */

/* ────────────── CSS VARIABLES ────────────── */
:root {
  --green: #3d5a3e;
  --green-dark: #2c3f2d;
  --green-light: #5a7a5b;
  --green-pale: #e8ede8;
  --cream: #f5f0e8;
  --cream-dark: #ede6d6;
  --cream-deeper: #d8cbb8;
  --red: #c0392b;
  --red-light: #e74c3c;
  --red-pale: #fdf0ef;
  --white: #fdfaf5;
  --off-white: #f8f4ed;
  --black: #1a1a16;
  --dark: #2a2a24;
  --gray: #7a7a72;
  --gray-light: #b5b5aa;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;

  --shadow-sm: 0 2px 8px rgba(61, 90, 62, 0.08);
  --shadow-md: 0 8px 32px rgba(61, 90, 62, 0.12);
  --shadow-lg: 0 20px 64px rgba(61, 90, 62, 0.16);
  --shadow-xl: 0 32px 80px rgba(26, 26, 22, 0.2);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --container: 1280px;
  --nav-h: 80px;
}

/* ────────────── RESET & BASE ────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) {
  body {
    cursor: auto;
  }
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
ul {
  list-style: none;
}

/* ────────────── CUSTOM CURSOR ────────────── */
.cursor,
.cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: multiply;
  transition:
    transform 0.15s ease,
    opacity 0.3s ease;
}

.cursor {
  width: 10px;
  height: 10px;
  background: var(--red);
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--green);
  transform: translate(-50%, -50%);
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.3s ease;
}

body:hover .cursor,
body:hover .cursor-follower {
  opacity: 1;
}

.cursor.active {
  transform: translate(-50%, -50%) scale(1.8);
}
.cursor-follower.active {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .cursor,
  .cursor-follower {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ────────────── LOADER ────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  animation: loaderPulse 1.5s ease infinite;
}

@keyframes loaderPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(245, 240, 232, 0.2);
  border-radius: 999px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 999px;
  transition: width 0.05s linear;
}

.loader-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

/* ────────────── CONTAINER ────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ────────────── TYPOGRAPHY ────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.section-title.center {
  text-align: center;
}
.section-title.light {
  color: var(--cream);
}
.section-title em {
  font-style: italic;
  color: var(--green);
}
.section-title.light em {
  color: var(--cream-dark);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green);
}

.section-label.center {
  justify-content: center;
}
.section-label.light {
  color: rgba(245, 240, 232, 0.7);
}

.label-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.label-line.light {
  background: rgba(245, 240, 232, 0.4);
}

/* ────────────── BUTTONS ────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn i {
  font-size: 1.1em;
}

.btn-primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(61, 90, 62, 0.3);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61, 90, 62, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--cream);
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-nav {
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.3);
}

.btn-nav:hover {
  background: var(--red-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(192, 57, 43, 0.35);
}

/* ────────────── REVEAL ANIMATIONS ────────────── */
[data-reveal],
[data-reveal-right] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal-right] {
  transform: translateX(40px);
}

[data-reveal].visible,
[data-reveal-right].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition:
    background 0.5s ease,
    box-shadow 0.5s ease,
    backdrop-filter 0.5s ease;
}

.navbar.scrolled {
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 1px 0 rgba(61, 90, 62, 0.08),
    var(--shadow-sm);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--green-dark);
  letter-spacing: 0.05em;
}

.nav-sub {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--dark);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--green);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 1.7rem);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: var(--transition-fast);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 999px;
  transition: var(--transition-fast);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ─ Mobile Menu ─ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 90vw);
  height: 100svh;
  background: var(--white);
  z-index: 1100;
  padding: 5rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}

.mobile-menu.open {
  right: 0;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--dark);
  transition: var(--transition-fast);
}

.mobile-close:hover {
  background: var(--green);
  color: var(--cream);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: var(--transition-fast);
}

.mobile-link:hover {
  color: var(--green);
  padding-left: 0.5rem;
}

.mobile-cta {
  width: 100%;
  justify-content: center;
}

.mobile-socials {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.mobile-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
  transition: var(--transition-fast);
}

.mobile-socials a:hover {
  background: var(--green);
  color: var(--cream);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 22, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  backdrop-filter: blur(4px);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--green-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobFloat 12s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: rgba(90, 122, 91, 0.25);
  top: -15%;
  right: -10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(192, 57, 43, 0.12);
  bottom: -10%;
  left: 5%;
  animation-delay: -4s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(245, 240, 232, 0.06);
  top: 30%;
  left: 35%;
  animation-delay: -8s;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.97);
  }
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) clamp(1.25rem, 4vw, 3rem) 6rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero-left {
  animation: heroSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hero-right {
  animation: heroSlideInRight 1s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroSlideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 2rem;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.75rem;
}

.hero-headline .line {
  display: block;
}
.hero-headline .italic {
  font-style: italic;
  font-weight: 300;
}
.hero-headline .accent {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 232, 0.5);
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.65);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--red);
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 240, 232, 0.15);
}

/* Hero Right */
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-frame {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(90, 122, 91, 0.3) 0%,
    rgba(44, 63, 45, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(245, 240, 232, 0.5);
}

.placeholder-icon {
  font-size: 4rem;
  opacity: 0.4;
}

.hero-img-placeholder p {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
}

.hero-img-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--red);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 40px rgba(192, 57, 43, 0.3);
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}

.badge-inner i {
  font-size: 1.6rem;
}

.hero-tag-float {
  position: absolute;
  top: 1.5rem;
  right: -2rem;
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.hero-tag-float i {
  color: var(--red);
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  animation: scrollBounce 3s ease infinite;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(
    to bottom,
    rgba(245, 240, 232, 0.35),
    transparent
  );
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ════════════════════════════════════════
   STRIP MARQUEE
════════════════════════════════════════ */
.strip-marquee {
  background: var(--red);
  padding: 0.85rem 0;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.strip-track span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.9);
  padding: 0 1.5rem;
}

.strip-track .sep {
  color: rgba(253, 250, 245, 0.4);
  font-size: 0.5rem;
  padding: 0 0.25rem;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

/* About Visual */
.about-visual {
  position: relative;
  height: 580px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 50%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(245, 240, 232, 0.8);
  text-align: center;
}

.about-placeholder i {
  font-size: 3rem;
  opacity: 0.6;
}

.about-placeholder.main {
  background: linear-gradient(150deg, var(--green-light), var(--green-dark));
}

.about-placeholder.accent {
  background: linear-gradient(150deg, var(--cream-dark), var(--cream-deeper));
  color: var(--green-dark);
}

.about-placeholder.accent i {
  color: var(--green);
}

.about-float-card {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-xl);
  white-space: nowrap;
  animation: floatUp 4s ease-in-out infinite;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--red);
}

.float-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.float-text span {
  font-size: 0.72rem;
  color: var(--gray);
}

/* About Content */
.about-content {
  padding: 1rem 0;
}

.about-text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.about-text strong {
  color: var(--green-dark);
  font-weight: 600;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
  padding: 2rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--green);
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.feature-text span {
  font-size: 0.83rem;
  color: var(--gray);
}

/* ════════════════════════════════════════
   WHY US
════════════════════════════════════════ */
.whyus {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--off-white);
}

.whyus-header {
  margin-bottom: 4rem;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}

.why-card:hover::before {
  opacity: 1;
}
.why-card:hover * {
  color: var(--cream) !important;
}
.why-card:hover .why-num {
  opacity: 0.15;
}
.why-card:hover .why-icon {
  background: rgba(245, 240, 232, 0.15);
}

.why-card > * {
  position: relative;
  z-index: 1;
}

.why-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.why-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--gray);
  transition: var(--transition);
}

/* ════════════════════════════════════════
   MENU
════════════════════════════════════════ */
.menu {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
}

.menu-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, #1e2e1f 100%);
}

.menu-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.menu .container {
  position: relative;
  z-index: 1;
}

.menu-header {
  margin-bottom: 1.5rem;
}

.menu-header .section-title {
  margin-bottom: 1rem;
}

.menu-sub {
  text-align: center;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.55);
  max-width: 520px;
  margin: 0 auto 3rem;
}

.menu-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.cat-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(245, 240, 232, 0.55);
  background: rgba(245, 240, 232, 0.07);
  border: 1px solid rgba(245, 240, 232, 0.12);
  cursor: pointer;
  transition: var(--transition-fast);
}

.cat-btn:hover,
.cat-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.menu-card {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-6px);
  background: rgba(245, 240, 232, 0.08);
  border-color: rgba(245, 240, 232, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.menu-card.hidden {
  display: none;
}

.menu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.coffee-img {
  background: linear-gradient(160deg, #3d2b1f, #6b4226);
}
.signature-img {
  background: linear-gradient(160deg, #2c1810, #8b4513);
}
.matcha-img {
  background: linear-gradient(160deg, #1a2e1a, #4a6741);
}
.toast-img {
  background: linear-gradient(160deg, #3d3020, #8b6914);
}
.pastry-img {
  background: linear-gradient(160deg, #3d2a1a, #a0672b);
}
.milkshake-img {
  background: linear-gradient(160deg, #1e2a3a, #2c4a6b);
}

.menu-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(245, 240, 232, 0.2);
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-img-placeholder {
  transform: scale(1.08);
}

.menu-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.menu-card-body {
  padding: 1.5rem;
}

.menu-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(61, 90, 62, 0.3);
  color: var(--green-light);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(61, 90, 62, 0.4);
}

.menu-badge.featured-badge {
  background: rgba(192, 57, 43, 0.2);
  color: #e8907e;
  border-color: rgba(192, 57, 43, 0.3);
}
.menu-badge.non-coffee {
  background: rgba(74, 103, 65, 0.3);
  color: #9bc49a;
  border-color: rgba(74, 103, 65, 0.4);
}
.menu-badge.food {
  background: rgba(139, 105, 20, 0.3);
  color: #d4b96f;
  border-color: rgba(139, 105, 20, 0.4);
}
.menu-badge.bakery {
  background: rgba(139, 74, 35, 0.3);
  color: #d4946f;
  border-color: rgba(139, 74, 35, 0.4);
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.menu-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 1.25rem;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
}

.menu-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.4);
  transition: var(--transition-fast);
}

.menu-card:hover .menu-icon {
  background: var(--red);
  color: var(--white);
}

.menu-cta {
  text-align: center;
  padding-top: 1rem;
}

.menu-cta p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 1.25rem;
}

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
}

.gallery-header {
  margin-bottom: 3.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1rem;
  margin-bottom: 3rem;
}

.g-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.g-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.g-wide {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

.g-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.6s ease;
}

.g-item:nth-child(1) .g-placeholder {
  background: linear-gradient(160deg, var(--green), var(--green-dark));
  color: rgba(245, 240, 232, 0.6);
}
.g-item:nth-child(2) .g-placeholder {
  background: linear-gradient(160deg, #3d2b1f, #6b4226);
  color: rgba(245, 240, 232, 0.6);
}
.g-item:nth-child(3) .g-placeholder {
  background: linear-gradient(160deg, var(--cream-dark), var(--cream-deeper));
  color: var(--green-dark);
}
.g-item:nth-child(4) .g-placeholder {
  background: linear-gradient(160deg, var(--green-light), var(--green));
  color: rgba(245, 240, 232, 0.6);
}
.g-item:nth-child(5) .g-placeholder {
  background: linear-gradient(160deg, #1a2e1a, #2d5c2e);
  color: rgba(245, 240, 232, 0.6);
}

.g-placeholder i {
  font-size: 3rem;
  opacity: 0.5;
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 22, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.g-overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.g-item:hover .g-overlay {
  opacity: 1;
}
.g-item:hover .g-placeholder {
  transform: scale(1.05);
}

.gallery-ig {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.gallery-ig p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ════════════════════════════════════════
   LOCATION
════════════════════════════════════════ */
.location {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--off-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.loc-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.loc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
  flex-shrink: 0;
}

.loc-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.loc-text span,
.loc-text a {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.loc-text a {
  transition: color 0.2s ease;
}

.loc-text a:hover {
  color: var(--green);
}

.map-wrap {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1a2a1b 0%,
    var(--green-dark) 50%,
    #1e1a14 100%
  );
}

.contact-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-header {
  margin-bottom: 1rem;
}

.contact-sub {
  text-align: center;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.5);
  margin: 0.75rem 0 3.5rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-light);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 240, 232, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-card:hover::before {
  opacity: 0.1;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card-icon {
  font-size: 2rem;
  color: var(--green-light);
  margin-bottom: 0.5rem;
  transition: var(--transition-fast);
}

.contact-card:hover .contact-card-icon {
  color: var(--cream);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
}

.contact-card p {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.45);
}

.contact-card span {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.7);
  margin-top: 0.25rem;
}

.contact-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.25);
  transition: var(--transition-fast);
}

.contact-card:hover .contact-card-arrow {
  color: var(--cream);
  transform: translate(3px, -3px);
}

.contact-network {
  text-align: center;
  padding-top: 1rem;
}

.contact-network > p {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  margin-bottom: 1.25rem;
}

.network-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.network-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245, 240, 232, 0.07);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.7);
  transition: var(--transition-fast);
}

.network-badge i {
  font-size: 1rem;
}

.network-badge:hover {
  background: rgba(245, 240, 232, 0.12);
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.25);
}

.network-sep {
  font-size: 1.2rem;
  color: rgba(245, 240, 232, 0.2);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--black);
}

.footer-top {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245, 240, 232, 0.15);
}

.footer-brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.footer-brand-loc {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
}

.footer-brand > p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 1.75rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.07);
  border: 1px solid rgba(245, 240, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(245, 240, 232, 0.5);
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col li a {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.5);
  transition: var(--transition-fast);
}

.footer-col li a:hover {
  color: var(--cream);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-list i {
  font-size: 1rem;
  color: var(--green-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list span,
.footer-contact-list a {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.55;
  transition: var(--transition-fast);
}

.footer-contact-list a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.3);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-bottom a {
  color: var(--green-light);
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--cream);
}

/* ════════════════════════════════════════
   FLOATING ELEMENTS
════════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 7rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 900;
  transition: var(--transition-fast);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--green);
  transform: translateY(-3px);
}

.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: var(--transition-fast);
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transform: translateY(-50%) translateX(5px);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1200px) {
  .whyus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-desc {
    margin: 0 auto 2.5rem;
  }

  .hero-right {
    display: flex;
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 400px;
    margin-bottom: 2rem;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }
  .btn-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
  }

  .hero-headline {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
  }

  .about-visual {
    height: 300px;
  }
  .about-float-card {
    display: none;
  }

  .whyus-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .g-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  .g-wide {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .g-large,
  .g-wide {
    grid-column: auto;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .network-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* ────────────── PRINT ────────────── */
@media print {
  .navbar,
  .loader,
  .cursor,
  .cursor-follower,
  .wa-float,
  .back-top,
  .mobile-menu,
  .mobile-overlay {
    display: none;
  }
  body {
    cursor: auto;
  }
}
