:root {
  --bg: #f5efe2;
  --surface: #ffffff;
  --text: #143247;
  --muted: #4a6273;
  --brand: #1d7fb8;
  --brand-deep: #0f5f8e;
  --brand-soft: #8fd2ee;
  --sand: #eadfcb;
  --sea-foam: #dff4f8;
  --accent: #2c9ab5;
  --border: #d3e5ee;
  --shadow: 0 16px 34px rgba(13, 58, 88, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.55;
  background: linear-gradient(180deg, #f9f3e7 0%, #eef8fc 44%, #f5efe2 100%);
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.14;
  margin-top: 0;
}

a {
  color: var(--brand-deep);
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  z-index: -1;
  filter: blur(2px);
}

.bg-orb-1 {
  width: 360px;
  height: 360px;
  top: -140px;
  right: -80px;
  background: radial-gradient(circle at center, rgba(29, 127, 184, 0.30), rgba(29, 127, 184, 0.03));
}

.bg-orb-2 {
  width: 320px;
  height: 320px;
  left: -120px;
  bottom: 10%;
  background: radial-gradient(circle at center, rgba(234, 223, 203, 0.6), rgba(234, 223, 203, 0.05));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(245, 251, 255, 0.86);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 0.86rem;
  color: #fff;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  box-shadow: 0 8px 18px rgba(17, 96, 143, 0.36);
}

.site-nav {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: #204962;
  font-weight: 700;
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
}

.site-nav a:hover,
.site-nav a.active {
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(19, 84, 122, 0.15);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 0.46rem 0.72rem;
  font-weight: 700;
  color: #214f69;
}

main {
  padding: 2rem 0 2.8rem;
}

.hero,
.page-head {
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(130deg, #e8f7fc 0%, #ffffff 62%, #f7f1e5 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after,
.page-head::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -34px;
  height: 74px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(143, 210, 238, 0.2), rgba(143, 210, 238, 0));
  pointer-events: none;
}

.eyebrow {
  color: var(--brand);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 800;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 3.3rem);
  margin: 0.5rem 0 0.7rem;
}

.lead {
  color: var(--muted);
  max-width: 65ch;
  margin: 0;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 700;
  padding: 0.68rem 1rem;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(20, 78, 113, 0.16);
}

.btn-primary {
  color: #fff;
  border-color: var(--brand-deep);
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
}

.stats-grid,
.menu-grid,
.review-grid,
.visit-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.stat,
.menu-grid .card,
.review-grid .card,
.visit-grid .card {
  grid-column: span 6;
}

.stat {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f1fbff);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: #1d5677;
}

.stat-label {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.card,
.panel,
.notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.panel,
.notice {
  margin-top: 1.2rem;
}

.panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(140deg, #ffffff, #f3fbff);
}

.inline-info p {
  margin: 0.3rem 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.chips span {
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  border: 1px solid #cbe4f0;
  background: #eef9fd;
  font-weight: 600;
  font-size: 0.92rem;
}

.menu-list,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed #cfe3ec;
}

.menu-list li:last-child {
  border-bottom: 0;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid .quote-card {
  grid-column: auto;
  background: linear-gradient(150deg, #ffffff, #f0faff 88%);
}

.quote-card p {
  margin: 0;
  font-weight: 500;
}

.quote-card cite {
  display: block;
  margin-top: 0.65rem;
  color: var(--muted);
  font-style: normal;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.45rem 0;
  border-bottom: 1px dashed #cde1eb;
}

.hours-table tr:last-child td {
  border-bottom: 0;
}

.plain-list li {
  padding: 0.3rem 0;
}

.cta-block p {
  margin-top: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(233, 247, 253, 0.95), rgba(245, 239, 226, 0.92));
}

.footer-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: enter 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

@keyframes enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-grid .quote-card {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(92vw, 1080px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.4rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero,
  .page-head {
    padding: 1.3rem;
  }

  .panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat,
  .menu-grid .card,
  .visit-grid .card {
    grid-column: span 12;
  }
}

.map-section {
  margin-top: 1.2rem;
}

.map-embed {
  margin-top: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  aspect-ratio: 16 / 9;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-action {
  margin: 0.8rem 0 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  box-shadow: 0 8px 18px rgba(17, 96, 143, 0.24);
  background: #fff;
  padding: 4px;
}

@media (max-width: 760px) {
  .brand-logo {
    width: 38px;
    height: 38px;
  }
}

.top-image-wrap {
  display: flex;
  justify-content: center;
  padding-top: 1.2rem;
}

.top-image {
  width: clamp(280px, 42vw, 460px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(13, 58, 88, 0.22));
}

@media (max-width: 760px) {
  .top-image-wrap {
    padding-top: 1rem;
  }

  .top-image {
    width: clamp(220px, 70vw, 340px);
  }
}



.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.burger-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.burger-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #214f69;
}
