/* ============================================================
   careers.css — Careers Page
   ANIB Building Contracting LLC
   Design System: Cormorant Garamond + DM Sans | Navy/Gold/Cream
   ============================================================ */

/* ── ROOT & RESET ── */
:root {
  --gold: #C9973A;
  --gold-light: #E8B25C;
  --primary: #0D1B2A;
  --cream: #F5F0E8;
  --dark-bg: #080F18;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", sans-serif;
  background: #F9F7F4;
  color: #1a1a1a;
  overflow-x: hidden;
  cursor: none;
}
::selection { background: rgba(201,151,58,0.2); color: var(--primary); }

/* ── CURSOR ── */
.cursor { width:10px;height:10px;background:var(--gold);border-radius:50%;position:fixed;top:0;left:0;pointer-events:none;z-index:9999;transition:transform 0.15s ease;mix-blend-mode:difference; }
.cursor-ring { width:36px;height:36px;border:1.5px solid rgba(201,151,58,0.7);border-radius:50%;position:fixed;top:0;left:0;pointer-events:none;z-index:9998;transition:all 0.3s ease;opacity:0.6; }
@media(max-width:768px) { .cursor, .cursor-ring { display:none; } body { cursor:auto; } }

/* ── PROGRESS BAR ── */
.progress-bar { position:fixed;top:0;left:0;height:2px;background:linear-gradient(to right,var(--gold),var(--gold-light));z-index:9999;width:0%;transition:width 0.08s linear; }

/* ── HEADER ── */
.site-header { position:fixed;top:0;left:0;right:0;z-index:100;padding:0 2rem;display:flex;align-items:center;justify-content:space-between;height:80px;transition:all 0.5s ease;background:rgba(13,27,42,0.75);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px); }
.site-header::after { content:'';position:absolute;bottom:0;left:5%;right:5%;height:1px;background:linear-gradient(to right,transparent,rgba(201,151,58,0.3),transparent); }
.site-header.scrolled { background:rgba(13,27,42,0.97);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);box-shadow:0 4px 40px rgba(0,0,0,0.4);height:68px; }
.logo-wrap { display:flex;align-items:center;gap:14px; }
.logo-wrap img { height:60px;transition:all 0.4s; }
.site-header.scrolled .logo-wrap img { height:42px; }
.logo-text { font-family:"DM Sans",sans-serif;font-weight:600;letter-spacing:0.15em;font-size:0.85rem;color:white;text-transform:uppercase; }
.nav-links { display:flex;gap:2.5rem;align-items:center; }
.nav-links a { font-size:0.78rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.85);text-decoration:none;position:relative;transition:color 0.3s; }
.nav-links a::after { content:'';position:absolute;bottom:-4px;left:0;width:0;height:1px;background:var(--gold);transition:width 0.3s ease; }
.nav-links a:hover,.nav-links a.nav-active { color:var(--gold-light); }
.nav-links a:hover::after,.nav-links a.nav-active::after { width:100%; }
.nav-cta { background:var(--gold);color:var(--primary)!important;padding:9px 22px;border-radius:4px;font-weight:700!important;transition:all 0.3s ease!important; }
.nav-cta:hover { background:var(--gold-light);transform:translateY(-1px);box-shadow:0 6px 20px rgba(201,151,58,0.5); }
.nav-cta::after { display:none!important; }
.mobile-btn { display:none;background:none;border:1px solid rgba(201,151,58,0.5);color:white;width:40px;height:40px;border-radius:4px;cursor:pointer;font-size:1.2rem;align-items:center;justify-content:center; }
@media(max-width:768px) { .nav-links { display:none; } .mobile-btn { display:flex; } }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 85vw); height: 100vh;
  background: var(--primary); z-index: 200;
  padding: 6rem 2.5rem 3rem;
  display: flex; flex-direction: column; gap: 0;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid rgba(201,151,58,0.2);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 1.5rem; font-family: "Cormorant Garamond", serif;
  font-weight: 600; padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 199; opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-overlay.show { opacity: 1; pointer-events: all; }
.close-menu {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer;
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  height: 85vh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: url('assets/images/services/career-hero.webp') center center / cover no-repeat;
}
.page-hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #0D1B2A 0%, #1a3050 100%); z-index: -1;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.65) 55%, rgba(13,27,42,0.45) 100%);
}
.page-hero-breadcrumb {
  position: absolute; top: 100px; left: clamp(1.5rem, 5vw, 5rem);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); z-index: 10;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span:last-child { color: var(--gold); }
@media(max-width: 768px) { .page-hero-breadcrumb { top: 88px; } }

.page-hero-content { position:relative;z-index:10;padding:80px clamp(1.5rem,5vw,5rem) 0;max-width:820px; }
@media(min-width:768px) { .page-hero-content { padding-top:0; } }

.page-hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.page-hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
@media(max-width: 767px) { .page-hero-tag { display: none; } }

.page-hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300; line-height: 1.05; color: white;
  margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.page-hero-h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  max-width: 540px; line-height: 1.75; margin-bottom: 2.2rem;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}
.hero-cta-row {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.9s forwards;
}

/* Stats bar */
.page-hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(8,15,24,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,151,58,0.2);
  display: flex; align-items: stretch; justify-content: center;
  z-index: 10;
  opacity: 0; animation: fadeUp 1s 1.1s forwards;
}
.phs-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.4rem 2.5rem; gap: 4px; text-align: center;
}
.phs-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1;
  display: inline;
}
.phs-plus { font-size: 1.3rem; color: var(--gold); font-weight: 700; }
.phs-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.phs-divider { width: 1px; background: rgba(255,255,255,0.08); align-self: stretch; }
@media(max-width: 768px) {
  .page-hero-stats { flex-wrap: wrap; }
  .phs-stat { padding: 1.1rem 1.5rem; }
  .phs-divider { display: none; }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; right: 2.5rem; bottom: 100px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35); font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase; z-index: 10;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.5)} }
@media(max-width: 768px) { .scroll-hint { display: none; } }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ── SECTIONS ── */
.section { padding: 6rem clamp(1.5rem, 5vw, 5rem); }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.15; color: var(--primary);
}
.section-h2 em { font-style: italic; color: var(--gold); }

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: var(--primary);
  padding: 13px 32px; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  border-radius: 4px; text-decoration: none;
  display: inline-block; transition: all 0.35s ease;
  border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,151,58,0.5); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.45); color: white;
  padding: 13px 32px; font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  border-radius: 4px; text-decoration: none;
  display: inline-block; transition: all 0.35s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,151,58,0.07); }
.btn-outline-dark {
  border: 1.5px solid var(--primary); color: var(--primary);
  padding: 13px 32px; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  border-radius: 4px; text-decoration: none;
  display: inline-block; transition: all 0.35s ease;
}
.btn-outline-dark:hover { background: var(--primary); color: white; }

/* ── WHY JOIN US ── */
.why-section { background: white; }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-header { max-width: 560px; margin-bottom: 3.5rem; }
.why-intro { color: #666; line-height: 1.85; margin-top: 1.2rem; font-size: 0.95rem; }

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media(max-width: 900px) { .why-cards { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 540px) { .why-cards { grid-template-columns: 1fr; } }

.why-card {
  background: #FDFCF9;
  border: 1px solid rgba(201,151,58,0.13);
  border-radius: 6px;
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: all 0.4s ease; cursor: default;
}
.why-card:hover {
  border-color: rgba(201,151,58,0.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(201,151,58,0.12);
}
.why-card-num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem; font-weight: 700; line-height: 1;
  color: rgba(201,151,58,0.09);
  transition: color 0.4s;
}
.why-card:hover .why-card-num { color: rgba(201,151,58,0.18); }
.why-card-icon {
  width: 44px; height: 44px; margin-bottom: 1rem;
  color: var(--gold);
}
.why-card-icon svg { width: 100%; height: 100%; }
.why-card-title { font-weight: 700; font-size: 0.95rem; color: var(--primary); margin-bottom: 0.6rem; }
.why-card-desc { font-size: 0.83rem; color: #777; line-height: 1.72; }

/* ── LIFE AT ANIB ── */
.life-section {
  background: var(--primary);
  padding: 6rem clamp(1.5rem, 5vw, 5rem);
  position: relative; overflow: hidden;
}
.life-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.life-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
@media(max-width: 900px) { .life-inner { grid-template-columns: 1fr; gap: 3.5rem; } }

.life-desc { color: rgba(255,255,255,0.6); line-height: 1.85; margin-top: 1.2rem; font-size: 0.95rem; }
.life-pillars { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.life-pillar { display: flex; align-items: center; gap: 14px; }
.lp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.life-pillar span { font-size: 0.85rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* Mosaic */
.life-mosaic { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; height: 480px; }
@media(max-width: 540px) { .life-mosaic { height: auto; grid-template-columns: 1fr; grid-template-rows: auto; } }
.lm-large {
  grid-row: 1 / 3;
  position: relative; overflow: hidden; border-radius: 6px;
}
.lm-large img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.lm-large:hover img { transform: scale(1.05); }
.lm-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: var(--gold); border-radius: 4px; padding: 0.6rem 1rem;
  display: flex; flex-direction: column; align-items: center;
}
.lmb-num { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.lmb-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); }
.lm-smalls { display: flex; flex-direction: column; gap: 1rem; }
.lm-small { overflow: hidden; border-radius: 6px; }
.lm-small img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.lm-small:hover img { transform: scale(1.06); }

/* ── JOB OPENINGS ── */
.openings-section { background: #F9F7F4; }
.openings-inner { max-width: 1100px; margin: 0 auto; }
.openings-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.openings-sub { color: #666; font-size: 0.92rem; line-height: 1.75; max-width: 500px; margin-top: 0.75rem; }
.job-count-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,151,58,0.35);
  background: rgba(201,151,58,0.06);
  flex-shrink: 0;
}
.job-count-badge span:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem; font-weight: 700; line-height: 1;
  color: var(--gold);
}
.job-count-badge span:last-child {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #999; text-align: center; line-height: 1.3;
}

/* Filter buttons */
.job-filter { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.jf-btn {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #777;
  background: white; border: 1px solid rgba(201,151,58,0.18);
  padding: 8px 18px; border-radius: 3px;
  cursor: pointer; transition: all 0.3s;
}
.jf-btn:hover { color: var(--gold); border-color: var(--gold); }
.jf-btn.active { background: var(--primary); color: var(--gold); border-color: var(--primary); }

/* Job cards */
.jobs-list { display: flex; flex-direction: column; gap: 1rem; }
.job-card {
  background: white;
  border: 1px solid rgba(201,151,58,0.1);
  border-radius: 6px; padding: 2.25rem 2.5rem;
  display: grid; grid-template-columns: 1fr auto;
  gap: 2.5rem; align-items: start;
  position: relative; overflow: hidden;
  transition: all 0.35s ease;
}
.job-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: transparent; transition: background 0.35s;
}
.job-card:hover {
  border-color: rgba(201,151,58,0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.07);
  transform: translateX(4px);
}
.job-card:hover::before { background: var(--gold); }
.job-card.hidden { display: none; }
@media(max-width: 640px) { .job-card { grid-template-columns: 1fr; gap: 1.5rem; } }

.jc-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.jc-dept {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--primary);
  background: rgba(201,151,58,0.13); padding: 4px 11px; border-radius: 2px;
}
.jc-status { font-size: 0.72rem; font-weight: 600; color: #888; }
.jc-hiring { color: #3a8a4a; }
.jc-few { color: #b07e20; }

.jc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem; font-weight: 600;
  color: var(--primary); margin-bottom: 0.75rem; line-height: 1.2;
}
.jc-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 1rem; }
.jc-meta span {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: #999; font-weight: 500;
}
.jc-meta svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.jc-desc { font-size: 0.88rem; color: #666; line-height: 1.78; margin-bottom: 1rem; }
.jc-reqs { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.jc-reqs li {
  font-size: 0.82rem; color: #777;
  display: flex; align-items: center; gap: 10px;
}
.jc-reqs li::before { content: ''; width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; }

.jc-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; padding-top: 0.5rem; }
.jc-apply { white-space: nowrap; }

.no-jobs-msg {
  text-align: center; padding: 3rem;
  background: white; border-radius: 6px;
  border: 1px dashed rgba(201,151,58,0.25);
  color: #888; font-size: 0.92rem; line-height: 1.75;
}

/* ── PROCESS ── */
.process-section { background: var(--primary); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 5rem; }
.process-header .section-h2 { color: white; }
.process-sub { color: rgba(255,255,255,0.5); font-size: 0.92rem; line-height: 1.8; max-width: 500px; margin: 1rem auto 0; }

.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
@media(max-width: 768px) { .process-steps { grid-template-columns: 1fr; } }

.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1.5rem; position: relative; }
.ps-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(201,151,58,0.12); border: 1.5px solid rgba(201,151,58,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem; font-weight: 700; color: var(--gold);
  position: relative; z-index: 2; flex-shrink: 0;
  transition: all 0.35s;
}
.process-step:hover .ps-num { background: var(--gold); color: var(--primary); border-color: var(--gold); }
.ps-line {
  position: absolute; top: 23px; left: calc(50% + 23px);
  width: calc(100% - 46px);
  height: 1px;
  background: linear-gradient(to right, rgba(201,151,58,0.4), rgba(201,151,58,0.1));
  z-index: 1;
}
.ps-line-last { display: none; }
@media(max-width: 768px) {
  .process-step { flex-direction: row; text-align: left; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); align-items: flex-start; }
  .ps-line { display: none; }
}
.ps-content { padding-top: 2rem; }
@media(max-width: 768px) { .ps-content { padding-top: 0; } }
.ps-icon { font-size: 1.8rem; margin-bottom: 1rem; }
@media(max-width: 768px) { .ps-icon { display: none; } }
.ps-title { font-family: "Cormorant Garamond", serif; font-size: 1.2rem; font-weight: 600; color: white; margin-bottom: 0.65rem; }
.ps-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* ── TEAM VOICES ── */
.team-voices-section { background: var(--cream); }
.tv-inner { max-width: 1200px; margin: 0 auto; }
.tv-header { margin-bottom: 3.5rem; }
.tv-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media(max-width: 900px) { .tv-cards { grid-template-columns: 1fr; } }

.tv-card {
  background: white;
  border: 1px solid rgba(201,151,58,0.12);
  border-radius: 6px; padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.tv-card:hover {
  border-color: rgba(201,151,58,0.35);
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.09);
}
.tv-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem; font-weight: 700; line-height: 0.7;
  color: rgba(201,151,58,0.18);
  position: absolute; top: 1.5rem; right: 1.5rem;
}
.tv-text {
  font-size: 0.9rem; color: #666; line-height: 1.85;
  font-style: italic; margin-bottom: 1.75rem;
  position: relative; z-index: 2;
}
.tv-author { display: flex; align-items: center; gap: 14px; }
.tv-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,151,58,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem; font-weight: 700; color: var(--gold);
  flex-shrink: 0;
}
.tv-name { font-weight: 700; font-size: 0.88rem; color: var(--primary); }
.tv-role { font-size: 0.72rem; color: #999; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* ── APPLICATION FORM ── */
.apply-section { background: white; }
.apply-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.55fr;
  gap: 5rem; align-items: start;
}
@media(max-width: 900px) { .apply-inner { grid-template-columns: 1fr; gap: 3rem; } }
.apply-lead { color: #666; line-height: 1.85; margin-top: 1.2rem; font-size: 0.95rem; }
.apply-contacts { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.4rem; }
.ac-item { display: flex; align-items: flex-start; gap: 14px; }
.ac-icon {
  width: 38px; height: 38px; border-radius: 4px;
  background: rgba(201,151,58,0.1); border: 1px solid rgba(201,151,58,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.ac-icon svg { width: 17px; height: 17px; }
.ac-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #bbb; margin-bottom: 3px; }
.ac-val { font-size: 0.88rem; color: var(--primary); font-weight: 500; }

/* Form */
.apply-form-wrap {
  background: #FDFCF9;
  border: 1px solid rgba(201,151,58,0.12);
  border-radius: 8px; padding: 3rem;
  box-shadow: 0 20px 65px rgba(0,0,0,0.07);
}
.apply-form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media(max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-full { grid-column: 1/-1; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #666; }
.req { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid #e8e2d8; border-radius: 4px;
  font-size: 0.88rem; font-family: "DM Sans", sans-serif;
  color: #1a1a1a; background: white;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none; -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,151,58,0.1);
}
.form-group input.error, .form-group select.error { border-color: #c53030; box-shadow: 0 0 0 3px rgba(197,48,48,0.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9973A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}

/* File drop */
.file-drop {
  position: relative; border: 2px dashed rgba(201,151,58,0.25);
  border-radius: 6px; background: white;
  cursor: pointer; transition: all 0.3s;
}
.file-drop:hover, .file-drop.dragover { border-color: var(--gold); background: rgba(201,151,58,0.03); }
.fd-inner {
  pointer-events: none; padding: 2.25rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-align: center;
}
.fd-inner svg { width: 36px; height: 36px; color: var(--gold); opacity: 0.6; }
.fd-inner p { font-size: 0.88rem; color: #777; }
.fd-browse { color: var(--gold); font-weight: 600; }
.fd-hint { font-size: 0.72rem !important; color: #bbb !important; }
.file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-selected { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-top: 0.4rem; min-height: 1.2em; }
.field-error { font-size: 0.72rem; color: #c53030; margin-top: 2px; min-height: 1em; display: block; }

.form-submit-row { display: flex; justify-content: flex-end; margin-top: 0.5rem; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: white;
  padding: 13px 34px; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 4px; border: none; cursor: pointer;
  transition: all 0.35s ease;
}
.btn-submit:hover { background: #162332; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(13,27,42,0.3); }
.btn-submit:disabled { opacity: 0.55; pointer-events: none; }
.btn-submit svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-submit:hover svg { transform: translateX(4px); }

.form-success {
  text-align: center; padding: 2.5rem;
  background: rgba(201,151,58,0.05);
  border: 1px solid rgba(201,151,58,0.22);
  border-radius: 6px; margin-top: 1rem;
}
.fs-tick {
  font-size: 2.8rem; color: var(--gold); display: block; margin-bottom: 0.75rem;
}
.form-success h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem; font-weight: 600; color: var(--primary); margin-bottom: 0.6rem;
}
.form-success p { font-size: 0.88rem; color: #777; line-height: 1.75; }

/* ── CTA ── */
.cta-section { background: var(--cream); text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-sub { color: #777; line-height: 1.78; margin-bottom: 2.5rem; font-size: 0.95rem; margin-top: 1rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.5);
  padding: 5rem clamp(1.5rem,5vw,5rem) 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media(max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media(max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 120px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.75; color: rgba(255,255,255,0.38); max-width: 260px; }
.footer-col h5 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { font-size: 0.84rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 0.7rem; }
.footer-contact-item span:first-child { color: var(--gold); margin-top: 1px; }
.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.73rem; flex-wrap: wrap; gap: 0.5rem;
}

/* ── FLOAT GROUP ── */
.float-group {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  z-index: 90; display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.wa-float {
  width: 54px; height: 54px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: all 0.35s; text-decoration: none;
}
.wa-float:hover { background: #20bc5a; transform: scale(1.1) translateY(-2px); box-shadow: 0 14px 35px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; }
.scroll-top-btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--primary); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.35s;
  box-shadow: 0 8px 25px rgba(13,27,42,0.4);
  opacity: 0; transform: translateY(16px); pointer-events: none;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px) scale(1.08); }
.scroll-top-btn svg { width: 20px; height: 20px; stroke: var(--gold); transition: stroke 0.3s; }
.scroll-top-btn:hover svg { stroke: white; }