:root {
  color-scheme: light;
  --paper: #f7f6f1;
  --surface: #ffffff;
  --surface-soft: #efeee7;
  --ink: #17211f;
  --muted: #66716d;
  --line: #d9ddd8;
  --primary: #184a43;
  --primary-deep: #103a35;
  --accent: #b94f32;
  --accent-soft: #f4ded5;
  --text-soft: #3f4d49;
  --tag-text: #53605c;
  --panel: #184a43;
  --panel-muted: #c6d5d1;
  --button-bg: #184a43;
  --button-hover: #103a35;
  --header-bg: rgba(247, 246, 241, 0.9);
  --header-line: rgba(217, 221, 216, 0.85);
  --dot: rgba(24, 74, 67, 0.08);
  --soft-ring: rgba(24, 74, 67, 0.24);
  --card-hover-border: #afc2bc;
  --dark-section: #17211f;
  --dark-muted: #aeb9b5;
  --max-width: 1120px;
  --radius: 18px;
  --shadow: 0 20px 55px rgba(23, 33, 31, 0.08);
  --hover-shadow: 0 16px 42px rgba(23, 33, 31, 0.07);
}

[data-theme="dark"] {
  color-scheme: dark;
  --paper: #0e1412;
  --surface: #151d1b;
  --surface-soft: #1c2623;
  --ink: #edf3f0;
  --muted: #a3afab;
  --line: #33413d;
  --primary: #8acabb;
  --primary-deep: #a9dbcf;
  --accent: #f19a7a;
  --accent-soft: #4a2b22;
  --text-soft: #bbc6c2;
  --tag-text: #c0ccc8;
  --panel: #1f6157;
  --panel-muted: #d2e1dd;
  --button-bg: #2b7568;
  --button-hover: #368779;
  --header-bg: rgba(14, 20, 18, 0.9);
  --header-line: rgba(75, 92, 86, 0.75);
  --dot: rgba(138, 202, 187, 0.08);
  --soft-ring: rgba(138, 202, 187, 0.26);
  --card-hover-border: #527168;
  --dark-section: #080d0c;
  --dark-muted: #afbbb7;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  --hover-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background-color 180ms ease, color 180ms ease;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(var(--dot) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 36rem);
}

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(214, 104, 71, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--dark-section);
  color: #fff;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--header-line);
  background: var(--header-bg);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  margin-right: auto;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  color: var(--primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0.78rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0.78rem;
  bottom: 0.14rem;
  left: 0.78rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.theme-toggle {
  display: inline-flex;
  min-width: 112px;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.theme-toggle:hover {
  border-color: var(--primary);
  background: var(--surface-soft);
  transform: translateY(-1px);
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.theme-toggle__sun {
  display: none;
}

[data-theme="dark"] .theme-toggle__sun {
  display: block;
}

[data-theme="dark"] .theme-toggle__moon {
  display: none;
}

.nav-toggle svg {
  width: 21px;
  height: 21px;
}

main {
  min-height: calc(100vh - 200px);
}

.hero {
  padding: clamp(4.5rem, 10vw, 8.5rem) 0 clamp(4rem, 8vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.35rem;
  font-size: clamp(3.3rem, 8vw, 6.6rem);
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 4.4rem);
  white-space: nowrap;
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
}

p {
  margin-top: 0;
}

.hero-lede {
  max-width: 730px;
  margin-bottom: 2rem;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions,
.card-actions,
.social-list,
.tag-list,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1.1rem;
  border: 1px solid var(--button-bg);
  border-radius: 999px;
  background: var(--button-bg);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--button-hover);
  color: #fff;
  transform: translateY(-2px);
}

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

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

.button svg,
.text-link svg {
  width: 16px;
  height: 16px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
  margin-top: 1.7rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-meta span,
.hero-meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-meta svg {
  width: 15px;
  height: 15px;
}

.profile-panel {
  position: relative;
  width: min(100%, 390px);
  padding: 0 0 3.6rem 1.6rem;
  justify-self: end;
}

.profile-panel::before {
  position: absolute;
  z-index: -1;
  top: -1.4rem;
  right: -1.4rem;
  width: 7.5rem;
  height: 7.5rem;
  border: 1px solid var(--soft-ring);
  border-radius: 50%;
  content: "";
}

.profile-frame {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.profile-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.profile-caption {
  position: absolute;
  right: 2.2rem;
  bottom: 0;
  left: 0;
  padding: 1.15rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(23, 33, 31, 0.2);
  color: #fff;
}

.profile-caption__label {
  display: block;
  margin-bottom: 0.25rem;
  color: #f2a38a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-caption p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.45;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

.section--dark {
  background: var(--dark-section);
  color: #fff;
}

.section--dark .section-kicker {
  color: #f2a38a;
}

.section--dark .muted,
.section--dark .section-intro {
  color: var(--dark-muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-intro {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.prose-large {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2.1vw, 1.6rem);
  line-height: 1.52;
  letter-spacing: -0.02em;
}

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

.info-block + .info-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.info-block--spaced {
  margin-top: 2.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}

.info-label {
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-block p {
  margin-bottom: 0.25rem;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.88rem;
}

.top-gap {
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  gap: 0.55rem;
}

.feature-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-item {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
}

.feature-item:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-number {
  padding-top: 0.2rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.feature-item h3,
.feature-item p {
  margin-bottom: 0.35rem;
}

.feature-item__meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.award-grid,
.cards-grid,
.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.award-card,
.research-card,
.project-card {
  position: relative;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.award-card::before {
  display: block;
  width: 2.4rem;
  height: 3px;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.award-card p,
.research-card p,
.project-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.8rem, 6vw, 5rem);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.page-hero .hero-lede {
  max-width: 760px;
  margin-bottom: 0;
}

.page-rule {
  width: min(calc(100% - 3rem), var(--max-width));
  height: 1px;
  margin: 0 auto;
  border: 0;
  background: var(--line);
}

.research-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.card-index {
  margin-bottom: 3.5rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.question-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.question-list li {
  position: relative;
  padding: 1.25rem 0 1.25rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
}

.question-list li::before {
  position: absolute;
  left: 0;
  color: #f2a38a;
  content: "↳";
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 2rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-date {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.timeline-item h3,
.timeline-item p {
  margin-bottom: 0.25rem;
}

.tag-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag {
  padding: 0.4rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--tag-text);
  font-size: 0.76rem;
  font-weight: 650;
}

.filter-bar {
  margin-bottom: 2.2rem;
}

.filter-button {
  padding: 0.52rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--primary);
  background: var(--button-bg);
  color: #fff;
}

.publication-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.publication {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) 8rem;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.publication:last-child {
  border-bottom: 1px solid var(--line);
}

.publication[hidden] {
  display: none;
}

.publication-year {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.publication-title {
  margin-bottom: 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.publication-authors,
.publication-venue {
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.publication-authors strong {
  color: var(--ink);
}

.publication-status {
  justify-self: end;
  padding-top: 0.1rem;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: right;
  text-transform: uppercase;
}

.publication-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.7rem;
}

.publication-links a {
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.project-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.project-card .tag-list {
  margin-bottom: 1.7rem;
}

.project-card h3 {
  font-size: 1.55rem;
}

.project-card .card-actions {
  margin-top: auto;
  padding-top: 2rem;
}

.project-card--featured {
  grid-column: span 2;
  min-height: 360px;
  background: var(--panel);
  color: #fff;
}

.project-card--featured p {
  max-width: 620px;
  color: var(--panel-muted);
  font-size: 1.02rem;
}

.project-card--featured .tag {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: #e7efed;
}

.project-card--featured .text-link {
  color: #fff;
}

.status-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.status-note::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.cv-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cv-frame {
  overflow: hidden;
  min-height: 820px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cv-frame object {
  display: block;
  width: 100%;
  min-height: 820px;
}

.cv-fallback {
  padding: 3rem;
  text-align: center;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 0.65rem;
}

.contact-actions .text-link {
  color: #d9e4e1;
}

.contact-actions .text-link:hover {
  color: #fff;
}

.contact-strip h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.site-footer {
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.social-list a {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1.5rem;
    left: 1.5rem;
    display: none;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    padding: 0.75rem 0.9rem;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .split-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 3rem;
  }

  .profile-panel {
    width: min(100%, 430px);
    justify-self: center;
  }

  .section-heading {
    gap: 0.7rem;
  }

  .award-grid,
  .research-grid {
    grid-template-columns: 1fr;
  }

  .research-card {
    min-height: 230px;
  }

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

  .project-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .container,
  .page-rule {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .hero,
  .page-hero {
    padding-top: 3.6rem;
  }

  .profile-panel {
    padding-left: 0;
  }

  .profile-caption {
    right: 0.8rem;
    left: 0.8rem;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.7rem);
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .feature-item {
    grid-template-columns: 3.3rem minmax(0, 1fr);
    gap: 1rem;
  }

  .feature-item__meta {
    grid-column: 2;
    text-align: left;
  }

  .timeline-item,
  .publication {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .publication-status {
    grid-row: 1;
    justify-self: start;
    margin-left: 3.2rem;
    text-align: left;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .project-card--featured {
    grid-column: auto;
  }

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

  .contact-strip,
  .footer-grid,
  .cv-toolbar {
    align-items: flex-start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer-grid {
    display: flex;
  }

  .contact-actions {
    margin-top: 0.75rem;
  }

  .cv-frame,
  .cv-frame object {
    min-height: 620px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .filter-bar {
    display: none;
  }

  body {
    background: #fff;
  }

  .section,
  .page-hero {
    padding: 2rem 0;
  }
}
