:root {
  --gold: #E0A526;
  --gold-soft: #F5C76A;
  --gold-deep: #B8861A;
  --silver: #B8B8B8;
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --line: #ececec;
  --bg: #ffffff;
  --bg-alt: #fafaf7;
  --shadow-sm: 0 2px 8px rgba(20, 20, 20, 0.04);
  --shadow-md: 0 12px 32px rgba(20, 20, 20, 0.08);
  --radius: 16px;
  --container: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.2; }
h3 { font-size: 1.25rem; line-height: 1.3; }

p { margin: 0 0 1em; color: var(--muted); }

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

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .8rem;
}

.link-underline {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.link-underline:hover { color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand-logo { height: 64px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color .2s;
}
.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--gold-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfaf6 100%);
}
.hero-arc {
  position: absolute;
  top: 0;
  left: 50%;
  width: 140%;
  max-width: 1400px;
  height: 360px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center top, rgba(224, 165, 38, 0.18), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 780px; }
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease), background .25s, color .25s, box-shadow .25s;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 20px rgba(224, 165, 38, 0.25);
}
.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(224, 165, 38, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ---------- About ---------- */
.about-layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 4rem;
  align-items: center;
}
.about-portrait {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
  background: var(--bg-alt);
}
.about-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 20, 20, 0.06);
  pointer-events: none;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}
.about-text { min-width: 0; }
.about-body {
  margin-top: 1rem;
}
.about-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}
.about-body p:last-child { margin-bottom: 0; }

/* ---------- Service cards (compact 3-grid) ---------- */
.cards-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s;
}
.card::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  transition: width .4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card:hover::before { width: 100%; }
.card h3 { margin-bottom: .6rem; }
.card p { margin: 0; font-size: .95rem; }

/* ---------- Second Opinion feature ---------- */
.so-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.so-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--gold-deep));
}
.so-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.so-header h2 { margin-bottom: .4em; }
.so-intro {
  font-size: 1.1rem;
  line-height: 1.7;
}
.so-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.so-what h3,
.so-benefits h3 {
  margin-bottom: .8rem;
}
.so-what p {
  font-size: .98rem;
  line-height: 1.75;
}
.so-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.so-benefits li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 1.1rem;
  font-size: .96rem;
  line-height: 1.65;
  color: var(--muted);
}
.so-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 165, 38, 0.15);
}
.so-benefits strong { color: var(--ink); }
.so-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- Job listings (native) ---------- */
.jobs-wrap { min-height: 240px; }

/* Browser default for [hidden] is display:none, but we override with display:flex below,
   so be explicit — without this, the spinner stays visible after jobs load. */
.jobs-state[hidden],
.jobs-grid[hidden],
.jobs-fallback[hidden] { display: none !important; }

.jobs-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.jobs-state p { margin: 0; color: var(--muted); font-size: .98rem; }
.jobs-state.error p { color: #b03434; }

.jobs-spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(224, 165, 38, 0.18);
  border-top-color: var(--gold);
  animation: jobsSpin .8s linear infinite;
}
@keyframes jobsSpin { to { transform: rotate(360deg); } }

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.job-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s;
  cursor: pointer;
}
.job-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  opacity: 0;
  transition: opacity .35s var(--ease);
  border-radius: var(--radius) 0 0 var(--radius);
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.job-card:hover::before { opacity: 1; }

.job-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.job-logo {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: contain;
  padding: 4px;
}
.job-card-titles { flex: 1; min-width: 0; }
.job-card h3 {
  margin: 0 0 .25rem;
  font-size: 1.2rem;
  line-height: 1.3;
}
.job-subtitle {
  margin: 0;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .02em;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .55rem;
  margin-bottom: 1.1rem;
  font-size: .8rem;
}
.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .7rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .01em;
}
.job-meta .job-deadline {
  color: var(--gold-deep);
  border-color: rgba(224, 165, 38, 0.25);
  background: rgba(224, 165, 38, 0.06);
}

.job-desc {
  flex: 1;
  margin: 0 0 1.4rem;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}
.job-card-link {
  font-size: .92rem;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s var(--ease);
}
.job-card-link::after { content: '→'; }
.job-card:hover .job-card-link { gap: .65rem; }

.jobs-fallback {
  margin-top: 2rem;
  text-align: center;
  font-size: .92rem;
  color: var(--muted);
}

/* ---------- Job detail modal ---------- */
.job-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 1.5rem;
  z-index: 200;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.job-modal[data-open="true"] { opacity: 1; pointer-events: auto; }

.job-modal-card {
  background: #fff;
  border-radius: var(--radius);
  max-width: 760px;
  width: 100%;
  box-shadow: var(--shadow-md);
  position: relative;
  transform: translateY(16px);
  transition: transform .35s var(--ease);
  overflow: hidden;
}
.job-modal[data-open="true"] .job-modal-card { transform: none; }

.job-modal-head {
  padding: 2.4rem 2.4rem 1.2rem;
  border-bottom: 1px solid var(--line);
}
.job-modal-head .job-card-head { margin-bottom: 1rem; }
.job-modal-head h2 {
  margin: 0 0 .3em;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.job-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.job-modal-close:hover { background: var(--line); transform: rotate(90deg); }

.job-modal-body {
  padding: 1.8rem 2.4rem 2.4rem;
  font-size: .98rem;
  line-height: 1.7;
  color: var(--ink);
}
.job-modal-body h2,
.job-modal-body h3,
.job-modal-body h4 {
  margin-top: 1.6em;
  margin-bottom: .5em;
  font-size: 1.15rem;
}
.job-modal-body h2:first-child,
.job-modal-body h3:first-child { margin-top: 0; }
.job-modal-body p { color: var(--ink); margin-bottom: 1em; }
.job-modal-body ul,
.job-modal-body ol { margin: 0 0 1em 1.4rem; padding: 0; }
.job-modal-body li { margin-bottom: .4em; }
.job-modal-body a { color: var(--gold-deep); text-decoration: underline; }

.job-modal-foot {
  padding: 1.6rem 2.4rem 2.2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.job-modal-foot .job-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: .01em;
  transition: background .2s, transform .2s, box-shadow .25s;
  box-shadow: 0 8px 20px rgba(224, 165, 38, 0.25);
}
.job-modal-foot .job-modal-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(224, 165, 38, 0.35);
}
.job-modal-foot .job-modal-meta {
  font-size: .85rem;
  color: var(--muted);
}

body.modal-open { overflow: hidden; }

@media (max-width: 720px) {
  .job-modal { padding: 2rem 1rem; }
  .job-modal-head { padding: 1.8rem 1.4rem 1rem; }
  .job-modal-body { padding: 1.4rem 1.4rem 1.8rem; }
  .job-modal-foot { padding: 1.2rem 1.4rem 1.6rem; }
}

/* ---------- Lists ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .7rem;
  color: var(--ink);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(224, 165, 38, 0.15);
}

/* ---------- Open application form ---------- */
.open-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
}
.open-form h3 { margin-bottom: .3rem; }
.form-desc {
  font-size: .93rem;
  margin-bottom: 1.5rem;
}

/* ---------- Contact ---------- */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.contact-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
}
.contact-list span {
  color: var(--gold-deep);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  align-self: center;
}
.contact-list a:hover { color: var(--gold-deep); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}

/* ---------- Shared form styles ---------- */
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--ink);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field input[type="text"]:focus,
.field input[type="email"]:focus,
.field input[type="tel"]:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(224, 165, 38, 0.15);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input[type="file"] {
  font: inherit;
  font-size: .9rem;
  color: var(--muted);
  padding: .6rem 0;
}
.field-consent label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-weight: 400;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.field-consent input[type="checkbox"] {
  margin-top: .25rem;
  accent-color: var(--gold);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.contact-form .btn,
.open-form .btn { width: 100%; }
.form-fineprint {
  margin: .9rem 0 0;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
}
.form-status {
  margin: 1rem 0 0;
  font-size: .9rem;
  text-align: center;
  min-height: 1.2em;
}
.form-status.success { color: #2a7a3b; }
.form-status.error { color: #b03434; }

/* ---------- Legal pages ---------- */
.legal-page { padding-top: 9rem; padding-bottom: 6rem; }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-wrap h1 { margin-bottom: .3em; }
.legal-meta {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.legal-wrap h2 {
  margin-top: 2.5rem;
  margin-bottom: .8rem;
  font-size: 1.4rem;
}
.legal-wrap p { color: var(--ink); }
.legal-wrap p strong { font-weight: 600; }
.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}
.legal-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .6rem;
  color: var(--ink);
  line-height: 1.65;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.legal-cta { margin-top: 3rem; font-size: .95rem; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 2.5rem 0;
  background: #fff;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo { height: 38px; }
.site-footer p { margin: 0; font-size: .88rem; }
.footer-legal { color: var(--muted); }
.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: var(--gold-deep); }

/* ---------- Reveal anim ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards-compact { grid-template-columns: 1fr; }
  .so-grid { grid-template-columns: 1fr; gap: 2rem; }
  .so-feature { padding: 2rem 1.5rem; }
  .section { padding: 4.5rem 0; }
  .jobs-grid { grid-template-columns: 1fr; }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 720px;
  }
  .about-portrait {
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .brand-logo { height: 48px; }
  .nav {
    position: fixed;
    top: 48px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
  }
  .nav.open { transform: translateY(0); }
  .nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav a:last-child { border-bottom: 0; }
  .nav-cta { text-align: center; margin-top: .5rem; }

  .hero { padding: 7.5rem 0 3rem; min-height: 78vh; }
  .hero-arc { top: 0; }
  .contact-list li { grid-template-columns: 1fr; gap: .15rem; }
  .job-card { padding: 1.7rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
