/* Teresa K. Chien personal site
   Mid-Century Modern: sand, teak charcoal, mustard brass */

:root {
  --sand: #f3ebe1;
  --sand-deep: #e8dccf;
  --cream: #f6efe6;
  --ivory: #faf6f0;
  --teak: #2a2420;
  --teak-soft: #4a423c;
  --muted: #6e655c;
  --line: #d4c4b0;
  --mustard: #c4a35a;
  --mustard-deep: #a8873f;
  --mustard-wash: rgba(196, 163, 90, 0.14);
  --olive: #5c6b4a;
  --olive-soft: #6f7f5c;
  --contact-bg: #2a2420;
  --shadow: 0 8px 28px rgba(42, 36, 32, 0.06);
  --radius: 6px;
  --max: 1080px;
  --font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
  --header-h: 4.1rem;
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--teak);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--olive);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, opacity 0.2s ease, background 0.15s ease, border-color 0.15s ease;
}

a:hover {
  color: var(--mustard-deep);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--mustard);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--teak);
  color: var(--cream);
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 235, 225, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--teak);
}

.logo:hover {
  color: var(--teak);
}

.logo:hover .logo-mark {
  background: var(--mustard-deep);
}

.logo-mark {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--mustard);
  border-radius: 1px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--teak-soft);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--mustard-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--teak);
  border-radius: 0;
}

/* Hero: text-first, generous whitespace */
.hero {
  padding: 5.5rem 0 4.75rem;
  background:
    linear-gradient(180deg, var(--ivory) 0%, var(--sand) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--teak);
}

.hero-rule,
.section-rule {
  width: 3.25rem;
  height: 2px;
  background: var(--mustard);
  margin: 0 0 1.35rem;
}

.section-rule {
  margin: 0.85rem 0 0;
}

.section-rule-on-dark {
  background: var(--mustard);
}

.tagline {
  margin: 0 0 1.85rem;
  max-width: 30rem;
  font-size: 1.12rem;
  color: var(--teak-soft);
  line-height: 1.55;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--teak);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--mustard-deep);
  color: var(--ivory);
}

.btn-secondary {
  background: transparent;
  color: var(--teak);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--mustard);
  color: var(--teak);
  background: var(--mustard-wash);
}

.btn-tertiary {
  background: transparent;
  color: var(--teak-soft);
  border-color: transparent;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  padding-inline: 0.85rem;
}

.btn-tertiary:hover {
  color: var(--mustard-deep);
  background: transparent;
  border-color: transparent;
}

.btn-on-dark {
  color: var(--cream);
  border-color: rgba(246, 239, 230, 0.35);
}

.btn-on-dark:hover {
  color: var(--cream);
  border-color: var(--mustard);
  background: rgba(196, 163, 90, 0.12);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.section-header {
  margin-bottom: 2.25rem;
}

.section-label {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
}

.section-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 4vw, 2.55rem);
  font-weight: 400;
  color: var(--teak);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.about-grid {
  display: grid;
  gap: 2rem;
}

.about-prose p {
  margin: 0 0 1.15rem;
  color: var(--teak-soft);
  max-width: 58ch;
  font-size: 1.05rem;
}

.about-prose p:first-child {
  color: var(--teak);
  font-weight: 500;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.strengths {
  padding: 1.6rem 1.65rem 1.7rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-left: 3px solid var(--mustard);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.strengths h3 {
  margin: 0 0 1.05rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--teak);
}

.strength-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.strength-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--teak);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
}

.strength-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--mustard);
  border-radius: 1px;
}

/* Experience */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}

.timeline-item {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 1.65rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4rem;
  bottom: 1.4rem;
  width: 3px;
  background: var(--mustard);
}

.role-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
}

.role-header h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 400;
  color: var(--teak);
  line-height: 1.25;
}

.org {
  margin: 0;
  font-weight: 600;
  color: var(--teak);
}

.meta {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.dates {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--olive);
  white-space: nowrap;
}


.exp-intro {
  margin: 0.85rem 0 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.role-narrative {
  color: var(--teak-soft);
}

.role-narrative p {
  margin: 0;
  max-width: 46rem;
}

.role-narrative p + p {
  margin-top: 0.9rem;
}

.timeline-item-featured {
  background: linear-gradient(180deg, rgba(196, 163, 90, 0.1), var(--ivory) 42%);
  border-color: rgba(196, 163, 90, 0.55);
}

.timeline-item-featured::before {
  background: var(--mustard-deep);
}

/* Credentials */
.credentials-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.credentials-list li {
  padding: 1.5rem 1.55rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--mustard);
}

.credentials-list h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 400;
  color: var(--teak);
}

.credentials-list p {
  margin: 0;
  color: var(--teak-soft);
}

@media (min-width: 720px) {
  .credentials-list {
    grid-template-columns: 1fr 1fr;
  }
}


.timeline-item ul,
.addl-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--teak-soft);
}

.timeline-item li + li,
.addl-list li + li {
  margin-top: 0.45rem;
}

.additional-experience {
  margin-top: 2.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--ivory);
  border: 1px solid var(--line);
}

.additional-experience h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--teak);
}

.addl-list {
  list-style: none;
  padding: 0;
}

.addl-list li + li {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.addl-list strong {
  display: block;
  color: var(--teak);
}

.dates-inline {
  display: block;
  margin: 0.2rem 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--olive);
}

.addl-list p {
  margin: 0;
  color: var(--teak-soft);
}

.earlier-roles {
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.earlier-roles > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1rem;
  padding: 1.15rem 1.5rem;
  border-left: 3px solid var(--mustard);
  font-family: var(--font-sans);
  user-select: none;
}

.earlier-roles > summary::-webkit-details-marker {
  display: none;
}

.earlier-roles > summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--mustard-deep);
  line-height: 1;
  transition: transform 0.15s ease;
}

.earlier-roles[open] > summary::after {
  transform: rotate(45deg);
}

.earlier-roles-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--teak);
}

.earlier-roles-hint {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.earlier-roles-body {
  padding: 0 1.25rem 1.35rem;
  border-top: 1px solid var(--line);
}

.timeline-nested {
  margin-top: 1.25rem;
}

.earlier-roles .additional-experience {
  margin-top: 1.25rem;
  box-shadow: none;
}

/* Skills */
.skills-grid {
  display: grid;
  gap: 1rem;
}

.skill-card {
  padding: 1.35rem 1.4rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.skill-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--teak);
}

.skill-card p {
  margin: 0;
  color: var(--teak-soft);
}

/* Education */
.edu-card {
  padding: 1.75rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 42rem;
  border-top: 3px solid var(--mustard);
}

.edu-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--teak);
}

.edu-card .org {
  margin-bottom: 0.5rem;
  color: var(--teak-soft);
  font-weight: 500;
}

/* Volunteer */
.volunteer-grid {
  display: grid;
  gap: 1rem;
}

.vol-card {
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.vol-card p {
  margin: 0;
  color: var(--teak-soft);
}

/* Contact: warm teak, not navy */
.section-contact {
  background: var(--contact-bg);
  color: var(--cream);
}

.section-contact .section-label {
  color: var(--mustard);
}

.section-contact h2 {
  color: var(--cream);
}

.contact-lead {
  margin: 1rem 0 0;
  max-width: 36rem;
  color: rgba(246, 239, 230, 0.82);
}

.contact-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(196, 163, 90, 0.85);
}

.contact-list a,
.contact-list span:not(.contact-label) {
  color: var(--cream);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
}

.contact-list a:hover {
  color: var(--mustard);
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-contact .btn-primary {
  background: var(--mustard);
  color: var(--teak);
}

.section-contact .btn-primary:hover {
  background: #d4b56a;
  color: var(--teak);
}

/* Footer */
.site-footer {
  padding: 1.35rem 0;
  background: #1f1a17;
  border-top: 1px solid rgba(246, 239, 230, 0.08);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: rgba(246, 239, 230, 0.65);
}

.footer-inner a {
  color: rgba(246, 239, 230, 0.85);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--mustard);
}

.footer-inner p {
  margin: 0;
}

/* Responsive */
@media (min-width: 720px) {
  .hero {
    padding: 6.5rem 0 5.5rem;
  }

  .about-grid {
    grid-template-columns: 1.35fr 0.9fr;
    align-items: start;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .skill-card-wide {
    grid-column: 1 / -1;
  }

  .volunteer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .skill-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sand);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.7rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .site-header {
    position: relative;
  }

  .site-header.is-fixed-open {
    position: sticky;
  }

  .dates {
    white-space: normal;
  }

  .hero {
    padding: 3.75rem 0 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}



.vol-cta {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.vol-cta a,
.vol-card .org a {
  color: var(--teak);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--mustard);
  text-underline-offset: 0.18em;
}

.vol-cta a:hover,
.vol-card .org a:hover {
  color: var(--mustard);
}

/* Header controls: language + music */
.header-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.header-inner {
  flex-wrap: wrap;
}

.site-nav {
  /* keep nav after controls on wide screens */
}

@media (min-width: 861px) {
  .header-inner {
    flex-wrap: nowrap;
  }
  .header-controls {
    order: 3;
    margin-left: 0.75rem;
  }
  .site-nav {
    order: 2;
    margin-left: auto;
  }
  .logo {
    order: 1;
  }
  .nav-toggle {
    display: none;
  }
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.4rem;
  cursor: pointer;
  border-radius: 3px;
}

.lang-btn.is-active {
  color: var(--teak);
  background: var(--mustard-wash);
}

.lang-btn:hover {
  color: var(--mustard-deep);
}

.lang-sep {
  color: var(--line);
  font-size: 0.75rem;
  user-select: none;
}

.music-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.2rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--teak-soft);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.music-toggle:hover {
  border-color: var(--mustard);
  color: var(--teak);
  background: var(--mustard-wash);
}

.music-toggle.is-playing {
  border-color: var(--mustard);
  color: var(--teak);
}

.music-icon {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 1px;
  background: var(--mustard);
  flex-shrink: 0;
}

.music-toggle.is-playing .music-icon {
  background: var(--olive);
}

@media (max-width: 520px) {
  .music-btn-label {
    /* keep label for recruiters; allow wrap */
  }
  .music-toggle {
    font-size: 0.72rem;
    padding: 0.28rem 0.5rem;
  }
}

/* Skills pull-quote */
.skills-pull {
  margin: 0 0 1.75rem;
  padding: 1.35rem 1.5rem 1.4rem;
  max-width: 44rem;
  border-left: 3px solid var(--mustard);
  background: var(--ivory);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.skills-pull p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.45;
  color: var(--teak);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Footer extras */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
}

.footer-egg {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  line-height: 0;
}

.footer-egg-svg {
  display: block;
  width: 28px;
  height: 36px;
  filter: drop-shadow(0 1px 2px rgba(42, 36, 32, 0.25));
}

.footer-egg:hover .footer-egg-svg,
.footer-egg:focus-visible .footer-egg-svg {
  transform: translateY(-1px) rotate(-4deg);
  filter: drop-shadow(0 2px 4px rgba(196, 163, 90, 0.45));
}

.footer-egg-fallback {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(246, 239, 230, 0.5);
  line-height: 1.2;
}

.footer-egg:hover .footer-egg-fallback,
.footer-egg:focus-visible .footer-egg-fallback {
  color: var(--mustard);
}

.music-toggle.is-awaiting {
  border-color: var(--mustard);
  background: var(--mustard-wash);
}

.footer-note {
  margin-top: 0.55rem;
  padding-bottom: 0.35rem;
}

.footer-note p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(246, 239, 230, 0.45);
}

/* Calendar Tetris page */
.play-page .play-main {
  padding: 2.75rem 0 4rem;
  min-height: 70vh;
}

.play-back {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--teak-soft);
  text-decoration: none;
}

.play-back:hover {
  color: var(--mustard-deep);
}

.play-intro h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 4vw, 2.55rem);
  font-weight: 400;
  color: var(--teak);
}

.play-lead {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: var(--teak-soft);
}

.play-board-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
  align-items: flex-start;
}

#tetris {
  display: block;
  width: min(100%, 280px);
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--cream);
  touch-action: none;
}

.play-side {
  display: grid;
  gap: 1rem;
  min-width: 10rem;
  max-width: 16rem;
}

.play-stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.25rem;
}

.play-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--teak);
}

.play-next {
  padding: 0.85rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

#next {
  display: block;
  margin-top: 0.5rem;
  width: 120px;
  height: 120px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
}

.play-status {
  margin: 0;
  color: var(--teak-soft);
  font-size: 0.95rem;
}

.play-mobile {
  display: none;
  gap: 0.5rem;
}

.play-pad-row {
  display: flex;
  gap: 0.5rem;
}

.play-pad {
  min-height: 2.75rem;
  flex: 1;
  touch-action: manipulation;
}

@media (max-width: 720px) {
  .play-mobile {
    display: grid;
  }
}

@media (max-width: 860px) {
  .header-controls {
    margin-left: auto;
  }
  .site-nav {
    width: 100%;
    order: 10;
  }
}


.hero-pull {
  margin: 1.25rem 0 1.5rem;
  max-width: 36rem;
  padding: 0 0 0 1rem;
  border-left: 3px solid var(--mustard);
}

.hero-pull p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.45;
  color: var(--teak);
  font-weight: 400;
}

.additional-experience .role-narrative strong {
  display: block;
  color: var(--teak);
  font-weight: 600;
}
