/* ── 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;
  font-weight: 300;
  color: #1a1a1a;
  background: #faf9f7;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
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; }

/* ── Typography ── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8943f;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: #0f1f3d;
  margin-bottom: 20px;
}
.section-divider {
  width: 48px;
  height: 1px;
  background: #c9a84c;
  margin-bottom: 24px;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: #0f1f3d;
  color: #faf9f7;
  border-color: #0f1f3d;
}
.btn-primary:hover {
  background: #b8943f;
  border-color: #b8943f;
  color: #0f1f3d;
}
.btn-outline {
  background: transparent;
  color: #faf9f7;
  border-color: rgba(250, 249, 247, 0.5);
}
.btn-outline:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #faf9f7;
  letter-spacing: 0.02em;
}
.nav-logo-icon { color: #c9a84c; }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 249, 247, 0.75);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a84c;
  transition: width 0.3s;
}
.nav-links a:hover { color: #c9a84c; }
.nav-links a:hover::after { width: 100%; }

/* Mobile menu */
.menu-toggle, .menu-close {
  display: none;
  background: none;
  border: none;
  color: #faf9f7;
  cursor: pointer;
  padding: 4px;
}
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.menu-overlay.open { display: flex; }
.menu-close { position: absolute; top: 20px; right: 24px; }
.menu-links { text-align: center; }
.menu-link {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(250, 249, 247, 0.8);
  padding: 12px 0;
  transition: color 0.3s;
}
.menu-link:hover { color: #c9a84c; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(10, 22, 40, 0.45) 50%,
    rgba(10, 22, 40, 0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 20px;
  font-weight: 400;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: #faf9f7;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(250, 249, 247, 0.75);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 249, 247, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll svg { animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: #faf9f7;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}
.about-text p {
  color: #4a4a4a;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(15, 31, 61, 0.1);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #0f1f3d;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

/* ── Menu ── */
.menu {
  padding: 120px 0;
  background: #0f1f3d;
  color: #faf9f7;
}
.menu .section-eyebrow { color: #c9a84c; }
.menu .section-title { color: #faf9f7; }
.menu-header { text-align: center; margin-bottom: 64px; }
.menu-intro {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(250, 249, 247, 0.65);
  font-size: 0.95rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}
.menu-category { padding: 32px 0; border-top: 1px solid rgba(201, 168, 76, 0.2); }
.category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #c9a84c;
  margin-bottom: 24px;
}
.menu-list { display: flex; flex-direction: column; gap: 14px; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.9rem;
}
.menu-item-name {
  font-weight: 400;
  color: #faf9f7;
  white-space: nowrap;
}
.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201, 168, 76, 0.3);
  min-width: 16px;
  margin-bottom: 4px;
}
.menu-item-desc {
  font-size: 0.8rem;
  color: rgba(250, 249, 247, 0.5);
  font-weight: 300;
}
.menu-note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.8rem;
  color: rgba(250, 249, 247, 0.4);
  letter-spacing: 0.05em;
}

/* ── Gallery ── */
.gallery {
  padding: 120px 0;
  background: #faf9f7;
}
.gallery-header { text-align: center; margin-bottom: 64px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.95);
}
.gallery-item img:hover {
  transform: scale(1.02);
  filter: brightness(1);
}

/* ── Visit ── */
.visit {
  padding: 120px 0;
  background: #f5f3ef;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.visit-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.visit-icon {
  color: #c9a84c;
  flex-shrink: 0;
  margin-top: 2px;
}
.visit-detail strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f1f3d;
  margin-bottom: 6px;
  font-weight: 500;
}
.visit-detail p {
  color: #4a4a4a;
  font-size: 0.9rem;
  line-height: 1.7;
}
.visit-detail a {
  color: #b8943f;
  transition: color 0.3s;
}
.visit-detail a:hover { color: #0f1f3d; }
.visit-map { margin-top: 32px; border-radius: 8px; overflow: hidden; }
.visit-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 2px;
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: #faf9f7;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text p {
  color: #4a4a4a;
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.contact-direct a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #0f1f3d;
  transition: color 0.3s;
}
.contact-direct a:hover { color: #b8943f; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f1f3d;
  font-weight: 400;
}
.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(15, 31, 61, 0.2);
  background: transparent;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #c9a84c;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}
.form-success {
  text-align: center;
  padding: 16px;
  font-size: 0.9rem;
  color: #b8943f;
  margin-top: 8px;
}

/* ── Footer ── */
.footer {
  background: #0a1628;
  color: rgba(250, 249, 247, 0.6);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #faf9f7;
  margin-bottom: 16px;
}
.footer-logo svg { color: #c9a84c; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(250, 249, 247, 0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: #c9a84c; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  font-size: 0.95rem;
  color: #c9a84c;
  transition: color 0.3s;
}
.footer-contact a:hover { color: #faf9f7; }
.footer-contact p { font-size: 0.82rem; }
.footer-bottom {
  border-top: 1px solid rgba(250, 249, 247, 0.08);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250, 249, 247, 0.3);
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid,
  .visit-grid,
  .contact-inner { gap: 40px; }
  .about-image img,
  .visit-image img { height: 400px; }
}

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

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

  .about-grid,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .about-image { order: -1; }
  .about-image img { height: 350px; }
  .about-stats { flex-wrap: wrap; gap: 24px; }

  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .menu-category { padding: 24px 0; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item img { height: 220px; }

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

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

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 260px; }
}
