/* ============================================================
   GARDENIA CAFE & RESTO — style.css
   Theme: Natural Luxury · Deep Forest Green · Cream Gold Accents
   ============================================================ */

/* ─── RESET & ROOT ─────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core Palette */
  --green-deepest: #0d2416;
  --green-dark: #1a4a2e;
  --green-mid: #2d6a4f;
  --green-bright: #52b788;
  --green-light: #b7e4c7;
  --green-pale: #d8f3dc;

  /* Accent */
  --cream: #f9f3e8;
  --cream-dark: #ede4d3;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --white: #ffffff;

  /* Text */
  --text-dark: #0d1f18;
  --text-mid: #2c4a38;
  --text-light: #6b8f71;
  --text-muted: #9ab89f;

  /* Functional */
  --shadow-sm: 0 2px 12px rgba(13, 36, 22, 0.08);
  --shadow-md: 0 8px 32px rgba(13, 36, 22, 0.14);
  --shadow-lg: 0 20px 60px rgba(13, 36, 22, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Transition */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── TYPOGRAPHY HELPERS ───────────────────────────────────── */
.cormorant {
  font-family: "Cormorant Garamond", serif;
}

/* ─── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--green-mid);
  border-radius: 3px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(249, 243, 232, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.12);
  transition: box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-mid);
}

.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  transition: all 0.25s var(--ease);
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--green-dark);
  background: var(--green-pale);
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  background: var(--green-dark);
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 74, 46, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(249, 243, 232, 0.98);
  border-top: 1px solid rgba(45, 106, 79, 0.1);
  gap: 4px;
  animation: slideDown 0.3s var(--ease);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  font-size: 1rem;
  color: var(--text-mid);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
  font-weight: 500;
}

.mobile-link:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

.mobile-cta {
  margin-top: 12px;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background 0.2s var(--ease);
}

.mobile-cta:hover {
  background: var(--green-mid);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--green-deepest);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(45, 106, 79, 0.35) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 80% at 10% 90%,
      rgba(82, 183, 136, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 90% 10%,
      rgba(201, 168, 76, 0.1) 0%,
      transparent 50%
    );
}

/* Subtle noise texture */
.hero-bg-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(82, 183, 136, 0.15);
  border: 1px solid rgba(82, 183, 136, 0.3);
  color: var(--green-bright);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s var(--ease) both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s var(--ease) 0.1s both;
}

.title-line {
  display: block;
}

.title-line.italic {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(183, 228, 199, 0.75);
  max-width: 520px;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeInUp 0.7s var(--ease) 0.2s both;
}

.hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(232, 213, 163, 0.9);
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.9375rem;
  font-weight: 400;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s var(--ease) 0.3s both;
}

.hours-icon {
  color: var(--gold-light);
  display: flex;
  align-items: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s var(--ease) 0.4s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 15px 30px;
  border-radius: var(--radius-xl);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  padding: 15px 30px;
  border-radius: var(--radius-xl);
  font-size: 0.9375rem;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s var(--ease);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

/* Hero Deco */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(82, 183, 136, 0.15);
}

.deco-1 {
  width: 500px;
  height: 500px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  animation: rotate 30s linear infinite;
}

.deco-2 {
  width: 320px;
  height: 320px;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  border-color: rgba(201, 168, 76, 0.1);
  animation: rotate 20s linear infinite reverse;
}

@keyframes rotate {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.deco-leaf {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10rem;
  opacity: 0.07;
  filter: blur(2px);
  pointer-events: none;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(183, 228, 199, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeInUp 1s var(--ease) 0.8s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(183, 228, 199, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(0.6);
    opacity: 0.2;
  }
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  background: var(--green-dark);
  padding: 64px 24px;
}

.strip-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.strip-item {
  padding: 40px 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(82, 183, 136, 0.15);
  transition: background 0.3s var(--ease);
}

.strip-item:last-child {
  border-right: none;
}

.strip-item:hover {
  background: rgba(82, 183, 136, 0.08);
}

.strip-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.strip-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}

.strip-item p {
  font-size: 0.875rem;
  color: rgba(183, 228, 199, 0.6);
  line-height: 1.65;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--green-deepest);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--green-mid);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  padding: 96px 0;
  background: var(--cream);
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.menu-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  padding: 36px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s var(--ease);
  outline: none;
}

.menu-card:focus-visible {
  box-shadow:
    0 0 0 3px var(--green-bright),
    var(--shadow-md);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: opacity 0.3s;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.card-icon-wrap,
.card-body,
.card-arrow {
  position: relative;
  z-index: 2;
}

.card-icon {
  font-size: 2.5rem;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-body {
  flex: 1;
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.card-arrow {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: all 0.3s var(--ease-spring);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-card:hover .card-arrow {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.15);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 96px 0;
  background: var(--cream-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  background: var(--green-dark);
  color: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.contact-text p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.hours-highlight {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem !important;
  font-weight: 600;
  color: var(--green-mid) !important;
  margin-top: 4px;
}

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green-mid);
  border-bottom: 1px solid rgba(45, 106, 79, 0.3);
  padding-bottom: 2px;
  transition: all 0.2s var(--ease);
}

.maps-link:hover {
  color: var(--green-dark);
  border-bottom-color: var(--green-dark);
}

.wa-link {
  font-size: 1.1875rem;
  font-weight: 500;
  color: #25d366;
  font-family: "Cormorant Garamond", serif;
  border-bottom: 1px solid rgba(37, 211, 102, 0.3);
  padding-bottom: 2px;
  transition: all 0.2s var(--ease);
}

.wa-link:hover {
  color: #1ebe5d;
  border-bottom-color: #1ebe5d;
}

/* Map */
.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 106, 79, 0.12);
}

.map-wrapper iframe {
  border-radius: var(--radius-lg);
}

.map-overlay-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.map-overlay-btn:hover {
  background: var(--green-mid);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-deepest);
  color: var(--cream);
  position: relative;
  padding-top: 80px;
}

.footer-top-deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(82, 183, 136, 0.4),
    transparent
  );
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 64px;
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 48px;
}

/* Footer Brand */
.footer-brand {
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(82, 183, 136, 0.3);
  margin-bottom: 16px;
}

.footer-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(183, 228, 199, 0.5);
  font-style: italic;
  margin-bottom: 24px;
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.25);
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}

.footer-wa-btn:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: rgba(37, 211, 102, 0.45);
  transform: translateY(-1px);
}

/* Footer Social */
.footer-social-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.ig-group {
  margin-bottom: 20px;
}

.ig-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}

.main-label {
  color: var(--gold-light);
}
.parent-label {
  color: rgba(183, 228, 199, 0.5);
}
.sister-label {
  color: rgba(183, 228, 199, 0.4);
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.9375rem;
  font-weight: 400;
  transition: color 0.2s var(--ease);
  padding: 3px 0;
}

.ig-at {
  font-weight: 600;
  font-size: 1em;
}

.ig-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-light);
}

.ig-main:hover {
  color: var(--gold);
}

.ig-parent {
  color: rgba(183, 228, 199, 0.75);
}

.ig-parent:hover {
  color: var(--green-bright);
}

.ig-sisters {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ig-sister {
  color: rgba(183, 228, 199, 0.55);
  font-size: 0.875rem;
}

.ig-sister:hover {
  color: rgba(183, 228, 199, 0.85);
}

/* Footer Info */
.footer-info-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(183, 228, 199, 0.55);
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: var(--green-bright);
}

.footer-hours-box {
  background: rgba(82, 183, 136, 0.08);
  border: 1px solid rgba(82, 183, 136, 0.15);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.fhb-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(183, 228, 199, 0.5);
  margin-bottom: 6px;
}

.fhb-time {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}

.fhb-day {
  font-size: 0.875rem;
  color: var(--green-bright);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(82, 183, 136, 0.1);
  padding: 20px 24px;
  text-align: center;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(183, 228, 199, 0.35);
}

.footer-bottom a {
  color: rgba(183, 228, 199, 0.55);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--green-bright);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13, 36, 22, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s var(--ease-spring);
}

.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(82, 183, 136, 0.2);
}

.modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.modal-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg) scale(1.1);
}

.modal-body {
  padding: 0;
}

/* ─── SLIDER ──────────────────────────────────────────── */
.slider-container {
  position: relative;
  background: var(--green-deepest);
  overflow: hidden;
}

.slider-track {
  display: flex;
  position: relative;
  transition: transform 0.5s var(--ease);
}

.slide {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  user-select: none;
}

/* The actual slide positioning is done via JS translateX on .slider-track */

.slide img {
  width: 100%;
  height: 440px;
  object-fit: contain;
  display: block;
  background: var(--green-deepest);
}

/* Placeholder (for non-image cards) */
.placeholder-slide {
  width: 100%;
  height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #1a4a2e 0%, #2d6a4f 100%);
}

.placeholder-icon {
  font-size: 5rem;
  opacity: 0.6;
}

.placeholder-slide p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: rgba(216, 243, 220, 0.7);
}

.placeholder-slide span {
  font-size: 0.875rem;
  color: rgba(183, 228, 199, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 36, 22, 0.8), transparent);
  padding: 24px 24px 12px;
  color: rgba(216, 243, 220, 0.7);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--cream);
  border-top: 1px solid rgba(45, 106, 79, 0.1);
}

.slider-btn {
  width: 44px;
  height: 44px;
  background: var(--green-dark);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease-spring);
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--green-mid);
  transform: scale(1.1);
}

.slider-btn:active {
  transform: scale(0.95);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.25);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--green-dark);
  width: 24px;
  border-radius: 4px;
}

.slide-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(13, 36, 22, 0.65);
  color: rgba(216, 243, 220, 0.85);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.8125rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .strip-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(82, 183, 136, 0.15);
  }

  .strip-item:nth-child(odd) {
    border-right: 1px solid rgba(82, 183, 136, 0.15);
  }

  .strip-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .menu-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    height: 320px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .hero-content {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .hero-deco .deco-1,
  .hero-deco .deco-2,
  .hero-deco .deco-leaf {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .strip-container {
    grid-template-columns: 1fr;
  }

  .strip-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(82, 183, 136, 0.15);
    padding: 28px 24px;
  }

  .strip-item:last-child {
    border-bottom: none;
  }

  .menu-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-card {
    min-height: 220px;
  }

  .section-title {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
  }

  .slide img,
  .placeholder-slide {
    height: 280px;
  }

  .modal-header {
    padding: 16px 20px;
  }
  .modal-title {
    font-size: 1.125rem;
  }

  .ig-sisters {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}
