/* ==========================================================================
   KEVIN BASSEY — PORTFOLIO STYLES
   Plain CSS, no framework. All colors are CSS custom properties so they can
   be changed in one place (see :root below).
   ========================================================================== */

/* -------------------------------------------------------------------------
   THEME TOKENS  — EDIT COLORS HERE
   Neutral palette + one warm accent.
   ------------------------------------------------------------------------- */
:root {
  /* Neutrals */
  --ink:        #1a1d23;   /* primary text / dark surfaces */
  --ink-soft:   #3a404a;   /* secondary text */
  --muted:      #6b7280;   /* tertiary text / captions */
  --line:       #e2e0da;   /* borders / hairlines */
  --bg:         #ffffff;   /* page background */
  --bg-alt:     #f6f4ef;   /* alternating section background (warm off-white) */
  --surface:    #ffffff;   /* cards */

  /* Warm accent (the one accent color) */
  --accent:       #e86a33;
  --accent-dark:  #b84e22;
  --accent-soft:  #fbe9df;
  --accent-ink:   #ffffff;  /* text on accent */

  /* Type */
  --font-sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", "Iowan Old Style", serif;

  /* Layout */
  --maxw: 1140px;
  --gap: 1.5rem;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 6px 24px rgba(26, 29, 35, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 29, 35, 0.18);

  --header-h: 84px;
  --transition: 200ms ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.0625rem;      /* ~17px, readable */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; color: var(--ink); }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 0 0 .5rem; }
h3 { font-size: 1.25rem; margin: 0 0 .5rem; }

a { color: var(--accent-dark); }
a:hover { color: var(--accent); }

p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }

/* Visible focus for keyboard users, everywhere */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* -------------------------------------------------------------------------
   SKIP LINK
   ------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; color: #fff; }

/* -------------------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font: inherit;
  font-weight: 600;
  line-height: 1.1;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }

.btn-secondary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-secondary:hover { background: #000; color: #fff; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

/* -------------------------------------------------------------------------
   HEADER / NAV
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: .6rem;
}
.brand { text-decoration: none; color: var(--ink); display: grid; line-height: 1.15; }
.brand-name { font-family: var(--font-serif); font-weight: 700; font-size: 1.35rem; }
.brand-sub { font-size: .72rem; color: var(--muted); letter-spacing: .01em; }

.primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .35rem;
  margin: 0; padding: 0;
}
.primary-nav a {
  display: inline-block;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .98rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
}
.primary-nav a:hover { background: var(--bg-alt); color: var(--ink); }
.primary-nav a.is-active { color: var(--accent-dark); }
.primary-nav a.nav-cta { background: var(--accent); color: #fff; }
.primary-nav a.nav-cta:hover { background: var(--accent-dark); }

/* Mobile menu button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle-bar { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   SECTIONS
   ------------------------------------------------------------------------- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 0 0 .35rem;
}
.section-lead { max-width: 60ch; color: var(--ink-soft); margin-bottom: 2rem; }

.ph-label { font-size: .75rem; color: var(--muted); margin-top: .4rem; text-align: center; font-style: italic; }
.ph-note  { color: var(--muted); font-style: italic; }
.ph-inline { color: var(--muted); font-style: italic; }

/* -------------------------------------------------------------------------
   HERO
   ------------------------------------------------------------------------- */
.hero {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(1200px 400px at 85% -10%, var(--accent-soft), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.status-banner {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  margin: 0 0 .5rem;
}
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(232,106,51,.6); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,106,51,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(232,106,51,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,106,51,0); }
}
.status-sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.25rem; }

.hero-title { font-size: clamp(2.6rem, 7vw, 4.25rem); margin: 0 0 .25rem; }
.hero-role { font-weight: 700; color: var(--accent-dark); font-size: clamp(1rem, 2.4vw, 1.2rem); margin-bottom: 1rem; }
.hero-statement { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: .5rem; }
.hero-statement-alt { color: var(--muted); max-width: 46ch; margin-bottom: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-media { display: grid; gap: 1rem; }
.hero-headshot { margin: 0; }
.hero-headshot img { border-radius: var(--radius); box-shadow: var(--shadow); width: 55%; }
.hero-feature { margin: 0; }
.hero-feature img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* -------------------------------------------------------------------------
   ABOUT
   ------------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.about-bio p { max-width: 62ch; }
.about-strengths h3 { margin-bottom: 1rem; }
.strengths-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
}
.strengths-grid li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: .7rem .8rem;
  font-weight: 600;
  font-size: .95rem;
}

/* -------------------------------------------------------------------------
   FEATURED PROJECT
   ------------------------------------------------------------------------- */
.featured-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.featured-media { margin: 0; }
.featured-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.detail-list { margin: 0 0 1.5rem; padding-left: 1.1rem; columns: 2; column-gap: 1.5rem; }
.detail-list li { margin-bottom: .35rem; }
.featured-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; }
.tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 999px;
  padding: .25rem .7rem;
  font-size: .8rem;
  font-weight: 600;
}

/* -------------------------------------------------------------------------
   PORTFOLIO
   ------------------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.filter-btn {
  font: inherit; font-weight: 600; font-size: .9rem;
  padding: .5rem .9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-status { color: var(--muted); font-size: .9rem; min-height: 1.2em; margin: 0 0 1.25rem; }

.portfolio-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.project-card { }
.project-card[hidden] { display: none; }
.card-open {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card-open:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.card-open img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--bg-alt); }
.card-body { display: block; padding: 1rem 1.1rem 1.2rem; }
.card-cat {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-dark); margin-bottom: .35rem;
}
.card-title { display: block; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: .35rem; }
.card-desc { display: block; color: var(--ink-soft); font-size: .95rem; margin-bottom: .6rem; }
.card-meta { display: block; color: var(--muted); font-size: .82rem; margin-bottom: .6rem; }
.card-more { display: inline-block; font-weight: 700; color: var(--accent-dark); font-size: .9rem; }
.card-open:hover .card-more { color: var(--accent); }

/* -------------------------------------------------------------------------
   VIDEOS
   ------------------------------------------------------------------------- */
.video-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.video-item figure { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-item video { width: 100%; aspect-ratio: 16 / 9; background: #000; object-fit: cover; }
.video-item figcaption { padding: 1rem 1.1rem 1.2rem; }
.video-item h3 { margin-bottom: .4rem; }
.video-meta { margin: 0 0 .5rem; }
.video-credit { color: var(--muted); font-size: .85rem; }

/* -------------------------------------------------------------------------
   CREATIVE PROCESS
   ------------------------------------------------------------------------- */
.process-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem;
  counter-reset: step;
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700; font-family: var(--font-serif);
  margin-bottom: .75rem;
}
.process-media { margin: .75rem 0 0; }
.process-media img { border-radius: var(--radius-sm); }

/* -------------------------------------------------------------------------
   SKILLS
   ------------------------------------------------------------------------- */
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.skill-group h3 { margin-bottom: 1rem; }
.skill-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.skill-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem .9rem;
  font-weight: 600;
  font-size: .92rem;
}
.skill-list li::before { content: "▹"; color: var(--accent); margin-right: .45rem; }

/* -------------------------------------------------------------------------
   RESUME
   ------------------------------------------------------------------------- */
.resume-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.resume-preview { margin: 0; }
.resume-thumb {
  aspect-ratio: 8.5 / 11;
  background: repeating-linear-gradient(180deg, var(--bg-alt), var(--bg-alt) 22px, #efece5 22px, #efece5 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem;
  font-family: var(--font-serif); font-weight: 700; letter-spacing: .1em; color: var(--muted);
}
.availability { font-weight: 600; }
.availability-alt { color: var(--ink-soft); font-weight: 500; }
.resume-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1rem 0 1.75rem; }
.resume-details { display: grid; gap: 1.1rem; }
.resume-block h3 { margin-bottom: .25rem; font-size: 1.1rem; }
.resume-block p { margin: 0; color: var(--ink-soft); }

/* -------------------------------------------------------------------------
   TESTIMONIALS
   ------------------------------------------------------------------------- */
.testimonial-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}
.testimonial blockquote { margin: 0 0 .75rem; font-size: 1.05rem; color: var(--ink); font-style: italic; }
.testimonial-by { margin: 0; font-weight: 700; color: var(--ink-soft); font-size: .95rem; }

/* -------------------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.contact-list { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .9rem; }
.contact-list li { display: grid; }
.contact-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.contact-note { color: var(--muted); font-size: .85rem; }
.text-link { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.text-link:hover { color: var(--accent); }
.text-link[aria-disabled="true"] { color: var(--muted); text-decoration: line-through; pointer-events: none; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; margin-bottom: .35rem; }
.req { color: var(--accent-dark); }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  padding: .7rem .8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  outline: none;
}
.field textarea { resize: vertical; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #c02626; }
.field-error { color: #c02626; font-size: .85rem; margin: .35rem 0 0; font-weight: 600; }
.form-status { margin: .75rem 0 0; font-weight: 600; min-height: 1.2em; }
.form-status.is-error { color: #c02626; }
.form-status.is-success { color: #1c7c3f; }
.form-fallback { margin: 1rem 0 0; color: var(--muted); font-size: .9rem; }

/* -------------------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #cfd2d8; padding-block: 2rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-name { font-family: var(--font-serif); font-weight: 700; font-size: 1.25rem; color: #fff; margin: 0; }
.footer-role { margin: 0; color: #aeb2ba; font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links .text-link { color: #f0d8c8; }
.footer-links .text-link:hover { color: #fff; }
.footer-copy { margin: 0; color: #9ca1a9; font-size: .9rem; }

/* -------------------------------------------------------------------------
   BACK TO TOP
   ------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }

/* -------------------------------------------------------------------------
   MODAL
   ------------------------------------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal-overlay { position: absolute; inset: 0; background: rgba(15,17,21,0.6); }
.modal-dialog {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
}
.modal-close {
  position: absolute; top: .5rem; right: .5rem; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.9); color: var(--ink);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  box-shadow: var(--shadow);
}
.modal-close:hover { background: var(--accent); color: #fff; }
.modal-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; background: var(--bg-alt); }
.modal-content { padding: clamp(1.25rem, 3vw, 2rem); }
.modal-cat { text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; font-weight: 700; color: var(--accent-dark); margin: 0 0 .25rem; }
.modal-title { margin: 0 0 1rem; }
#modalDetail p { color: var(--ink-soft); }
#modalDetail strong { color: var(--ink); }

/* -------------------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .featured-grid,
  .skills-grid,
  .resume-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .hero-media { order: -1; grid-auto-flow: column; }
  .hero-headshot img { width: 100%; }
  .detail-list { columns: 1; }
}

@media (max-width: 720px) {
  /* Collapse nav into a menu button */
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-140%);
    transition: transform var(--transition);
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem; }
  .primary-nav a { padding: .9rem 1rem; border-radius: var(--radius-sm); }
  .primary-nav a.nav-cta { text-align: center; margin-top: .35rem; }

  .brand-sub { display: none; }
  .hero-media { grid-auto-flow: row; }
  .strengths-grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  body { font-size: 1rem; }
  .hero-actions .btn, .featured-actions .btn, .resume-actions .btn { width: 100%; }
}

/* -------------------------------------------------------------------------
   REDUCED MOTION
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* -------------------------------------------------------------------------
   PRINT  — clean employer print / resume view
   ------------------------------------------------------------------------- */
@media print {
  :root { --maxw: 100%; }
  body { color: #000; background: #fff; font-size: 12pt; }
  .site-header, .nav-toggle, .primary-nav,
  .back-to-top, .filters, .filter-status,
  .hero-actions, .featured-actions, .resume-actions,
  .contact-form, .modal, .status-banner, .status-dot { display: none !important; }

  .section { padding-block: 1rem; }
  .section-alt, .hero { background: #fff !important; }
  a { color: #000; text-decoration: underline; }

  /* Show destination URLs for meaningful links when printed */
  main a[href^="http"]::after,
  main a[href^="mailto"]::after,
  main a[href$=".pdf"]::after {
    content: " (" attr(href) ")";
    font-size: .85em;
    color: #333;
    word-break: break-all;
  }
  .card-open { break-inside: avoid; box-shadow: none; border-color: #999; }
  .testimonial, .process-step, .video-item figure { break-inside: avoid; box-shadow: none; }
  img { box-shadow: none !important; }
}
