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

:root {
  --navy:    #071072;
  --navy-dk: #04094e;
  --white:   #ffffff;
  --off-wh:  #f4f6fb;
  --text:    #1a1a2e;
  --muted:   #6b7280;
  --border:  #dde1ef;
  --shadow:  0 2px 16px rgba(0, 0, 0, .10);
  --radius:  8px;
  --max-w:   1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
address { font-style: normal; }

/* ── Utility ──────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 760px; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: background .2s, border-color .2s;
}
.btn:hover { background: var(--navy-dk); }

/* ── Header / Nav ─────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: .75; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 5rem 1.5rem 6rem;
}
.hero-inner { max-width: 640px; margin: 0 auto; }
.hero-logo {
  max-height: 90px;
  width: auto;
  margin: 0 auto 1.5rem;
}
.hero-tagline {
  font-size: 1.15rem;
  opacity: .88;
  margin-bottom: 2rem;
}

/* ── Sections ─────────────────────────────────────────── */
.section { padding: 4.5rem 0; }
.section.alt { background: var(--off-wh); }

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: -1rem auto 2.5rem;
  color: var(--muted);
}

/* ── Locations ────────────────────────────────────────── */
.location-group { margin-bottom: 3rem; }
.location-group:last-child { margin-bottom: 0; }

.city-heading {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .75rem;
}
.card-header h4 { font-size: 1.1rem; color: var(--navy); font-weight: 700; }
.card-header h4 a { color: inherit; text-decoration: none; }
.card-header h4 a:hover { text-decoration: underline; }

.badge {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .25rem .6rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.accepts-cards { background: #dbeafe; color: #1e40af; }
.coin-only     { background: #fef3c7; color: #92400e; }

.card-brand {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: .35rem;
}

address {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.location-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .3rem .75rem;
  font-size: .9rem;
}
.location-details dt { font-weight: 700; color: var(--navy); }
.location-details dd { color: var(--text); }

/* ── Gallery ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  background: #c7cbee;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dk);
  font-size: .9rem;
  font-weight: 600;
  overflow: hidden;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── FAQ Accordion ────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: .5rem; }

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  background: var(--white);
  border: none;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .15s, color .15s;
  color: var(--text);
}
.accordion-trigger:hover { background: var(--off-wh); }
.accordion-trigger[aria-expanded="true"] { background: var(--navy); color: var(--white); }

.accordion-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s;
}
.accordion-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.accordion-icon::after  { top: 0; left: 8px; width: 2px; height: 18px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { transform: scaleY(0); }

.accordion-panel {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.accordion-panel.open {
  max-height: 400px;
  padding: 1rem 1.25rem 1.25rem;
}
.accordion-panel p { color: var(--muted); }
.accordion-panel a { color: var(--navy); font-weight: 600; }
.accordion-panel a:hover { text-decoration: underline; }

/* ── Tips ─────────────────────────────────────────────── */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.tip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.tip-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.tip-card p  { font-size: .9rem; color: var(--muted); }

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.footer-logo {
  height: 40px;
  width: auto;
  margin: 0 auto 1rem;
}
.site-footer p { font-size: .875rem; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 640px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dk);
    padding: .5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: .75rem 1.5rem; }

  .hero { padding: 3rem 1.5rem 4rem; }
  .hero-tagline { font-size: 1rem; }

  .section { padding: 3rem 0; }
  .section h2 { font-size: 1.6rem; }

  .form-row { grid-template-columns: 1fr; }
}
