:root {
  --midnight: #0A2342;
  --midnight-light: #1A3A5C;
  --midnight-dark: #061829;
  --mint: #A8E6CF;
  --mint-light: #C8F5E0;
  --mint-dark: #7BC8A8;
  --cream: #F5F0EB;
  --cream-dark: #E8E0D8;
  --warm-white: #FDFCFA;
  --text-dark: #0A2342;
  --text-muted: #4A6274;
  --text-light: #F5F0EB;
  --shadow-sm: 0 2px 8px rgba(10, 35, 66, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 35, 66, 0.12);
  --shadow-lg: 0 8px 40px rgba(10, 35, 66, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 100px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--midnight);
  color: var(--mint-light);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 35, 66, 0.06);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--midnight);
  line-height: 1.2;
}

.logo-icon {
  flex-shrink: 0;
}

/* NAV */
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint-dark);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a:focus::after {
  width: 100%;
}

.nav-list a:hover {
  color: var(--midnight);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(10, 35, 66, 0.06);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger {
  position: relative;
  margin: 0 auto;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-mint {
  background: var(--mint);
  color: var(--midnight);
  padding: 14px 28px;
}

.btn-mint:hover,
.btn-mint:focus {
  background: var(--mint-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-mint {
  background: transparent;
  color: var(--midnight);
  border: 2px solid var(--midnight);
  padding: 12px 24px;
}

.btn-outline-mint:hover,
.btn-outline-mint:focus {
  background: var(--midnight);
  color: var(--mint-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* HERO */
.hero {
  background: var(--cream);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 80px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 230, 207, 0.3);
  color: var(--midnight);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--midnight);
  margin-bottom: 24px;
}

.hero-headline .accent {
  color: var(--mint-dark);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}

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

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

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--midnight);
  line-height: 1.2;
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(10, 35, 66, 0.15);
}

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

.hero-image-stack {
  position: relative;
  height: 600px;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-img-main {
  width: 360px;
  height: 460px;
  top: 0;
  right: 20px;
  z-index: 2;
}

.hero-img-accent {
  width: 260px;
  height: 200px;
  bottom: 120px;
  right: 0;
  z-index: 3;
  border: 4px solid var(--cream);
}

.hero-img-small {
  width: 160px;
  height: 160px;
  bottom: 40px;
  left: 20px;
  z-index: 3;
  border: 4px solid var(--cream);
}

.hero-float-card {
  position: absolute;
  bottom: 200px;
  left: -10px;
  z-index: 4;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--midnight);
  animation: float 3s ease-in-out infinite;
}

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

.hero-wave {
  margin-top: -1px;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* SECTION STYLES */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint-dark);
  background: rgba(168, 230, 207, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-tag.light {
  color: var(--mint);
  background: rgba(168, 230, 207, 0.15);
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--midnight);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--warm-white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

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

.menu-cat-btn {
  background: var(--warm-white);
  color: var(--text-dark);
  border: 1.5px solid rgba(10, 35, 66, 0.12);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-cat-btn:hover,
.menu-cat-btn:focus {
  border-color: var(--mint-dark);
  color: var(--midnight);
  background: rgba(168, 230, 207, 0.2);
}

.menu-cat-btn.active {
  background: var(--midnight);
  color: var(--mint-light);
  border-color: var(--midnight);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.menu-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  opacity: 1;
  transform: translateY(0);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card.hidden {
  display: none;
}

.menu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.menu-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--midnight);
  color: var(--mint-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.menu-card-tag.spicy {
  background: #C0392B;
  color: #fff;
}

.menu-card-body {
  padding: 20px;
}

.menu-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--midnight);
  margin-bottom: 8px;
}

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

.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ABOUT SECTION */
.about-section {
  background: var(--warm-white);
  padding: 88px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-group {
  position: relative;
  height: 580px;
}

.about-img-main {
  width: 340px;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 0;
  left: 0;
}

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

.about-img-secondary {
  width: 240px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: absolute;
  bottom: 0;
  right: 0;
  border: 4px solid var(--warm-white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-accent-box {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mint);
  color: var(--midnight);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-accent-box svg {
  margin-bottom: 6px;
}

.about-accent-box span {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
}

.about-content {
  max-width: 480px;
}

.about-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(168, 230, 207, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--midnight);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* EXPERIENCE SECTION */
.experience-section {
  background: var(--midnight);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.experience-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 230, 207, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.experience-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.exp-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s ease;
}

.exp-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.exp-card-img {
  height: 200px;
  overflow: hidden;
}

.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.85;
}

.exp-card:hover .exp-card-img img {
  transform: scale(1.08);
  opacity: 1;
}

.exp-card-body {
  padding: 28px;
}

.exp-card-icon {
  width: 52px;
  height: 52px;
  background: var(--mint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.exp-card-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--warm-white);
  margin-bottom: 10px;
}

.exp-card-body p {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.7);
  line-height: 1.7;
}

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

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

.visit-info {
  max-width: 480px;
}

.visit-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--midnight);
  margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-item a:hover {
  color: var(--mint-dark);
  text-decoration: underline;
}

.mt-2 {
  margin-top: 8px;
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  min-height: 320px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
}

/* FOOTER */
.footer {
  background: var(--midnight-dark);
  padding: 64px 0 0;
  color: var(--text-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-light .logo-text {
  color: var(--warm-white);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.6);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--mint);
}

.footer-contact li {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.6);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(245, 240, 235, 0.4);
}

.footer-bottom p {
  margin: 0;
}

/* MOBILE NAV OVERLAY */
.nav-list.mobile-open {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--warm-white);
  flex-direction: column;
  padding: 24px;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid rgba(10, 35, 66, 0.06);
  z-index: 99;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

  .hero-img-main {
    width: 300px;
    height: 380px;
  }

  .hero-img-accent {
    width: 200px;
    height: 160px;
  }

  .hero-img-small {
    width: 130px;
    height: 130px;
  }

  .hero-image-stack {
    height: 480px;
  }

  .about-img-group {
    height: 480px;
  }

  .about-img-main {
    width: 280px;
    height: 360px;
  }

  .about-img-secondary {
    width: 200px;
    height: 170px;
  }
}

@media (max-width: 900px) {
  .experience-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

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

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list.mobile-open {
    display: flex;
  }

  .nav-list > li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
  }

  .nav-list a::after {
    display: none;
  }

  .nav-list > li:last-child {
    margin-top: 8px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-visual {
    display: none;
  }

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

  .about-visual {
    order: -1;
  }

  .about-img-group {
    height: 380px;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-img-main {
    width: 240px;
    height: 300px;
  }

  .about-img-secondary {
    width: 170px;
    height: 140px;
  }

  .about-accent-box {
    left: 55%;
    bottom: 80px;
  }

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

  .visit-info {
    max-width: 100%;
    text-align: center;
  }

  .contact-items {
    align-items: center;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 0;
    min-height: 80vh;
  }

  .hero-headline {
    font-size: 2rem;
  }

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

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

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

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

  .menu-categories {
    gap: 8px;
  }

  .menu-cat-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .about-img-group {
    height: 300px;
  }

  .about-img-main {
    width: 200px;
    height: 260px;
  }

  .about-img-secondary {
    width: 150px;
    height: 120px;
  }

  .about-accent-box {
    padding: 14px 18px;
    font-size: 0.82rem;
  }
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
