/* ========================================
   ETHICAL MECHANIC — Industrial Authority
   Palette pulled from the OEM logo:
   Slate blue, dark navy, steel blue
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Libre+Franklin:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Logo-derived palette */
  --navy: #2f3a4a;
  --slate: #516079;
  --slate-mid: #64798f;
  --steel: #b8cfe0;
  --steel-light: #dae8f0;
  --ice: #eef4f8;

  /* Neutrals */
  --charcoal: #1e2530;
  --gray-700: #3a4250;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;

  /* Accent */
  --accent: #c0392b;
  --accent-hover: #a93226;

  /* Type */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Libre Franklin', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(3.5rem, 6vw, 5.5rem);

  /* Effects */
  --shadow-card: 0 2px 8px rgba(47,58,74,0.08), 0 1px 3px rgba(47,58,74,0.06);
  --shadow-lift: 0 8px 24px rgba(47,58,74,0.12), 0 2px 6px rgba(47,58,74,0.08);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--slate);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--navy); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 400;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; color: var(--navy); }

/* --- Layout --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow { max-width: 740px; }

/* ========================================
   HEADER
   ======================================== */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo:hover { text-decoration: none; }

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--font-body);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}

.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition);
}

/* ========================================
   HERO — Full-screen centered
   ======================================== */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  overflow: hidden;
}

.hero--full {
  min-height: 85vh;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 20s ease;
}

.hero--full .hero-bg {
  animation: heroZoom 25s ease forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30,37,48,0.55) 0%,
    rgba(30,37,48,0.7) 50%,
    rgba(30,37,48,0.85) 100%
  );
  z-index: 1;
}

.hero-center {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 2rem 0;
}

.hero-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  border: 3px solid rgba(184,207,224,0.35);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

.hero-headline {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero-sub {
  color: var(--steel);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Legacy hero (inner pages) */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.5rem 0;
  background: linear-gradient(to top, rgba(30,37,48,0.92) 0%, rgba(30,37,48,0.6) 100%);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid rgba(184,207,224,0.4);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-text h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.hero-text p {
  color: var(--steel);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.6;
}

/* ========================================
   SECTION PATTERNS
   ======================================== */
.section { padding: var(--section-pad) 0; }
.section--ice { background: var(--ice); }
.section--gray { background: var(--gray-100); }
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--slate {
  background: var(--slate);
  color: var(--white);
}
.section--steel {
  background: var(--steel-light);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-mid);
  margin-bottom: 0.5rem;
}

.section--navy .section-eyebrow,
.section--slate .section-eyebrow {
  color: var(--steel);
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.6;
}

.section--navy .section-subtitle { color: var(--steel); }
.section--navy h2 { color: var(--white); }

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

/* ========================================
   FEATURE CARDS (2×2 grid)
   ======================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

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

.feature-card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--steel-light);
  position: relative;
}

.feature-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
}

.feature-card-body {
  padding: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.4rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all var(--transition);
}

.card-link:hover {
  background: var(--slate);
  color: var(--white);
  text-decoration: none;
  transform: translateX(2px);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

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

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

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

/* ========================================
   VALUES BAR
   ======================================== */
.values-bar {
  background: var(--charcoal);
  color: var(--white);
  padding: 1.75rem 0;
  border-top: 3px solid var(--slate);
}

.values-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.value-icon {
  font-size: 1.75rem;
  line-height: 1;
  filter: grayscale(0.2);
}

.value-text {
  display: flex;
  flex-direction: column;
}

.value-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
}

.value-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.1rem;
}

.value-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* ========================================
   SCAM CALLOUT
   ======================================== */
.scam-callout {
  background: var(--navy);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.scam-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 50px,
      rgba(255,255,255,0.015) 50px,
      rgba(255,255,255,0.015) 52px
    );
  pointer-events: none;
}

.callout-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.callout-text h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  margin-bottom: 1rem;
}

.callout-text p {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.callout-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
  padding: var(--section-pad) 0;
  text-align: center;
  background: var(--slate);
  color: var(--white);
  position: relative;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 42px
    );
  pointer-events: none;
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
}

.newsletter .section-subtitle {
  color: var(--steel);
  margin: 0 auto 2rem;
  position: relative;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  outline: none;
  transition: all var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: var(--steel); background: rgba(255,255,255,0.15); }

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover { background: var(--accent-hover); }

/* ========================================
   MISSION / ANNOUNCEMENT
   ======================================== */
.announcement {
  padding: var(--section-pad) 0;
  background: var(--ice);
  text-align: center;
}

.announcement-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 20px rgba(47,58,74,0.15);
}

.announcement-content {
  max-width: 640px;
  margin: 0 auto;
}

.announcement-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.announcement-content a { color: var(--slate); font-weight: 600; text-decoration: underline; }
.announcement-content a:hover { color: var(--navy); }

/* ========================================
   PAGE HEADER (inner pages)
   ======================================== */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.02) 60px,
      rgba(255,255,255,0.02) 62px
    );
  pointer-events: none;
}

.page-header h1 {
  color: var(--white);
  position: relative;
}

.page-header .subtitle {
  color: var(--steel);
  font-size: 1.05rem;
  position: relative;
  margin-top: 0.5rem;
}

.page-content {
  padding: 3rem 0 5rem;
}

.page-content p { margin-bottom: 1.25rem; }
.page-content h2 { margin: 2.5rem 0 0.75rem; }
.page-content h3 { margin: 2rem 0 0.5rem; }
.page-content ul, .page-content ol { margin: 1rem 0; padding-left: 1.5rem; }
.page-content li { margin-bottom: 0.5rem; }

/* ========================================
   ACCORDION / FAQ
   ======================================== */
.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  overflow: hidden;
  background: var(--white);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}

.accordion-trigger:hover { background: var(--ice); }

.accordion-trigger .arrow {
  font-size: 1.1rem;
  transition: transform var(--transition);
  color: var(--gray-400);
}

.accordion-item.open .accordion-trigger { background: var(--ice); }
.accordion-item.open .accordion-trigger .arrow { transform: rotate(180deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.open .accordion-content { max-height: 600px; }

.accordion-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ========================================
   BLOG
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding: 2rem 0 4rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.blog-card-body { padding: 1.4rem; }

.blog-card .meta {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.blog-card h3 a { color: var(--navy); text-decoration: none; }
.blog-card h3 a:hover { color: var(--slate-mid); }

.blog-card .excerpt {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* Blog Post single */
.post-header {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.02) 60px,
      rgba(255,255,255,0.02) 62px
    );
  pointer-events: none;
}

.post-header h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.post-meta {
  font-size: 0.82rem;
  color: var(--steel);
  margin-bottom: 0.75rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.post-meta .separator { margin: 0 0.5rem; }

.post-author {
  color: var(--steel);
  margin-top: 0.6rem;
  font-size: 0.9rem;
  position: relative;
}

.post-body { padding: 3rem 0; }
.post-body p { margin-bottom: 1.5rem; font-size: 1.02rem; line-height: 1.85; }
.post-body h2 { margin: 2.5rem 0 0.75rem; }
.post-body h3 { margin: 2rem 0 0.5rem; }
.post-body ul, .post-body ol { margin: 1rem 0; padding-left: 1.5rem; }
.post-body li { margin-bottom: 0.5rem; }

.post-footer { padding: 1.5rem 0 4rem; border-top: 1px solid var(--gray-200); }

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: var(--ice);
  color: var(--slate);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--steel-light);
}

.back-link { font-weight: 600; color: var(--slate); }
.back-link:hover { color: var(--navy); }

/* ========================================
   COMMUNITY
   ======================================== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.city-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--slate), var(--steel));
  opacity: 0;
  transition: opacity var(--transition);
}

.city-card:hover {
  box-shadow: var(--shadow-lift);
  border-color: var(--steel);
}

.city-card:hover::before { opacity: 1; }

.city-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.city-card .state { color: var(--gray-400); font-size: 0.85rem; margin-bottom: 1rem; font-weight: 500; }
.city-card .btn { font-size: 0.82rem; padding: 0.45rem 1.25rem; }

/* ========================================
   ALERT / INFO
   ======================================== */
.alert-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.alert-box h3 { color: var(--accent); font-size: 1rem; margin-bottom: 0.4rem; font-family: var(--font-body); font-weight: 700; }

.info-card {
  background: var(--ice);
  border: 1px solid var(--steel-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.info-card h3 { margin-bottom: 0.5rem; }

/* ========================================
   PRINCIPLE ITEMS (Code of Conduct)
   ======================================== */
.principle {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.principle:last-child { border-bottom: none; }
.principle h3 { margin-bottom: 0.5rem; }
.principle p { color: var(--gray-500); }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 50px,
      rgba(255,255,255,0.015) 50px,
      rgba(255,255,255,0.015) 52px
    );
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-section p {
  max-width: 550px;
  margin: 0 auto 2rem;
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
}

/* ========================================
   FORMS
   ======================================== */
.form-group { margin-bottom: 1.15rem; }

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
  color: var(--gray-700);
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--slate-mid); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ========================================
   BENEFITS
   ======================================== */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.benefit-item { display: flex; gap: 0.75rem; align-items: flex-start; }

.benefit-number {
  background: var(--navy);
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.benefit-content h4 { margin-bottom: 0.2rem; }
.benefit-content p { font-size: 0.88rem; color: var(--gray-500); }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--slate), var(--steel), var(--slate));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-brand-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
}

.footer-brand-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  padding: 0.25rem 0;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  color: rgba(255,255,255,0.45);
  font-size: 1.1rem;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-social a:hover { color: var(--white); text-decoration: none; }

/* ========================================
   COMING SOON BADGE
   ======================================== */
.coming-soon-badge {
  display: inline-block;
  padding: 0.5rem 1.75rem;
  background: var(--slate);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 50px;
  margin-top: 1.5rem;
}

/* ========================================
   SERVICES GRID (3-col info cards)
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ========================================
   CITY CARD ALERT VARIANT
   ======================================== */
.city-card--alert {
  border-color: #e8b4b4;
  background: #fef8f8;
}

.city-card--alert::before {
  background: linear-gradient(90deg, var(--accent), #e74c3c);
  opacity: 1;
}

.city-card--alert h3 a { color: var(--accent); }

/* ========================================
   PARTNER FORM ON DARK BG
   ======================================== */
.section--slate .form-group label { color: var(--white); }
.section--slate .form-group input,
.section--slate .form-group textarea {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.section--slate .form-group input::placeholder,
.section--slate .form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.section--slate .form-group input:focus,
.section--slate .form-group textarea:focus {
  border-color: var(--steel);
  background: rgba(255,255,255,0.15);
}

/* ========================================
   PODCAST SHOWCASE
   ======================================== */
.podcast-showcase {
  text-align: center;
  padding: var(--section-pad) 0;
}

.podcast-showcase img {
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(47,58,74,0.15);
}

.podcast-showcase h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.podcast-showcase .tagline {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .benefits-list { grid-template-columns: 1fr; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .values-row { flex-direction: column; gap: 1rem; }
  .value-divider { width: 60px; height: 1px; }
}

@media (max-width: 640px) {
  .menu-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 0.75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  .nav-links.open { display: flex; }
  .nav-link { padding: 0.65rem 1rem; text-align: left; }

  .feature-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust-stats { flex-direction: column; gap: 1rem; }

  .hero { min-height: 340px; }
  .hero--full { min-height: 75vh; }
  .hero-badge { width: 90px; height: 90px; margin-bottom: 1.5rem; }
  .hero-logo { width: 70px; height: 70px; }
  .callout-actions { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
