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

:root {
  --navy:       #1B2A4A;
  --navy-light: #2A3F6B;
  --gold:       #B8860B;
  --gold-light: #D4A829;
  --gold-pale:  #FFF3D6;
  --cream:      #FDF8F0;
  --white:      #FFFFFF;
  --text:       #1B2A4A;
  --text-light: #5A6A80;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 4px 24px rgba(27,42,74,.08);
  --shadow-lg:  0 8px 40px rgba(27,42,74,.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'DM Serif Display', serif; line-height: 1.2; }

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

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

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--white);
  padding: .5rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .95rem;
  border: 2.5px solid transparent; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn--gold {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline {
  background: transparent; color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ─── SECTION HELPERS ─── */
.section-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-pale); padding: .35rem .85rem;
  border-radius: 50px; margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: var(--navy); margin-bottom: .75rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-sub { margin: 0 auto; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,248,240,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,42,74,.07);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
  display: flex; align-items: center;
  height: 72px; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.logo__text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; color: var(--navy);
}
.logo__accent { color: var(--gold); }
.logo__icon { flex-shrink: 0; }

.nav__menu ul {
  display: flex; align-items: center; gap: .25rem;
  list-style: none; margin-left: auto;
}
.nav__menu a {
  padding: .5rem 1rem; border-radius: 50px;
  font-weight: 700; font-size: .9rem;
  transition: var(--transition); color: var(--text);
}
.nav__menu a:hover { background: var(--gold-pale); color: var(--gold); }

.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative;
  flex-shrink: 0;
}
.nav__bar {
  display: block; width: 22px; height: 2.5px;
  background: var(--navy); border-radius: 2px;
  position: absolute; left: 11px;
  transition: var(--transition);
}
.nav__bar:nth-child(1) { top: 12px; }
.nav__bar:nth-child(2) { top: 20px; }
.nav__bar:nth-child(3) { top: 28px; }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1B2A4A 0%, #2A3F6B 40%, #3D5A99 70%, #B8860B 100%);
  padding: 8rem 1.25rem 6rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(184,134,11,.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(61,90,153,.5) 0%, transparent 60%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; max-width: 720px; }
.hero__badge {
  display: inline-block;
  font-size: .78rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-light);
  background: rgba(184,134,11,.15); border: 1px solid rgba(184,134,11,.3);
  padding: .45rem 1.1rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero__headline {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  color: var(--white); margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82); margin-bottom: 2.25rem;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__trust {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
}
.hero__trust-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.75);
}
.hero__trust-item svg { opacity: .8; }
.hero__wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  width: 100%; line-height: 0;
}
.hero__wave svg { width: 100%; height: 80px; }

/* ─── FEATURES ─── */
.features {
  padding: 4rem 0;
  background: var(--cream);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(27,42,74,.04);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card__icon { margin-bottom: 1rem; }
.feature-card h3 {
  font-size: 1.2rem; color: var(--navy); margin-bottom: .5rem;
}
.feature-card p { font-size: .95rem; color: var(--text-light); }

/* ─── MENU ─── */
.menu {
  padding: 5rem 0;
  background: var(--white);
}
.menu__tabs {
  display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.menu__tab {
  background: var(--cream); color: var(--text);
  border: 2px solid transparent; border-radius: 50px;
  padding: .6rem 1.4rem; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: .92rem; cursor: pointer;
  transition: var(--transition);
}
.menu__tab:hover { border-color: var(--gold); color: var(--gold); }
.menu__tab.active {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(27,42,74,.04);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__img-wrap img { transform: scale(1.05); }
.card__body { padding: 1.25rem 1.5rem 1.5rem; }
.card__body h3 {
  font-size: 1.1rem; color: var(--navy); margin-bottom: .4rem;
}
.card__body p { font-size: .9rem; color: var(--text-light); line-height: 1.55; }

/* ─── ABOUT ─── */
.about {
  padding: 5rem 0;
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about__media { position: relative; }
.about__img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about__img-float {
  position: absolute; bottom: -2rem; right: -1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
  width: 55%;
}
.about__img-float img { width: 100%; height: 100%; object-fit: cover; }
.about__text .section-title { margin-top: .25rem; }
.about__text p { color: var(--text-light); margin-bottom: 1rem; }
.about__stats {
  display: flex; gap: 2rem; margin-top: 2rem;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--gold); line-height: 1;
}
.stat__label { font-size: .82rem; color: var(--text-light); font-weight: 700; }

/* ─── VISIT ─── */
.visit {
  padding: 5rem 0;
  background: var(--white);
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.visit__info { padding: 1rem 0; }
.info-block {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.info-block__icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--gold-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.info-block strong {
  display: block; font-size: .82rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--gold); margin-bottom: .2rem;
}
.info-block p { color: var(--text); font-size: .95rem; line-height: 1.6; }
.info-block a { color: var(--navy); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.info-block a:hover { color: var(--gold); }
.visit__map { min-height: 400px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer__brand p { font-size: .9rem; margin-top: .75rem; max-width: 300px; }
.footer__links {
  display: flex; flex-direction: column; gap: .5rem;
}
.footer__links a {
  font-weight: 700; font-size: .9rem;
  transition: var(--transition); color: rgba(255,255,255,.65);
}
.footer__links a:hover { color: var(--gold-light); }
.footer__copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  font-size: .82rem; color: rgba(255,255,255,.4);
  display: flex; gap: 1rem; flex-wrap: wrap;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(253,248,240,.98);
    backdrop-filter: blur(12px);
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(27,42,74,.07);
    box-shadow: var(--shadow);
    transform: translateY(-110%); opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav__menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav__menu ul { flex-direction: column; gap: .25rem; align-items: stretch; }
  .nav__menu a { padding: .75rem 1rem; }
  .nav__menu .btn { justify-content: center; }

  .hero { padding: 7rem 1.25rem 5rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__trust { gap: 1rem; }

  .about__grid,
  .visit__grid { grid-template-columns: 1fr; }
  .about__img-float { width: 60%; bottom: -1.5rem; right: -.5rem; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .card:hover, .feature-card:hover { transform: none; }
}
