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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #1B2A4A;
  background: #FAF8F5;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 42, 74, 0.06);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(27, 42, 74, 0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: #1B2A4A;
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C8A45A;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1B2A4A;
  opacity: 0.65;
  transition: opacity 0.25s ease;
  position: relative;
}

.nav-links a:not(.nav-cta):hover {
  opacity: 1;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C8A45A;
  transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border: 1px solid #1B2A4A;
  border-radius: 100px;
  transition: background 0.25s ease, color 0.25s ease !important;
  opacity: 1 !important;
}

.nav-cta:hover {
  background: #1B2A4A;
  color: #FAF8F5 !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle-line {
  width: 22px;
  height: 1.5px;
  background: #1B2A4A;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-toggle-line:first-child {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-line:last-child {
  transform: rotate(-45deg) translate(4px, -5px);
  opacity: 0;
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.mobile-menu-link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  color: #1B2A4A;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  color: #C8A45A;
}

.mobile-menu-cta {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C8A45A;
  border-bottom: 1px solid #C8A45A;
  padding-bottom: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-gold {
  background: #C8A45A;
  color: #1B2A4A;
  border: 1px solid #C8A45A;
}

.btn-gold:hover {
  background: #D4B76E;
  border-color: #D4B76E;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 164, 90, 0.3);
}

.btn-outline {
  background: transparent;
  color: #1B2A4A;
  border: 1px solid rgba(27, 42, 74, 0.25);
}

.btn-outline:hover {
  border-color: #1B2A4A;
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding: 72px 2rem 0;
  position: relative;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-bottom: 4rem;
}

.hero-left {
  padding-right: 1rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A45A;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: #1B2A4A;
}

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

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(27, 42, 74, 0.6);
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero right */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-top: 1px solid #C8A45A;
  border-left: 1px solid #C8A45A;
  z-index: 1;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-bottom: 1px solid #C8A45A;
  border-right: 1px solid #C8A45A;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.hero-accent-box {
  background: #1B2A4A;
  padding: 1.5rem 1.8rem;
  border-radius: 2px;
}

.hero-accent-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A45A;
  margin-bottom: 0.4rem;
}

.hero-accent-sub {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.7);
  font-weight: 300;
  line-height: 1.6;
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 42, 74, 0.15), transparent);
}

/* ── About ── */
.about {
  padding: 8rem 2rem;
  background: #FAF8F5;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
}

.about-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A45A;
  margin-bottom: 3rem;
}

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

.about-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1B2A4A;
}

.about-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(27, 42, 74, 0.6);
  margin-bottom: 1rem;
  font-weight: 300;
}

.about-image-col {
  position: relative;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.about-stat-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.about-stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: #1B2A4A;
  line-height: 1;
}

.about-stat-desc {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(27, 42, 74, 0.5);
  font-weight: 500;
}

.about-stat-divider {
  width: 40px;
  height: 1px;
  background: rgba(27, 42, 74, 0.15);
}

/* ── Menu ── */
.menu {
  padding: 8rem 2rem;
  background: #1B2A4A;
  color: #FAF8F5;
}

.menu-container {
  max-width: 1280px;
  margin: 0 auto;
}

.menu-header {
  text-align: center;
  margin-bottom: 4rem;
}

.menu-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A45A;
  margin-bottom: 1rem;
}

.menu-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: #FAF8F5;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-card {
  background: rgba(250, 248, 245, 0.04);
  border: 1px solid rgba(250, 248, 245, 0.07);
  border-radius: 2px;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
}

.menu-card:hover {
  background: rgba(250, 248, 245, 0.07);
  transform: translateY(-4px);
}

.menu-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.menu-card-body {
  padding: 1.5rem;
}

.menu-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #FAF8F5;
}

.menu-card-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.5);
  font-weight: 300;
}

.menu-note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(250, 248, 245, 0.35);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ── Visit ── */
.visit {
  padding: 8rem 2rem;
  background: #FAF8F5;
}

.visit-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.visit-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A45A;
  margin-bottom: 1rem;
}

.visit-headline {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 3rem;
  color: #1B2A4A;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.visit-icon {
  width: 20px;
  height: 20px;
  color: #C8A45A;
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-detail-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(27, 42, 74, 0.45);
  margin-bottom: 0.25rem;
}

.visit-detail-value {
  display: block;
  font-size: 0.95rem;
  color: #1B2A4A;
  line-height: 1.6;
  font-weight: 400;
}

.visit-detail-value a {
  transition: color 0.2s ease;
}

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

.visit-map {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16/13;
}

.visit-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.visit-map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(27, 42, 74, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.7rem 1rem;
  border-radius: 100px;
}

.visit-map-overlay svg {
  width: 16px;
  height: 16px;
  color: #C8A45A;
  flex-shrink: 0;
}

.visit-map-overlay span {
  font-size: 0.78rem;
  color: #FAF8F5;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ── Testimonials ── */
.testimonials {
  padding: 8rem 2rem;
  background: #F3F0EB;
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A45A;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials-headline {
  font-size: clamp(2rem, 3vw, 2.8rem);
  text-align: center;
  margin-bottom: 4rem;
  color: #1B2A4A;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #FAF8F5;
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(27, 42, 74, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(27, 42, 74, 0.06);
}

.testimonial-quote {
  width: 28px;
  height: 28px;
  color: #C8A45A;
  opacity: 0.4;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(27, 42, 74, 0.7);
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1B2A4A;
}

/* ── Contact ── */
.contact {
  padding: 8rem 2rem;
  background: #FAF8F5;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A45A;
  margin-bottom: 1rem;
}

.contact-headline {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #1B2A4A;
}

.contact-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(27, 42, 74, 0.6);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #1B2A4A;
  transition: color 0.2s ease;
}

.contact-direct-item:hover {
  color: #C8A45A;
}

.contact-direct-item svg {
  width: 18px;
  height: 18px;
  color: #C8A45A;
  flex-shrink: 0;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(27, 42, 74, 0.5);
}

.form-input {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #1B2A4A;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(27, 42, 74, 0.15);
  padding: 0.7rem 0;
  outline: none;
  transition: border-color 0.25s ease;
  resize: none;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(27, 42, 74, 0.3);
}

.form-input:focus {
  border-bottom-color: #C8A45A;
}

.form-textarea {
  line-height: 1.7;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #C8A45A;
  font-weight: 400;
  padding: 1rem 0;
  border-top: 1px solid rgba(27, 42, 74, 0.08);
  margin-top: 0.5rem;
}

.form-success svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-success.visible {
  display: flex;
}

/* ── Footer ── */
.footer {
  background: #1B2A4A;
  color: #FAF8F5;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 248, 245, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C8A45A;
  display: inline-block;
}

.footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #FAF8F5;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(250, 248, 245, 0.4);
  font-weight: 300;
  max-width: 260px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.5);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250, 248, 245, 0.3);
  font-weight: 300;
}

.footer-bottom a {
  color: rgba(250, 248, 245, 0.3);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #C8A45A;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-left {
    padding-right: 0;
    order: 2;
  }

  .hero-right {
    order: 1;
  }

  .hero-image-frame {
    aspect-ratio: 4/3;
  }

  .hero-image-frame::before,
  .hero-image-frame::after {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-col {
    order: -1;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1.2rem;
  }

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

  .visit-map {
    aspect-ratio: 16/10;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 1.2rem;
  }

  .hero {
    padding: 72px 1.2rem 0;
  }

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

  section {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}
