/* ============================================================
   KINGSMEN GAS STATIONS — Global Stylesheet
   Brand: Deep Navy (#0A1628), Gold (#C9A84C), Charcoal (#2C2C2C), White (#FFFFFF)
   Fonts: Barlow Condensed (headings), Inter (body)
   ============================================================ */

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

:root {
  --navy:      #0A1628;
  --navy-mid:  #122040;
  --gold:      #C9A84C;
  --gold-dark: #A8873A;
  --charcoal:  #2C2C2C;
  --mid-gray:  #6B7280;
  --light-bg:  #F5F5F3;
  --white:     #FFFFFF;
  --danger:    #C0392B;

  --font-display: 'Barlow Condensed', Impact, Arial Narrow, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.10);
  --shadow-md:  0 4px 16px rgba(0,0,0,.14);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.18);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section.bg-light { background: var(--light-bg); }
.section.bg-navy  { background: var(--navy); }
.text-white { color: var(--white); }
.center-text { text-align: center; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 12px;
}
.section-header p { color: var(--mid-gray); font-size: 1.05rem; }
.bg-navy .section-header h2 { color: var(--white); }
.bg-navy .section-header p  { color: rgba(255,255,255,.65); }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.eyebrow-gold { color: var(--gold); }

.link-arrow {
  font-weight: 600;
  font-size: .875rem;
  color: var(--gold);
  letter-spacing: .02em;
  transition: gap var(--transition);
}
.link-arrow:hover { text-decoration: underline; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--gold);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold); }
.main-nav a.btn { color: var(--navy); padding: 8px 20px; }
.main-nav a.btn:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ---------- PAGE HERO (INNER PAGES) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .hero-eyebrow { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 32px;
}

/* Page hero background variants */
.page-hero--locations { background: linear-gradient(120deg, var(--navy) 55%, #1a3060 100%); }
.page-hero--rewards   { background: linear-gradient(120deg, #0a1628 0%, #1c2e50 100%); }
.page-hero--food      { background: linear-gradient(120deg, var(--navy) 40%, #1a1200 100%); }
.page-hero--careers   { background: linear-gradient(120deg, var(--navy) 50%, #0d2240 100%); }
.page-hero--about     { background: linear-gradient(135deg, var(--navy) 30%, #1c2e50 100%); }
.page-hero--community { background: linear-gradient(120deg, var(--navy) 45%, #12261a 100%); }
.page-hero--app       { background: var(--navy); }
.page-hero--franchise { background: linear-gradient(120deg, #0a1628 30%, #1c1800 100%); }
.page-hero--contact   { background: var(--navy); padding: 80px 0 60px; }

/* ---------- TWO-COLUMN LAYOUT ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.col-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.col-text p { color: var(--mid-gray); margin-bottom: 16px; line-height: 1.7; }
.col-text .btn { margin-top: 8px; }
.col-img {
  min-height: 360px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--light-bg);
  box-shadow: var(--shadow-md);
}

/* ---------- REWARDS LIST ---------- */
.rewards-list { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.rewards-list li { font-weight: 500; display: flex; align-items: center; gap: 8px; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding-bottom: 40px;
}
.footer-brand .logo-text { color: var(--gold); font-size: 1.4rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); margin-top: 6px; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
  color: rgba(255,255,255,.6);
  transition: border-color var(--transition), color var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

.footer-nav { display: flex; gap: 60px; }
.fn-col h5 {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.fn-col ul { display: flex; flex-direction: column; gap: 8px; }
.fn-col a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.fn-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- AMENITIES GRID ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  text-align: center;
}
.amenity-item {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 20px 12px;
  transition: box-shadow var(--transition);
}
.amenity-item:hover { box-shadow: var(--shadow-md); }
.amenity-item i { font-size: 1.8rem; display: block; margin-bottom: 8px; color: var(--navy); }
.amenity-item p { font-size: .8rem; font-weight: 500; color: var(--charcoal); }

/* ---------- STORE LOCATOR ---------- */
.locator-search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.locator-search-bar input {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
}
.locator-search-bar input:focus { border-color: var(--gold); }

.locator-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  min-height: 500px;
}
.locator-list { display: flex; flex-direction: column; gap: 12px; overflow-y: auto; }
.store-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.store-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.store-card h4 { font-weight: 600; margin-bottom: 4px; }
.store-card p { font-size: .875rem; color: var(--mid-gray); }
.store-card .sc-meta { display: flex; gap: 16px; margin-top: 10px; font-size: .8rem; color: var(--gold); font-weight: 600; }

.locator-map-area .map-placeholder {
  background: var(--light-bg);
  border: 2px dashed #d1d5db;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
  text-align: center;
  color: var(--mid-gray);
  gap: 8px;
}
.map-sub { font-size: .85rem; opacity: .7; }

/* ---------- COMING SOON ---------- */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.cs-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 24px;
}
.cs-card h4 { font-weight: 700; font-size: 1.1rem; margin-bottom: 4px; }
.cs-card p { color: var(--mid-gray); font-size: .875rem; margin-bottom: 14px; }
.cs-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ---------- REWARDS TIERS ---------- */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.tier-card {
  border: 2px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}
.tier-card.tier-gold { border-color: var(--gold); }
.tier-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--white);
}
.tier-card.tier-gold .tier-label { color: var(--gold); }
.tier-pts { font-size: .875rem; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.tier-card ul { text-align: left; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.tier-card li { font-size: .875rem; }
.tier-footer { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ---------- FUEL PRICES ---------- */
.fuel-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.fuel-price-card {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition);
}
.fuel-price-card:hover { border-color: var(--gold); }
.fp-grade { font-size: .85rem; font-weight: 600; color: var(--mid-gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.fp-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.fp-note { font-size: .8rem; color: var(--mid-gray); }
.fp-diesel { border-color: var(--navy); }
.price-disclaimer { font-size: .8rem; color: var(--mid-gray); text-align: center; }

/* ---------- STEPS GRID ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.step-card p { font-size: .9rem; color: var(--mid-gray); }

/* ---------- MENU TABS ---------- */
.menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.menu-tab {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.menu-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.menu-tab:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

.menu-section { display: none; }
.menu-section.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.menu-item {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.menu-item:hover { box-shadow: var(--shadow-md); }
.mi-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #f0ebe0;
}
.mi-body { padding: 16px; }
.mi-body h4 { font-weight: 700; margin-bottom: 6px; }
.mi-body p { font-size: .875rem; color: var(--mid-gray); margin-bottom: 12px; }
.mi-footer { display: flex; justify-content: space-between; align-items: center; }
.mi-price { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.mi-cal { font-size: .8rem; color: var(--mid-gray); }

/* DRINKS LIST */
.drinks-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.drinks-cat h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; }
.drinks-list li { display: flex; justify-content: space-between; border-bottom: 1px solid #e5e7eb; padding: 10px 0; font-size: .9rem; }

/* SNACK CATS */
.snacks-intro { margin-bottom: 28px; color: var(--mid-gray); }
.snack-cats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
.snack-cat { text-align: center; padding: 20px 12px; border: 1px solid #e5e7eb; border-radius: var(--radius-md); }
.sc-icon { font-size: 2rem; margin-bottom: 8px; }
.snack-cat h4 { font-size: .85rem; font-weight: 600; }

/* ---------- BENEFITS GRID ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); }
.benefit-icon { font-size: 2.2rem; margin-bottom: 12px; }
.benefit-card h4 { font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: .875rem; color: var(--mid-gray); }

/* ---------- JOBS ---------- */
.jobs-filter { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.job-filter-btn {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 2px solid #d1d5db;
  border-radius: 20px;
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.job-filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.jobs-list { display: flex; flex-direction: column; gap: 12px; }
.job-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: box-shadow var(--transition);
}
.job-card:hover { box-shadow: var(--shadow-md); }
.job-card[style*="display: none"] { display: none !important; }
.job-info { flex: 1; }
.job-info h4 { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.job-location { font-size: .875rem; color: var(--mid-gray); display: block; }
.job-type { font-size: .8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.job-pay { font-weight: 700; color: var(--navy); font-size: .95rem; min-width: 140px; text-align: right; }

/* ---------- CULTURE QUOTE ---------- */
.culture-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto 16px;
  color: var(--white);
  line-height: 1.4;
}
.quote-attr { color: var(--gold); font-size: .875rem; }

/* ---------- STATS ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-card { padding: 20px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: .875rem; color: rgba(255,255,255,.6); }
.section:not(.bg-navy) .stat-label { color: var(--mid-gray); }
.section:not(.bg-navy) .stat-num { color: var(--navy); }

/* ---------- TEAM GRID ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.team-card { text-align: center; }
.team-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background-size: cover;
  background-position: center;
  background-color: var(--light-bg);
  border: 3px solid var(--gold);
}
.team-card h4 { font-weight: 700; margin-bottom: 4px; }
.team-card span { font-size: .85rem; color: var(--gold); font-weight: 600; display: block; margin-bottom: 8px; }
.team-card p { font-size: .875rem; color: var(--mid-gray); }

/* ---------- CTA GROUP ---------- */
.cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ---------- VALUES GRID ---------- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.value-card { border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; }
.val-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h4 { font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.value-card p { font-size: .875rem; color: rgba(255,255,255,.65); }

/* ---------- STORY ---------- */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.story-text p { color: var(--mid-gray); margin-bottom: 16px; line-height: 1.75; }
.story-img {
  min-height: 400px;
  border-radius: var(--radius-lg);
  background: var(--light-bg);
  background-size: cover;
  background-position: center;
}

/* ---------- INITIATIVES ---------- */
.initiatives-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.init-card { border: 1px solid #e5e7eb; border-radius: var(--radius-lg); overflow: hidden; }
.init-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--light-bg);
}
.init-body { padding: 24px; }
.init-body h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.init-body p { font-size: .9rem; color: var(--mid-gray); margin-bottom: 14px; line-height: 1.65; }

/* ---------- APP PAGE ---------- */
.app-hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center; }
.app-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
}
.app-hero-text p { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 28px; }
.app-rating { margin-top: 20px; font-size: .875rem; color: rgba(255,255,255,.5); }

.app-store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition);
}
.store-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.store-btn--lg { padding: 16px 32px; font-size: 1.05rem; }

/* APP MOCKUP */
.app-mockup-wrap { display: flex; justify-content: center; }
.app-mockup {
  width: 240px;
  background: #111;
  border-radius: 28px;
  padding: 20px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
}
.am-screen { background: var(--navy); border-radius: 16px; padding: 16px; min-height: 420px; color: var(--white); }
.am-header { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: .8rem; font-weight: 700; letter-spacing: .1em; color: var(--gold); margin-bottom: 16px; }
.am-greeting { font-size: .8rem; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.am-points-box { background: rgba(201,168,76,.1); border: 1px solid var(--gold); border-radius: 12px; padding: 16px; text-align: center; margin-bottom: 16px; }
.am-pts-label { font-size: .65rem; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; }
.am-pts-val { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.am-pts-tier { font-size: .7rem; color: rgba(255,255,255,.6); }
.am-deal { background: rgba(255,255,255,.05); border-radius: 10px; padding: 14px; }
.am-deal-label { font-size: .65rem; color: var(--gold); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.am-deal-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.am-deal-expires { font-size: .7rem; color: rgba(255,255,255,.4); margin-bottom: 10px; }
.am-deal-btn {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 8px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
}
.am-nav { display: flex; justify-content: space-around; margin-top: 20px; font-size: 1.1rem; color: rgba(255,255,255,.4); padding-top: 12px; border-top: 1px solid rgba(255,255,255,.08); }

.app-features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.app-feature { padding: 24px 16px; border: 1px solid #e5e7eb; border-radius: var(--radius-md); }
.af-icon { font-size: 2rem; margin-bottom: 12px; }
.app-feature h4 { font-weight: 700; margin-bottom: 8px; }
.app-feature p { font-size: .875rem; color: var(--mid-gray); }

.screenshot-strip { display: flex; gap: 16px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.screenshot-ph {
  width: 120px; height: 220px;
  background: #e5e7eb;
  border-radius: 16px;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 12px;
}
.sp-label { font-size: .75rem; font-weight: 600; color: var(--mid-gray); }

/* ---------- FRANCHISE ---------- */
.franchise-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.fran-card { padding: 28px 20px; border: 1px solid #e5e7eb; border-radius: var(--radius-lg); transition: box-shadow var(--transition); }
.fran-card:hover { box-shadow: var(--shadow-md); }
.fran-icon { font-size: 2rem; margin-bottom: 12px; }
.fran-card h4 { font-weight: 700; margin-bottom: 8px; }
.fran-card p { font-size: .875rem; color: var(--mid-gray); }

.invest-table { max-width: 640px; margin: 0 auto 16px; border: 1px solid #e5e7eb; border-radius: var(--radius-md); overflow: hidden; }
.invest-row { display: flex; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid #e5e7eb; font-size: .9rem; }
.invest-row:last-child { border-bottom: none; }
.invest-header { background: var(--navy); color: var(--white); font-weight: 700; text-transform: uppercase; font-size: .8rem; letter-spacing: .06em; }
.invest-total { background: var(--light-bg); font-weight: 700; }

/* ---------- CONTACT ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 24px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--charcoal); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: var(--light-bg); border-radius: var(--radius-md); padding: 24px; }
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; color: var(--navy); }
.ci-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.ci-icon { font-size: 1.2rem; margin-top: 2px; }
.ci-item strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.ci-item p { font-size: .875rem; color: var(--mid-gray); }
.contact-quick-links { display: flex; flex-direction: column; gap: 10px; }
.contact-quick-links a { font-size: .875rem; color: var(--navy); font-weight: 500; transition: color var(--transition); }
.contact-quick-links a:hover { color: var(--gold); }

.social-links--large a { width: 44px; height: 44px; font-size: .75rem; font-weight: 700; }

/* ---------- CENTER CTA ---------- */
.center-cta { text-align: center; margin-top: 40px; }

/* ---------- FORM CONTAINER ---------- */
.form-container { max-width: 760px; margin: 0 auto; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .locator-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .app-hero-inner { grid-template-columns: 1fr; }
  .app-mockup-wrap { display: none; }
  .story-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--navy);
    padding: 24px;
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.open ul { flex-direction: column; gap: 8px; }
  .main-nav.open a { font-size: 1.2rem; padding: 14px 16px; display: block; }
  .nav-toggle { display: block; }

  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .col-img { min-height: 240px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; gap: 28px; }
  .drinks-categories { grid-template-columns: 1fr; }
  .invest-row { flex-direction: column; gap: 4px; }
  .job-card { flex-wrap: wrap; }
  .job-pay { min-width: 0; text-align: left; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .page-hero h1 { font-size: 2.4rem; }
  .locator-search-bar { flex-direction: column; }
  .locator-search-bar input { min-width: 0; }
}
