/* ===== DESIGN TOKENS ===== */
:root {
  --green-dark: #2c5f2e; /* EMCO63 inspired deep forest green */
  --green-mid: #3a7a3c;
  --green-light: #4e9b50;
  --green-pale: #ebf3eb;
  --yellow: #f5c842;
  --yellow-light: #fde97a;
  --cream: #f4efe0; /* cream mayones */
  --cream-dark: #e8e0ca;
  --white: #fdfcf8;
  --text-dark: #1a2e1b;
  --text-mid: #3a4d3b;
  --text-light: #6b7f6c;
  --border: rgba(44, 95, 46, 0.15);

  --ff-display: "Playfair Display", Georgia, serif;
  --ff-serif: "Cormorant Garamond", Georgia, serif;
  --ff-body: "DM Sans", sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 12px rgba(44, 95, 46, 0.1);
  --shadow-md: 0 8px 32px rgba(44, 95, 46, 0.14);
  --shadow-lg: 0 20px 60px rgba(44, 95, 46, 0.18);

  --nav-h: 72px;
  --transition: 0.42s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: var(--ff-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s var(--transition),
    transform 0.7s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s var(--transition),
    transform 0.7s var(--transition);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s var(--transition),
    transform 0.7s var(--transition);
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--green-mid);
  border-radius: 99px;
}

/* ===== UTILITY ===== */
.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(78, 155, 80, 0.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}
.section-title em {
  font-style: italic;
  color: var(--green-mid);
}
.section-desc {
  font-family: var(--ff-serif);
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 540px;
  margin-top: 0.7rem;
  line-height: 1.75;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  transition:
    background var(--transition),
    transform 0.2s,
    box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(44, 95, 46, 0.25);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--green-dark);
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  padding: 7px 0;
  text-align: center;
}
.topbar a {
  color: var(--yellow);
}
.topbar span {
  margin: 0 10px;
  opacity: 0.4;
}

/* ===== NAVBAR ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(253, 252, 248, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled {
  box-shadow: var(--shadow-sm);
}
#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-dark);
  text-decoration: none;
}
.nav-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-pale);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text small {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-mid);
  border-radius: 99px;
  transition: width var(--transition);
}
.nav-links a:hover {
  color: var(--green-dark);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition:
    background var(--transition),
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1001;
  position: relative;
  background: transparent;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:focus-visible {
  box-shadow: 0 0 0 2px var(--green-mid);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--green-dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  padding: 14px 40px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.2s;
}
.mobile-nav.open a {
  opacity: 1;
  transform: none;
}
.mobile-nav.open a:nth-child(1) {
  transition-delay: 0.05s;
}
.mobile-nav.open a:nth-child(2) {
  transition-delay: 0.1s;
}
.mobile-nav.open a:nth-child(3) {
  transition-delay: 0.15s;
}
.mobile-nav.open a:nth-child(4) {
  transition-delay: 0.2s;
}
.mobile-nav.open a:nth-child(5) {
  transition-delay: 0.25s;
}
.mobile-nav a:hover {
  color: var(--yellow);
}
.mobile-nav .mobile-cta {
  margin-top: 24px;
  background: var(--yellow);
  color: var(--green-dark);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease 0.3s,
    transform 0.3s ease 0.3s;
}
.mobile-nav.open .mobile-cta {
  opacity: 1;
  transform: none;
}
.mobile-nav .mobile-close-hint {
  position: absolute;
  bottom: 32px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  background: var(--green-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(78, 155, 80, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(245, 200, 66, 0.1) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 70% 85%,
      rgba(78, 155, 80, 0.15) 0%,
      transparent 40%
    );
}
.hero-grain {
  position: absolute;
  inset: 0;
  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='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
/* Decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-ring-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
}
.hero-ring-2 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -50px;
  border-color: rgba(245, 200, 66, 0.08);
}
.hero-ring-3 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -100px;
  border-color: rgba(255, 255, 255, 0.04);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-content {
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 200, 66, 0.15);
  border: 1px solid rgba(245, 200, 66, 0.3);
  color: var(--yellow-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.4rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--yellow-light);
  display: block;
}
.hero-subtitle {
  font-family: var(--ff-serif);
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.2rem;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition);
}
.hero-cta-wa:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}
.hero-cta-wa svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.hero-cta-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all var(--transition);
  backdrop-filter: blur(6px);
}
.hero-cta-menu:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--yellow-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

/* Hero image side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 380px;
  height: 480px;
}
.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 200px 200px 32px 32px;
  border: 4px solid rgba(255, 255, 255, 0.12);
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 32px 32px;
  background: linear-gradient(
    145deg,
    rgba(78, 155, 80, 0.3) 0%,
    rgba(44, 95, 46, 0.5) 100%
  );
  border: 4px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-img-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}
.hero-img-placeholder span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

/* Floating card on hero */
.hero-float-card {
  position: absolute;
  bottom: 30px;
  left: -50px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.hero-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-float-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 600;
}
.hero-float-text span {
  font-size: 0.7rem;
  color: var(--text-light);
}
.hero-float-card2 {
  position: absolute;
  top: 40px;
  right: -40px;
  background: var(--yellow);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
}
.hero-float-card2 strong {
  display: block;
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 700;
}
.hero-float-card2 span {
  font-size: 0.68rem;
  color: rgba(44, 95, 46, 0.7);
}

/* ===== ABOUT / PILLARS ===== */
#about {
  padding: 100px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-desc {
  max-width: 100%;
}
.pillar-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pillar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--green-pale);
  border-left: 3px solid var(--green-mid);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.pillar-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.pillar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.pillar-body p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 2px;
}
.about-visual {
  position: relative;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-img-cell {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--green-pale);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.about-img-cell.tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 280px;
}
.about-img-cell.accent {
  background: var(--green-dark);
  color: var(--white);
}
.about-img-cell.yellow {
  background: var(--yellow);
  color: var(--green-dark);
}

/* ===== MENU SECTION ===== */
#menus {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#menus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green-mid),
    var(--yellow),
    var(--green-mid),
    transparent
  );
}
.menus-header {
  text-align: center;
  margin-bottom: 60px;
}
.menus-header .section-desc {
  margin-inline: auto;
}
.menus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.menu-card-top {
  background: var(--green-dark);
  padding: 40px 32px 32px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
}
.menu-card:nth-child(2) .menu-card-top {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a3a1c 100%);
}
.menu-card:nth-child(3) .menu-card-top {
  background: linear-gradient(135deg, #1c3820 0%, var(--green-dark) 100%);
}
.menu-card-bg-text {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--ff-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}
.menu-card-emoji {
  font-size: 3.5rem;
  position: absolute;
  top: 24px;
  left: 28px;
}
.menu-card-number {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}
.menu-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-card-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.menu-card-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}
.menu-card-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-mid);
  transition: gap var(--transition);
}
.menu-card:hover .menu-card-action {
  gap: 12px;
}
.menu-card-action svg {
  width: 16px;
  height: 16px;
}
.menu-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

/* ===== FEATURES ===== */
#features {
  padding: 100px 0;
  background: var(--white);
}
.features-header {
  text-align: center;
  margin-bottom: 60px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: var(--green-pale);
  border: 1px solid rgba(44, 95, 46, 0.1);
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  transition: transform var(--transition);
}
.feature-card:hover .feature-icon {
  transform: rotate(-5deg) scale(1.08);
}
.feature-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== GALLERY / VIBES ===== */
#vibes {
  padding: 100px 0;
  background: var(--green-dark);
  color: var(--white);
  overflow: hidden;
}
.vibes-header {
  text-align: center;
  margin-bottom: 50px;
}
.vibes-header .section-label {
  background: rgba(245, 200, 66, 0.15);
  color: var(--yellow-light);
}
.vibes-header .section-title {
  color: var(--white);
}
.vibes-header .section-title em {
  color: var(--yellow-light);
}
.vibes-header .section-desc {
  color: rgba(255, 255, 255, 0.55);
  margin-inline: auto;
}
/* Marquee strip */
.marquee-wrap {
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 16px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  flex-shrink: 0;
  width: 200px;
  height: 160px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  overflow: hidden;
}
.marquee-item.alt {
  background: rgba(245, 200, 66, 0.12);
  border-color: rgba(245, 200, 66, 0.2);
}

/* ===== EVENTS / NEWS ===== */
#events {
  padding: 100px 0;
  background: var(--cream);
}
.events-header {
  text-align: center;
  margin-bottom: 56px;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.event-img {
  height: 180px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.event-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
}
.event-body {
  padding: 22px 22px 26px;
}
.event-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.event-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.event-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== LOCATION ===== */
#location {
  padding: 100px 0;
  background: var(--white);
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.location-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.location-map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}
.info-block {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.info-block:first-of-type {
  padding-top: 0;
}
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--green-dark);
}
.info-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.info-text p,
.info-text a {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.info-text a:hover {
  color: var(--green-mid);
}

/* Social buttons */
.social-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
}
.social-btn-ig {
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: var(--white);
}
.social-btn-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.3);
}
.social-btn-tt {
  background: #000;
  color: var(--white);
}
.social-btn-tt:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.social-btn svg {
  width: 16px;
  height: 16px;
}

/* Hours */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}
.hours-row .day {
  color: var(--text-light);
}
.hours-row .time {
  font-weight: 500;
  color: var(--text-dark);
}

/* ===== CTA BANNER ===== */
#cta-banner {
  padding: 80px 0;
  background: var(--green-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(245, 200, 66, 0.08),
      transparent 55%
    ),
    radial-gradient(circle at 70% 50%, rgba(78, 155, 80, 0.15), transparent 55%);
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.cta-title em {
  font-style: italic;
  color: var(--yellow-light);
}
.cta-desc {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}
.cta-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}
.cta-wa-btn:hover {
  background: #1ebe5c;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}
.cta-wa-btn svg {
  width: 22px;
  height: 22px;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.footer-logo-text strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: var(--white);
}
.footer-logo-text small {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    background var(--transition),
    transform var(--transition);
  text-decoration: none;
}
.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--yellow-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a {
  color: var(--yellow-light);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  animation: wa-bounce 3s ease infinite 2s;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}
.wa-float svg {
  width: 28px;
  height: 28px;
}
@keyframes wa-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 0;
    gap: 40px;
  }
  .hero-subtitle {
    margin-inline: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual {
    display: none;
  }

  .menus-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-grid {
    grid-template-columns: 1fr;
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location-map-wrap {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-float-card,
  .hero-float-card2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .menus-grid {
    gap: 16px;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
