/* =============================================
   WEST MICHIGAN PALLET MANAGEMENT
   style.css
   ============================================= */

:root {
  --black: #111111;
  --dark: #1a1a1a;
  --dark2: #222222;
  --gray: #444444;
  --mid: #888888;
  --light: #f5f5f5;
  --white: #ffffff;
  --gold: #e8a020;
  --gold-dark: #c8861a;
  --green: #2d6a2d;
  --green-light: #3a8f3a;
  --blue-accent: #1a4a8a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 72px;
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* TYPOGRAPHY */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-eyebrow.dark { color: var(--green); }
.section-eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.0;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.section-title.center { text-align: center; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; margin-top: 1rem; background: var(--gold); color: var(--black); border-radius: var(--radius); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; transition: var(--transition); border: 2px solid var(--gold); }
.btn-sm:hover { background: var(--gold-dark); transform: translateY(-1px); }
.full-width { width: 100%; text-align: center; }

/* =============================================
   NAV
   ============================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  height: var(--nav-height);
}
#navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 100%;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { height: 40px; width: auto; display: none; border-radius: 4px; background: white; padding: 3px 8px; }
.logo-img.loaded { display: block; }
.footer-brand .footer-logo { height: 48px; width: auto; margin-bottom: 1rem; display: none; background: white; padding: 4px 10px; border-radius: 4px; }
.logo-text { font-family: var(--font-display); font-size: 1.8rem; color: var(--white); letter-spacing: 0.05em; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--black) !important; padding: 0.5rem 1.2rem; border-radius: var(--radius); }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--black) !important; }
.nav-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.zoomed { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
  padding-top: var(--nav-height);
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--gold);
  padding: 1.25rem 2rem;
}
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 0; flex-wrap: wrap;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0.5rem 3rem;
}
.stat-number { font-family: var(--font-display); font-size: 2.5rem; color: var(--black); line-height: 1; }
.stat-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(0,0,0,0.65); margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 50px; background: rgba(0,0,0,0.2); }

/* =============================================
   ABOUT
   ============================================= */
.about { padding: 7rem 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text p { font-size: 1.05rem; color: var(--gray); margin-bottom: 1.25rem; line-height: 1.8; }
.about-locations { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.location-badge {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.loc-icon { font-size: 1.25rem; }
.location-badge strong { display: block; font-size: 0.95rem; color: var(--dark); }
.location-badge span { font-size: 0.8rem; color: var(--mid); }
.about-image { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.about-image img { width: 100%; height: 500px; object-fit: cover; }

/* =============================================
   SERVICES INTRO
   ============================================= */
.services-intro { padding: 5rem 0 2rem; background: var(--light); text-align: center; }
.services-intro-sub { font-size: 1.1rem; color: var(--gray); max-width: 500px; margin: 0 auto; }

/* =============================================
   DIVISIONS
   ============================================= */
.division {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.division-dark { background: var(--dark); }
.division-light { background: var(--light); }
.division-green { background: var(--green); }

.division-image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.division-flip .division-image { order: 2; }
.division-flip .division-content { order: 1; }

.division-content {
  display: flex; align-items: center;
  padding: 4rem;
}
.division-inner { max-width: 520px; }

.division-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.division-title.dark { color: var(--dark); }

.division-desc { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; line-height: 1.75; }
.division-desc.dark { color: var(--gray); }

.feature-list { margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li { font-size: 0.95rem; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 0.75rem; }
.feature-list.dark li { color: var(--gray); }
.check { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.check-dark { color: var(--green); font-weight: 700; font-size: 1.1rem; }

.division-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* CCR Badge */
.ccr-badge { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.ccr-logo { height: 40px; width: auto; display: none; }
.ccr-logo.loaded { display: block; }
.ccr-name { font-family: var(--font-display); font-size: 1.4rem; color: rgba(255,255,255,0.9); letter-spacing: 0.05em; }

/* Materials tags */
.materials-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.material-tag {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
}

/* =============================================
   IBC SHOWCASE
   ============================================= */
.ibc-showcase { background: var(--dark2); }
.ibc-grid { display: grid; grid-template-columns: 1fr 1fr; }
.ibc-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.ibc-caption {
  background: var(--dark2); padding: 1.5rem 2rem; text-align: center;
  border-top: 2px solid var(--gold);
}
.ibc-caption p { color: rgba(255,255,255,0.6); font-size: 0.95rem; font-style: italic; }

/* =============================================
   PHOTO ROW
   ============================================= */
.photo-row { background: var(--dark2); }
.photo-row-grid { display: grid; grid-template-columns: 1fr 1fr; }
.photo-row-grid img { width: 100%; height: 350px; object-fit: cover; display: block; }

/* =============================================
   SITE AUDIT
   ============================================= */
.site-audit { padding: 6rem 0; background: var(--dark); }
.audit-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  background: var(--dark2);
  border-radius: 16px;
  padding: 3.5rem;
  border: 1px solid rgba(232,160,32,0.2);
}
.audit-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.audit-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--white); line-height: 1.05; margin-bottom: 1.25rem;
}
.audit-text p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; }
.audit-benefits { display: flex; flex-direction: column; gap: 0.6rem; }
.audit-benefits li { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.audit-form h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--white); margin-bottom: 1.5rem; }
.audit-form form, #contactForm { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.4); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}
select option { background: var(--dark2); color: var(--white); }
textarea { resize: vertical; }

/* =============================================
   TRUCKING
   ============================================= */
.trucking {
  position: relative; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.trucking-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.trucking-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.3) 100%);
}
.trucking-content { position: relative; z-index: 2; padding: 6rem 0; width: 100%; }
.trucking-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  color: var(--white); line-height: 0.95; margin-bottom: 1.5rem;
}
.trucking-desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 500px; margin-bottom: 1rem; line-height: 1.75; }
.trucking-stats {
  display: flex; gap: 3rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.t-stat { display: flex; flex-direction: column; }
.t-num { font-family: var(--font-display); font-size: 3.5rem; color: var(--gold); line-height: 1; }
.t-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

/* =============================================
   CAREERS
   ============================================= */
.careers { padding: 7rem 0; background: var(--light); }
.careers-sub { text-align: center; font-size: 1.1rem; color: var(--gray); max-width: 550px; margin: 0 auto 3rem; }

.jobs-accordion { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.job-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e0e0e0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}
.job-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.job-item.open { border-color: var(--gold); }

.job-header {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; text-align: left;
}
.job-title-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.job-title { font-weight: 700; font-size: 1rem; color: var(--dark); }
.job-locations { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.loc-pill {
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.job-arrow { font-size: 1.5rem; color: var(--gold); font-weight: 300; transition: transform 0.3s; flex-shrink: 0; }
.job-item.open .job-arrow { transform: rotate(45deg); }

.job-body {
  padding: 0 1.5rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.job-item.open .job-body {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}
.job-body p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

/* =============================================
   CONTACT
   ============================================= */
.contact { padding: 7rem 0; background: var(--dark); }
.contact .section-title { color: var(--white); }
.contact-sub { text-align: center; color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 4rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-location h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.contact-location p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; }
.contact-location p:last-child { color: var(--gold); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }
.phone-link {
  font-family: var(--font-display);
  font-size: 2.5rem; color: var(--gold);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.phone-link:hover { color: var(--white); }

.contact-form-wrap h3 { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin-bottom: 1.5rem; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--black); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .footer-logo { height: 50px; width: auto; margin-bottom: 1rem; display: none; background: white; padding: 4px 8px; border-radius: 4px; }
.footer-brand .footer-logo.loaded { display: block; }
.footer-tagline { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); letter-spacing: 0.08em; }
.footer-links h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-contact p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--white); }

/* =============================================
   PARALLAX UTILITY
   ============================================= */
@media (prefers-reduced-motion: no-preference) {
  .trucking-bg { background-attachment: fixed; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image img { height: 350px; }
  .division { grid-template-columns: 1fr; }
  .division-image { min-height: 350px; }
  .division-flip .division-image { order: 0; }
  .division-flip .division-content { order: 0; }
  .division-content { padding: 3rem 2rem; }
  .ibc-grid { grid-template-columns: 1fr; }
  .photo-row-grid { grid-template-columns: 1fr; }
  .audit-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .nav-links { 
    display: none; flex-direction: column;
    position: fixed; inset: 0 0 0 30%;
    background: var(--dark); padding: 6rem 2rem 2rem;
    gap: 1.5rem; z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: block; z-index: 1001; }
  
  .hero-headline { font-size: clamp(4rem, 16vw, 6rem); }
  .stats-inner { gap: 0; }
  .stat { padding: 0.5rem 1.5rem; }
  .stat-divider { height: 30px; }
  
  .form-row { grid-template-columns: 1fr; }
  .trucking-stats { gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .division-content { padding: 2.5rem 1.5rem; }
  .audit-card { padding: 2rem 1.5rem; }
  .contact-grid { gap: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .trucking-title { font-size: clamp(3rem, 14vw, 4rem); }
}

/* =============================================
   SUCCESS / ERROR MESSAGES
   ============================================= */
.form-success {
  background: var(--green);
  border-radius: var(--radius);
  padding: 1.25rem;
  color: white;
  text-align: center;
  font-weight: 600;
  display: none;
  line-height: 1.6;
}
.form-success.show { display: block; }
.form-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1; pointer-events: all;
}
.modal-box {
  background: var(--dark2);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%; max-width: 560px;
  position: relative;
  border: 1px solid rgba(232,160,32,0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none;
  color: rgba(255,255,255,0.5); font-size: 1.75rem;
  cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: white; }
.modal-title {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--white);
  margin-bottom: 0.25rem;
}
.modal-subtitle {
  color: var(--gold); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 1.75rem;
}
.field-wrap { display: flex; flex-direction: column; gap: 0.4rem; }
.field-wrap label {
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.field-wrap .optional {
  font-weight: 400; text-transform: none;
  color: rgba(255,255,255,0.35); letter-spacing: 0;
}
#applyForm { display: flex; flex-direction: column; gap: 1rem; }
.modal-note {
  text-align: center; font-size: 0.8rem;
  color: rgba(255,255,255,0.35); margin-top: 0.25rem;
}

@media (max-width: 480px) {
  .modal-box { padding: 1.75rem 1.25rem; }
  .modal-title { font-size: 1.6rem; }
}
