:root {
  --green: #0f2d26;
  --green-light: #1a4d3f;
  --gold: #ffb703;
  --gold-dark: #e6a800;
  --gold-light: #ffd60a;
  --light: #f6f4ef;
  --dark: #111;
  --gray-light: #f8f9fa;
  --gray-mid: #e9ecef;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 40px;
  --s5: 64px;
  --s6: 96px;
}

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

/* utility */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  padding-top: 64px;
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--dark);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.center {
  text-align: center
}

/* HEADER */
/* ===== Header Base ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0b3d2e;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f2c94c;
  transition: font-size 0.3s ease;
}

.nav a {
  color: #ffffff;
  margin-left: 24px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav a:not(.btn-gold):hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ===== Shrink on Scroll ===== */
.header.shrink {
  box-shadow: var(--shadow-md);
}

.header.shrink .header-inner {
  padding: 12px 20px;
}

.header.shrink .logo {
  font-size: 1.2rem;
}

.nav {
  align-items: center;
}

.logo a {
  font-family: 'Playfair Display';
  font-size: 22px;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.logo a:hover {
  text-shadow: 0 2px 8px rgba(255, 183, 3, 0.3);
}

.nav-links a {
  margin-left: 32px;
  color: #fff;
  text-decoration: none;
}

.nav-links a.active {
  border-bottom: 2px solid var(--gold);
  font-weight: 700;
  padding-bottom: 4px;
}

/* HERO */
.hero {
  min-height: 90vh;
  background: url('../img/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 16px 0;
  position: relative;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, .45), rgba(15, 45, 38, .9));
}

.hero-content {
  position: relative;
  color: white;
  max-width: 720px;
  padding-bottom: var(--s6);
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.8), rgba(255, 208, 10, 0.8));
  color: white;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.25);
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  font-weight: 800;
}

.text-gold {
  color: var(--gold-light)
}

.hero-sub {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0.95;
  margin: 24px auto 32px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}
}

.hero-buttons {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.hero-scroll {
  margin-top: 48px;
  opacity: .6;
}

/* BUTTONS */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.btn-gold:active {
  transform: translateY(0);
}

/* focus outlines for keyboard users */
a:focus,
button:focus {
  outline: 2px dashed var(--gold);
  outline-offset: 2px;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transform: translateY(-2px);
}

.btn-outline.dark {
  border-color: #111;
  color: #111;
}

/* FEATURES */
.features-section {
  background: #bfe4cf;
  padding: 96px 0;
  margin-top: -1px;
}

.features-badge {
  width: 56px;
  height: 8px;
  background: var(--green);
  border-radius: 999px;
  margin: 0 auto 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.feature-card {
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.food-section {
  padding: var(--s6) 0;
}

/* CELEBRATION */
.celebration-section {
  padding: 96px 0;
  background: #bfe4cf;
}

.celebration-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.celebration-content .btn-gold {
  width: fit-content;
}

.celebration-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.celebration-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.celebration-list span {
  font-size: 32px;
  flex-shrink: 0;
}

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

.celebration-image {
  position: relative;
}

.celebration-image img {
  width: 100%;
  border-radius: 20px;
}

.celebration-tag {
  position: absolute;
  background: var(--gold);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.party {
  top: 16px;
  left: 16px
}

.rating {
  bottom: 16px;
  right: 16px
}

/* FOOTER */
.visit-footer {
  background: var(--green);
  color: white;
  padding: 96px 0;
}

.visit-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin: 64px 0;
}

.visit-card {
  background: rgba(255, 255, 255, .08);
  padding: 32px;
  border-radius: 16px;
}

.visit-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.visit-rating {
  margin-bottom: 16px;
}

/* FOOD CARDS */
.quote {
  color: white;
  font-style: italic;
  margin-bottom: 24px;
}

.food-section {
  background: #0f2d26;
} 

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--s5);
}

/* Menu page: 5 columns on desktop */
.grid-7 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.grid-7 .card img {
  height: 150px;
}

.grid-7 .card h3 {
  font-size: 14px;
  padding: var(--s1) var(--s2) 4px;
}

.grid-7 .card p {
  font-size: 13px;
  padding: 0 var(--s2) var(--s2);
}

@media (max-width: 1200px) {
  .grid-7 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .grid-7 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .grid-7 { grid-template-columns: repeat(2, 1fr); }
  .grid-7 .card img { height: 120px; }
}

.card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card h3 {
  padding: var(--s3) var(--s3) var(--s1);
}

.card p {
  padding: 0 var(--s3) var(--s4);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* MENU PAGE */
.menu-section {
  margin-bottom: 64px;
}
.menu-section h2 {
  margin-bottom: 24px;
}
.menu-section ul {
  list-style: none;
  padding-left: 0;
}
.menu-section li {
  margin-bottom: 8px;
}

.menu-text-iframe {
  width: 100%;
  height: 800px;
  border: none;
  background: white;
}

/* COURSE CARDS */
.menu-category {
  margin-bottom: 80px;
  padding-top: 56px;
  padding-bottom: 16px;
  border-top: 4px solid var(--gold);
  border-radius: 0;
}

.menu-category:first-of-type {
  border-top: none;
  padding-top: 0;
}

.menu-category h2 {
  color: var(--green);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 4px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.5px;
}

.section-icon {
  font-size: 2.8rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

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

/* PRICING NOTICE */
.pricing-notice {
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1), rgba(15, 45, 38, 0.05));
  color: #333;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 28px;
  border-left: 4px solid var(--gold);
  display: inline-block;
}

.course-card {
  background: #ffffff;
  border-left: 5px solid var(--gold);
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.course-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.course-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.course-card:hover .course-image {
  transform: scale(1.02);
}

.course-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.course-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--green);
}

.course-price {
  background: var(--gold);
  color: #111;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
}

.course-subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.course-info {
  color: #666;
  margin-bottom: 24px;
  font-size: 14px;
}

.course-details,
.course-menu,
.course-drinks {
  margin-bottom: 20px;
}

.course-details h4,
.course-menu h4,
.course-drinks h4 {
  color: var(--green);
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.course-details ul,
.course-menu ol {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.course-details li,
.course-menu li {
  margin-bottom: 6px;
  color: #333;
}

.course-drinks p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.course-notes {
  border-top: 1px solid #ddd;
  padding-top: 16px;
  font-size: 12px;
  color: #888;
}

.course-notes p {
  margin: 4px 0;
}

/* FOOD MENU STYLES */
.food-subcategory {
  margin-bottom: 48px;
}

.food-subcategory h3 {
  color: var(--green);
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
  letter-spacing: 0.3px;
}

.food-items,
dl.food-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.food-items li,
dl.food-items dt,
dl.food-items dd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  flex-wrap: wrap;
  transition: var(--transition);
}

.food-items li:hover {
  background: rgba(15, 45, 38, 0.02);
  padding-left: 4px;
}

dl.food-items dt {
  flex: 1;
  color: #222;
  font-weight: 500;
  transition: var(--transition);
}

dl.food-items dd {
  color: var(--gold);
  font-weight: 700;
  margin-left: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.item-name {
  flex: 1;
  color: #222;
  font-weight: 500;
  transition: var(--transition);
  padding-right: 8px;
}

.item-price {
  color: var(--gold);
  font-weight: 700;
  margin-left: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 16px;
}

.item-desc {
  font-size: 12px;
  color: #888;
  margin: 4px 0 0 0;
  font-style: italic;
  width: 100%;
  margin-top: 6px;
}

.category-note {
  color: #333;
  font-size: 13px;
  line-height: 1.8;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.08), rgba(15, 45, 38, 0.05));
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  margin: 16px 0;
}

.lunch-header {
  background: linear-gradient(135deg, rgba(15, 45, 38, 0.08), rgba(255, 183, 3, 0.05));
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
  border-left: 4px solid var(--gold);
}

.lunch-header p {
  margin: 10px 0;
  color: #222;
  font-size: 15px;
  line-height: 1.6;
}

.lunch-header strong {
  color: var(--green);
  font-weight: 700;
}

/* MENU CTA SECTION */
.menu-cta {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 50%, #0a2219 100%);
  color: white;
  padding: 80px 24px;
  text-align: center;
}
}

.menu-cta h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: white;
}

.menu-cta p {
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-gold {
  padding: 12px 28px;
  font-size: 16px;
}

.cta-buttons .btn-outline {
  border-color: white;
  color: white;
  padding: 12px 28px;
  font-size: 16px;
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}




.map {
  color: white;
}

.menu-toggle {
  display: none;
}

/* =========================
   TABLET STYLES (768px - 1024px)
========================= */
@media (min-width: 769px) and (max-width: 1024px) {
  .menu-category h2 {
    font-size: 1.9rem;
  }

  .course-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .course-header h3 {
    flex: 1;
    min-width: 200px;
  }

  .course-price {
    flex-shrink: 0;
  }

  .food-items li {
    padding: 10px 0;
  }

  .item-price {
    margin-left: 12px;
  }
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 768px) {

  body {
    padding-top: 72px;
  }

  /* pull hero upward to fill padding gap under fixed header */
  .hero {
    margin-top: -72px;
  }

  /* HEADER */
  .header-inner {
    padding: 16px 16px;
  }

  .header.shrink .header-inner {
    padding: 10px 16px;
  }

  .logo a {
    font-size: 1.4rem;
  }

  .header.shrink .logo a {
    font-size: 1.1rem;
  }

  /* HAMBURGER */
  .menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  /* NAV */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 45, 38, 0.98);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav.open {
    max-height: 320px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    padding: 16px;
  }

  .nav-links a {
    margin: 12px 0;
    font-size: 16px;
  }

  .features-grid,
  .grid-4,
  .visit-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 28px;
  }

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

  .celebration-image {
    order: -1;
  }

  /* MENU PAGE MOBILE */
  .course-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .course-price {
    margin-top: 12px;
    align-self: flex-start;
  }

  .course-card {
    padding: 24px;
  }

  .menu-category {
    padding-top: 32px;
  }

  .menu-category h2 {
    font-size: 1.4rem;
  }

  .food-subcategory h3 {
    font-size: 1rem;
  }

  .item-name {
    font-size: 13px;
  }

  .item-price {
    /* price floats right on mobile too */
    margin-left: auto;
    font-size: 13px;
  }

  /* MENU ITEMS - ensure wrapping if extremely long names but keep price at right edge */
  .food-items li {
    flex-wrap: wrap;
    gap: 8px 0;
  }

  /* CTA MOBILE */
  .menu-cta {
    padding: 48px 16px;
  }

  .menu-cta h2 {
    font-size: 1.5rem;
  }

  .menu-cta p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
  }
  
}

/* =========================
   PRINT STYLES
========================= */
@media print {
  body {
    padding-top: 0;
    background: white;
  }

  .header,
  .hero,
  .menu-cta,
  .visit-footer,
  .menu-toggle {
    display: none !important;
  }

  .section {
    padding: 40px 0;
  }

  .menu-category {
    page-break-inside: avoid;
    padding-top: 24px;
    border-top: 2px solid #ddd;
    margin-bottom: 40px;
  }

  .menu-category:first-of-type {
    border-top: none;
  }

  .menu-category h2 {
    font-size: 1.6rem;
    color: #000;
    border-bottom: 2px solid #000;
    page-break-after: avoid;
  }

  .food-subcategory {
    page-break-inside: avoid;
    margin-bottom: 24px;
  }

  .food-subcategory h3 {
    font-size: 1rem;
    color: #000;
    border-bottom: 1px solid #ccc;
  }

  .course-card {
    page-break-inside: avoid;
    background: white;
    border: 1px solid #ddd;
    border-left: 3px solid #000;
  }

  .food-items li {
    page-break-inside: avoid;
    color: #000;
  }

  .item-price {
    color: #000;
  }

  a {
    text-decoration: none;
    color: #000;
  }

  .btn-gold,
  .btn-outline {
    display: none;
  }
}

/* ── Menu page header (replaces hero) ── */
.menu-page-header {
  background: linear-gradient(135deg, #0b3d2e 0%, #0f2d26 60%, #162e25 100%);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.menu-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/img/hero.jpg') center/cover no-repeat;
  opacity: 0.08;
}

.menu-page-header .container {
  position: relative;
}

.menu-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.menu-page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.menu-page-header .btn-gold {
  display: inline-flex;
}

@media (max-width: 768px) {
  .menu-page-header { padding: 48px 0 40px; }
  .menu-page-header h1 { font-size: 2rem; }
}

/* ── Carousel pause button ── */
.mc-pause-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,183,3,0.5);
  background: transparent;
  color: rgba(255,183,3,0.7);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.mc-pause-btn:hover {
  background: rgba(255,183,3,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.mc-pause-btn.paused {
  background: rgba(255,183,3,0.18);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Menu Carousel ── */
.menu-carousel-section {
  background: #0f2d26;
  padding: 56px 0 64px;
  overflow: hidden;
}

.mc-header {
  text-align: center;
  margin-bottom: 28px;
}

.mc-header h2 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 0;
}

.mc-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.mc-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,183,3,0.6);
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.mc-btn:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.mc-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.mc-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  padding: 4px 0 16px;
}

.mc-track-wrap.dragging {
  cursor: grabbing;
}

.mc-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  transition: transform 0.05s linear;
  will-change: transform;
  width: max-content;
}

.mc-card {
  flex: 0 0 196px;
  width: 196px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
}

.mc-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.mc-cat {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(15,45,38,0.82);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.mc-card h3 {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px 4px;
  color: #111;
  line-height: 1.3;
  margin: 0;
}

.mc-card p {
  font-size: 12px;
  color: #666;
  padding: 0 12px 12px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .mc-card { flex: 0 0 150px; width: 150px; }
  .mc-card img { height: 100px; }
  .mc-header h2 { font-size: 1.4rem; }
}

/* ── Nav Dropdown (2-level) ── */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 24px;
  transition: var(--transition);
}

.nav-dropdown-arrow {
  font-size: 10px;
  transition: transform 0.25s ease;
  display: inline-block;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  background: #0b3d2e;
  border: 1px solid rgba(255,183,3,0.3);
  border-radius: 10px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
  z-index: 2000;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 10px;
  height: 10px;
  background: #0b3d2e;
  border-left: 1px solid rgba(255,183,3,0.3);
  border-top: 1px solid rgba(255,183,3,0.3);
  transform: rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ndm-group { position: relative; }

.ndm-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.ndm-cat:hover {
  background: rgba(255,183,3,0.12);
  color: var(--gold);
}

.ndm-group:has(.ndm-sub) .ndm-cat::after {
  content: '›';
  font-size: 16px;
  opacity: 0.5;
  margin-left: 8px;
}

.ndm-sub {
  display: none;
  position: absolute;
  top: -8px;
  left: 100%;
  min-width: 200px;
  background: #0b3d2e;
  border: 1px solid rgba(255,183,3,0.25);
  border-radius: 10px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  box-shadow: 8px 8px 24px rgba(0,0,0,0.25);
  z-index: 2100;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}

.ndm-group:hover .ndm-sub {
  display: block;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.ndm-sub li a {
  display: block;
  padding: 8px 18px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: var(--transition);
}

.ndm-sub li a:hover {
  background: rgba(255,183,3,0.1);
  color: var(--gold);
  padding-left: 24px;
}

/* ── Visit Info (footer) ── */
.visit-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px auto;
  max-width: 560px;
  text-align: left;
}

.visit-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.7;
}

.visit-info-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-info-sub {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.visit-tel {
  color: var(--gold);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.visit-tel:hover { color: var(--gold-light); }

/* ── Lang toggle ── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  padding: 4px 12px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: var(--transition);
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Mobile nav dropdown ── */
@media (max-width: 768px) {
  .nav-dropdown { display: block; width: 100%; }
  .nav-dropdown-trigger { margin-left: 0; padding: 12px 0; font-size: 16px; width: 100%; justify-content: space-between; }
  .nav-dropdown-menu { position: static; display: none; opacity: 1; transform: none; box-shadow: none; border: none; border-left: 2px solid rgba(255,183,3,0.4); border-radius: 0; background: transparent; padding: 0 0 0 12px; pointer-events: auto; transition: none; }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .ndm-cat { padding: 8px 0; font-size: 14px; justify-content: flex-start; gap: 8px; }
  .ndm-group:has(.ndm-sub) .ndm-cat::after { content: '＋'; font-size: 14px; margin-left: auto; }
  .ndm-group.open .ndm-cat::after { content: '－'; }
  .ndm-sub { position: static; display: none; opacity: 1; transform: none; box-shadow: none; border: none; border-left: 2px solid rgba(255,183,3,0.2); border-radius: 0; background: transparent; padding: 0 0 4px 12px; pointer-events: auto; transition: none; }
  .ndm-group.open .ndm-sub { display: block; }
  .ndm-group:hover .ndm-sub { display: none; }
  .ndm-sub li a { padding: 6px 0; font-size: 13px; color: rgba(255,255,255,0.6); }
  .ndm-sub li a:hover { padding-left: 6px; background: transparent; color: var(--gold); }
}

/* ── Pricing notice ── */
.pricing-notice {
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(255,183,3,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
}
