/* 1. Base, typography and keyboard access */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.055em;
}
p {
  color: var(--muted);
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 6px;
}
::selection {
  background: var(--selection);
  color: var(--ink);
}
.accent {
  color: var(--accent);
}
.skip-link {
  position: fixed;
  top: -90px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 24px;
}
.skip-link:focus {
  top: 12px;
}

/* 2. Identity rail and navigation */
.rail {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--rail);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 30;
  background: var(--paper);
}
.monogram {
  margin-top: 25px;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.monogram img {
  width: 40px;
  height: 40px;
}
.rail-label {
  position: absolute;
  top: 50%;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-size: 0.75rem;
  letter-spacing: 0.17em;
}
.rail-bottom {
  position: absolute;
  bottom: 30px;
  font-size: 0.75rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
.site-shell {
  margin-left: var(--rail);
}
.site-header {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--gutter);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(12px);
}
.wordmark {
  font-size: 1.1875rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.wordmark span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
}
#navigation {
  display: flex;
  gap: 30px;
  align-items: center;
}
#navigation a {
  font-size: 0.875rem;
  position: relative;
}
#navigation a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.2s;
}
#navigation a:hover::after,
#navigation a[aria-current='location']::after {
  width: 100%;
}
#navigation a:last-child {
  margin-left: 12px;
}
#navigation a span {
  color: var(--accent);
  margin-left: 8px;
}
.menu-toggle {
  display: none;
}

/* 3. Shared sections, buttons and labels */
.section {
  padding: 90px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 44px;
}
.section-heading h2 {
  margin-top: 18px;
  font-size: clamp(2.25rem, 3.3vw, 3.25rem);
  font-weight: 650;
}
.section-heading > p {
  font-size: 1rem;
  max-width: 365px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  line-height: 1.5;
  font-weight: 600;
  color: var(--ink);
}
.dash {
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex: none;
}
.button {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 12px 23px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.button-outline:hover {
  background: var(--ink);
  color: #fff;
}
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  min-height: 44px;
}
.download-link span {
  border-bottom: 1px solid #b5b5b0;
}
.download-link small {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 4px;
}

/* 4. Hero and original portrait */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(240px, 0.85fr);
  column-gap: 6%;
  padding-top: 68px;
  padding-bottom: 0;
}
.hero .eyebrow {
  letter-spacing: 0.07em;
}
h1 {
  font-size: clamp(2.8125rem, 5.3vw, 5.1875rem);
  font-weight: 750;
  line-height: 1.02;
  margin: 25px 0;
  letter-spacing: -0.065em;
}
.hero-description {
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 18px;
}
.portrait {
  align-self: center;
  max-width: 340px;
  width: 100%;
  justify-self: end;
  padding-top: 5px;
}
.portrait-image {
  overflow: hidden;
  background: #4c4d50;
  position: relative;
}
.portrait-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 5px;
  background: var(--accent);
}
.portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 683/1024;
  object-fit: cover;
}
.portrait-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted);
}
.portrait-caption span:first-child {
  font-weight: 600;
  color: var(--ink);
}
.languages {
  margin-top: 10px;
}
.languages-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 12px;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted);
}
.languages-list > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
}
.languages-list dt {
  font-weight: 400;
}
.languages-list dd {
  margin: 0;
}
.languages-list dd::before {
  content: '· ';
}
.portrait-note {
  font-size: 0.8125rem;
  line-height: 1.6;
  border-left: 1px solid var(--line);
  padding-left: 16px;
  margin-top: 22px;
}
.portrait-note .accent {
  float: left;
  margin-right: 18px;
  font-size: 0.75rem;
}
.hero-bottom {
  grid-column: 1/-1;
  display: flex;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 55px;
  min-height: 72px;
  font-size: 0.875rem;
  color: var(--muted);
}
.hero-bottom > span + span::before {
  content: '/';
  margin-right: 30px;
  color: #b2b2aa;
}
.hero-bottom > a {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--ink);
}
.hero-bottom > a span {
  margin-left: 15px;
}

/* 5. Projects. Native details/summary remains functional without JavaScript. */
.featured-projects {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
}
.project-cover {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #f7f8f9;
}
.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project-title {
  display: flex;
  gap: 17px;
  margin-top: 26px;
}
.project-number {
  font-size: 2.125rem;
  font-weight: 650;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -0.06em;
}
.project-category {
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  margin-bottom: 10px;
  color: var(--muted);
}
.project-title h3 {
  font-size: 1.6875rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 650;
}
.project-intro {
  font-size: 1rem;
  margin: 19px 0 20px;
  line-height: 1.7;
}
.project-details {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.project-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 0.875rem;
  font-weight: 600;
  min-height: 54px;
}
.disclosure-icon {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
details[open] > summary > .disclosure-icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.detail-body {
  padding: 5px 0 25px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}
.detail-body h4 {
  font-size: 0.875rem;
  color: var(--ink);
  margin: 16px 0 5px;
}
.detail-body ul {
  padding-left: 20px;
  margin: 8px 0;
}
.detail-body li + li {
  margin-top: 7px;
}
.detail-tags {
  font-size: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 20px;
}
.project-list {
  margin-top: 40px;
}
.project-row {
  border-bottom: 1px solid var(--line);
}
.project-row > summary {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 27px 0;
  min-height: 95px;
}
.project-row .project-number {
  font-size: 1.6875rem;
  min-width: 40px;
}
.row-title {
  flex: 1;
  min-width: 0;
}
.row-title strong {
  display: block;
  font-size: 1.4375rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.035em;
}
.row-title > span {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 7px;
}
.project-row .disclosure-icon {
  font-size: 1.75rem;
}
.row-content {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  padding-left: 65px;
  padding-bottom: 35px;
}
.row-content h4 {
  margin-top: 0;
}

/* 6. Approach */
.approach {
  background: var(--soft);
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.method-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 36px;
}
.method-number {
  color: var(--accent);
  font-size: 0.875rem;
}
.method-grid h3 {
  font-size: 1.5625rem;
  margin: 22px 0 15px;
  letter-spacing: -0.04em;
}
.method-grid p {
  font-size: 1rem;
  line-height: 1.8;
}

/* 7. Experience, skills, education and certifications */
.career-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 65px;
}
.subheading {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  font-weight: 600;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  line-height: 1.3;
}
.experience {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.experience:last-child {
  border-bottom: 0;
}
.experience-date {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 12px;
}
.experience h4,
.education h4 {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.company {
  font-size: 0.9375rem;
  color: var(--ink);
  margin: 8px 0 14px;
}
.company span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}
.experience > p:not(.company):not(.experience-date) {
  font-size: 1rem;
  line-height: 1.8;
}
.experience > p + p:not(.company) {
  margin-top: 10px;
}
.expertise-panel {
  padding: 28px 30px;
  background: var(--soft);
  align-self: start;
}
.expertise-list {
  margin: 0;
}
.expertise-list > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.expertise-list dt {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.expertise-list dd {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--muted);
}
.tools-heading {
  font-size: 0.9375rem;
  margin: 24px 0 10px;
}
.tools-list {
  font-size: 0.875rem;
  line-height: 2;
}
.education-certifications {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 65px;
  border-top: 1px solid var(--line);
  padding-top: 42px;
}
.education {
  padding-top: 25px;
}
.education > p:last-child {
  font-size: 0.875rem;
  margin-top: 10px;
}
.certifications {
  list-style: none;
  padding: 0;
  margin: 0;
}
.certifications li {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
  line-height: 1.5;
}
.certifications li:last-child {
  border-bottom: 0;
}
.certifications time {
  font-size: 0.75rem;
  color: var(--muted);
  flex: none;
}
.certifications small {
  font-size: 0.75rem;
  color: var(--muted);
}

/* 8. Contact and footer */
.contact {
  background: #eeeee9;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 65px;
  margin-top: 25px;
  align-items: end;
}
.contact h2 {
  font-size: clamp(2.75rem, 4.8vw, 4.5rem);
  font-weight: 650;
}
.contact-layout > div > p {
  margin: 25px 0;
}
.contact .button {
  margin-top: 5px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
  min-width: 0;
}
.contact-info a:not(.download-link) {
  overflow-wrap: anywhere;
}
.contact-info a:not(.download-link):hover {
  color: var(--accent);
}
.contact-info > span {
  font-size: 0.875rem;
  color: var(--muted);
}
.contact-info > .availability {
  font-size: 0.8125rem;
  border-bottom: 1px solid #cdcdc6;
  padding-bottom: 20px;
  margin: 0 0 10px;
  color: var(--ink);
}
.contact-info .download-link {
  align-self: start;
  margin-top: 12px;
}
footer {
  padding: 35px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: 0.75rem;
}
.footer-name {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.7;
}
.footer-name span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
}
footer > p {
  font-size: 0.75rem;
}
.back-top {
  white-space: nowrap;
}

/* 9. Optional logo comparison bar */
.identity-preview {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 35;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid #43433e;
  padding: 12px 18px;
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.8125rem;
  box-shadow: 0 8px 30px #0002;
  max-width: calc(100vw - 24px);
  white-space: nowrap;
}
.identity-preview > span {
  color: #deded8;
}
.identity-preview > a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.identity-preview > a:hover {
  color: var(--accent-light);
}
body:has(.identity-preview) {
  padding-bottom: 75px;
}

/* 10. Responsive layout: desktop, tablet, then mobile */
@media (min-width: 1650px) {
  .site-shell {
    max-width: 1550px;
    margin-left: auto;
    margin-right: auto;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
}
@media (max-width: 1100px) {
  :root {
    --rail: 64px;
    --gutter: 32px;
  }
  .hero {
    gap: 35px;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  }
  .hero h1 {
    font-size: clamp(2.75rem, 5.6vw, 4rem);
  }
  .portrait-caption {
    flex-direction: column;
    gap: 0;
  }
  .hero-bottom {
    gap: 17px;
  }
  .hero-bottom > span + span::before {
    margin-right: 17px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > p {
    max-width: 320px;
  }
  .contact-layout,
  .career-layout,
  .education-certifications {
    gap: 35px;
  }
  .wordmark span {
    max-width: 185px;
  }
  #navigation {
    gap: 22px;
  }
  footer > p {
    display: none;
  }
  .row-content {
    gap: 30px;
  }
  .expertise-panel {
    padding: 24px;
  }
}
@media (max-width: 800px) {
  :root {
    --rail: 0px;
    --gutter: 25px;
  }
  .rail {
    display: none;
  }
  .site-header {
    min-height: 84px;
    padding-top: 15px;
    padding-bottom: 15px;
    flex-wrap: wrap;
  }
  .wordmark {
    font-size: 1.125rem;
    max-width: calc(100% - 68px);
  }
  .site-header:not([data-menu-ready]) {
    position: static;
  }
  .wordmark span {
    max-width: none;
  }
  .site-header[data-menu-ready] .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--line);
    cursor: pointer;
  }
  .menu-toggle span {
    width: 20px;
    height: 1px;
    background: var(--ink);
    margin: 0 auto;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  #navigation {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 22px;
  }
  #navigation a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  #navigation a:last-child {
    margin-left: 0;
  }
  #navigation a::after {
    bottom: 8px;
    max-width: 30px;
  }
  .site-header[data-menu-ready] #navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px var(--gutter);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .site-header[data-menu-ready] #navigation.is-open {
    display: flex;
  }
  .section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .hero {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 28px 22px;
    padding-top: 45px;
    padding-bottom: 0;
  }
  .hero h1 {
    font-size: clamp(2.375rem, 5.9vw, 3rem);
  }
  .hero .eyebrow {
    gap: 9px;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-actions {
    gap: 9px;
  }
  .button {
    padding: 12px 17px;
  }
  .portrait-note {
    font-size: 0.75rem;
    padding-left: 12px;
  }
  .portrait-note .accent {
    display: block;
    float: none;
    margin: 0 0 6px;
  }
  .hero-bottom {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 20px 0;
    font-size: 0.75rem;
  }
  .hero-bottom > span + span::before {
    display: none;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading h2 {
    font-size: 2.4375rem;
  }
  .section-heading > p {
    margin-top: 20px;
    max-width: 520px;
  }
  .featured-projects {
    gap: 24px;
  }
  .project-title {
    gap: 12px;
  }
  .project-title h3 {
    font-size: 1.375rem;
  }
  .project-number {
    font-size: 1.8125rem;
  }
  .method-grid {
    gap: 24px;
  }
  .method-grid article + article {
    padding-left: 24px;
  }
  .method-grid h3 {
    font-size: 1.375rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-info {
    max-width: 500px;
  }
  .contact h2 {
    font-size: 3.4375rem;
  }
  footer {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .career-layout {
    grid-template-columns: 1fr;
  }
  .expertise-panel {
    margin-top: 10px;
  }
  .education-certifications {
    gap: 30px;
  }
  .row-title strong {
    font-size: 1.3125rem;
  }
  .row-content {
    padding-left: 0;
    gap: 25px;
  }
}
@media (max-width: 580px) {
  .hero {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero h1 {
    font-size: clamp(2.5625rem, 10.8vw, 3.875rem);
    margin: 23px 0;
  }
  .hero-actions {
    margin-top: 25px;
  }
  .button {
    min-height: 50px;
  }
  .hero-actions .button {
    flex-grow: 1;
  }
  .portrait {
    width: 100%;
    max-width: none;
    margin-top: 28px;
    padding-top: 0;
  }
  .portrait-image {
    height: 330px;
  }
  .portrait img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    background: #4c4d50;
  }
  .portrait-caption {
    flex-direction: row;
    margin-top: 10px;
  }
  .portrait-note {
    display: none;
  }
  .hero-bottom {
    margin-top: 26px;
    gap: 10px 15px;
  }
  .hero-bottom > a {
    display: none;
  }
  .featured-projects {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .project-title h3 {
    font-size: 1.6875rem;
  }
  .project-number {
    font-size: 2.125rem;
  }
  .section {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .hero {
    padding-top: 38px;
    padding-bottom: 0;
  }
  .section-heading h2 {
    font-size: 2.3125rem;
  }
  .method-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .method-grid article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 17px;
  }
  .method-grid article + article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 25px;
  }
  .method-number {
    grid-row: span 2;
    margin-top: 3px;
  }
  .method-grid h3 {
    margin: 0 0 12px;
    font-size: 1.5625rem;
  }
  .contact h2 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  .contact p br {
    display: none;
  }
  .contact-info {
    font-size: 0.9375rem;
  }
  footer {
    gap: 15px;
  }
  .project-row > summary {
    gap: 15px;
    padding: 25px 0;
  }
  .project-row .project-number {
    min-width: 30px;
    font-size: 1.5rem;
  }
  .row-title strong {
    font-size: 1.25rem;
  }
  .row-title > span {
    font-size: 0.75rem;
  }
  .row-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .education-certifications {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .wordmark span {
    max-width: 230px;
  }
  .identity-preview {
    font-size: 0.75rem;
    padding: 10px 13px;
    gap: 14px;
    bottom: 12px;
    white-space: normal;
  }
}

/* 11. Respect the visitor's motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
