/* ===========================
   JOY Coffee & Eatery — CSS
   Theme: Forest Green + Cream
   =========================== */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors */
  --green-deep: #2a3d2b;
  --green-dark: #3a5a3c;
  --green-mid: #4e7a50;
  --green-light: #6da06f;
  --green-pale: #eef5ee;
  --cream: #f5f0e8;
  --cream-dark: #eae4d8;
  --cream-darker: #ddd5c4;
  --white: #fdfaf5;
  --text-dark: #1c2c1d;
  --text-mid: #3a4d3b;
  --text-muted: #7a8f7b;
  --border: rgba(42, 61, 43, 0.12);
  --accent-warm: #c4783a; /* warm terracotta accent */
  --wa-green: #25d366;

  /* Typography */
  --ff-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --ff-serif: "Playfair Display", Georgia, serif;
  --ff-body: "Jost", "DM Sans", sans-serif;

  /* Spacing & Radii */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 6px rgba(42, 61, 43, 0.08);
  --shadow-sm: 0 3px 16px rgba(42, 61, 43, 0.1);
  --shadow-md: 0 8px 36px rgba(42, 61, 43, 0.14);
  --shadow-lg: 0 20px 64px rgba(42, 61, 43, 0.18);

  /* Misc */
  --nav-h: 72px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --transition: 0.44s var(--ease);
}

/* ===== RESET ===== */
*,
*::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%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: var(--ff-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--green-mid);
  border-radius: 99px;
}

/* ===== SCROLL REVEAL ===== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.reveal {
  transform: translateY(40px);
}
.reveal-left {
  transform: translateX(-44px);
}
.reveal-right {
  transform: translateX(44px);
}
.reveal.visible,
.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.42s;
}
.delay-5 {
  transition-delay: 0.54s;
}

/* ===== UTILITY ===== */
.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(78, 122, 80, 0.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--green-mid);
}
.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 520px;
  margin-top: 0.7rem;
}
.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 48px;
}
.section-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: 0.02em;
  transition:
    gap var(--transition),
    color 0.2s;
}
.section-link:hover {
  color: var(--green-dark);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(42, 61, 43, 0.25);
  transition:
    background var(--transition),
    transform 0.2s,
    box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary.btn-lg {
  font-size: 0.95rem;
  padding: 15px 32px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--green-dark);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline.btn-lg {
  font-size: 0.95rem;
  padding: 14px 30px;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  text-align: center;
}
.topbar a {
  color: rgba(245, 230, 180, 0.9);
  transition: color 0.2s;
}
.topbar a:hover {
  color: #f5e6b4;
}
.topbar-divider {
  opacity: 0.3;
  margin: 0 4px;
}

/* ===== NAVBAR ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  width: min(1180px, 92%);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-deep);
  flex-shrink: 0;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-pale);
}
.logo-fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-deep);
  color: rgba(245, 230, 180, 1);
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-fallback--sm {
  width: 40px;
  height: 40px;
  font-size: 0.95rem;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-text strong {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
}
.nav-logo-text small {
  font-family: var(--ff-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green-mid);
  border-radius: 99px;
  transition: width var(--transition);
}
.nav-links a:hover {
  color: var(--green-deep);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--green-deep);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition:
    background var(--transition),
    transform 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.8px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.8px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--green-deep);
  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: 1.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 32px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(18px);
  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: rgba(245, 230, 180, 1);
}
.mobile-cta {
  margin-top: 20px;
  background: rgba(245, 230, 180, 0.15) !important;
  border: 1px solid rgba(245, 230, 180, 0.3);
  border-radius: var(--radius-pill);
  font-family: var(--ff-body) !important;
  font-size: 0.88rem !important;
  padding: 12px 28px !important;
  color: rgba(245, 230, 180, 0.95) !important;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.3s ease 0.3s,
    transform 0.3s ease 0.3s,
    background 0.2s !important;
}
.mobile-nav.open .mobile-cta {
  opacity: 1;
  transform: none;
}
.mobile-cta:hover {
  background: rgba(245, 230, 180, 0.25) !important;
}

/* ===== HERO ===== */
#hero {
  background: var(--green-deep);
  min-height: calc(100svh - var(--nav-h));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* subtle grain */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}
/* radial glow */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 10% 50%,
      rgba(78, 122, 80, 0.28) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 90% 20%,
      rgba(196, 120, 58, 0.1) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 90px 0;
}
.hero-content {
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 230, 180, 0.7);
  margin-bottom: 1.4rem;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 230, 180, 0.8);
  animation: blink 2.4s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: rgba(245, 230, 180, 0.88);
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.78;
  max-width: 440px;
  margin-bottom: 2rem;
  font-family: var(--ff-body);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-badges span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-frame {
  position: relative;
  width: 380px;
  height: 490px;
  flex-shrink: 0;
}
.hero-img-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 220px 220px 36px 36px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  display: block;
}
.hero-img-badge {
  position: absolute;
  bottom: 28px;
  left: -48px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}
.badge-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.hero-img-badge div strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}
.hero-img-badge div small {
  font-size: 0.68rem;
  color: var(--text-muted);
}
.hero-img-secondary {
  position: absolute;
  top: 36px;
  right: -36px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.12);
}
.hero-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative elements */
.hero-deco-1 {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.hero-deco-2 {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

/* ===== FEATURE STRIPS ===== */
.strips {
  background: var(--white);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.strips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.strip-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.strip-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
  transition:
    background var(--transition),
    transform var(--transition);
}
.strip-item:hover .strip-icon {
  background: var(--green-dark);
  color: var(--white);
  transform: rotate(-4deg) scale(1.06);
}
.strip-item h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.strip-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== MENU SECTION ===== */
.menu-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.menu-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green-mid),
    rgba(196, 120, 58, 0.6),
    var(--green-mid),
    transparent
  );
}
.menu-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.menu-highlight-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  display: block;
}
.menu-highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.menu-highlight-card:hover img {
  transform: scale(1.06);
}
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 46, 32, 0.88) 0%,
    rgba(30, 46, 32, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: background var(--transition);
}
.menu-highlight-card:hover .menu-card-overlay {
  background: linear-gradient(
    to top,
    rgba(30, 46, 32, 0.92) 0%,
    rgba(30, 46, 32, 0.35) 55%,
    transparent 100%
  );
}
.menu-card-overlay h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.menu-card-overlay p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* ===== DETAIL SECTION ===== */
.detail-section {
  padding: 100px 0;
  background: var(--white);
}
.detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.detail-menu {
}
.menu-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.menu-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.menu-list-item:hover {
  padding-left: 6px;
}
.menu-list-info h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.menu-list-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.menu-list-tag {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.detail-visual {
  position: relative;
}
.detail-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.detail-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.detail-img-main:hover img {
  transform: scale(1.04);
}
.detail-img-accent {
  position: absolute;
  bottom: -28px;
  left: -36px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}
.detail-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== FACILITIES ===== */
.facilities-section {
  padding: 100px 0;
  background: var(--cream);
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.facility-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 32px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.facility-card--social {
  background: var(--green-deep);
  border-color: transparent;
}
.facility-card--social h3,
.facility-card--social p {
  color: rgba(255, 255, 255, 0.85) !important;
}
.facility-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.facility-icon {
  font-size: 1.5rem;
}
.facility-header h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}
.facility-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.facility-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-mid);
}
.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--transition);
}
.social-link-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  overflow: hidden;
  background: var(--green-deep);
  padding: 0;
  height: 200px;
}
.gallery-track {
  display: flex;
  gap: 10px;
  height: 100%;
  animation: galleryScroll 28s linear infinite;
  width: max-content;
}
.gallery-track:hover {
  animation-play-state: paused;
}
@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.gallery-item {
  flex-shrink: 0;
  width: 240px;
  height: 200px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition:
    opacity 0.3s,
    transform 0.4s;
}
.gallery-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* ===== LOCATION ===== */
.location-section {
  padding: 100px 0;
  background: var(--white);
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.location-map {
  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 iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}
.contact-block {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item p,
.contact-item a {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.contact-item a:hover {
  color: var(--green-mid);
}
.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--green-deep);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 20% 50%,
      rgba(78, 122, 80, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 60% at 80% 50%,
      rgba(196, 120, 58, 0.1) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-inline: auto;
}
.cta-leaf {
  font-size: 2rem;
  margin-bottom: 16px;
}
.cta-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
.cta-inner h2 em {
  font-style: italic;
  color: rgba(245, 230, 180, 0.9);
}
.cta-inner p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand {
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.14);
}
.footer-logo strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.footer-logo small {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.72;
  max-width: 270px;
}
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}
.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  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: 9px;
}
.footer-col ul li a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: rgba(245, 230, 180, 0.85);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.44);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  animation: waBounce 3s ease infinite 2.5s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}
@keyframes waBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 64px 0;
    gap: 48px;
  }
  .hero-desc {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .detail-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .detail-visual {
    display: none;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .menu-highlights-grid {
    grid-template-columns: 1fr;
  }
  .location-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location-map {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .menu-highlights-grid {
    grid-template-columns: 1fr;
  }
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .strips-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .topbar {
    font-size: 0.65rem;
    padding: 6px 16px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .menu-highlights-grid {
    gap: 12px;
  }
}
