/* ============================================================
   SMALL NI — SHARED STYLESHEET
   Used by every page across the platform
   ============================================================ */

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

/* ── GLOBAL RESPONSIVE FIX ─────────────────────────────────── */
html, body   { overflow-x: hidden; max-width: 100%; }
img, video   { max-width: 100%; height: auto; }
p, li, td, th, h1, h2, h3, h4, span { overflow-wrap: break-word; word-break: break-word; }
.section-inner, .page-header-inner { max-width: 1100px; margin-left: auto; margin-right: auto; padding-left: 1.25rem; padding-right: 1.25rem; }

:root {
  --forest:   #083D30;
  --emerald:  #1A8C65;
  --mint:     #4DB896;
  --pale:     #E8F5EF;
  --cream:    #FAF8F4;
  --parch:    #F0EDE6;
  --black:    #141412;
  --charcoal: #2E2E2B;
  --muted:    #6D6D67;
  --light:    #AEADA6;
  --border:   rgba(8,61,48,0.10);
  --gold:     #B8943A;
  --red:      #C0392B;
  --amber:    #D4913A;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --radius:   12px;
  --shadow:   0 4px 24px rgba(8,61,48,0.08);
}

html  { scroll-behavior: smooth; }
body  { font-family: var(--sans); background: var(--cream); color: var(--black); line-height: 1.6; min-height: 100vh; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.serif  { font-family: var(--serif); }
.label  { font-size: 10px; font-weight: 700; color: var(--emerald); letter-spacing: 2px; font-family: var(--serif); }
.title  { font-family: var(--serif); font-size: 26px; font-weight: 900; color: var(--black); letter-spacing: -0.5px; }

/* ── NAVIGATION ────────────────────────────────────────────── */
/* ── NAV ────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,248,244,0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.25rem;
  display: flex; align-items: center;
  height: 60px; gap: 4px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 8px; text-decoration:none; flex-shrink: 0; margin-right: 8px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .logo-name { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--black); line-height: 1.1; }
.logo-text .logo-sub  { font-family: var(--serif); font-size: 8px; color: var(--emerald); letter-spacing: 2px; white-space: nowrap; }

/* Nav links — middle section, shrinks if needed */
.nav-links { display: flex; align-items: center; flex: 1; min-width: 0; overflow: hidden; gap: 2px; }
.nav-link {
  font-family: var(--serif); font-size: 12px; color: var(--muted);
  padding: 5px 8px; border-radius: 7px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: all 0.15s;
}
.nav-link:hover  { color: var(--forest); background: var(--pale); }
.nav-link.active { color: var(--forest); background: var(--pale); font-weight: 600; }

/* Right section — never shrinks */
.nav-right {
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0; margin-left: 6px;
}

/* Basket icon */
.nav-basket-icon {
  position: relative; display: inline-flex; align-items: center;
  justify-content: center; width: 32px; height: 32px;
  border-radius: 7px; border: 1.5px solid var(--border);
  color: var(--forest); text-decoration: none; font-size: 14px; flex-shrink: 0;
}

/* Buttons */
.nav-btn-outline {
  background: none; border: 1.5px solid var(--border); color: var(--forest);
  padding: 6px 12px; border-radius: 8px; font-family: var(--serif);
  font-size: 12px; cursor: pointer; white-space: nowrap; flex-shrink: 0;
  text-decoration: none; display: inline-flex; align-items: center;
}
.nav-btn-dash {
  background: var(--pale); border: 1.5px solid var(--emerald);
  color: var(--forest); padding: 6px 12px; border-radius: 8px;
  font-family: var(--serif); font-size: 12px; font-weight: 700;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  text-decoration: none; display: inline-flex; align-items: center;
}
.nav-cta {
  background: var(--forest); color: var(--mint);
  padding: 6px 14px; border-radius: 8px; border: none;
  font-family: var(--serif); font-size: 12px; font-weight: 600;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  text-decoration: none; display: inline-flex; align-items: center;
}
.nav-cta:hover { opacity: 0.9; }

/* Account dropdown */
.nav-account-wrap { position: relative; flex-shrink: 0; }
#nav-account-btn {
  background: var(--forest); color: var(--mint); border: none;
  padding: 6px 12px; border-radius: 8px; font-family: var(--serif);
  font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap;
}

/* Hamburger — hidden on desktop */
.mobile-menu-btn {
  display: none; background: none; border: 1.5px solid var(--border);
  border-radius: 8px; padding: 6px 10px; cursor: pointer;
  font-size: 18px; line-height: 1; color: var(--forest); flex-shrink: 0;
}

/* ── MOBILE (under 768px) ─────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links       { display: none; }
  .nav-hide-mob    { display: none !important; }
  .mobile-menu-btn { display: flex; align-items: center; }
  .nav-inner       { padding: 0 1rem; gap: 8px; }
  .logo-text       { display: none; }
  .nav-right       { gap: 8px; }
}
}
#nav-dashboard-btn {
  background: var(--pale); border: 1.5px solid var(--emerald); color: var(--forest);
  padding: 8px 16px; border-radius: 8px; font-family: var(--serif);
  font-size: 13px; cursor: pointer; font-weight: 700;
}
.account-dropdown {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: white; border: 1px solid var(--border); border-radius: 12px;
  padding: 8px; min-width: 200px; box-shadow: var(--shadow); z-index: 300;
  display: none;
}
.account-dropdown.open { display: block; }
.dropdown-email { padding: 8px 10px; font-size: 11px; color: var(--muted); border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.dropdown-item {
  width: 100%; text-align: left; padding: 9px 10px; border: none; background: none;
  font-family: var(--serif); font-size: 13px; cursor: pointer; border-radius: 8px;
  display: block; transition: background 0.12s;
}
.dropdown-item:hover { background: var(--pale); }
.dropdown-item.danger { color: var(--red); }
.dropdown-item.danger:hover { background: #FEE2E2; }

/* ── AUTH MODAL ─────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 500; display: flex; align-items: center;
  justify-content: center; padding: 1rem;
}
.modal-box {
  background: white; border-radius: 16px; padding: 2rem;
  max-width: 420px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  max-height: 90vh; overflow-y: auto;
}
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.modal-title { font-family: var(--serif); font-size: 20px; font-weight: 900; color: var(--black); }
.modal-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--muted); line-height: 1; }
.modal-error { background: #FEE2E2; color: var(--red); padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 14px; display: none; }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.field-label { font-size: 10px; font-weight: 700; color: var(--forest); font-family: var(--serif); letter-spacing: 0.8px; display: block; margin-bottom: 5px; }
.field-input {
  width: 100%; padding: 11px 14px; border-radius: 9px;
  border: 1.5px solid var(--border); font-size: 14px;
  font-family: var(--sans); outline: none; transition: border 0.15s;
  background: white; color: var(--black);
}
.field-input:focus { border-color: var(--emerald); }
.modal-btn {
  width: 100%; padding: 12px; background: var(--forest);
  color: var(--mint); border: none; border-radius: 10px;
  font-family: var(--serif); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: opacity 0.15s; margin-top: 4px;
}
.modal-btn:hover { opacity: 0.9; }
.modal-btn:disabled { opacity: 0.5; cursor: wait; }
.modal-switch { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; }
.modal-switch a { color: var(--emerald); cursor: pointer; font-weight: 600; }

/* ── TOAST ──────────────────────────────────────────────────── */
#toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast {
  background: var(--forest); color: white; padding: 11px 18px; border-radius: 10px;
  font-family: var(--sans); font-size: 13px; display: flex; align-items: center;
  gap: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); max-width: 320px;
  animation: toastIn 0.3s ease;
}
.toast.error { background: var(--red); }
.toast.warn  { background: var(--amber); }
@keyframes toastIn { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }

/* ── SPINNER ────────────────────────────────────────────────── */
.spinner { width: 32px; height: 32px; border: 2.5px solid var(--border); border-top-color: var(--emerald); border-radius: 50%; animation: spin 0.7s linear infinite; }
.spinner.sm { width: 18px; height: 18px; border-width: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading { display: flex; justify-content: center; align-items: center; padding: 3rem; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 22px; border-radius: 9px; font-family: var(--serif); font-size: 14px; font-weight: 700; cursor: pointer; border: none; transition: opacity 0.15s; }
.btn:hover { opacity: 0.88; }
.btn-primary   { background: var(--forest); color: var(--mint); }
.btn-secondary { background: none; color: var(--forest); border: 1.5px solid var(--border); }
.btn-mint      { background: var(--mint); color: var(--forest); }
.btn-sm        { padding: 7px 14px; font-size: 12px; }
.btn-danger    { background: var(--red); color: white; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card { background: white; border: 1px solid var(--border); border-radius: var(--radius); }
.card-pad { padding: 1.5rem; }

/* ── SECTION ────────────────────────────────────────────────── */
.section { padding: 4rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; flex-wrap: wrap; gap: 12px; }


/* ── BUSINESS CARDS ─────────────────────────────────────────── */
.biz-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: 14px; }
.biz-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all 0.2s; }
.biz-card:hover { border-color: var(--emerald); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(8,61,48,0.10); }
.biz-thumb { height: 120px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; font-size: 46px; }
.biz-thumb[data-fallback="1"]::after { content: attr(data-emoji); font-size: 46px; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.biz-body { padding: 14px 16px 16px; }
.biz-name { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.biz-desc { font-size: 12px; color: var(--muted); margin-bottom: 8px; line-height: 1.4; }
.biz-loc  { font-size: 12px; color: var(--emerald); }
.biz-foot { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); font-size: 11px; color: var(--light); }
.biz-new-badge { position: absolute; top: 10px; left: 10px; background: var(--forest); color: white; font-size: 9px; padding: 3px 9px; border-radius: 8px; font-family: var(--serif); font-weight: 700; letter-spacing: 0.8px; }
.tier-badge { position: absolute; top: 10px; right: 10px; font-size: 9px; padding: 3px 9px; border-radius: 8px; font-family: var(--serif); font-weight: 700; }
.tier-starter { background: rgba(174,173,166,0.2); color: var(--muted); }
.tier-growth  { background: var(--pale); color: var(--forest); }
.tier-pro     { background: rgba(183,148,58,0.15); color: var(--gold); }

/* ── EVENT CARDS ────────────────────────────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.event-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.event-header { background: var(--forest); padding: 1.25rem; display: flex; gap: 14px; align-items: center; }
.event-date-box { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 10px 14px; text-align: center; min-width: 52px; flex-shrink: 0; }
.event-month { font-family: var(--serif); font-size: 9px; font-weight: 700; color: var(--mint); letter-spacing: 1px; }
.event-day   { font-family: var(--serif); font-size: 26px; font-weight: 900; color: white; line-height: 1; }
.event-title { font-family: var(--serif); font-size: 15px; font-weight: 700; color: white; line-height: 1.3; }
.event-body  { padding: 1.25rem; }
.event-venue { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.event-foot  { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid var(--border); }
.going-btn { font-size: 11px; font-family: var(--serif); font-weight: 700; background: none; border: 1px solid var(--border); color: var(--emerald); padding: 5px 12px; border-radius: 7px; cursor: pointer; transition: all 0.15s; }
.going-btn.going { background: var(--pale); border-color: var(--emerald); color: var(--forest); }

/* ── TAG PILLS ──────────────────────────────────────────────── */
.tag-pill { font-size: 11px; background: var(--pale); color: var(--forest); padding: 4px 12px; border-radius: 10px; font-family: var(--serif); font-weight: 600; }

/* ── CATEGORY FILTER STRIP ──────────────────────────────────── */
.cat-strip { background: var(--cream); border-bottom: 1px solid var(--border); padding: 1.25rem 2rem; display: flex; gap: 8px; flex-wrap: wrap; max-width: 100%; overflow-x: auto; }
.cat-btn { padding: 7px 14px; border-radius: 20px; border: 1.5px solid var(--border); background: white; color: var(--muted); font-family: var(--serif); font-size: 13px; cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.cat-btn:hover, .cat-btn.active { border-color: var(--emerald); background: var(--pale); color: var(--forest); font-weight: 600; }

/* ── TICKER ─────────────────────────────────────────────────── */
.ticker { background: var(--forest); padding: 9px 2rem; display: flex; align-items: center; gap: 16px; overflow: hidden; }
.ticker-badge { background: var(--mint); color: var(--forest); font-size: 10px; font-weight: 700; font-family: var(--serif); letter-spacing: 1.5px; padding: 3px 12px; border-radius: 12px; white-space: nowrap; flex-shrink: 0; }
.ticker-text { font-size: 13px; color: rgba(255,255,255,0.8); font-family: var(--serif); transition: opacity 0.3s; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero { background: var(--forest); position: relative; overflow: hidden; padding: 4.5rem 2rem 5.5rem; }
.hero::before { content: 'S'; position: absolute; right: -80px; top: -160px; font-family: var(--serif); font-size: 700px; font-weight: 900; color: rgba(26,140,101,0.07); line-height: 1; pointer-events: none; user-select: none; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(77,184,150,0.07) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(77,184,150,0.3); border-radius: 20px; padding: 5px 16px; margin-bottom: 1.25rem; }
.hero-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-pill span { font-size: 12px; color: var(--mint); font-family: var(--serif); letter-spacing: 1.5px; }
.hero h1 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; color: white; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 1rem; }
.hero h1 span { color: var(--mint); }
.hero p { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 520px; margin-bottom: 1.75rem; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-stat-n { font-family: var(--serif); font-size: 30px; font-weight: 900; color: var(--mint); line-height: 1; }
.hero-stat-l { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ── SEARCH ─────────────────────────────────────────────────── */
.search-bar { display: flex; gap: 10px; max-width: 560px; flex-wrap: wrap; }
.search-bar input { flex: 1; min-width: 220px; padding: 14px 20px; border-radius: 10px; border: none; font-size: 15px; font-family: var(--sans); outline: none; background: white; color: var(--black); }
.search-bar button { background: var(--mint); color: var(--forest); border: none; padding: 14px 26px; border-radius: 10px; font-family: var(--serif); font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; }

/* ── NETFLIX ROWS ───────────────────────────────────────────── */
.category-row { padding: 3rem 0; border-bottom: 1px solid var(--border); }
.row-header { display: flex; justify-content: space-between; align-items: baseline; padding: 0 2rem; margin-bottom: 1.25rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.row-title { font-family: var(--serif); font-size: 20px; font-weight: 900; color: var(--black); letter-spacing: -0.3px; }
.row-scroll { display: flex; gap: 14px; overflow-x: auto; padding: 4px 2rem 16px; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
.row-scroll::-webkit-scrollbar { height: 3px; }
.row-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.row-card { min-width: 185px; max-width: 185px; background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
.row-card:hover { border-color: var(--emerald); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(8,61,48,0.10); }
.row-card-thumb { height: 110px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; font-size: 36px; }
.row-card-body { padding: 12px 14px 14px; }
.row-card-name { font-family: var(--serif); font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row-card-sub  { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.row-card-loc  { font-size: 11px; color: var(--emerald); }

/* ── LAUNCH STRIP ───────────────────────────────────────────── */
.launches-section { background: var(--forest); padding: 3rem 0; }
.launch-card { min-width: 175px; max-width: 175px; background: rgba(255,255,255,0.06); border: 1px solid rgba(77,184,150,0.15); border-radius: 12px; overflow: hidden; cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
.launch-card:hover { background: rgba(255,255,255,0.1); border-color: var(--mint); transform: translateY(-3px); }
.launch-thumb { height: 100px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; font-size: 36px; }
.launch-body { padding: 10px 12px 12px; }
.launch-name { font-family: var(--serif); font-size: 13px; font-weight: 700; color: white; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.launch-cat  { font-size: 10px; color: var(--mint); margin-bottom: 4px; }
.launch-loc  { font-size: 11px; color: rgba(255,255,255,0.4); }
.new-flash { position: absolute; top: 8px; left: 8px; background: var(--mint); color: var(--forest); font-size: 8px; font-weight: 700; font-family: var(--serif); padding: 2px 8px; border-radius: 8px; letter-spacing: 1px; }

/* ── EDITORIAL ──────────────────────────────────────────────── */
.editorial-section { background: var(--parch); padding: 4rem 2rem; border-top: 1px solid var(--border); }
.editorial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.editorial-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); cursor: pointer; transition: all 0.2s; }
.editorial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(8,61,48,0.12); border-color: var(--emerald); }
.editorial-img { height: 220px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; font-size: 80px; }
.editorial-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,61,48,0.7) 0%, transparent 50%); }
.editorial-badges { position: absolute; top: 16px; left: 16px; display: flex; gap: 6px; z-index: 2; }
.editorial-body { padding: 1.5rem; }
.editorial-cat  { font-size: 10px; color: var(--emerald); letter-spacing: 2px; font-family: var(--serif); font-weight: 700; margin-bottom: 6px; }
.editorial-name { font-family: var(--serif); font-size: 20px; font-weight: 900; color: var(--black); margin-bottom: 8px; }
.editorial-story { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.editorial-foot { display: flex; justify-content: space-between; align-items: center; }

/* ── STATS STRIP ────────────────────────────────────────────── */
.stats-strip { background: var(--forest); padding: 4rem 2rem; }
.stats-grid  { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.stat-item   { padding: 1.5rem 2rem; border-right: 1px solid rgba(255,255,255,0.07); text-align: center; }
.stat-n { font-family: var(--serif); font-size: 40px; font-weight: 900; color: white; line-height: 1; margin-bottom: 8px; }
.stat-l { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.testi-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text  { font-size: 15px; color: var(--charcoal); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-name  { font-family: var(--serif); font-size: 13px; font-weight: 700; color: var(--forest); }

/* ── PRICING ────────────────────────────────────────────────── */
.pricing-wrap  { background: var(--cream); padding: 5rem 2rem; border-top: 1px solid var(--border); }
.pricing-grid  { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.plan-card     { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 2rem; position: relative; }
.plan-card.featured { border: 2px solid var(--emerald); }
.plan-popular  { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--emerald); color: white; font-size: 10px; padding: 4px 16px; border-radius: 10px; font-family: var(--serif); font-weight: 700; letter-spacing: 1.5px; white-space: nowrap; }
.plan-name     { font-family: var(--serif); font-size: 12px; font-weight: 700; color: var(--emerald); letter-spacing: 1.5px; margin-bottom: 6px; }
.plan-price    { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.plan-price-n  { font-family: var(--serif); font-size: 42px; font-weight: 900; color: var(--black); line-height: 1; }
.plan-price-m  { font-size: 14px; color: var(--muted); }
.plan-desc     { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.plan-features { border-top: 1px solid var(--border); padding-top: 20px; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.plan-feat     { display: flex; gap: 10px; align-items: flex-start; }
.plan-check    { color: var(--emerald); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.plan-feat-text { font-size: 13px; color: var(--charcoal); line-height: 1.4; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--black); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-nl { background: rgba(77,184,150,0.08); border: 1px solid rgba(77,184,150,0.15); border-radius: 16px; padding: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 3rem; }
.footer-nl-form { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-nl-input { padding: 10px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.07); color: white; font-size: 14px; font-family: var(--sans); outline: none; width: 220px; }
.footer-nl-btn   { background: var(--mint); color: var(--forest); border: none; padding: 10px 20px; border-radius: 8px; font-family: var(--serif); font-size: 13px; font-weight: 700; cursor: pointer; }
.footer-links { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-col-title { font-family: var(--serif); font-size: 10px; font-weight: 700; color: var(--mint); letter-spacing: 2px; margin-bottom: 14px; }
.footer-link { font-size: 13px; color: rgba(255,255,255,0.38); margin-bottom: 9px; cursor: pointer; display: block; transition: color 0.15s; }
.footer-link:hover { color: rgba(255,255,255,0.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ── PAGE HEADER ────────────────────────────────────────────── */
.page-header { background: var(--forest); padding: 3rem 2rem; }
.page-header-inner { max-width: 1200px; margin: 0 auto; }
.page-header h1 { font-family: var(--serif); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: white; letter-spacing: -0.5px; margin-bottom: 8px; }
.page-header p  { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 480px; }

/* ── FEATURED BUSINESSES GRID ── */
.featured-card { text-decoration:none;display:flex;flex-direction:column;background:white;border:1px solid var(--border);border-radius:16px;overflow:hidden;transition:all 0.2s;box-shadow:0 2px 12px rgba(8,61,48,0.06);color:inherit }
.featured-card:hover { transform:translateY(-4px);box-shadow:0 8px 28px rgba(8,61,48,0.12);border-color:var(--emerald) }

/* ── TABLET ─────────────────────────────────────────────────── */
@media (max-width: 1200px) and (min-width: 769px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nav-link { font-size: 11px; padding: 5px 6px; }
  .logo-text .logo-sub { display: none; }

  /* General layout */
  .section { padding: 2.5rem 1.5rem; }
  .hero { padding: 4rem 1.5rem 5rem; }

  /* Grids — 2 col on tablet instead of 3-4 */
  .biz-grid-full { grid-template-columns: 1fr 1fr 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr 1fr; }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }

  /* Business page */
  .about-grid { grid-template-columns: 1fr 1fr; }

  /* Carousel */
  .carousel-grid { grid-template-columns: 1fr 1fr !important; }

  /* Footer */
  .footer-links { grid-template-columns: repeat(3, 1fr); }

  /* Apply */
  .plan-pick { grid-template-columns: 1fr 1fr 1fr; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr 1.2fr; gap: 2rem; }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .hero { padding: 3rem 1.25rem 4rem; }
  .section { padding: 2.5rem 1.5rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .editorial-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .row-header { padding: 0 1.5rem; }
  .row-scroll { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.mobile-nav-drawer {
  display: none;
  position: fixed; inset: 0; z-index: 400;
}
.mobile-nav-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
}
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: white; padding: 0;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.mobile-nav-header {
  background: var(--forest); padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav-close {
  background: none; border: none; color: white;
  font-size: 24px; cursor: pointer; padding: 0; line-height: 1;
}
.mobile-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 1.5rem; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--black);
  font-family: var(--serif); font-size: 15px; font-weight: 600;
  transition: background 0.12s;
}
.mobile-nav-link:hover { background: var(--pale); color: var(--forest); }
.mobile-nav-link.cta {
  background: var(--forest); color: var(--mint);
  margin: 1rem 1.5rem; border-radius: 10px; border: none;
  justify-content: center; font-weight: 700;
}
.mobile-nav-link.cta:hover { opacity: 0.9; background: var(--forest); }

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; }

  /* Hero */
  .hero { padding: 3rem 1.25rem 4rem; }
  .hero h1 { font-size: 2rem; letter-spacing: -1px; }
  .hero p { font-size: 15px; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-n { font-size: 26px; }
  .search-bar { flex-direction: column; }
  .search-bar input { min-width: unset; width: 100%; }
  .search-bar button { width: 100%; }

  /* Sections */
  .section { padding: 2.5rem 1.25rem; }
  .section-head { flex-direction: column; gap: 8px; }

  /* Editorial */
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card { margin: 0; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 1rem; }
  .stat-n { font-size: 28px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-card { margin: 0; }

  /* Carousel */
  .biz-inner { padding: 0 1.25rem; }

  /* Footer */
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-nl { flex-direction: column; }
  .footer-nl-form { width: 100%; }
  .footer-nl-input { width: 100%; min-width: unset; flex: 1; }
  .footer-bottom { flex-direction: column; gap: 4px; }

  /* Row cards */
  .row-header { padding: 0 1.25rem; }
  .row-scroll { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* Events grid */
  .events-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* Business page */
  .about-grid { grid-template-columns: 1fr; }
  .biz-header { flex-direction: column; }
  .biz-actions { width: 100%; }
  .biz-tabs { gap: 0; }
  .biz-tab { padding: 10px 14px; font-size: 13px; }

  /* Shop & businesses grid */
  .biz-grid-full { grid-template-columns: 1fr 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }

  /* Apply page */
  .form-grid { grid-template-columns: 1fr; }
  .form-row.full { grid-column: span 1; }
  .plan-pick { grid-template-columns: 1fr; }
  .apply-steps { gap: 0; }

  /* Basket */
  .basket-layout { grid-template-columns: 1fr; }
  .basket-item { grid-template-columns: 64px 1fr; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr; padding: 1.5rem; }

  /* About splits */
  .split { grid-template-columns: 1fr; gap: 2rem; }

  /* Category strip */
  .cat-strip { padding: 1rem 1.25rem; }
}

@media (max-width: 480px) {
  .biz-grid-full { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 1.25rem; }
}
