/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a2b4a;
  background: #faf8f5;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.skip-link {
  position: absolute; top: -100%; left: 0;
  background: #1a2b4a; color: #faf8f5;
  padding: 0.5rem 1rem; z-index: 200;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,43,74,0.15); }
.btn--gold { background: #d4a843; color: #1a2b4a; }
.btn--gold:hover { background: #c49a35; }
.btn--outline { background: transparent; color: #1a2b4a; border: 2px solid #1a2b4a; }
.btn--outline:hover { background: #1a2b4a; color: #faf8f5; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,43,74,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(26,43,74,0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: 1.15rem; color: #1a2b4a;
}
.logo--light .logo-text { color: #faf8f5; }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a {
  font-weight: 500; font-size: 0.95rem; color: #1a2b4a;
  transition: color 0.2s; position: relative;
}
.nav-menu a:not(.btn):hover { color: #d4a843; }
.nav-menu a:not(.btn)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #d4a843;
  transition: width 0.2s;
}
.nav-menu a:not(.btn):hover::after { width: 100%; }
.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  padding: 0.5rem; z-index: 110;
}
.menu-btn .bar {
  width: 24px; height: 2px; background: #1a2b4a;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-btn[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: #1a2b4a;
  padding: 72px 0 4rem;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.geo-circle {
  border-radius: 50%; position: absolute;
}
.geo-circle--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.geo-circle--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  bottom: -50px; left: 10%;
}
.geo-diamond {
  position: absolute; width: 120px; height: 120px;
  background: rgba(212,168,67,0.1);
  transform: rotate(45deg);
}
.geo-diamond--1 { top: 20%; left: 5%; }
.geo-diamond--2 { bottom: 15%; right: 8%; background: rgba(250,248,245,0.05); }
.geo-stripe {
  position: absolute; height: 3px; border-radius: 2px;
  background: rgba(212,168,67,0.2);
}
.geo-stripe--1 { width: 200px; top: 30%; left: 0; transform: rotate(-15deg); }
.geo-stripe--2 { width: 140px; bottom: 25%; right: 0; transform: rotate(20deg); background: rgba(250,248,245,0.06); }
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,168,67,0.15); color: #d4a843;
  padding: 0.5rem 1rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #faf8f5; margin-bottom: 1.25rem; line-height: 1.15;
}
.hero-headline em { color: #d4a843; font-style: italic; }
.hero-desc {
  color: rgba(250,248,245,0.75); font-size: 1.1rem;
  margin-bottom: 2rem; max-width: 500px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-actions .btn--outline { border-color: rgba(250,248,245,0.4); color: #faf8f5; }
.hero-actions .btn--outline:hover { background: #faf8f5; color: #1a2b4a; }
.hero-stats { display: flex; gap: 1.5rem; align-items: center; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #d4a843; }
.stat-label { font-size: 0.8rem; color: rgba(250,248,245,0.6); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: rgba(250,248,245,0.15); }
.hero-image-wrap { position: relative; }
.hero-image-frame {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  aspect-ratio: 6/7.5;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: 2rem; left: -2rem;
  background: #faf8f5; color: #1a2b4a;
  padding: 1rem 1.25rem; border-radius: 14px;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ===== MARQUEE ===== */
.marquee {
  background: #d4a843; padding: 1rem 0; overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: flex; gap: 1rem;
  animation: marquee 20s linear infinite;
}
.marquee span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem; font-weight: 700; color: #1a2b4a;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.marquee .dot { font-size: 0.6rem; color: #1a2b4a; opacity: 0.5; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: #d4a843; margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  color: #1a2b4a; margin-bottom: 1rem;
}
.section-desc {
  color: #5a6b7a; font-size: 1.1rem; max-width: 600px; margin: 0 auto;
}

/* ===== MENU ===== */
.menu-section { background: #faf8f5; }
.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-bottom: 2.5rem;
}
.menu-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,43,74,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26,43,74,0.12); }
.menu-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: #1a2b4a; color: #d4a843;
  padding: 0.35rem 0.85rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}
.menu-card-body { padding: 1.5rem; }
.menu-card-title { font-size: 1.3rem; margin-bottom: 0.5rem; color: #1a2b4a; }
.menu-card-desc { color: #5a6b7a; font-size: 0.95rem; line-height: 1.65; }
.menu-note {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(212,168,67,0.1); border-radius: 12px;
  padding: 1rem 1.25rem; color: #1a2b4a;
  font-size: 0.95rem;
}

/* ===== ABOUT ===== */
.about-section { background: #1a2b4a; overflow: hidden; }
.about-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.about-bg-shapes .geo-circle--3 {
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  top: -200px; right: -150px;
}
.about-bg-shapes .geo-square--1 {
  position: absolute; width: 100px; height: 100px;
  background: rgba(212,168,67,0.06);
  bottom: 10%; left: 3%; transform: rotate(20deg);
}
.about-bg-shapes .geo-diamond--2 {
  position: absolute; width: 80px; height: 80px;
  background: rgba(250,248,245,0.04);
  transform: rotate(45deg); top: 15%; left: 15%;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 1;
}
.about-images { position: relative; }
.about-img-main { border-radius: 20px; overflow: hidden; aspect-ratio: 5/6; box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -2rem; right: -1.5rem;
  width: 55%; border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
  border: 4px solid #1a2b4a;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.about-accent-box {
  position: absolute; top: -1.5rem; right: 1rem;
  background: #d4a843; color: #1a2b4a;
  padding: 1.25rem 1.5rem; border-radius: 16px;
  text-align: center; box-shadow: 0 8px 24px rgba(212,168,67,0.3);
}
.about-accent-box .accent-num {
  display: block; font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.about-accent-box .accent-label {
  display: block; font-size: 1.1rem; font-weight: 700;
}
.about-content .section-tag { color: #d4a843; }
.about-content .section-title { color: #faf8f5; text-align: left; }
.about-text { color: rgba(250,248,245,0.7); font-size: 1.05rem; margin-bottom: 1.25rem; line-height: 1.75; }
.about-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.value-item { display: flex; align-items: flex-start; gap: 1rem; }
.value-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: rgba(212,168,67,0.12); display: flex; align-items: center; justify-content: center; }
.value-item strong { display: block; color: #faf8f5; font-size: 1rem; margin-bottom: 0.15rem; }
.value-item span { color: rgba(250,248,245,0.6); font-size: 0.9rem; }

/* ===== GALLERY ===== */
.gallery-section { background: #faf8f5; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}
.gallery-item { border-radius: 16px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; aspect-ratio: 4/5; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; aspect-ratio: 4/3; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; aspect-ratio: 1; }
.gallery-item:nth-child(4) { grid-column: 1 / 5; grid-row: 2 / 3; aspect-ratio: 4/3.5; }
.gallery-item:nth-child(5) { grid-column: 5 / 13; grid-row: 2 / 3; aspect-ratio: 16/9; }

/* ===== VISIT ===== */
.visit-section { background: #faf8f5; overflow: hidden; }
.visit-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.visit-bg-shapes .geo-circle--4 {
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,43,74,0.04) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.visit-bg-shapes .geo-stripe--3 {
  position: absolute; width: 180px; height: 3px;
  background: rgba(212,168,67,0.15); top: 20%; right: 5%;
  transform: rotate(-10deg); border-radius: 2px;
}
.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: stretch; position: relative; z-index: 1;
}
.visit-content .section-tag { color: #d4a843; }
.visit-content .section-title { text-align: left; color: #1a2b4a; }
.visit-desc { color: #5a6b7a; font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.75; }
.detail-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.detail-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(212,168,67,0.12);
  display: flex; align-items: center; justify-content: center;
}
.detail-item strong { display: block; color: #1a2b4a; font-size: 0.95rem; margin-bottom: 0.15rem; }
.detail-item span, .detail-item a { color: #5a6b7a; font-size: 0.95rem; }
.detail-item a:hover { color: #d4a843; }
.visit-map-wrap { border-radius: 20px; overflow: hidden; min-height: 400px; box-shadow: 0 8px 32px rgba(26,43,74,0.1); }
.map-placeholder { width: 100%; height: 100%; min-height: 400px; }

/* ===== CONTACT ===== */
.contact-section { background: #1a2b4a; padding: 6rem 0; }
.contact-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  background: rgba(250,248,245,0.04); border-radius: 24px;
  padding: 3.5rem; border: 1px solid rgba(250,248,245,0.08);
}
.contact-left .section-tag { color: #d4a843; }
.contact-left .section-title { color: #faf8f5; text-align: left; margin-bottom: 1rem; }
.contact-desc { color: rgba(250,248,245,0.65); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }
.contact-social { display: flex; gap: 1rem; }
.social-link {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(212,168,67,0.12); color: #d4a843;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.social-link:hover { background: #d4a843; color: #1a2b4a; transform: translateY(-2px); }
.contact-right { display: flex; flex-direction: column; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: rgba(250,248,245,0.7); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group textarea {
  background: rgba(250,248,245,0.07); border: 1px solid rgba(250,248,245,0.12);
  border-radius: 12px; padding: 0.85rem 1rem; color: #faf8f5;
  font-family: 'Inter', sans-serif; font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(250,248,245,0.3); }
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: #d4a843; background: rgba(212,168,67,0.06);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 0.75rem; padding: 2rem;
}
.form-success h3 { font-size: 1.5rem; color: #faf8f5; }
.form-success p { color: rgba(250,248,245,0.65); }

/* ===== FOOTER ===== */
.footer { background: #111d30; padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { color: rgba(250,248,245,0.5); font-size: 0.95rem; margin-top: 1rem; line-height: 1.7; max-width: 300px; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links strong { color: #faf8f5; font-size: 0.95rem; margin-bottom: 0.25rem; }
.footer-links a { color: rgba(250,248,245,0.5); font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover { color: #d4a843; }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact strong { color: #faf8f5; font-size: 0.95rem; margin-bottom: 0.25rem; }
.footer-contact address { font-style: normal; color: rgba(250,248,245,0.5); font-size: 0.95rem; line-height: 1.7; }
.footer-contact a { color: rgba(250,248,245,0.5); font-size: 0.95rem; transition: color 0.2s; }
.footer-contact a:hover { color: #d4a843; }
.footer-bottom {
  border-top: 1px solid rgba(250,248,245,0.08);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom span { color: rgba(250,248,245,0.35); font-size: 0.85rem; }

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .menu-btn { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: 0;
    width: 280px; height: 100vh;
    background: #1a2b4a;
    flex-direction: column; justify-content: center;
    gap: 1.5rem; padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.2);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { color: #faf8f5; font-size: 1.1rem; }
  .nav-menu a:not(.btn)::after { display: none; }
  .nav-menu .btn--gold { text-align: center; width: 100%; justify-content: center; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { max-width: 400px; margin: 0 auto; }
  .hero-float-card { left: 0; bottom: 1rem; }
  .menu-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 400px; margin: 0 auto; }
  .about-content .section-title { text-align: center; }
  .about-text { text-align: center; }
  .about-values { align-items: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; aspect-ratio: 4/3; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; aspect-ratio: 1; }
  .gallery-item:nth-child(4) { grid-column: 1 / 2; aspect-ratio: 4/3; }
  .gallery-item:nth-child(5) { grid-column: 2 / 3; aspect-ratio: 4/3; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-content .section-title { text-align: center; }
  .visit-desc { text-align: center; }
  .contact-card { grid-template-columns: 1fr; padding: 2rem; }
  .contact-left .section-title { text-align: center; }
  .contact-desc { text-align: center; }
  .contact-social { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 72px 0 3rem; }
  .hero-headline { font-size: 1.85rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
  .section { padding: 4rem 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: 1 / -1; aspect-ratio: 4/3; }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { transition: opacity 0.7s ease, transform 0.7s ease; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
