/* ============================================================
   1st Place Express Carwash — Design System
   Domain: 1stplaceexpress.com
   ============================================================ */

:root {
  /* Brand matched to 1st Place Express logo (teal / royal blue / gold) */
  --navy-950: #06102a;
  --navy-900: #0c1f4d;
  --navy-800: #132a63;
  --navy-700: #1a3a8f;
  --navy-600: #2448a8;

  --teal-300: #7ed6d9;
  --teal-400: #3db8bc;
  --teal-500: #0d8a8f;
  --teal-600: #0a757a;
  --teal-700: #086266;

  --gold-400: #f5d04a;
  --gold-500: #e8b923;
  --gold-600: #c99a12;

  --white: #ffffff;
  --off-white: #f3f8fc;
  --slate-200: #d7e3ef;
  --slate-300: #a8b9cc;
  --slate-400: #7a8fa6;

  --success: #10b981;
  --danger: #ef4444;

  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", "DM Sans", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 10px 30px rgba(6, 13, 24, 0.18);
  --shadow-lg: 0 24px 60px rgba(6, 13, 24, 0.28);
  --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.35);

  --container: 1140px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.25s var(--ease);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--navy-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
p { color: var(--navy-700); }
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Topbar */
.topbar {
  background: var(--navy-900);
  color: var(--slate-200);
  font-size: 0.875rem;
  padding: 0.55rem 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--slate-200);
  transition: color var(--transition);
}
.topbar a:hover { color: var(--teal-400); }
.topbar svg { width: 15px; height: 15px; flex-shrink: 0; }
.topbar .hide-sm { opacity: 0.85; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  height: var(--header-h);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 56px;
  width: auto;
  max-width: min(240px, 52vw);
  object-fit: contain;
}
.site-footer .logo-img {
  height: auto;
  width: min(220px, 100%);
  max-width: 220px;
  border-radius: 10px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.35rem;
}
.nav > a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-800);
  padding: 0.35rem 0;
  position: relative;
  transition: color var(--transition);
}
.nav > a:hover,
.nav > a[aria-current="page"] { color: var(--teal-700); }
.nav > a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--gold-500));
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.35);
}
.btn-primary:hover { box-shadow: var(--shadow-glow); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(244, 180, 0, 0.35);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-900);
}
.btn-outline-dark:hover {
  background: var(--navy-900);
  color: var(--white);
}
.btn-sm { padding: 0.55rem 1rem; font-size: 0.875rem; }
.btn-nav { display: none; }

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-900);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 13, 24, 0.88) 0%, rgba(6, 13, 24, 0.62) 48%, rgba(6, 13, 24, 0.35) 100%),
    linear-gradient(0deg, rgba(6, 13, 24, 0.55), transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4.5rem;
  max-width: 640px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}
.hero .lead {
  font-size: 1.15rem;
  color: var(--slate-200);
  margin-bottom: 1.75rem;
  max-width: 34em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-200);
}
.proof-strip svg {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
}

/* Sections */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-dark {
  background: var(--navy-900);
  color: var(--white);
}
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p { color: var(--slate-300); }
.section-soft { background: var(--off-white); }
.section-head {
  max-width: 620px;
  margin-bottom: 2.5rem;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.section-head p { font-size: 1.08rem; }
.kicker {
  color: var(--teal-600);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-dark .kicker { color: var(--teal-400); }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(0, 119, 182, 0.12));
  color: var(--teal-700);
  margin-bottom: 1rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--slate-400);
}

/* Package cards */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.package-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 180, 216, 0.4);
}
.package-card.featured {
  border-color: var(--teal-500);
  box-shadow: 0 12px 36px rgba(0, 119, 182, 0.18);
}
.package-card .badge {
  position: absolute;
  top: -11px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
}
.package-card .tier {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 0.35rem;
}
.package-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.package-card .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}
.package-card .price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-400);
}
.package-card .price-note {
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-bottom: 1rem;
}
.package-card ul {
  flex: 1;
  margin-bottom: 1.25rem;
}
.package-card li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  color: var(--navy-700);
}
.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
}

/* Club band */
.club-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: var(--white);
}
.club-band-copy { padding: 2.75rem; }
.club-band-copy h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}
.club-band-copy p {
  color: var(--slate-200);
  margin-bottom: 1.5rem;
  max-width: 34em;
}
.club-band-media {
  min-height: 280px;
  height: 100%;
}
.club-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.club-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.club-prices span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.9rem;
  font-weight: 700;
  color: var(--gold-400);
}

/* Location cards */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.location-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.location-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.location-meta {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
  font-size: 0.95rem;
  color: var(--navy-700);
}
.location-meta a { color: var(--teal-700); font-weight: 600; }
.location-meta a:hover { text-decoration: underline; }
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}
.map-embed {
  width: 100%;
  height: 220px;
  border: 0;
  background: var(--off-white);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white);
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.4rem; font-size: 1.15rem; }

/* FAQ */
.faq-list { display: grid; gap: 0.75rem; max-width: 760px; }
.faq-item {
  border: 1px solid rgba(10, 22, 40, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.2rem;
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--teal-600);
  font-size: 1.25rem;
  font-weight: 500;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  padding: 0 1.2rem 1.1rem;
  color: var(--slate-400);
}

/* Page hero (inner pages) */
.page-hero {
  background:
    linear-gradient(135deg, rgba(6, 16, 42, 0.92), rgba(12, 31, 77, 0.85)),
    url("../assets/hero-tunnel.jpeg") center/cover;
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: var(--slate-200);
  max-width: 36em;
  font-size: 1.1rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.contact-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-card h2 { color: var(--white); margin-bottom: 0.75rem; }
.contact-card p { color: var(--slate-300); margin-bottom: 1.25rem; }
.contact-list { display: grid; gap: 1rem; }
.contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--slate-200);
  transition: color var(--transition);
}
.contact-list a:hover { color: var(--teal-400); }
.contact-list strong { display: block; color: var(--white); }
.contact-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal-400);
}
.form-card {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { display: grid; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-900);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(10, 22, 40, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
  background: var(--white);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note {
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-top: 0.75rem;
}
.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.45;
}
.form-status.show { display: block; }
.form-status.success {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.form-status.info {
  background: rgba(0, 180, 216, 0.1);
  color: #0e7490;
  border: 1px solid rgba(0, 180, 216, 0.3);
}
.botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}
#contact-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* Amenities strip */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .amenity-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.amenity-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  color: var(--white);
}
.amenity-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.amenity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(6, 13, 24, 0.88));
}
.amenity-card div {
  position: relative;
  z-index: 1;
  padding: 1.4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.amenity-card h3 { color: var(--white); margin-bottom: 0.35rem; }
.amenity-card p { color: var(--slate-200); font-size: 0.95rem; }

.complimentary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.complimentary-card {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.complimentary-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.complimentary-card p {
  font-size: 0.95rem;
  color: var(--slate-400);
}
.complimentary-card .feature-icon {
  margin-bottom: 0.85rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(13, 138, 143, 0.92), rgba(12, 31, 77, 0.95)),
    url("../assets/hero-shine.jpeg") center/cover;
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: var(--slate-200);
  margin-bottom: 1.5rem;
  max-width: 32em;
  margin-inline: auto;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Notice chip */
.notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244, 180, 0, 0.12);
  color: #8a6400;
  border: 1px solid rgba(244, 180, 0, 0.35);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--slate-300);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.site-footer .logo-img { height: 48px; margin-bottom: 1rem; }
.site-footer p { color: var(--slate-400); font-size: 0.95rem; }
.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links { display: grid; gap: 0.55rem; }
.footer-links a {
  color: var(--slate-300);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal-400); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--slate-400);
}

/* Tips list (locations page) */
.tips-list {
  display: grid;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.tips-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--navy-700);
  font-size: 1.02rem;
  line-height: 1.5;
}
.tips-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.tips-list li::after {
  content: "";
  position: absolute;
  left: 0.38rem;
  top: 0.58rem;
  width: 0.35rem;
  height: 0.55rem;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Utilities */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }

/* Responsive */
@media (max-width: 1000px) {
  .feature-grid,
  .package-grid,
  .complimentary-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .club-band { grid-template-columns: 1fr; }
  .club-band-media { min-height: 220px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: calc(var(--header-h) + 34px) 0 auto 0;
    background: var(--white);
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: var(--shadow-md);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav > a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  }
  .btn-nav {
    display: inline-flex;
    margin-top: 0.5rem;
    width: 100%;
  }
  .topbar .hide-sm { display: none; }
  .location-grid,
  .contact-grid,
  .two-col,
  .steps,
  .amenity-grid,
  .complimentary-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .feature-grid,
  .package-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding: 3.5rem 0 3rem; }
  .section { padding: 3.5rem 0; }
}
