/* Samp Logistics – static site */
:root {
  --brand-navy: #102356;
  --brand-navy-deep: #0a1328;
  --brand-cyan: #00c2d4;
  --brand-cyan-hover: #00a8b8;
  --brand-cyan-light: #b8d8f8;

  --bg: #ffffff;
  --bg-muted: #f0f6ff;
  --surface: #ffffff;
  --text: #343a40;
  --text-muted: #6a88aa;
  --heading: #102356;
  --border: #e9ecef;
  --header-bg: #ffffff;
  --footer-bg: #102356;
  --form-bg: #102356;
  --input-bg: #ffffff;
  --input-text: #343a40;
  --shadow: 0 4px 24px rgba(16, 35, 86, 0.12);
  --header-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);

  /* Legacy aliases */
  --navy: var(--heading);
  --navy-light: #1a3370;
  --cyan: var(--brand-cyan);
  --cyan-hover: var(--brand-cyan-hover);
  --cyan-light: var(--brand-cyan-light);
  --white: #ffffff;
  --text-on-light: #102356;
  --gray-100: var(--bg-muted);
  --gray-200: var(--border);
  --gray-600: var(--text-muted);
  --gray-800: var(--text);

  --radius: 8px;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --max-width: 1200px;

  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #0a1328;
  --bg-muted: #0f1d3a;
  --surface: #152a52;
  --text: #dce8f8;
  --text-muted: #8ba4c4;
  --heading: #e8f4ff;
  --border: rgba(184, 216, 248, 0.14);
  --header-bg: #0a1328;
  --footer-bg: #102356;
  --form-bg: #102356;
  --input-bg: #1a3370;
  --input-text: #e8f4ff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --header-shadow: 0 1px 0 rgba(184, 216, 248, 0.08);

  --navy: var(--heading);
  --white: #ffffff;
  --gray-100: var(--bg-muted);
  --gray-200: var(--border);
  --gray-600: var(--text-muted);
  --gray-800: var(--text);

  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  transition: background-color 0.2s ease, color 0.2s ease;
}

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

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  color: var(--cyan-hover);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--header-shadow);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--heading);
  text-decoration: none;
}

.logo img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}

.logo-variant {
  display: block;
}

.logo-variant-dark {
  display: none;
}

[data-theme="dark"] .logo-variant-light {
  display: none;
}

[data-theme="dark"] .logo-variant-dark {
  display: block;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 0.75rem;
  display: block;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  margin: 5px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-muted);
  color: var(--heading);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.theme-toggle:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.theme-icon-moon {
  display: none;
}

[data-theme="dark"] .theme-icon-sun {
  display: none;
}

[data-theme="dark"] .theme-icon-moon {
  display: block;
}

.main-nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--heading);
  font-weight: 500;
  font-size: 0.9375rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--cyan);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--cyan);
  color: var(--white) !important;
  border-color: var(--cyan);
}

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

.btn-outline {
  background: transparent;
  color: var(--heading) !important;
  border-color: var(--heading);
}

.btn-outline:hover {
  background: var(--heading);
  color: var(--bg) !important;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.header-cta {
  margin-left: 0.5rem;
}

/* Hero with slideshow */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 5rem 0 4rem;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(16, 35, 86, 0.92) 0%,
    rgba(16, 35, 86, 0.75) 45%,
    rgba(16, 35, 86, 0.45) 100%
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (min-width: 768px) {
  .hero .container {
    padding-bottom: 6rem;
  }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  max-width: 22ch;
  margin: 0 0 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(16, 35, 86, 0.5);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.hero-arrow:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-dot.is-active {
  background: var(--cyan);
  transform: scale(1.2);
}

.hero-caption {
  position: absolute;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 3;
  font-size: 0.8125rem;
  opacity: 0.85;
  max-width: 14rem;
  text-align: right;
  display: none;
}

@media (min-width: 768px) {
  .hero-caption {
    display: block;
  }
}

.hero .subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.92;
  max-width: 52ch;
  margin: 0 0 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero .btn-outline {
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--text-on-light) !important;
}

/* Benefits strip */
.benefits-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  padding: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item .icon {
  font-size: 1.5rem;
  line-height: 1;
}

.benefit-item strong {
  display: block;
  color: var(--white);
  font-size: 0.9375rem;
}

.benefit-item span {
  font-size: 0.875rem;
  opacity: 0.85;
}

/* Image gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 0.75rem;
}

.photo-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0;
}

.photo-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.photo-gallery .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-gallery figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(16, 35, 86, 0.85));
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Cards with images */
.card-image {
  padding: 0;
  overflow: hidden;
}

.card-image .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-image .card-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

/* Split section with image */
.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cyan);
  flex-shrink: 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-muted);
}

.section-apply {
  padding: 5rem 0 6rem;
  scroll-margin-top: 5.5rem;
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg) 100%);
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
}

.section-header p {
  margin: 0;
  color: var(--gray-600);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.card p,
.card li,
.job-details dd {
  color: var(--text);
}

.card .meta {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--cyan);
  box-shadow: var(--shadow);
  transition: background-color 0.2s ease;
}

.testimonial blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--text);
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--heading);
  font-size: 0.9375rem;
}

.testimonial cite span {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Job listings */
.job-card {
  margin-bottom: 2rem;
}

.job-card:last-child {
  margin-bottom: 0;
}

.job-card h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
}

.job-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--cyan);
  color: var(--white);
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
}

.job-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
  padding: 1.25rem;
  background: var(--bg-muted);
  border-radius: var(--radius);
}

.job-details dt {
  font-weight: 600;
  color: var(--heading);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.job-details dd {
  margin: 0.25rem 0 0;
}

.job-requirements ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

/* Careers apply section */
.section-apply .container {
  max-width: 52rem;
}

/* Forms */
.form-section {
  background: var(--form-bg);
  color: var(--white);
  border-radius: 12px;
  margin: 0;
  box-shadow: 0 8px 40px rgba(16, 35, 86, 0.2);
  overflow: hidden;
}

.form-section-inner {
  padding: 2rem 1.5rem;
}

.form-section h2,
.form-section h3 {
  color: var(--white);
}

.form-section-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.form-section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.form-intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8125rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--input-bg);
  color: var(--input-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group select option,
.contact-form select option {
  background-color: var(--input-bg);
  color: var(--input-text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 194, 212, 0.35);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.form-actions .form-note {
  margin: 0 0 1.25rem;
}

.form-actions .btn {
  width: 100%;
}

.form-note {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.form-success {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 194, 212, 0.2);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 194, 212, 0.4);
}

.form-alert {
  margin-bottom: 1.25rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #664d03;
  font-size: 0.9375rem;
}

[data-theme="dark"] .form-alert {
  background: rgba(255, 193, 7, 0.12);
  border-color: rgba(255, 193, 7, 0.35);
  color: #ffe8a3;
}

.form-section .form-alert {
  background: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.45);
  color: #ffe8a3;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 640px) {
  .form-section-inner {
    padding: 2.75rem 2.5rem;
  }

  .form-actions .btn {
    width: auto;
    min-width: 220px;
  }
}

@media (min-width: 768px) {
  .form-section-inner {
    padding: 3rem 3rem;
  }
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--cyan);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1.25rem;
  padding-right: 2rem;
  color: var(--gray-600);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-info .label {
  font-weight: 600;
  color: var(--heading);
  min-width: 4rem;
}

.contact-form {
  max-width: 480px;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--heading);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--input-bg);
  color: var(--input-text);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 194, 212, 0.25);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.map-placeholder {
  background: var(--bg-muted);
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
  border: 2px dashed var(--border);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
}

/* About stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

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

.stat .label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--form-bg);
  color: #ffffff;
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.page-hero p {
  margin: 0;
  opacity: 0.9;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.75;
  text-align: center;
}

.fedex-disclaimer {
  font-size: 0.75rem;
  opacity: 0.65;
  margin-top: 0.5rem;
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  .header-cta {
    display: none;
  }

  .header-actions .theme-toggle {
    margin-left: auto;
  }

  .form-grid,
  .contact-grid,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-apply {
    padding: 3.5rem 0 4rem;
    scroll-margin-top: 4.5rem;
  }

  .form-section-inner {
    padding: 1.75rem 1.25rem;
  }

  .form-section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
  }

  .hero {
    min-height: 75vh;
    padding: 4rem 0 6rem;
  }

  .hero-controls {
    bottom: 1.25rem;
  }

  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .photo-gallery .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
  }

  .photo-gallery .gallery-item {
    min-height: 140px;
  }
}
