/* ============================================
   PHO LUU — Custom Styles
   ============================================ */

/* RESET & BASE */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --cream-50: #fefdf8;
  --cream-100: #fef9ef;
  --cream-200: #fdf3e0;
  --cream-300: #f5e6c8;
  --sand: #e8d5b7;
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --white: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #6b6b6b;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream-50);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(6, 78, 59, 0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--emerald-800);
  color: var(--cream-100);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: transform 0.3s var(--ease-spring);
}

.nav-logo:hover .nav-logo-mark {
  transform: rotate(-8deg) scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--emerald-900);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-600);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--emerald-700);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--emerald-800);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  background: var(--emerald-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(6, 78, 59, 0.3);
}

.nav-cta::after {
  display: none !important;
}

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--emerald-900);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream-50);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald-900);
  padding: 12px 24px;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: var(--emerald-500);
}

.mobile-menu-phone {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-menu-cta {
  margin-top: 16px;
  background: var(--emerald-800);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream-50);
  padding: 120px 0 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--emerald-500);
  top: -200px;
  right: -100px;
  animation: float1 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--emerald-700);
  bottom: -100px;
  left: -100px;
  animation: float2 16s ease-in-out infinite;
}

.hero-shape-3 {
  width: 250px;
  height: 250px;
  background: var(--cream-300);
  top: 40%;
  left: 45%;
  animation: float3 12s ease-in-out infinite;
}

.hero-shape-4 {
  width: 150px;
  height: 150px;
  background: var(--emerald-400);
  top: 20%;
  left: 15%;
  opacity: 0.1;
  animation: float1 14s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(40px, -30px) rotate(5deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-25px, 20px); }
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald-700);
  margin-bottom: 28px;
  padding: 8px 16px;
  background: rgba(6, 78, 59, 0.06);
  border-radius: 50px;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--emerald-900);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-headline-accent {
  color: var(--emerald-600);
  font-style: italic;
  position: relative;
}

.hero-headline-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--emerald-200, rgba(16, 185, 129, 0.2));
  border-radius: 3px;
  z-index: -1;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.btn-primary {
  background: var(--emerald-800);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(6, 78, 59, 0.25);
}

.btn-primary:hover {
  background: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 78, 59, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--emerald-800);
  border: 2px solid var(--emerald-200, rgba(6, 78, 59, 0.2));
}

.btn-outline:hover {
  border-color: var(--emerald-600);
  background: rgba(6, 78, 59, 0.04);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--emerald-800);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-300);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 600px;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6, 78, 59, 0.15);
}

.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 85%;
  z-index: 2;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-float {
  position: absolute;
  z-index: 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(6, 78, 59, 0.18);
}

.hero-img-float-1 {
  bottom: 12%;
  left: -5%;
  width: 50%;
  animation: floatImg 6s ease-in-out infinite;
}

.hero-img-float-2 {
  top: 8%;
  left: 5%;
  width: 42%;
  animation: floatImg 8s ease-in-out infinite reverse;
}

.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-geometric {
  position: absolute;
  z-index: 1;
}

.hero-geo-circle {
  width: 120px;
  height: 120px;
  border: 3px solid var(--emerald-300, rgba(16, 185, 129, 0.3));
  border-radius: 50%;
  top: -20px;
  left: 10%;
  animation: spin 20s linear infinite;
}

.hero-geo-square {
  width: 80px;
  height: 80px;
  background: var(--emerald-100, rgba(16, 185, 129, 0.1));
  border-radius: 16px;
  bottom: 5%;
  right: 5%;
  transform: rotate(45deg);
  animation: floatImg 7s ease-in-out infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--emerald-600), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* HIGHLIGHT STRIP */
.highlight-strip {
  background: var(--emerald-900);
  padding: 32px 0;
  overflow: hidden;
}

.highlight-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream-100);
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
}

.highlight-item svg {
  color: var(--emerald-400);
  flex-shrink: 0;
}

.highlight-divider {
  flex: 1;
  height: 1px;
  background: rgba(254, 253, 248, 0.12);
  max-width: 80px;
}

/* SECTION SHARED */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--emerald-600);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(6, 78, 59, 0.06);
  border-radius: 50px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--emerald-900);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-title-accent {
  color: var(--emerald-600);
  font-style: italic;
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
}

/* MENU SECTION */
.menu-section {
  padding: 120px 0;
  background: var(--cream-50);
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cream-300), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.menu-cat-btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 2px solid var(--cream-300);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.menu-cat-btn:hover {
  border-color: var(--emerald-400);
  color: var(--emerald-700);
}

.menu-cat-btn.active {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-out);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(6, 78, 59, 0.1);
  border-color: rgba(6, 78, 59, 0.1);
}

.menu-item-img {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.menu-item:hover .menu-item-img img {
  transform: scale(1.08);
}

.menu-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--emerald-900);
  letter-spacing: -0.01em;
}

.menu-item-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(6, 78, 59, 0.08);
  color: var(--emerald-700);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* STORY SECTION */
.story-section {
  padding: 120px 0;
  background: var(--emerald-900);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  pointer-events: none;
}

.story-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.06);
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.story-visual {
  position: relative;
  height: 600px;
}

.story-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 82%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.25);
  border: 4px solid var(--emerald-800);
}

.story-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-geo-1 {
  position: absolute;
  top: -30px;
  right: 20%;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  transform: rotate(25deg);
  z-index: -1;
}

.story-geo-2 {
  position: absolute;
  bottom: 15%;
  left: -20px;
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  z-index: -1;
}

.story-content {
  color: var(--cream-100);
}

.story-content .section-tag {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-400);
}

.story-content .section-title {
  color: var(--white);
}

.story-content .section-title-accent {
  color: var(--emerald-400);
}

.story-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(254, 253, 248, 0.7);
  margin-bottom: 24px;
}

.story-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(254, 253, 248, 0.1);
}

.story-signature svg {
  color: var(--emerald-500);
  opacity: 0.6;
}

.story-signature span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream-200);
}

/* VISIT SECTION */
.visit-section {
  padding: 120px 0;
  background: var(--cream-100);
  position: relative;
}

.visit-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cream-300), transparent);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.visit-info .section-title {
  margin-bottom: 40px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.visit-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
  box-shadow: 0 2px 8px rgba(6, 78, 59, 0.08);
}

.visit-detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visit-detail-text strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.visit-detail-text span,
.visit-detail-text a {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.visit-detail-text a:hover {
  color: var(--emerald-700);
  text-decoration: underline;
}

.visit-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.visit-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6, 78, 59, 0.12);
  height: 480px;
  position: relative;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(6, 78, 59, 0.08);
  pointer-events: none;
}

/* FOOTER */
.footer {
  background: var(--charcoal);
  padding: 80px 0 0;
  color: var(--cream-100);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--emerald-700);
  color: var(--cream-100);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cream-100);
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(254, 253, 248, 0.5);
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--emerald-500);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 0.95rem;
  color: rgba(254, 253, 248, 0.6);
  padding: 6px 0;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--cream-100);
}

.footer-bottom {
  border-top: 1px solid rgba(254, 253, 248, 0.08);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(254, 253, 248, 0.35);
}

.footer-bottom a {
  color: rgba(254, 253, 248, 0.5);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--emerald-400);
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-visual {
    height: 480px;
  }

  .story-grid {
    gap: 50px;
  }

  .story-visual {
    height: 450px;
  }

  .visit-grid {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    height: 400px;
    order: -1;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .visit-map {
    height: 360px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .highlight-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .highlight-divider {
    display: none;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .menu-section {
    padding: 80px 0;
  }

  .story-section {
    padding: 80px 0;
  }

  .visit-section {
    padding: 80px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-visual {
    height: 320px;
  }

  .menu-categories {
    gap: 8px;
  }

  .menu-cat-btn {
    padding: 10px 20px;
    font-size: 0.82rem;
  }

  .menu-item {
    flex-direction: column;
    gap: 14px;
  }

  .menu-item-img {
    width: 100%;
    height: 180px;
  }

  .story-visual {
    height: 320px;
  }

  .visit-map {
    height: 280px;
  }

  .visit-actions {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
}
