/* ============================================================
   S ZEVZO — Main Stylesheet
   Brand: S ZEVZO | szevzousa.com
   8px grid system | Mobile-first
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --bg:              #F7F5F2;
  --surface:         #FFFFFF;
  --surface-2:       #EEEBe6;
  --accent:          #FF6200;
  --accent-hover:    #E55700;
  --text:            #111111;
  --text-secondary:  rgba(17,17,17,0.68);
  --text-muted:      rgba(17,17,17,0.42);
  --border:          rgba(0,0,0,0.10);
  --theme-color:     #FF6200;

  /* Spacing scale (8px grid) */
  --s1:  8px;
  --s2:  16px;
  --s3:  24px;
  --s4:  32px;
  --s5:  40px;
  --s6:  48px;
  --s7:  56px;
  --s8:  64px;
  --s9:  72px;
  --s10: 80px;
  --s12: 96px;
  --s16: 128px;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.14);
  --navbar-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--s2);
}

@media (min-width: 640px)  { .container { padding-inline: var(--s3); } }
@media (min-width: 1024px) { .container { padding-inline: var(--s4); } }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 800;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 700; }

p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s1);
}

.section-title {
  margin-bottom: var(--s2);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--s5);
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  min-height: 48px;
  min-width: 44px;
  padding: 14px var(--s4);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid transparent;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,98,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(0,0,0,0.07);
  color: var(--text);
  border: 2px solid transparent;
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.12);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(247,245,242,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.09);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.09);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}

.navbar-logo span {
  color: var(--accent);
}

.logo-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: super;
  text-transform: uppercase;
}

/* Nav links */
.navbar-links {
  display: none;
  align-items: center;
  gap: var(--s1);
}

@media (min-width: 768px) {
  .navbar-links { display: flex; }
}

.navbar-links a {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 var(--s2);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.navbar-links a:hover { color: var(--text); }

.navbar-links a.active {
  color: var(--accent);
}

.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: var(--s2);
  right: var(--s2);
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* CTA nav button */
.navbar-cta {
  display: none;
}
@media (min-width: 768px) {
  .navbar-cta {
    display: inline-flex;
    margin-left: var(--s2);
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--s1);
  border-radius: var(--radius);
  transition: background var(--transition);
  flex-shrink: 0;
}

.hamburger:hover { background: rgba(0,0,0,0.06); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

@media (min-width: 768px) {
  .hamburger { display: none; }
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,10,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
}

.nav-overlay.open { display: flex; }

.nav-overlay-close {
  position: absolute;
  top: var(--s3);
  right: var(--s3);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--text);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}

.nav-overlay-close:hover { background: rgba(255,255,255,0.12); }

.nav-overlay a {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-secondary);
  padding: var(--s2) var(--s4);
  border-radius: var(--radius);
  transition: color var(--transition);
  letter-spacing: -0.01em;
}

.nav-overlay a:hover,
.nav-overlay a.active {
  color: var(--accent);
}

.nav-overlay .btn {
  font-size: 1rem;
  margin-top: var(--s2);
}

/* ── Page offset for fixed navbar ───────────────────────── */
.page-top { padding-top: var(--navbar-h); }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.72) 50%,
    rgba(10,10,10,0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  background: rgba(255,98,0,0.12);
  border: 1px solid rgba(255,98,0,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s3);
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--s3);
}

/* Hero text is always white — dark overlay is behind it */
.hero h1 { color: #fff; }
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--s5);
  max-width: 560px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-top: var(--s4);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

.hero-trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--navbar-h) + var(--s10)) 0 var(--s10);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: var(--s2);
}

.page-hero p {
  font-size: 1.125rem;
  max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}

.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-secondary); }

.breadcrumb-sep { color: var(--text-muted); }

/* ── Marquee Strip ───────────────────────────────────────── */
.marquee-strip {
  background: var(--accent);
  padding: var(--s2) 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  padding: 0 var(--s3);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section Layout ──────────────────────────────────────── */
.section {
  padding: var(--s12) 0;
}

.section-sm { padding: var(--s8) 0; }
.section-lg { padding: var(--s16) 0; }

/* ── Products Grid ───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s3);
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Product Card */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,98,0,0.25);
}

.product-card-image {
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s4);
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-body {
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-badge {
  display: inline-block;
  background: rgba(255,98,0,0.12);
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: var(--s2);
  border: 1px solid rgba(255,98,0,0.25);
}

.product-badge.new {
  background: rgba(0,200,100,0.12);
  color: #00C864;
  border-color: rgba(0,200,100,0.25);
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--s1);
  color: var(--text);
}

.product-card .product-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--s2);
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--s3);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.spec-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
}

/* Products page detailed card */
.product-card-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  transition: box-shadow var(--transition);
}

@media (min-width: 768px) {
  .product-card-detail {
    grid-template-columns: 360px 1fr;
  }
}

.product-card-detail:hover {
  box-shadow: var(--shadow-hover);
}

.product-card-detail .product-card-image {
  aspect-ratio: 1 / 1;
  min-height: 280px;
}

.product-card-detail .product-info {
  padding: var(--s4);
  display: flex;
  flex-direction: column;
}

.product-card-detail h3 {
  font-size: 1.5rem;
  margin-bottom: var(--s1);
}

.product-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: var(--s3);
  line-height: 1.65;
}

.product-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s1);
  margin-bottom: var(--s4);
}

.spec-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.spec-tag svg { color: var(--accent); flex-shrink: 0; }

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: var(--s1);
  flex-wrap: wrap;
  margin-bottom: var(--s5);
}

.filter-tab {
  min-height: 44px;
  padding: 10px var(--s3);
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  background: var(--surface-2);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.filter-tab:hover { color: var(--text); }

.filter-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ── Advantages Section ──────────────────────────────────── */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}

@media (min-width: 640px)  { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .advantages-grid { grid-template-columns: repeat(4, 1fr); } }

.advantage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s4);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255,98,0,0.2);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,98,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s3);
  color: var(--accent);
}

.advantage-card h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--s1);
  font-weight: 700;
}

.advantage-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ── Stats Section ───────────────────────────────────────── */
.stats-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  text-align: center;
  padding: var(--s4) var(--s3);
  border-radius: var(--radius-lg);
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--s1);
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Reviews Section ─────────────────────────────────────── */
.reviews-section {
  background: var(--bg);
}

/* Masonry-like layout with CSS columns */
.reviews-grid {
  columns: 1;
  column-gap: var(--s3);
}

@media (min-width: 640px)  { .reviews-grid { columns: 2; } }
@media (min-width: 1024px) { .reviews-grid { columns: 3; } }

.review-card {
  break-inside: avoid;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s3);
  margin-bottom: var(--s3);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: inline-block;
  width: 100%;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255,98,0,0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s2);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #FF8C42 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.review-author-info {}

.review-author {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}

.review-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.review-product-tag {
  display: inline-block;
  background: rgba(255,98,0,0.08);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: var(--s2);
  border: 1px solid rgba(255,98,0,0.2);
}

.review-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.review-card.featured {
  border-color: rgba(255,98,0,0.25);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(255,98,0,0.03) 100%);
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: var(--s12) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,98,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: var(--s2);
}

.cta-banner p {
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto var(--s5);
}

.cta-banner .btn-group {
  display: flex;
  gap: var(--s2);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--s10) 0 var(--s5);
}

/* Footer uses its own dark color tokens */
.footer .footer-logo { color: #fff; }
.footer .footer-brand p { color: rgba(255,255,255,0.42); }
.footer .footer-contact-item { color: rgba(255,255,255,0.7); }
.footer .footer-contact-item svg { color: var(--accent); }
.footer .footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer .footer-contact-item a:hover { color: var(--accent); }
.footer .footer-col h4 { color: #fff; }
.footer .footer-links a { color: rgba(255,255,255,0.42); }
.footer .footer-links a:hover { color: var(--accent); }
.footer .footer-hours-row { color: rgba(255,255,255,0.42); }
.footer .footer-hours-row strong { color: rgba(255,255,255,0.7); }
.footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); }
.footer .footer-bottom p { color: rgba(255,255,255,0.42); }
.footer .footer-bottom-links a { color: rgba(255,255,255,0.42); }
.footer .footer-bottom-links a:hover { color: var(--accent); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
  margin-bottom: var(--s8);
}

@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand {}

.footer-logo {
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--s2);
}

.footer-logo span { color: var(--accent); }

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: var(--s3);
  max-width: 280px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s1);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--s2);
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-contact-item a { color: var(--text-secondary); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-col h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s3);
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--accent); }

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.footer-hours-row {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: var(--s2);
}

.footer-hours-row strong { color: var(--text-secondary); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--s3);
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--accent); }

/* ── About Page ──────────────────────────────────────────── */
/* Timeline */
.timeline {
  position: relative;
  padding-left: var(--s6);
}

@media (min-width: 768px) {
  .timeline {
    padding-left: 0;
  }
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(255,98,0,0.1) 100%);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-1px);
  }
}

.timeline-item {
  position: relative;
  margin-bottom: var(--s8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}

@media (min-width: 768px) {
  .timeline-item {
    grid-template-columns: 1fr 80px 1fr;
    align-items: start;
  }
  .timeline-item:nth-child(even) .timeline-content { order: -1; text-align: right; }
  .timeline-item:nth-child(even) .timeline-content p { margin-left: auto; }
  .timeline-item:nth-child(even) .timeline-empty { display: block; }
}

.timeline-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s1);
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
  flex-shrink: 0;
  position: absolute;
  left: 12px;
  top: 4px;
}

@media (min-width: 768px) {
  .timeline-dot {
    position: static;
    margin-top: 4px;
  }
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-align: center;
}

.timeline-content {}

.timeline-content h3 {
  font-size: 1.125rem;
  margin-bottom: var(--s1);
}

.timeline-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.6;
}

/* Mission cards */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}

@media (min-width: 768px) {
  .mission-grid { grid-template-columns: repeat(2, 1fr); }
}

.mission-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s5);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.mission-card h3 { margin-bottom: var(--s2); }
.mission-card p { color: var(--text-secondary); }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
}

@media (min-width: 1024px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s4) var(--s3);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,98,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s3);
  color: var(--accent);
}

.value-card h3 { font-size: 1rem; margin-bottom: var(--s1); }
.value-card p { font-size: 0.875rem; color: var(--text-muted); }

/* Promise section */
.promises-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}

@media (min-width: 640px)  { .promises-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .promises-grid { grid-template-columns: repeat(4, 1fr); } }

.promise-card {
  text-align: center;
  padding: var(--s4);
}

.promise-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255,98,0,0.15) 0%, rgba(255,98,0,0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s3);
  color: var(--accent);
  border: 1px solid rgba(255,98,0,0.2);
}

.promise-card h3 { font-size: 1.0625rem; margin-bottom: var(--s1); }
.promise-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}

@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr 1.5fr; }
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s5);
}

.contact-info-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--s4);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,98,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail-text {}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-detail-value a {
  color: var(--text-secondary);
  transition: color var(--transition);
}
.contact-detail-value a:hover { color: var(--accent); }

/* Contact Form */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s5);
}

.contact-form-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--s4);
}

.form-group {
  margin-bottom: var(--s3);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--s1);
}

.form-control {
  width: 100%;
  min-height: 48px;
  padding: 12px var(--s2);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,98,0,0.15);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control {
  min-height: 144px;
  resize: vertical;
  line-height: 1.6;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='rgba(255,255,255,0.45)' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(255,98,0,0.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding: var(--s3) var(--s4);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  min-height: 64px;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-question-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255,98,0,0.15);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}

.faq-answer-inner {
  padding: 0 var(--s4) var(--s4);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Scroll Reveal Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: var(--s8) 0;
}

/* ── Utility ─────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.accent { color: var(--accent); }

.surface-bg { background: var(--surface); }
.surface-2-bg { background: var(--surface-2); }

.gap-y-8  { display: flex; flex-direction: column; gap: var(--s8); }
.gap-y-12 { display: flex; flex-direction: column; gap: var(--s12); }

/* ── Focus Visible ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25); }

/* ── Selection ───────────────────────────────────────────── */
::selection { background: rgba(255,98,0,0.3); color: var(--text); }

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .navbar, .marquee-strip, .nav-overlay { display: none !important; }
  body { background: #fff; color: #000; }
}
