/* ═══════════════════════════════════════════════════
   BORRIS AUTOMOTIVE & SAFETY SOLUTIONS
   Design System & Styles
   Inspired by reflow.ai — Luxury Institutional Aesthetic
   ═══════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  /* Brand Colors */
  --black: #000000;
  --purple: #6D2077;
  --purple-light: #8a3a96;
  --purple-glow: rgba(109, 32, 119, 0.15);
  --gold: #B7A57A;
  --gold-light: #c9bb96;
  --gold-dark: #9e8e66;
  --gray: #E5E5E5;
  --white: #FFFFFF;

  /* Extended Neutrals */
  --cream: #F5F0E8;
  --cream-dark: #EDE6D9;
  --charcoal: #1A1A1A;
  --charcoal-light: #2D2A26;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-muted: #888888;
  --text-on-dark: #F5F0E8;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 2rem;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

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

/* ─── UTILITY CLASSES ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.text-gold {
  color: var(--gold);
}

.text-purple {
  color: var(--purple);
}

.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: var(--space-4xl);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--border-radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--white);
  border: 1.5px solid var(--charcoal);
}

.btn--primary:hover {
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(109, 32, 119, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--large {
  padding: 1.125rem 2.75rem;
  font-size: 1.0625rem;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--charcoal);
  color: var(--gold);
  text-align: center;
  padding: 0.625rem var(--container-padding);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--mobile-cta {
  display: none;
}

.nav-cta {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 89vh;
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  overflow: hidden;
}

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

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-3xl) var(--container-padding) var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-xl);
  max-width: 700px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--text-on-dark);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  left: var(--container-padding);
  bottom: var(--space-2xl);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ─── MARQUEE ─── */
.marquee-section {
  background: var(--white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  padding: var(--space-lg) 0;
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.marquee-track {
  overflow: hidden;
  white-space: nowrap;
}

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

.marquee-item {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0 var(--space-lg);
  white-space: nowrap;
}

.marquee-divider {
  color: var(--gold);
  padding: 0 var(--space-sm);
  font-weight: 300;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Marquee inside hero (above the fold) */
.marquee-section--hero {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: var(--space-lg);
}

/* ─── TESTIMONIAL CARD ─── */
.testimonial-section {
  background: var(--cream);
  padding: var(--space-5xl) 0;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.testimonial-card__image {
  position: relative;
  overflow: hidden;
}

.testimonial-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.testimonial-card__content {
  background: var(--charcoal);
  color: var(--text-on-dark);
  padding: var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.testimonial-card__quote::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-bottom: var(--space-lg);
}

.testimonial-card__author strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.testimonial-card__author span {
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ─── BOLD STATEMENT ─── */
.statement-section {
  background: var(--white);
  padding: var(--space-5xl) 0;
  text-align: center;
}

.statement__text {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-2xl);
}

.statement__line {
  display: block;
}

.statement__sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── SERVICES ─── */
.services-section {
  background: var(--cream);
  padding: var(--space-5xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--charcoal);
  border-radius: var(--border-radius-lg);
  padding: var(--space-3xl);
  color: var(--text-on-dark);
  transition: transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: var(--space-xl);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.service-card__desc {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: var(--space-2xl);
}

.service-card__stat {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.4;
}

.stat-highlight {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
}

/* ─── STATS BANNER ─── */
.stats-section {
  background: var(--charcoal);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3xl);
  text-align: center;
}

.stat-block__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-sm);
}

.stat-block__label {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

/* ─── ABOUT / FOUNDER ─── */
.about-section {
  background: var(--white);
  padding: var(--space-5xl) 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  border-radius: var(--border-radius);
  z-index: -1;
}

.about-bio p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.about-credentials {
  margin-top: var(--space-xl);
}

.credential {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--gray);
}

.credential__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.credential__role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── EXPERTISE / VALUE PROPS ─── */
.expertise-section {
  background: var(--cream);
  padding: var(--space-5xl) 0;
}

.expertise-section .section-title {
  margin-bottom: var(--space-4xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.value-card {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  border-radius: var(--border-radius-lg);
  background: var(--white);
  transition: transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-xl);
  padding: 12px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--border-radius);
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

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

/* ─── CAREER / MORE ABOUT ─── */
.career-section {
  background: var(--white);
  padding: var(--space-5xl) 0;
}

.career-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-4xl);
  align-items: start;
}

.career-text .section-title {
  margin-bottom: var(--space-2xl);
}

.career-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.career-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.credential-card {
  padding: var(--space-xl);
  border-radius: var(--border-radius);
  background: var(--cream);
  border-left: 3px solid var(--gold);
  transition: transform var(--duration-fast) var(--ease-out);
}

.credential-card:hover {
  transform: translateX(4px);
}

.credential-card__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.credential-card__value {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-primary);
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--cream);
  padding: var(--space-5xl) 0;
}

.faq-section .section-header {
  text-align: center;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  gap: var(--space-lg);
  transition: color var(--duration-fast) var(--ease-out);
}

.faq-question:hover {
  color: var(--purple);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out),
    padding var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: var(--space-xl);
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-right: var(--space-3xl);
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--charcoal);
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(109, 32, 119, 0.12), transparent 60%);
  transform: translate(-50%, -60%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-xl);
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(245, 240, 232, 0.7);
  max-width: 520px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.6;
}

.cta-actions .btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
}

.cta-actions .btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 30px rgba(183, 165, 122, 0.3);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-logo {
  height: 32px;
  margin-bottom: var(--space-lg);
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col__title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
  padding: 0.375rem 0;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.35);
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

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

.reveal--delay-1 {
  transition-delay: 150ms;
}

.reveal--delay-2 {
  transition-delay: 300ms;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .about-image img {
    aspect-ratio: 4 / 3;
    max-height: 400px;
  }

  .career-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.25rem;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.5rem;
    font-family: var(--font-display);
  }

  .nav-link--mobile-cta {
    display: block;
    margin-top: var(--space-lg);
    font-size: 1.125rem;
    color: var(--gold);
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .hero__content {
    padding: var(--space-4xl) var(--container-padding);
  }

  .hero__scroll-indicator {
    display: none;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .testimonial-card__image img {
    min-height: 260px;
    max-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.25rem;
  }

  .statement__text {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }
}