/* ============================================================
   BET-HELPER.COM — SHARED STYLESHEET
   Mobile-first · Hamburger nav · Navy / Gold scheme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ─── TOKENS ─── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #e5c060;
  --dark:        #0a1628;
  --mid:         #1a2c4a;
  --mid2:        #1e3560;
  --blue-accent: #1a4fa0;
  --red-accent:  #c0392b;
  --green-accent:#1a7a3c;
  --light-bg:    #f5f3ee;
  --card-bg:     #ffffff;
  --text:        #2b2b2b;
  --text-muted:  #6b7280;
  --border:      #ddd;
  --border-warm: #d4c9a8;
  --separator:   #b8a96e;
  --nav-h:       58px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--light-bg);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--blue-accent); }
a:hover { color: var(--red-accent); }
img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════════════
   HEADER & NAV
═══════════════════════════════════════════════ */
header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 14px rgba(0,0,0,.55);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--nav-h);
  gap: 12px;
  position: relative;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
}
.logo-link img { height: 36px; width: auto; }
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 1px;
  white-space: nowrap;
}
.logo-text span { color: #8899bb; font-weight: 300; }

/* ── Desktop nav ── */
nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  align-items: center;
}

nav ul li a {
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  color: #ccd6e8;
  text-decoration: none;
  padding: 6px 11px;
  border-radius: 3px;
  letter-spacing: .5px;
  transition: background .2s, color .2s;
  white-space: nowrap;
  display: block;
}
nav ul li a:hover,
nav ul li a.active { background: var(--mid); color: var(--gold); }

/* Social bar (desktop) */
.social-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}
.social-bar a {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  color: #8899bb;
  text-decoration: none;
  border: 1px solid #2a4070;
  padding: 3px 8px;
  border-radius: 2px;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.social-bar a:hover { border-color: var(--gold); color: var(--gold); }

/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 2;
  flex-shrink: 0;
  border-radius: 4px;
  transition: background .2s;
}
.hamburger:hover { background: var(--mid); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer — drops down vertically from header ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--dark);
  z-index: 250;
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-h));
  padding: 0 0 24px;
  transform: translateY(-110%);
  transition: transform .3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 12px 0;
}

.mobile-menu ul li {
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.mobile-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  color: #ccd6e8;
  text-decoration: none;
  padding: 16px 24px;
  letter-spacing: .5px;
  transition: background .2s, color .2s;
}

.mobile-menu ul li a::after {
  content: '›';
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  background: var(--mid);
  color: var(--gold);
}

.mobile-menu .mobile-social {
  display: flex;
  gap: 12px;
  padding: 20px 24px 0;
}

.mobile-menu .mobile-social a {
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  color: #8899bb;
  text-decoration: none;
  border: 1px solid #2a4070;
  padding: 6px 16px;
  border-radius: 3px;
  transition: border-color .2s, color .2s;
  flex: 1;
  text-align: center;
}
.mobile-menu .mobile-social a:hover { border-color: var(--gold); color: var(--gold); }

/* overlay when menu is open */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 240;
}
.menu-overlay.open { display: block; }

/* ═══════════════════════════════════════════════
   PAGE BANNER
═══════════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #0d2150 50%, #1a3a70 100%);
  padding: 36px 20px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(201,168,76,.04) 40px, rgba(201,168,76,.04) 41px
  );
  pointer-events: none;
}
.page-banner .eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-banner h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.9rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.page-banner h1 span { color: var(--gold); }
.page-banner .sub {
  font-size: .9rem;
  color: #a8bcda;
  margin-top: 8px;
  font-style: italic;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   CONTENT WRAPPER
═══════════════════════════════════════════════ */
.content {
  max-width: 1060px;
  margin: 0 auto;
  padding: 32px 20px 56px;
}

/* ═══════════════════════════════════════════════
   SECTION TITLES
═══════════════════════════════════════════════ */
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  color: var(--dark);
  font-weight: 600;
  letter-spacing: 1px;
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
  max-width: 100%;
}

/* ═══════════════════════════════════════════════
   INTRO / TEXT BLOCKS
═══════════════════════════════════════════════ */
.intro-block {
  background: var(--card-bg);
  border-left: 5px solid var(--gold);
  padding: 18px 20px;
  margin: 20px 0;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.intro-block p { margin-bottom: 12px; }
.intro-block p:last-child { margin-bottom: 0; }
.intro-block strong { color: var(--dark); }
.intro-block ol,
.intro-block ul { padding-left: 20px; margin: 8px 0 12px; }
.intro-block li { margin-bottom: 6px; line-height: 1.65; }

/* ═══════════════════════════════════════════════
   SEPARATOR
═══════════════════════════════════════════════ */
.separator {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--separator), var(--gold), var(--separator), transparent);
  margin: 30px 0;
}

/* ═══════════════════════════════════════════════
   FEATURE CARDS GRID
═══════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: 4px;
  padding: 20px 18px;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
  transition: transform .15s, box-shadow .15s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.1); }
.feature-card .icon { font-size: 1.9rem; margin-bottom: 10px; line-height: 1; }
.feature-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  letter-spacing: .5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.feature-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   ACTION BUTTONS / CTA
═══════════════════════════════════════════════ */
.action-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.action-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--dark);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: .88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
  min-width: 160px;
  text-align: center;
}
.action-btn span.lbl {
  font-size: .7rem; color: #8899bb; letter-spacing: .4px;
  text-transform: none; font-family: 'Source Sans 3', sans-serif;
}
.action-btn:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.action-btn:hover span.lbl { color: var(--dark); }

.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--dark); }

/* ═══════════════════════════════════════════════
   PRICE BADGE
═══════════════════════════════════════════════ */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 18px 24px;
  margin: 20px 0;
  max-width: 100%;
}
.price-badge .amount {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.price-badge .per { font-size: .85rem; color: #8899bb; line-height: 1.5; }
.price-badge .per strong { color: #ccd6e8; display: block; font-family: 'Oswald', sans-serif; font-size: .95rem; }

/* ═══════════════════════════════════════════════
   FAQ ACCORDIONS
═══════════════════════════════════════════════ */
.faq-list { margin: 20px 0; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 4px 4px 0;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  font-family: 'Oswald', sans-serif;
  font-size: .92rem;
  color: var(--dark);
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  letter-spacing: .3px;
  line-height: 1.4;
  gap: 12px;
}
.faq-q::after {
  content: '▼';
  font-size: .65rem;
  color: var(--gold);
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 18px 16px;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid #f0ece0;
}
.faq-item.open .faq-a { display: block; }

/* ═══════════════════════════════════════════════
   RESOURCE CARDS
═══════════════════════════════════════════════ */
.resource-list { margin: 20px 0; }
.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 16px 18px;
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .15s, transform .15s;
}
.resource-item:hover { box-shadow: 0 4px 14px rgba(0,0,0,.1); transform: translateX(3px); color: inherit; }
.resource-item .res-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; width: 40px; text-align: center; }
.resource-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: .3px;
}
.resource-item p { font-size: .86rem; color: var(--text-muted); line-height: 1.55; }

/* ═══════════════════════════════════════════════
   SPECIALS TABLE
═══════════════════════════════════════════════ */
.specials-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  box-shadow: 0 1px 8px rgba(0,0,0,.07);
  margin: 20px 0;
}
.specials-table tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.specials-table tr:last-child { border-bottom: none; }
.specials-table tr:hover td { background: #f5f0e4; }
.specials-table td { padding: 12px 16px; vertical-align: middle; }
.specials-table td:first-child { width: 70px; text-align: center; padding: 12px 10px; }
.specials-table td:first-child img { max-height: 56px; max-width: 64px; margin: 0 auto; object-fit: contain; }
.specials-table td a {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.specials-table td a::after { content: '→'; color: var(--gold); font-size: .85rem; transition: transform .15s; }
.specials-table td a:hover { color: var(--blue-accent); }
.specials-table td a:hover::after { transform: translateX(4px); }

/* ═══════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════ */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: 4px;
  padding: 24px 22px;
  box-shadow: 0 1px 8px rgba(0,0,0,.07);
  max-width: 620px;
  margin: 24px 0;
  width: 100%;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .83rem;
  color: var(--dark);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group label .req { color: var(--gold); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: #fdfcf8;
  transition: border-color .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  background: var(--gold);
  color: var(--dark);
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  width: 100%;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════
   SOCIAL LINKS INLINE
═══════════════════════════════════════════════ */
.social-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.social-inline a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--dark);
  border: 1px solid var(--mid2);
  color: #ccd6e8;
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  letter-spacing: .5px;
  padding: 8px 16px;
  border-radius: 3px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.social-inline a:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════
   MEMBERSHIP TERMS LIST
═══════════════════════════════════════════════ */
.terms-list { list-style: none; margin: 16px 0; }
.terms-list li {
  display: flex;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px dotted var(--border-warm);
  font-size: .9rem;
  line-height: 1.6;
  align-items: flex-start;
}
.terms-list li:last-child { border-bottom: none; }
.terms-list li::before { content: '▸'; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ═══════════════════════════════════════════════
   INFO TABLE
═══════════════════════════════════════════════ */
.info-table-wrap { overflow-x: auto; margin: 20px 0; -webkit-overflow-scrolling: touch; }
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  background: var(--card-bg);
  box-shadow: 0 1px 8px rgba(0,0,0,.08);
  min-width: 480px;
}
.info-table th {
  background: var(--dark);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 13px;
  text-align: left;
  border: 1px solid var(--mid2);
}
.info-table td {
  padding: 11px 13px;
  border: 1px solid var(--border);
  vertical-align: middle;
}
.info-table tr:nth-child(even) td { background: #f9f6ef; }
.info-table tr:hover td { background: #f0ece0; }
.info-table td:first-child {
  font-family: 'Oswald', sans-serif;
  font-size: .83rem;
  color: var(--dark);
  font-weight: 600;
  background: #f5f0e4 !important;
  border-right: 2px solid var(--gold);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE TEAM GRID
═══════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.team-card {
  background: var(--dark);
  border: 1px solid var(--mid2);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 18px 14px;
  text-align: center;
}
.team-card .avatar { font-size: 2.2rem; margin-bottom: 10px; }
.team-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .88rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.team-card p { font-size: .8rem; color: #8899bb; margin-top: 4px; line-height: 1.5; }

/* ═══════════════════════════════════════════════
   NUMBERED STEPS
═══════════════════════════════════════════════ */
.steps { counter-reset: step; margin: 20px 0; }
.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 10px;
  counter-increment: step;
}
.step-item::before {
  content: counter(step);
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  background: var(--dark);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.step-item p { font-size: .9rem; line-height: 1.65; padding-top: 5px; }
.step-item p strong { color: var(--dark); }

/* ═══════════════════════════════════════════════
   STAT BADGES (homepage)
═══════════════════════════════════════════════ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.stat-badge {
  background: var(--dark);
  border: 1px solid var(--mid2);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 14px 12px;
  text-align: center;
}
.stat-badge .num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-badge .lbl {
  font-size: .73rem;
  color: #8899bb;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
  display: block;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 3px solid var(--gold);
  padding: 22px 20px;
  text-align: center;
}
.foot-links {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.foot-links a {
  color: #8899bb;
  text-decoration: none;
  font-size: .8rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .5px;
  padding: 3px 7px;
  transition: color .2s;
}
.foot-links a:hover { color: var(--gold); }
.foot-links .sep { color: #2a4070; line-height: 1.8; }
.copyright { color: #3a4c68; font-size: .78rem; }
.copyright a { color: #5a6e8a; text-decoration: none; }
.copyright a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   TABLET  (max 900px)
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════
   MOBILE  (max 768px) — hamburger activates
═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Show hamburger, hide desktop nav + social bar */
  .hamburger { display: flex; }
  nav { display: none; }
  .social-bar { display: none; }
  .mobile-menu { display: block; }

  /* Nav inner — logo left, burger right */
  .nav-inner {
    padding: 0 16px;
    height: var(--nav-h);
    justify-content: space-between;
    gap: 0;
  }

  /* Content padding tightened */
  .content { padding: 24px 16px 48px; }

  /* Banner */
  .page-banner { padding: 28px 16px 22px; }
  .page-banner .eyebrow { letter-spacing: 2px; }

  /* Cards → single column */
  .feature-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }

  /* Action buttons */
  .action-row { flex-direction: column; }
  .action-btn { width: 100%; min-width: unset; }

  /* CTA button — full width on mobile */
  .cta-btn { display: block; text-align: center; }

  /* Price badge — stack vertically */
  .price-badge { flex-direction: column; text-align: center; padding: 18px 20px; }

  /* Intro block */
  .intro-block { padding: 16px 16px; }

  /* Section title — ensure it wraps */
  .section-title { display: block; }

  /* Form — full width */
  .contact-form { padding: 20px 16px; }
  .form-submit { width: 100%; }

  /* Specials table — let it scroll */
  .specials-table td { padding: 10px 12px; font-size: .88rem; }

  /* Resource items */
  .resource-item { padding: 14px 14px; gap: 12px; }

  /* Social inline — wrap and full-ish width */
  .social-inline { gap: 8px; }
  .social-inline a { flex: 1; justify-content: center; }

  /* Footer */
  .foot-links { gap: 2px; }
}

/* ═══════════════════════════════════════════════
   SMALL MOBILE  (max 480px)
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .price-badge .amount { font-size: 2.2rem; }
  .page-banner h1 { letter-spacing: 1px; }
  .specials-table td:first-child { width: 52px; }
  .specials-table td:first-child img { max-height: 44px; max-width: 50px; }
}
