:root {
  --blue: #123f98;
  --blue-dark: #0b2c6b;
  --yellow: #f5cf17;
  --red: #c92824;
  --cream: #fffaf0;
  --ink: #1b1b1b;
  --muted: #6c6c6c;
  --white: #ffffff;
  --border: #e9e1d2;
  --shadow: 0 18px 50px rgba(16, 35, 70, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18,63,152,.10);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 68px; height: 68px; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 700; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--blue); }
.nav-call {
  background: var(--blue);
  color: white !important;
  padding: 11px 18px;
  border-radius: 999px;
}
.menu-toggle { display: none; border: 0; background: transparent; font-size: 28px; }

.hero {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 25%, rgba(245,207,23,.28), transparent 28%),
    linear-gradient(135deg, #f9f4e8 0%, #fff 52%, #edf3ff 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -130px; bottom: -230px;
  border: 48px solid rgba(18,63,152,.08);
  border-radius: 50%;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.8), rgba(255,255,255,.15)); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 80px 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
}
h1 {
  margin: 0;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: .95;
  letter-spacing: -.04em;
}
.tagline { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; margin: 24px auto 32px; max-width: 650px; }
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  padding: 13px 22px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(18,63,152,.15); }
.primary { background: var(--blue); color: white; }
.secondary { background: white; color: var(--blue); border: 2px solid var(--blue); }

.welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 90px;
  padding-bottom: 90px;
  align-items: end;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-dark);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.08;
  margin: 0;
}
h2 span { color: var(--red); }
.welcome-copy { font-size: 1.12rem; color: var(--muted); max-width: 520px; margin: 0; }

.section { padding: 100px 0; }
.menu-section { background: white; }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.section-heading p:last-child { color: var(--muted); }
.menu-card {
  max-width: 650px;
  margin: auto;
  padding: 50px;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.menu-icon { font-size: 48px; }
.menu-card h3 { color: var(--blue-dark); font-size: 1.6rem; margin: 12px 0 8px; }
.menu-card p { color: var(--muted); margin: 0 auto 24px; max-width: 520px; }

.location-section { background: #f3f7ff; }
.location-grid, .hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.address { font-size: 1.15rem; margin: 28px 0; }
.map-card, .hours-card {
  background: white;
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(18,63,152,.08);
}
.map-pin { font-size: 46px; }
.map-card h3 { color: var(--blue-dark); font-size: 1.5rem; margin: 8px 0; }
.map-card p { color: var(--muted); }
.map-card a { color: var(--blue); font-weight: 800; text-decoration: none; }

.hours-section { background: var(--cream); }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row strong { color: var(--blue-dark); }

.contact { background: var(--blue); color: white; padding: 62px 0; }
.contact .eyebrow { color: var(--yellow); }
.contact h2 { color: white; }
.contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.phone { color: var(--yellow); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; text-decoration: none; white-space: nowrap; }

.footer { background: #0a2458; color: rgba(255,255,255,.75); padding: 32px 0; }
.footer strong { color: white; font-size: 1.1rem; }
.footer p { margin: 4px 0 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.footer-inner > p { text-align: right; }

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { min-height: 70px; }
  .brand img { width: 58px; height: 58px; }
  .menu-toggle { display: block; color: var(--blue); }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 14px; right: 14px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 8px; }
  .nav-call { text-align: center; }
  .hero { min-height: 560px; }
  .welcome, .location-grid, .hours-grid { grid-template-columns: 1fr; gap: 28px; }
  .welcome { padding-top: 65px; padding-bottom: 65px; }
  .section { padding: 70px 0; }
  .menu-card, .map-card, .hours-card { padding: 28px; }
  .contact-inner, .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner > p { text-align: left; }
  .phone { white-space: normal; }
}
