/* ============================================================
   LOCAL BUZZ CLUB — Port Washington Edition
   Color palette: Navy, Blue, White, Light Gray, Yellow
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --navy:      #0a1f44;
  --blue:      #1d4ed8;
  --blue-mid:  #2563eb;
  --sky:       #dbeafe;
  --yellow:    #f5c518;
  --yellow-lt: #fef9c3;
  --white:     #ffffff;
  --gray-lt:   #f3f4f6;
  --gray-mid:  #d1d5db;
  --gray-dk:   #6b7280;
  --text:      #111827;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:  8px;
  --shadow:  0 4px 20px rgba(10,31,68,.12);
  --shadow-hover: 0 8px 32px rgba(10,31,68,.2);

  /* print-safe bleed/safe-zone margins */
  --bleed:   48px;
  --safe:    32px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p  { max-width: 68ch; }

/* ── Layout helpers ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--bleed);
}
.section { padding-block: 72px; }
.section--gray { background: var(--gray-lt); }
.section--navy { background: var(--navy); color: var(--white); }
.section--sky  { background: var(--sky); }

/* ── NAV ── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand .bee-badge {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(245,197,24,.35);
}
.nav-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-brand .brand-sub {
  font-size: .7rem;
  color: var(--yellow);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.12);
  color: var(--yellow);
}
.nav-cta {
  background: var(--yellow) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: #e6b800 !important; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #132d5e 60%, #1d4ed8 100%);
  color: var(--white);
  padding-block: 90px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(245,197,24,.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(29,78,216,.3) 0%, transparent 40%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.18);
  border: 1px solid rgba(245,197,24,.35);
  color: var(--yellow);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 55ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CENTER STRIP ── */
.center-strip {
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  padding-block: 20px;
}
.center-strip p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  max-width: 100%;
  margin-inline: auto;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.center-strip a {
  display: inline-block;
  margin-top: 8px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .2s;
  border: 2px solid transparent;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
}
.btn-primary:hover { background: #e6b800; }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: #132d5e; }

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-body { padding: 28px; }
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--sky);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; color: var(--navy); }
.card p  { font-size: .9rem; color: var(--gray-dk); max-width: 100%; }

/* ── OFFER CARDS ── */
.offer-card {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: 12px;
  padding: 28px;
  transition: border-color .2s, box-shadow .2s;
}
.offer-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.offer-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 40px; }
.section-header .eyebrow {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 8px;
}
.section-header h2 { color: var(--navy); }
.section-header p  { color: var(--gray-dk); margin-top: 10px; }

/* ── PRICING TABLE ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29,78,216,.1);
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
  margin-block: 12px;
}
.pricing-card .price span { font-size: 1rem; }
.pricing-card ul { list-style: none; text-align: left; margin-top: 16px; }
.pricing-card ul li {
  font-size: .88rem;
  color: var(--gray-dk);
  padding-block: 5px;
  padding-left: 20px;
  position: relative;
}
.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ── FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ── CONTACT INFO ── */
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--sky);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-list strong { display: block; font-weight: 600; color: var(--navy); }
.contact-info-list span  { font-size: .9rem; color: var(--gray-dk); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-block: 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand p { font-size: .88rem; max-width: 30ch; }
.footer-col h4 {
  color: var(--yellow);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
}
.footer-bottom .bee { font-size: 18px; }

/* ── DIVIDER ── */
.divider { width: 60px; height: 4px; background: var(--yellow); border-radius: 2px; margin-block: 16px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  :root { --bleed: 24px; }
  .nav-links { display: none; flex-direction: column; gap: 4px; }
  .nav-links.open { display: flex; }
  .site-nav .container { flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-links {
    width: 100%;
    padding-bottom: 12px;
  }
  .nav-links a { padding: 10px 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding-block: 60px 52px; }
  .cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
