/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a2744;
  background-color: #fdf8e8;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

strong {
  font-weight: 800;
}

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

/* ── Navigation ── */
.nav-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  background-color: transparent;
}

.nav-scrolled.scrolled {
  background-color: rgba(26, 39, 68, 0.97);
  box-shadow: 0 4px 30px rgba(11, 17, 32, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: #fdf8e8;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo-text {
  font-size: 1.15rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(253, 248, 232, 0.82);
  border-radius: 100px;
  transition: color 0.2s, background-color 0.2s;
}

.nav-link:hover {
  color: #fdf8e8;
  background-color: rgba(253, 248, 232, 0.1);
}

.nav-cta-btn {
  padding: 9px 22px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #1a2744;
  background: linear-gradient(135deg, #f4d97a, #d4a843);
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(212, 168, 67, 0.3);
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.45);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: #fdf8e8;
  border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #1a2744;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 25% 25%, #d4a843 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, #d4a843 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #f4d97a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: #fdf8e8;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: #f4d97a;
}

.hero-subheadline {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(253, 248, 232, 0.68);
  max-width: 500px;
  margin-bottom: 36px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  color: #1a2744;
  background: linear-gradient(135deg, #f4d97a, #d4a843);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
}

.btn-secondary {
  color: #fdf8e8;
  background: rgba(253, 248, 232, 0.08);
  border: 1.5px solid rgba(253, 248, 232, 0.25);
}

.btn-secondary:hover {
  background: rgba(253, 248, 232, 0.14);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 0.88rem;
}

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

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

.hero-stat-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: #f4d97a;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(253, 248, 232, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(253, 248, 232, 0.15);
}

/* Hero images */
.hero-image-wrap {
  position: relative;
  height: 680px;
}

.hero-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 85%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

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

.hero-image-float {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 58%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(26, 39, 68, 0.6);
}

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

.hero-accent {
  position: absolute;
  top: -20px;
  right: 40%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(244, 217, 122, 0.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4a843;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: #1a2744;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.text-center {
  text-align: center;
}

/* ── About ── */
.section-about {
  background-color: #fdf8e8;
}

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

.about-image-group {
  position: relative;
  height: 680px;
}

.about-image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 39, 68, 0.12);
}

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

.about-image-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(26, 39, 68, 0.15);
  border: 4px solid #fdf8e8;
}

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

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

.about-content p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

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

.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 14px;
}

.about-feature strong {
  display: block;
  font-size: 0.95rem;
  color: #1a2744;
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.88rem;
  color: #6b7a90;
  line-height: 1.6;
}

/* ── Menu ── */
.section-menu {
  background-color: #1a2744;
  position: relative;
  overflow: hidden;
}

.section-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 20% 80%, #d4a843 1px, transparent 1px),
                    radial-gradient(circle at 80% 20%, #d4a843 1px, transparent 1px);
  background-size: 50px 50px, 35px 35px;
  pointer-events: none;
}

.section-menu .section-title {
  color: #fdf8e8;
}

.section-menu .section-subtitle {
  color: rgba(253, 248, 232, 0.6);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.menu-card {
  background: rgba(253, 248, 232, 0.05);
  border: 1px solid rgba(253, 248, 232, 0.08);
  border-radius: 24px;
  padding: 36px 32px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  background: rgba(253, 248, 232, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.menu-card-highlight {
  background: rgba(212, 168, 67, 0.08);
  border-color: rgba(212, 168, 67, 0.2);
  position: relative;
}

.menu-card-highlight:hover {
  background: rgba(212, 168, 67, 0.12);
  border-color: rgba(212, 168, 67, 0.35);
}

.menu-card-highlight-badge {
  position: absolute;
  top: -12px;
  right: 28px;
  padding: 5px 16px;
  background: linear-gradient(135deg, #f4d97a, #d4a843);
  color: #1a2744;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}

.menu-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 18px;
  margin-bottom: 22px;
}

.menu-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: #fdf8e8;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.menu-card-desc {
  font-size: 0.92rem;
  color: rgba(253, 248, 232, 0.58);
  line-height: 1.7;
  margin-bottom: 20px;
}

.menu-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(253, 248, 232, 0.72);
  line-height: 1.5;
}

.menu-card-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: #d4a843;
  border-radius: 50%;
  margin-top: 8px;
}

.menu-note {
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.menu-note p {
  font-size: 0.9rem;
  color: rgba(253, 248, 232, 0.45);
  font-style: italic;
}

/* ── Vibe ── */
.section-vibe {
  background: linear-gradient(180deg, #fdf8e8 0%, #f5edda 100%);
}

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

.vibe-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vibe-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(26, 39, 68, 0.1);
}

.vibe-img-1 {
  height: 280px;
}

.vibe-img-2 {
  height: 180px;
}

.vibe-img-3 {
  height: 220px;
}

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

.vibe-img:hover img {
  transform: scale(1.03);
}

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

.vibe-content p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

.vibe-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.vibe-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2744;
}

.vibe-highlight svg {
  flex-shrink: 0;
}

/* ── Visit ── */
.section-visit {
  background-color: #fdf8e8;
  padding-bottom: 60px;
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #1a2744;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(11, 17, 32, 0.2);
}

.visit-content {
  padding: 56px 48px;
}

.visit-content .section-title {
  color: #fdf8e8;
  margin-bottom: 36px;
}

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

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

.visit-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 14px;
}

.visit-detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4a843;
  margin-bottom: 4px;
}

.visit-detail p {
  font-size: 0.95rem;
  color: rgba(253, 248, 232, 0.75);
  line-height: 1.7;
}

.visit-detail a {
  color: rgba(253, 248, 232, 0.75);
  transition: color 0.2s;
}

.visit-detail a:hover {
  color: #f4d97a;
}

.visit-map {
  background: linear-gradient(135deg, #111a30, #1a2744);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  min-height: 400px;
}

.visit-map-placeholder {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.visit-map-placeholder svg {
  opacity: 0.6;
}

.visit-map-placeholder p {
  font-size: 1rem;
  color: rgba(253, 248, 232, 0.5);
  font-weight: 700;
}

/* ── Footer ── */
.footer {
  background-color: #0b1120;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253, 248, 232, 0.07);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(253, 248, 232, 0.45);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: #fdf8e8;
}

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

.footer-links strong,
.footer-contact strong {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4a843;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(253, 248, 232, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fdf8e8;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(253, 248, 232, 0.5);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(253, 248, 232, 0.5);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #f4d97a;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(253, 248, 232, 0.3);
}

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

  .hero-image-wrap {
    height: 540px;
  }

  .about-grid,
  .vibe-layout {
    gap: 48px;
  }

  .menu-grid {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-image-wrap {
    display: none;
  }

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

  .about-image-group {
    height: 420px;
    max-width: 500px;
    margin: 0 auto;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .vibe-layout {
    grid-template-columns: 1fr;
  }

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

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

  .visit-map {
    min-height: 260px;
  }

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

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(11, 17, 32, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 28px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 12px;
  }

  .nav-cta-btn {
    margin-top: 12px;
    text-align: center;
    padding: 14px 22px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

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

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

  .visit-content {
    padding: 40px 28px;
  }

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

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

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

  .nav-container {
    padding: 14px 18px;
  }

  .about-image-group {
    height: 320px;
  }

  .about-image-main {
    width: 80%;
    height: 85%;
  }

  .about-image-secondary {
    width: 65%;
  }
}
