/* =============================================================
   work-with-us.css — Work With Us / Careers page
   Requires base.css + nav-footer.css
   ============================================================= */

/* ── Hero ─────────────────────────────────────────────────────── */
.wwu-hero {
  padding-top: calc(var(--topbar-h) + var(--nav-h) + 4.5rem);
  padding-bottom: 5.5rem;
  background: var(--slate);
  position: relative;
  overflow: hidden;
}
.wwu-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.wwu-blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
}
.wwu-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,143,113,0.18) 0%, transparent 65%);
  top: -150px; right: -120px;
  animation: morphBlob 14s ease-in-out infinite alternate;
}
.wwu-blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,123,75,0.1) 0%, transparent 65%);
  bottom: -100px; left: -80px;
  animation: morphBlob 10s 2s ease-in-out infinite alternate-reverse;
}
.wwu-blob-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(74,144,196,0.1) 0%, transparent 65%);
  top: 35%; left: 30%;
}
.wwu-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}
.wwu-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.07;
  color: var(--white);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}
.wwu-h1 em { font-style: italic; color: var(--warm); }
.wwu-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.wwu-hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
}
.wwu-email-btn {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 0.75rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.wwu-email-btn:hover { background: rgba(255,255,255,0.14); color: var(--white); }

/* Culture card */
.wwu-culture-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 2rem;
}
.wwu-culture-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
}
.wwu-culture-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  opacity: 0.65;
  display: block;
}
.wwu-culture-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.wwu-culture-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.wwu-culture-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
}
.wwu-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Mission ──────────────────────────────────────────────────── */
.wwu-mission {
  padding: 6rem 0;
  background: var(--off-white);
}
.wwu-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.wwu-values {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 0.5rem;
}
.wwu-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.wwu-value-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.wwu-value strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.3rem;
}
.wwu-value p {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ── Life at CT ───────────────────────────────────────────────── */
.wwu-life {
  padding: 6rem 0;
  background: var(--white);
}
.wwu-life-hdr { text-align: center; margin-bottom: 3.5rem; }
.wwu-life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.wwu-life-card {
  background: var(--off-white);
  border-radius: var(--r-md);
  border: 1px solid rgba(107,143,113,0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: box-shadow 0.3s, transform 0.3s;
  border-top: 3px solid var(--lc, var(--sage));
}
.wwu-life-card:hover { box-shadow: 0 12px 40px rgba(44,62,53,0.1); transform: translateY(-3px); }
.wwu-life-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wwu-life-icon svg { width: 24px; height: 24px; }
.wwu-life-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--slate);
}
.wwu-life-card p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
}

/* ── Roles ────────────────────────────────────────────────────── */
.wwu-roles {
  padding: 6rem 0;
  background: var(--off-white);
}
.wwu-roles-hdr { text-align: center; margin-bottom: 3.5rem; }
.wwu-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.wwu-role-card {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid rgba(107,143,113,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.wwu-role-card:hover { box-shadow: 0 14px 48px rgba(44,62,53,0.1); transform: translateY(-3px); }
.wwu-role-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 1.75rem 1.5rem;
  border-bottom: 1px solid rgba(107,143,113,0.08);
  background: var(--off-white);
  position: relative;
}
.wwu-role-top::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rc, var(--sage));
}
.wwu-role-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wwu-role-icon svg { width: 22px; height: 22px; }
.wwu-role-tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 0.18rem 0.65rem;
  margin-bottom: 0.2rem;
}
.wwu-role-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--slate);
  line-height: 1.15;
}
.wwu-role-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.wwu-role-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wwu-role-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
}
.wwu-role-requirements {
  background: var(--off-white);
  border-radius: var(--r-sm);
  padding: 1rem 1.1rem;
  margin-top: 0.25rem;
}
.wwu-req-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.wwu-role-requirements ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.wwu-role-requirements li {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.wwu-role-requirements li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  color: var(--sage);
}
.wwu-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  background: var(--ac, var(--sage));
  border-radius: 50px;
  padding: 0.65rem 1.4rem;
  text-decoration: none;
  width: fit-content;
  margin-top: 0.5rem;
  transition: opacity 0.2s, transform 0.2s;
}
.wwu-apply-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── Process ──────────────────────────────────────────────────── */
.wwu-process {
  padding: 6rem 0;
  background: var(--white);
}
.wwu-process-hdr { text-align: center; margin-bottom: 4rem; }
.wwu-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin-inline: auto;
}
.wwu-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  position: relative;
}
.wwu-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}
.wwu-step-line {
  position: absolute;
  top: 20px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 2px;
  z-index: 0;
}
.wwu-step-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 0.4rem;
}
.wwu-step-body p {
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}
.wwu-step-body a {
  color: var(--sage);
  text-decoration: none;
}
.wwu-step-body a:hover { text-decoration: underline; }

/* ── Testimonials ─────────────────────────────────────────────── */
.wwu-testimonials {
  padding: 5rem 0;
  background: var(--sage-pale);
  border-top: 1px solid rgba(107,143,113,0.12);
  border-bottom: 1px solid rgba(107,143,113,0.12);
}
.wwu-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.wwu-testimonial {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid rgba(107,143,113,0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wwu-testimonial-dots {
  display: flex;
  gap: 5px;
}
.wwu-testimonial-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  opacity: 0.6;
  display: block;
}
.wwu-testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate);
  margin: 0;
}
.wwu-testimonial cite {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  font-style: normal;
}

/* ── CTA (shared) ─────────────────────────────────────────────── */
.cta-sec { padding:7rem 0; background:linear-gradient(135deg,var(--warm) 0%,#a85e30 100%); position:relative; overflow:hidden; }
.cta-sec::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events:none; }
.cta-inner { position:relative; text-align:center; display:flex; flex-direction:column; align-items:center; gap:2rem; }
.cta-inner .sec-h { color:var(--white); }
.cta-inner .sec-h em { color:rgba(255,255,255,0.75); }
.cta-inner > p { font-size:1rem; font-weight:300; color:rgba(255,255,255,0.8); max-width:46ch; line-height:1.7; }
.cta-dots { display:flex; align-items:center; gap:8px; }
.cta-dot { width:10px; height:10px; border-radius:50%; opacity:0.75; }
.cta-acts { display:flex; gap:1rem; flex-wrap:wrap; justify-content:center; }
.btn-cw { font-family:var(--font-body); font-size:0.95rem; font-weight:600; color:var(--warm); background:var(--white); border:none; cursor:pointer; padding:0.9rem 2.2rem; border-radius:50px; text-decoration:none; display:inline-flex; align-items:center; gap:0.5rem; transition:transform 0.2s,box-shadow 0.2s; box-shadow:0 4px 24px rgba(0,0,0,0.15); }
.btn-cw:hover { transform:translateY(-2px); box-shadow:0 8px 32px rgba(0,0,0,0.2); }
.btn-co { font-family:var(--font-body); font-size:0.95rem; font-weight:500; color:var(--white); background:transparent; border:2px solid rgba(255,255,255,0.45); cursor:pointer; padding:0.88rem 2rem; border-radius:50px; text-decoration:none; display:inline-flex; align-items:center; gap:0.5rem; transition:border-color 0.2s,background 0.2s; }
.btn-co:hover { border-color:var(--white); background:rgba(255,255,255,0.1); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wwu-roles-grid { grid-template-columns: 1fr 1fr; }
  .wwu-process-steps { grid-template-columns: repeat(2, 1fr); }
  .wwu-step-line { display: none; }
}
@media (max-width: 860px) {
  .wwu-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .wwu-mission-inner { grid-template-columns: 1fr; gap: 3rem; }
  .wwu-life-grid { grid-template-columns: 1fr 1fr; }
  .wwu-testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wwu-roles-grid { grid-template-columns: 1fr; }
  .wwu-life-grid { grid-template-columns: 1fr; }
  .wwu-process-steps { grid-template-columns: 1fr; }
  .cta-acts { flex-direction: column; }
  .wwu-hero-actions { flex-direction: column; align-items: flex-start; }
}