:root {
  --bg: #faf9f5;
  --surface: #ffffff;
  --surface-soft: #f0eee7;
  --ink: #161616;
  --muted: #66625c;
  --line: #ded9cf;
  --accent: #e84a35;
  --accent-2: #2f6f66;
  --accent-3: #f0c94a;
  --focus: #005fcc;
  --max: 1280px;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(35, 30, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.is-content-loading .page,
body.is-content-loading .site-footer {
  visibility: hidden;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

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

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--surface);
  padding: 8px 12px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 245, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-compact {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(25, 20, 12, 0.05);
}

.header-inner {
  width: min(100% - 48px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  line-height: 1;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--surface);
  border-radius: 50%;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}

.nav-toggle-line::before {
  transform: translateY(-6px);
}

.nav-toggle-line::after {
  transform: translateY(4px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 15px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface-soft);
  color: var(--ink);
}

.page {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(360px, 7fr);
  align-items: center;
  gap: 48px;
  padding: 42px 0 56px;
}

.hero-copy {
  padding-bottom: 16px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.display-title {
  max-width: 720px;
  margin: 0;
  font-size: 68px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #34302b;
  font-size: 20px;
  line-height: 1.7;
}

.hero-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-meta span {
  display: block;
  padding: 14px 12px 14px 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-meta strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.action-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button,
.text-link,
.filter-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0 16px;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.button {
  background: var(--ink);
  color: var(--surface);
}

.button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
}

.button.secondary,
.text-link {
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover,
.text-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.feature-stack {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  align-items: stretch;
}

.hero-image-stack {
  grid-template-columns: 1fr;
}

.featured-project {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
}

.hero-custom-image img {
  object-fit: contain;
  background: var(--surface);
}

.featured-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: var(--surface);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}

.feature-caption span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.feature-caption strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.mini-projects {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mini-project {
  min-height: 248px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
}

.mini-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.mini-project:hover img,
.project-card:hover img {
  transform: scale(1.035);
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: end;
}

.section-heading h2,
.page-heading h1,
.project-title,
.resume-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading h2:only-child,
.page-heading h1:only-child {
  grid-column: 1 / -1;
}

.section-heading p,
.page-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.filter-button {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.project-card {
  grid-column: span 6;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card.is-wide {
  grid-column: span 8;
}

.project-card.is-narrow {
  grid-column: span 4;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: #c8c0b3;
  box-shadow: var(--shadow);
  color: inherit;
}

.project-card.is-hidden {
  display: none;
}

.project-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-soft);
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 260ms ease;
  opacity: 1;
}

.project-media img.is-visible,
img.no-lazy {
  opacity: 1;
}

.project-info {
  padding: 18px;
}

.project-kicker {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.project-info h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.project-info p {
  margin: 0;
  color: var(--muted);
}

.capability-grid,
.stats-grid,
.contact-grid,
.resume-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.capability {
  grid-column: span 4;
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}

.capability h3,
.timeline-item h3,
.contact-block h2,
.resume-block h2,
.detail-block h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.capability p,
.timeline-item p,
.contact-block p,
.resume-block p,
.detail-block p,
.project-body p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.timeline-item time {
  color: var(--accent-2);
  font-weight: 700;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius);
}

.cta-band p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band .button {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}

.site-footer {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.page-heading {
  padding: 72px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: end;
}

.project-hero {
  padding: 64px 0 38px;
}

.project-title {
  max-width: 940px;
  font-size: 58px;
}

.project-summary {
  max-width: 1120px;
  margin: 24px 0 0;
  color: #34302b;
  font-size: 20px;
}

.project-facts {
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-facts div {
  min-width: 0;
  padding: 16px 16px 16px 0;
}

.project-facts dt {
  color: var(--muted);
  font-size: 13px;
}

.project-facts dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.wide-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
}

.wide-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-gallery-section {
  margin: 52px 0;
}

.project-gallery-groups {
  display: grid;
  gap: 42px;
}

.project-gallery-group {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.gallery-group-heading {
  max-width: 820px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 22px;
  align-items: end;
}

.gallery-group-heading h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
}

.gallery-group-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.gallery-group-cover {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.project-gallery figure {
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.project-gallery figure:nth-child(3n + 1) {
  grid-column: span 12;
}

.project-gallery-group:not(.is-expanded) .gallery-item.is-extra {
  display: none;
}

.gallery-image-button {
  width: 100%;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-file-card {
  width: 100%;
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 42%);
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 28px;
  background: var(--surface-soft);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  user-select: none;
}

.gallery-file-card:hover {
  color: var(--accent);
}

.gallery-file-card:not(:has(.gallery-file-cover)) {
  grid-template-columns: 1fr;
}

.gallery-file-type {
  width: fit-content;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 800;
}

.gallery-file-copy {
  display: grid;
  gap: 8px;
}

.gallery-file-card strong {
  font-size: 24px;
  line-height: 1.25;
}

.gallery-file-cover {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-video-item video {
  width: 100%;
  display: block;
  background: #111111;
}

.video-speed-control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.video-speed-control select {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.project-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.project-gallery figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.gallery-toggle {
  margin-top: 18px;
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0 16px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.gallery-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 42px 78px;
  background: rgba(12, 12, 12, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.has-lightbox {
  overflow: hidden;
}

.lightbox figure {
  max-width: min(1180px, 100%);
  max-height: 100%;
  margin: 0;
  display: grid;
  gap: 14px;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--surface);
}

.lightbox figcaption {
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 50px;
  height: 70px;
  transform: translateY(-50%);
  border-radius: var(--radius);
  font-size: 46px;
  line-height: 1;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.pdf-previewer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(12, 12, 12, 0.92);
}

.pdf-previewer.is-open {
  display: flex;
}

.pdf-previewer-panel {
  width: min(1120px, 100%);
  height: min(88vh, 920px);
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.pdf-previewer-header {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px 0 18px;
  border-bottom: 1px solid var(--line);
}

.pdf-previewer-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.pdf-status {
  padding: 10px 18px;
  color: var(--muted);
}

.pdf-status:empty {
  display: none;
}

.pdf-pages {
  overflow: auto;
  padding: 18px;
  background: #e9e7e0;
}

.pdf-page-placeholder,
.pdf-pages canvas {
  width: min(100%, 980px);
  margin: 0 auto 18px;
  display: block;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.pdf-page-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.pdf-pages canvas {
  height: auto;
}

.protected-media,
.gallery-image-button,
.gallery-file-card {
  -webkit-touch-callout: none;
  user-select: none;
}

.project-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 0 78px;
}

.project-body .narrow {
  max-width: none;
  width: 100%;
}

.project-body h2 {
  margin: 46px 0 14px;
  font-size: 30px;
  line-height: 1.2;
}

.project-body h3 {
  margin: 28px 0 8px;
  font-size: 20px;
}

.project-body ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.process-grid {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-step {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.process-step span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.process-step h3 {
  margin: 8px 0;
}

.next-projects {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.about-portrait {
  grid-column: span 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.about-copy {
  grid-column: span 7;
}

.about-copy .lead {
  margin-top: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: var(--muted);
  background: var(--surface);
}

.contact-block,
.resume-block,
.detail-block {
  grid-column: span 6;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact-block.full,
.resume-block.full,
.detail-block.full {
  grid-column: 1 / -1;
}

.contact-list,
.resume-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.contact-list li,
.resume-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.contact-list a {
  color: var(--accent-2);
  font-weight: 700;
}

.resume-title {
  font-size: 52px;
}

.resume-header {
  padding: 64px 0 34px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.resume-header + .section {
  border-top: 0;
  padding-top: 28px;
}

.resume-meta {
  margin: 16px 0 0;
  color: var(--muted);
}

.print-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .hero,
  .page-heading {
    grid-template-columns: 1fr;
  }

  .feature-stack {
    grid-template-columns: 1fr;
  }

  .featured-project {
    min-height: 420px;
  }

  .mini-projects {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .project-card,
  .project-card.is-wide,
  .project-card.is-narrow,
  .capability,
  .contact-block,
  .resume-block,
  .detail-block,
  .about-portrait,
  .about-copy {
    grid-column: 1 / -1;
  }

  .project-facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .header-inner,
  .page,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .header-inner {
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 38px;
    gap: 34px;
  }

  .display-title,
  .project-title,
  .resume-title {
    font-size: 40px;
    line-height: 1.05;
  }

  .lead,
  .project-summary {
    font-size: 17px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .featured-project {
    min-height: 320px;
  }

  .mini-projects {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .section-heading,
  .resume-header,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .page-heading h1 {
    font-size: 32px;
  }

  .project-grid,
  .capability-grid,
  .stats-grid,
  .contact-grid,
  .resume-grid,
  .detail-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .project-facts {
    grid-template-columns: 1fr;
  }

  .contact-list li,
  .resume-list li,
  .next-projects,
  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-gallery figure,
  .project-gallery figure:nth-child(3n + 1) {
    grid-column: auto;
  }

  .gallery-group-heading,
  .gallery-file-card {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 58px 16px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 14px;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .action-row,
  .print-note {
    display: none;
  }

  body {
    background: #ffffff;
    color: #111111;
  }

  .page {
    width: 100%;
  }

  .resume-header,
  .section {
    padding: 18px 0;
  }
}
