/* ─── LocalSeat Marketing — Shared Styles ─────────────────────────────────── */
/* Used by all pages: index, about, contact, terms, security, privacy          */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --orange: #F26522;
  --orange-light: #FFF0E8;
  --orange-dark: #C84E0E;
  --slate-950: #0A0F1A;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #FFFFFF;
  --green: #22C55E;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--slate-800);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Nav ──────────────────────────────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-mark svg { display: block; }

.nav-wordmark {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 20px;
  letter-spacing: -0.3px;
  font-weight: 800;
  font-style: italic;
}

.nav-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #e8855c;
  margin-left: 2px;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 4px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--slate-950);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 99;
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--slate-300);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
}

.mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

/* ─── Page Header (subpages) ───────────────────────────────────────────────── */

.page-header {
  background: var(--slate-950);
  padding: 120px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(242,101,34,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-header-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-header-inner { max-width: 760px; margin: 0 auto; position: relative; }

.page-header-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FB9164;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-header-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-header h1 em { color: var(--orange); font-style: italic; }

.page-header p, .page-header-sub {
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--slate-300);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-header-meta { font-size: 14px; color: var(--slate-300); }

/* ─── Section Primitives ───────────────────────────────────────────────────── */

section { padding: 100px 24px; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-label-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FB9164;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label-light::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--slate-900);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

h2.section-title em { color: var(--orange); font-style: italic; }

.section-body {
  font-size: 18px;
  color: var(--slate-500);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── Buttons ──────────────────────────────────────────────────────────────── */

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(242,101,34,0.35);
}

.btn-ghost {
  color: var(--white);
  padding: 15px 24px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.28);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

/* ─── Content Pages (terms, privacy, security) ─────────────────────────────── */

.content-wrap { max-width: 760px; margin: 0 auto; padding: 72px 24px 100px; }

.content-wrap h2 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--slate-900);
  letter-spacing: -0.4px;
  margin: 48px 0 14px;
  padding-top: 48px;
  border-top: 1px solid var(--slate-200);
}

.content-wrap h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.content-wrap h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--slate-800);
  margin: 28px 0 10px;
}

.content-wrap p {
  font-size: 16px;
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}

.content-wrap ul {
  margin: 0 0 16px 0;
  padding-left: 0;
  list-style: none;
}

.content-wrap ul li {
  font-size: 16px;
  color: var(--slate-600);
  line-height: 1.7;
  font-weight: 300;
  padding: 6px 0 6px 20px;
  position: relative;
}

.content-wrap ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

.callout {
  background: var(--orange-light);
  border: 1px solid rgba(242,101,34,0.2);
  border-left: 3px solid var(--orange);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 24px 0;
}

.callout p { color: var(--slate-700); margin: 0; font-weight: 400; }

.contact-block {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 48px;
}

.contact-block h3 { margin-top: 0; }
.contact-block a { color: var(--orange); text-decoration: none; }
.contact-block a:hover { text-decoration: underline; }

/* ─── Footer ───────────────────────────────────────────────────────────────── */

footer {
  background: var(--slate-950);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 24px 40px;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--slate-300);
  line-height: 1.6;
  margin-top: 14px;
  font-weight: 300;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate-300);
  margin-bottom: 16px;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-size: 14px;
  color: var(--slate-300);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--slate-300);
  font-weight: 300;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--slate-300);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Simple footer variant (subpages) */
.footer-simple { padding: 40px 24px; }
.footer-simple .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-simple .footer-inner p { font-size: 13px; color: var(--slate-300); font-weight: 300; }
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--slate-300); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ─── Animations ───────────────────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─── Responsive — shared ──────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  section { padding: 72px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
