@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --wp-blue: #0a2a66;
  --wp-blue-2: #081d45;
  --wp-orange: #ff9f1c;
  --wp-orange-2: #ff6b1a;
  --wp-cream: #fff7ec;
  --wp-paper: #fffdf8;
  --wp-ink: #251a13;
  --wp-muted: #71665e;
  --wp-shadow: 0 24px 70px rgba(30, 18, 10, .18);
  --wp-radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--wp-ink);
  background: var(--wp-paper);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  padding: .55rem 0;
  color: rgba(255,255,255,.9);
  background: rgba(7, 21, 51, .94);
  font-size: .92rem;
}
.topbar a { color: #fff; }

.navbar {
  top: 0;
  padding: .8rem 0;
  z-index: 1030;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  background: rgba(8, 23, 54, .46);
  backdrop-filter: blur(12px);
}
@media (min-width: 992px) { .navbar { top: 38px; } }
.navbar.nav-scrolled {
  top: 0;
  background: rgba(8, 23, 54, .96);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  padding: .55rem 0;
}
.brand-logo { width: 188px; height: auto; display: block; }
.navbar .nav-link {
  color: rgba(255,255,255,.86);
  font-weight: 700;
  letter-spacing: .01em;
  padding: .7rem .9rem !important;
  border-radius: 999px;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus { color: #fff; background: rgba(255,255,255,.11); }
.nav-cta { border-radius: 999px; font-weight: 800; padding: .75rem 1.15rem; color: #23170d !important; }

.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 20%, rgba(255,159,28,.22), transparent 30%),
    radial-gradient(circle at 20% 82%, rgba(23,73,156,.35), transparent 28%),
    linear-gradient(135deg, rgba(10, 19, 36, .95), rgba(42, 20, 12, .93)),
    repeating-linear-gradient(90deg, #2d1a10 0, #2d1a10 12px, #25140c 12px, #25140c 22px);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 70% 45%, #000 0, transparent 70%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,12,28,.88) 0%, rgba(5,12,28,.55) 45%, rgba(5,12,28,.22) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: .78rem;
  color: var(--wp-orange);
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.3rem, 8vw, 7.4rem);
  line-height: .88;
  margin: 1rem 0 1.3rem;
  letter-spacing: -.06em;
}
.hero-lead {
  color: rgba(255,255,255,.85);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 650px;
  line-height: 1.7;
}
.btn { border-radius: 999px; font-weight: 800; }
.btn-warning { background: linear-gradient(135deg, var(--wp-orange), var(--wp-orange-2)); border: 0; color: #21140a; box-shadow: 0 14px 30px rgba(255, 127, 26, .25); }
.btn-dark { background: var(--wp-blue-2); border: 0; }
.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  color: rgba(255,255,255,.86);
}
.hero-info a, .hero-info span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.hero-plates {
  position: relative;
  min-height: 640px;
}
.hero-plate {
  position: absolute;
  filter: drop-shadow(0 42px 50px rgba(0,0,0,.35));
  user-select: none;
  pointer-events: none;
}
.hero-plate-main {
  width: min(720px, 105%);
  right: -8%;
  top: 18%;
  animation: floatMain 6s ease-in-out infinite;
}
.hero-plate-small {
  width: 300px;
  padding: 18px;
  border-radius: 34px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255,255,255,.10);
}
.hero-plate-top { right: 4%; top: 0; transform: rotate(8deg); animation: floatSmall 6.5s ease-in-out infinite; }
.hero-plate-bottom { left: 0; bottom: 0; transform: rotate(-7deg); animation: floatSmall 7s ease-in-out infinite reverse; }
@keyframes floatMain { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-18px) rotate(1deg); } }
@keyframes floatSmall { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.intro-band {
  position: relative;
  z-index: 5;
  margin-top: -54px;
}
.intro-item {
  height: 100%;
  padding: 1.4rem;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--wp-shadow);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.intro-item i { color: var(--wp-orange-2); font-size: 1.85rem; }
.intro-item strong { color: var(--wp-blue); font-size: 1.05rem; }
.intro-item span { color: var(--wp-muted); }

.section-padding { padding: 6.5rem 0; }
.section-heading { max-width: 770px; }
.section-heading h2,
.featured-strip h2,
.location-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  letter-spacing: -.04em;
  line-height: .96;
  margin: .65rem 0 1rem;
}
.section-heading p,
.featured-strip p,
.location-section p { color: var(--wp-muted); font-size: 1.05rem; line-height: 1.7; }

.menu-card {
  overflow: hidden;
  border-radius: var(--wp-radius);
  background: #fff;
  border: 1px solid rgba(10,42,102,.08);
  box-shadow: 0 18px 44px rgba(39, 25, 12, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.menu-card:hover { transform: translateY(-7px); box-shadow: var(--wp-shadow); }
.menu-card-img-wrap {
  height: 250px;
  padding: 1rem;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,159,28,.15), transparent 34%),
    linear-gradient(180deg, #fff8ea, #fff);
}
.menu-card-img-wrap img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 20px 24px rgba(0,0,0,.12)); }
.menu-card-body { padding: 1.4rem; }
.menu-card h3 { font-weight: 900; color: var(--wp-blue); margin: .45rem 0 .55rem; }
.menu-card p { color: var(--wp-muted); margin: 0; line-height: 1.65; }

.featured-strip {
  padding: 5.5rem 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,159,28,.2), transparent 28%),
    linear-gradient(135deg, #071a3e, #31170b);
  color: #fff;
}
.featured-strip p { color: rgba(255,255,255,.76); max-width: 680px; }

.gallery-section { background: var(--wp-cream); }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-top: 2rem;
}
.filter-btn {
  border: 1px solid rgba(10,42,102,.14);
  background: #fff;
  color: var(--wp-blue);
  border-radius: 999px;
  padding: .75rem 1.15rem;
  font-weight: 900;
  transition: all .2s ease;
}
.filter-btn:hover, .filter-btn.active { background: var(--wp-blue); color: #fff; border-color: var(--wp-blue); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}
.gallery-card {
  grid-column: span 4;
  border: 0;
  padding: 0;
  text-align: left;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(33, 24, 12, .08);
  transition: transform .25s ease, box-shadow .25s ease, opacity .22s ease;
  cursor: pointer;
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--wp-shadow); }
.gallery-card.is-hidden { display: none; }
.gallery-image-wrap {
  display: grid;
  place-items: center;
  height: 265px;
  padding: 1rem;
  background: radial-gradient(circle at 50% 18%, rgba(255, 159, 28, .12), transparent 36%), #fffaf3;
}
.gallery-image-wrap img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 18px 20px rgba(0,0,0,.11)); }
.gallery-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 1rem 1.05rem;
  align-items: center;
}
.gallery-caption span { font-weight: 900; color: var(--wp-blue); }
.gallery-caption small { color: var(--wp-muted); font-weight: 800; }

.location-section { background: #fff; }
.location-card {
  border-radius: var(--wp-radius);
  padding: 2rem;
  background: var(--wp-cream);
  border: 1px solid rgba(10,42,102,.08);
}
.location-card p {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--wp-ink);
  font-weight: 700;
}
.location-card i { color: var(--wp-orange-2); font-size: 1.25rem; margin-top: .1rem; }
.map-wrap {
  overflow: hidden;
  border-radius: 32px;
  min-height: 450px;
  box-shadow: var(--wp-shadow);
  border: 10px solid #fff;
}
.map-wrap iframe { width: 100%; height: 450px; border: 0; display: block; }

.footer {
  background:
    linear-gradient(135deg, rgba(7, 19, 45, .96), rgba(44, 22, 12, .96)),
    repeating-linear-gradient(90deg, #2d1a10 0, #2d1a10 12px, #25140c 12px, #25140c 22px);
  color: rgba(255,255,255,.78);
  padding: 4.5rem 0 1.6rem;
}
.footer-logo { width: 270px; }
.footer h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 900; margin-bottom: 1rem; }
.footer a { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .9rem;
}

.mobile-call-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1080;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2faf50, #157a35);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(21, 122, 53, .32);
}
.mobile-call-btn i { font-size: 1.15rem; }

.gallery-modal-content { background: rgba(8, 13, 28, .96); border: 0; border-radius: 28px; overflow: hidden; }
.gallery-modal-close { position: absolute; right: 18px; top: 18px; z-index: 2; }
.gallery-modal-img { width: 100%; max-height: 78vh; object-fit: contain; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%); padding: 1.4rem; }
.gallery-modal-caption { color: #fff; font-weight: 900; font-size: 1.2rem; padding: 0 1.5rem 1.4rem; text-align: center; }

@media (max-width: 1199.98px) {
  .gallery-card { grid-column: span 6; }
  .hero-plate-main { right: -12%; }
}
@media (max-width: 991.98px) {
  .navbar { background: rgba(8, 23, 54, .96); }
  .navbar-collapse { padding: 1rem 0 1.2rem; }
  .brand-logo { width: 150px; }
  .hero { padding-top: 78px; }
  .hero-plates { min-height: 430px; margin-bottom: 2rem; }
  .hero-plate-main { width: 92%; right: 0; left: 4%; top: 10%; }
  .hero-plate-small { width: 210px; }
  .hero-plate-top { right: 0; top: 0; }
  .hero-plate-bottom { left: 0; bottom: 0; }
  .section-padding { padding: 5rem 0; }
}
@media (max-width: 767.98px) {
  html { scroll-padding-top: 74px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .hero-info a, .hero-info span { width: 100%; border-radius: 18px; }
  .hero-plates { min-height: 350px; }
  .hero-plate-small { display: none; }
  .menu-card-img-wrap { height: 220px; }
  .gallery-grid { gap: .75rem; }
  .gallery-card { grid-column: span 6; border-radius: 20px; }
  .gallery-card:hover { transform: none; }
  .gallery-image-wrap { height: 165px; padding: .65rem; }
  .gallery-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: .15rem;
    padding: .7rem .72rem .78rem;
  }
  .gallery-caption span { font-size: .86rem; line-height: 1.12; }
  .gallery-caption small { font-size: .72rem; line-height: 1; }
  .map-wrap, .map-wrap iframe { min-height: 360px; height: 360px; }
  .footer-logo { width: 220px; }
  .mobile-call-btn { left: 16px; right: 16px; justify-content: center; }
}

@media (max-width: 420px) {
  .gallery-grid { gap: .62rem; }
  .gallery-card { border-radius: 18px; }
  .gallery-image-wrap { height: 138px; padding: .55rem; }
  .gallery-caption { padding: .62rem .62rem .68rem; }
  .gallery-caption span { font-size: .78rem; }
  .gallery-caption small { font-size: .68rem; }
}

@media (min-width: 768px) { .mobile-call-btn { display: none !important; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
