:root {
  --ink: #16211f;
  --muted: #66736f;
  --paper: #f7f3eb;
  --surface: #fbf7ef;
  --surface-strong: #fbf7ef;
  --teal: #0e6f69;
  --teal-dark: #084541;
  --clay: #a75532;
  --gold: #d8a63a;
  --line: rgba(22, 33, 31, 0.14);
  --shadow: none;
  --radius: 8px;
  --ease: 180ms ease;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

a {
  color: var(--teal);
  transition: color var(--ease), background-color var(--ease), border-color var(--ease), transform var(--ease);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(216, 166, 58, 0.9);
  outline-offset: 3px;
}

@keyframes content-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 650;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(2.45rem, 4.6vw, 5rem);
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3.35rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.container {
  width: min(1180px, 88%);
}

[id] {
  scroll-margin-top: 6rem;
}

.skip-link {
  background: var(--ink);
  color: var(--surface-strong);
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 1000;
}

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

.site-header {
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1001;
}

.site-nav {
  background: rgba(247, 243, 235, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  color: var(--ink);
  height: 72px;
  line-height: 72px;
  overflow: hidden;
}

.site-nav .nav-wrapper {
  align-items: center;
  display: flex;
  height: 72px;
}

.site-nav ul a,
.site-nav .brand-logo {
  color: var(--ink);
}

.site-nav ul a {
  border-bottom: 2px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  height: 72px;
  line-height: 72px;
  padding: 0 0.9rem;
}

.site-nav ul a:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--teal-dark);
}

.site-nav .brand-logo {
  align-items: center;
  display: inline-flex;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  gap: 0.7rem;
  left: auto;
  position: relative;
  transform: none;
}

.sidenav-trigger {
  color: var(--teal-dark);
  margin-left: auto;
}

.sidenav {
  background: var(--surface);
  box-shadow: none;
  padding-top: 1rem;
  z-index: 1002;
}

.sidenav-overlay {
  z-index: 1000;
}

.sidenav li > a {
  color: var(--ink);
  font-weight: 700;
}

.hero,
.page-hero {
  position: relative;
}

.hero {
  align-items: end;
  display: flex;
  min-height: 82vh;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero-media {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.hero-media::after {
  background: rgba(247, 243, 235, 0.72);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  width: 100%;
}

.hero-content {
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.hero-content h1,
.hero-content p {
  color: var(--ink);
  text-shadow: none;
}

.hero-lede {
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  max-width: 720px;
  padding-top: 1.2rem;
}

.eyebrow,
.project-meta {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.hero .eyebrow {
  color: #f1d184;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
}

.btn-primary {
  background: var(--surface-strong);
  color: var(--ink);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--surface-strong);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.section-block {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
}

.projects-hero-layout,
.links-hero-layout {
  align-items: end;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}

.projects-hero-copy,
.links-hero-copy {
  max-width: 860px;
}

.projects-hero-copy > p,
.links-hero-copy > p {
  border-left: 3px solid var(--gold);
  font-size: 1.08rem;
  margin-top: 1.35rem;
  max-width: 680px;
  padding-left: 1.4rem;
}

.section-nav {
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  height: auto;
  line-height: 1;
  margin-top: 1.8rem;
  overflow: visible;
  width: 100%;
}

.section-nav a {
  align-items: center;
  background: rgba(14, 111, 105, 0.055);
  border: 1px solid rgba(14, 111, 105, 0.16);
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  height: auto;
  line-height: 1.2;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
}

.section-nav a:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--surface-strong);
}

.project-snapshot,
.disclosure-panel {
  background: var(--surface);
  border: 1px solid rgba(22, 33, 31, 0.11);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 1.25rem;
}

.project-snapshot {
  display: grid;
  gap: 0;
}

.project-snapshot div {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.project-snapshot div:first-child {
  padding-top: 0;
}

.project-snapshot div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.project-snapshot strong {
  color: var(--teal-dark);
  display: block;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2.45rem;
  line-height: 1;
}

.project-snapshot span,
.disclosure-panel p {
  color: var(--muted);
}

.disclosure-panel .eyebrow {
  color: var(--clay);
}

.disclosure-panel .text-link {
  color: var(--teal);
  margin-top: 1rem;
}

.split-intro {
  align-items: start;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
}

.split-intro > p,
.intro-summary {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}

.intro-summary > p {
  font-size: 1.08rem;
}

.proof-points {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.9rem;
  margin: 1.6rem 0 0;
  padding-top: 1.2rem;
}

.proof-points div {
  align-items: baseline;
  display: grid;
  gap: 1rem;
  grid-template-columns: 80px 1fr;
}

.proof-points dt,
.project-facts dt {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
}

.proof-points dd,
.project-facts dd {
  color: var(--ink);
  margin: 0;
}

.section-heading {
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 760px;
}

.section-heading::before {
  background: var(--line);
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 1.4rem;
  width: min(180px, 45vw);
}

.discipline-grid,
.featured-projects,
.study-grid,
.product-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.discipline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
}

.discipline-card,
.project-card,
.study-card,
.product-card,
.contact-link {
  background: var(--surface-strong);
  border: 1px solid rgba(22, 33, 31, 0.11);
  border-radius: var(--radius);
}

.discipline-card {
  min-height: 280px;
  padding: clamp(1.5rem, 3vw, 2.3rem);
}

.discipline-card i {
  color: var(--teal);
  font-size: 1.85rem;
  margin-bottom: 1.4rem;
}

.discipline-card h3,
.discipline-card p {
  margin-bottom: 1rem;
}

.discipline-card a,
.text-link {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 0.45rem;
}

.profile-proof {
  align-items: stretch;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  margin-top: 1.2rem;
}

.working-note,
.photo-notes {
  background: var(--surface-strong);
  border: 1px solid rgba(22, 33, 31, 0.11);
  border-radius: var(--radius);
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.working-note h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
}

.photo-notes {
  display: flex;
}

.photo-notes > div {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 100%;
  width: 100%;
}

.photo-notes img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 100%;
  min-height: 11rem;
  object-fit: cover;
  width: 100%;
}

.photo-notes figcaption,
.case-image figcaption {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.8rem;
}

.photo-break {
  align-items: end;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.photo-break-small {
  min-height: 460px;
}

.photo-break::after {
  background: rgba(247, 243, 235, 0.72);
  content: "";
  inset: 0;
  position: absolute;
}

.photo-break img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.photo-caption {
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.photo-caption p {
  color: var(--surface-strong);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.05;
  max-width: 720px;
}

.photo-caption span {
  color: #f1d184;
  display: inline-block;
  font-weight: 800;
  margin-top: 0.8rem;
}

.contact-section {
  background: var(--surface);
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.contact-link {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 1rem;
  min-height: 104px;
  padding: 1.2rem;
}

.contact-link:hover,
.study-card:hover,
.project-card:hover,
.product-card:hover {
  border-color: rgba(14, 111, 105, 0.42);
  transform: translateY(-2px);
}

.contact-link i {
  align-items: center;
  background: rgba(14, 111, 105, 0.075);
  border-radius: 50%;
  color: var(--teal);
  display: inline-flex;
  flex: 0 0 46px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.contact-link strong,
.contact-link small {
  display: block;
}

.contact-link strong {
  color: var(--ink);
  font-weight: 800;
}

.contact-link small {
  color: var(--muted);
}

.featured-projects {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.featured-projects .project-card:first-child {
  grid-row: span 2;
}

.featured-projects .project-card:first-child .project-image {
  aspect-ratio: 16 / 11;
}

.featured-projects .project-card:first-child .project-body h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.project-card,
.product-card {
  overflow: hidden;
  transition: transform 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

.project-image,
.product-image {
  display: block;
  overflow: hidden;
}

.project-image {
  background: #ece5d8;
  aspect-ratio: 16 / 10;
}

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

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

.project-body,
.product-body {
  padding: clamp(1.2rem, 2vw, 1.7rem);
}

.project-body h3,
.product-body h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.project-body p,
.product-body p {
  margin-bottom: 1.1rem;
}

.project-facts {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin: 1.2rem 0 0;
}

.project-facts div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 82px 1fr;
  padding: 0.85rem 0;
}

.project-facts div:last-child {
  border-bottom: 0;
}

.project-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
  margin-top: 1.25rem;
}

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

.status-pill {
  background: rgba(167, 85, 50, 0.12);
  border-radius: var(--radius);
  color: var(--clay);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0.45rem 0.7rem;
}

.alt-section,
.links-callout {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.split-feature {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
}

.split-feature p {
  font-size: 1.08rem;
  margin-top: 1rem;
}

.simulator-gallery {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 380px;
  overflow: hidden;
}

.simulator-gallery .carousel-item {
  width: 340px;
}

.simulator-gallery img {
  border-radius: var(--radius);
  height: 260px;
  object-fit: cover;
  width: 340px;
}

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

.study-card {
  color: var(--ink);
  min-height: 178px;
  padding: 1.2rem;
  transition: transform var(--ease), border-color var(--ease);
}

.study-card i {
  color: var(--teal);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.study-card span,
.study-card small {
  display: block;
}

.study-card span {
  font-weight: 800;
  line-height: 1.25;
}

.study-card small {
  color: var(--muted);
  margin-top: 0.45rem;
}

.links-hero {
  background: var(--surface);
}

.links-disclosure {
  align-self: stretch;
}

.product-directory {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.product-category {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(1.1rem, 3vw, 1.8rem);
  grid-template-columns: minmax(200px, 0.28fr) minmax(0, 1fr);
  padding-top: 2rem;
}

.product-category:first-child {
  border-top: 0;
  padding-top: 0;
}

.category-heading {
  position: sticky;
  top: 96px;
}

.category-heading h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
}

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

.product-grid:has(.product-card:only-child) {
  grid-template-columns: minmax(280px, 420px);
}

.product-image {
  align-items: center;
  aspect-ratio: 1 / 0.9;
  display: flex;
  justify-content: center;
  padding: clamp(1.6rem, 4.5vw, 2.75rem);
}

.product-image img {
  height: 100%;
  max-height: 245px;
  mix-blend-mode: multiply;
  object-fit: contain;
  filter: contrast(1.04) saturate(0.92);
  transition: transform 360ms ease;
  width: 100%;
}

.resource-showcase {
  align-items: stretch;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
}

.resource-showcase > div > p {
  font-size: 1.08rem;
  margin-top: 1.1rem;
  max-width: 720px;
}

.resource-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.resource-card span {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
}

.resource-card strong {
  color: var(--ink);
  display: block;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 650;
  line-height: 1.06;
  margin: 1.5rem 0;
}

.resource-card small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.resource-card:hover {
  border-color: rgba(14, 111, 105, 0.42);
  color: var(--ink);
  transform: translateY(-2px);
}

.secondary-resource {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

.secondary-resource .resource-card {
  min-height: 210px;
}

.secondary-resource .resource-card strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.12rem;
  line-height: 1.35;
  margin: 1rem 0;
}

.case-layout,
.case-detail-grid {
  display: grid;
  gap: clamp(1.6rem, 4vw, 4rem);
}

.case-layout {
  align-items: center;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
}

.case-copy {
  max-width: 620px;
}

.case-copy h2 {
  margin-bottom: 1rem;
}

.case-image {
  margin: 0;
}

.case-image img {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.case-detail-grid {
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.8fr);
}

.case-detail-grid article {
  background: var(--surface);
  border: 1px solid rgba(22, 33, 31, 0.11);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.case-detail-grid h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.case-list {
  color: var(--muted);
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding-left: 1.15rem;
}

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--ink);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: var(--muted);
}

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

.footer-profile {
  align-items: center;
  display: flex;
  gap: 1.2rem;
}

.footer-profile img {
  border: 1px solid var(--line);
  border-radius: 50%;
  height: 94px;
  object-fit: cover;
  width: 94px;
}

.footer-profile h2 {
  color: var(--ink);
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.footer-profile .eyebrow {
  color: var(--clay);
  margin-bottom: 0.2rem;
}

.footer-links {
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 0.55rem;
  height: auto;
  line-height: 1.4;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--teal-dark);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.2rem;
}

@media only screen and (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .featured-projects .project-card:first-child {
    grid-row: auto;
  }

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

@media only screen and (max-width: 992px) {
  .site-nav .brand-logo {
    left: 0;
    transform: none;
  }

  .split-intro,
  .split-feature,
  .projects-hero-layout,
  .links-hero-layout,
  .product-category,
  .resource-showcase,
  .profile-proof,
  .case-layout,
  .case-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-heading {
    position: static;
  }

  .discipline-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .photo-notes {
    display: block;
  }

  .photo-notes > div {
    height: auto;
  }

  .photo-notes img {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
  }

  .hero {
    min-height: 76vh;
  }
}

@media only screen and (max-width: 700px) {
  .container {
    width: min(100% - 2rem, 1180px);
  }

  .site-nav,
  .site-nav .nav-wrapper {
    height: 64px;
    line-height: 64px;
  }

  .hero {
    min-height: 72vh;
    padding: 6rem 0 3.5rem;
  }

  .page-hero {
    padding: 3.4rem 0 3rem;
  }

  .hero-media::after {
    background: rgba(247, 243, 235, 0.78);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }

  .split-intro > p,
  .intro-summary {
    border-left: 0;
    border-top: 3px solid var(--gold);
    padding-left: 0;
    padding-top: 1rem;
  }

  .projects-hero-copy > p,
  .links-hero-copy > p {
    border-left: 0;
    border-top: 3px solid var(--gold);
    padding-left: 0;
    padding-top: 1rem;
  }

  .section-nav {
    flex-direction: column;
  }

  .section-nav a {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .featured-projects,
  .study-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .proof-points div,
  .project-facts div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .photo-notes > div {
    grid-template-columns: 1fr;
  }

  .photo-break,
  .photo-break-small {
    min-height: 390px;
  }

  .simulator-gallery {
    height: 320px;
  }

  .simulator-gallery .carousel-item,
  .simulator-gallery img {
    width: 280px;
  }

  .simulator-gallery img {
    height: 215px;
  }

  .footer-profile,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-hero > .container,
  .section-block > .container:first-child {
    animation: content-rise 420ms ease-out both;
  }
}

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

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