:root {
  --ink: #17252b;
  --ink-soft: #4c5b60;
  --paper: #ffffff;
  --soft: #f3f8f6;
  --line: #d8e5e0;
  --turquoise: #38b7a3;
  --turquoise-dark: #00695f;
  --green: #90c84a;
  --yellow: #f9e163;
  --yellow-dark: #715f00;
  --charcoal: #14282b;
  --shadow: 0 18px 50px rgb(20 40 43 / 12%);
  --radius-sm: 0.65rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --shell: 74rem;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--turquoise-dark);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  margin-block: 0 0.75rem;
  font-family: "Trebuchet MS", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.75rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-block: 0 1rem;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.narrow-shell {
  max-width: 52rem;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--radius-sm);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.contact-bar {
  color: var(--paper);
  background: var(--charcoal);
  font-size: 0.84rem;
}

.contact-bar__inner {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.contact-bar a {
  color: inherit;
  text-decoration: none;
}

.contact-bar a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid rgb(216 229 224 / 82%);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 5.6rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo-link {
  flex: 0 0 auto;
}

.logo-link img {
  width: 12.5rem;
  max-height: 4.25rem;
  object-fit: contain;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.primary-navigation > a,
.nav-dropdown > summary {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.72rem;
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
}

.primary-navigation > a:hover,
.nav-dropdown > summary:hover,
.primary-navigation .is-active {
  color: var(--turquoise-dark);
  background: var(--soft);
}

.primary-navigation .nav-appointment {
  margin-left: 0.2rem;
  color: var(--paper);
  background: var(--turquoise-dark);
}

.primary-navigation .nav-appointment:hover,
.primary-navigation .nav-appointment.is-active {
  color: var(--ink);
  background: var(--yellow);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  width: 0.45rem;
  height: 0.45rem;
  margin: -0.18rem 0 0 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.nav-dropdown[open] > summary::after {
  margin-top: 0.18rem;
  transform: rotate(225deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 13rem;
  padding: 0.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.72rem 0.8rem;
  color: var(--ink);
  border-radius: 0.65rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.is-active {
  color: var(--turquoise-dark);
  background: var(--soft);
}

.menu-toggle {
  display: none;
  min-width: 3rem;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: var(--paper);
  background: var(--turquoise-dark);
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--turquoise-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--yellow);
}

.lead {
  max-width: 44rem;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--paper);
  background: var(--turquoise-dark);
}

.button--primary:hover {
  color: var(--ink);
  background: var(--yellow);
}

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

.button--yellow:hover {
  background: var(--green);
}

.button--quiet {
  color: var(--turquoise-dark);
  background: transparent;
  border-color: var(--turquoise-dark);
}

.button--quiet:hover {
  color: var(--paper);
  background: var(--turquoise-dark);
}

.button--outline-light {
  color: var(--paper);
  background: rgb(20 40 43 / 30%);
  border-color: var(--paper);
}

.button--outline-light:hover {
  color: var(--ink);
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--turquoise-dark);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

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

.section--soft {
  background: var(--soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  max-width: 14ch;
}

.home-hero {
  position: relative;
  min-height: min(48rem, calc(100svh - 8rem));
  display: grid;
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal);
}

.hero-slides,
.hero-shade,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-shade {
  z-index: 1;
  background: rgb(9 28 30 / 68%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 5rem 2rem;
}

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

.hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 1.3rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.slideshow-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 3rem;
}

.slideshow-controls button {
  min-height: 2.75rem;
  padding: 0.6rem 0.9rem;
  color: var(--paper);
  background: rgb(20 40 43 / 72%);
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 999px;
  font-weight: 750;
  cursor: pointer;
}

.slideshow-controls button:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
}

.intro-grid h2 {
  max-width: 11ch;
}

.prose-large {
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.service-card {
  min-height: 14rem;
  padding: 1.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card::before {
  width: 2.25rem;
  height: 0.35rem;
  display: block;
  margin-bottom: 2.25rem;
  background: var(--green);
  border-radius: 999px;
  content: "";
}

.service-card:nth-child(3n + 2)::before {
  background: var(--yellow);
}

.service-card:nth-child(3n + 3)::before {
  background: var(--turquoise);
}

.service-card p {
  color: var(--ink-soft);
}

.team-feature {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.team-feature__image {
  position: relative;
  max-width: 28rem;
  padding: 0 0 1.25rem 1.25rem;
}

.team-feature__image::before {
  position: absolute;
  z-index: -1;
  inset: 2rem 1.25rem 0 0;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  content: "";
}

.team-feature__image img {
  width: 100%;
  max-height: 36rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.team-feature > div:last-child > p:not(.eyebrow, .lead) {
  color: var(--ink-soft);
}

.interior-hero {
  padding-block: clamp(4rem, 9vw, 8rem);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.interior-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
}

.story-list {
  display: grid;
  gap: 0;
}

.story-section {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  padding-block: 2.5rem;
  border-top: 1px solid var(--line);
}

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

.story-number {
  color: var(--turquoise-dark);
  font-size: 0.85rem;
  font-weight: 850;
}

.story-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.story-section p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.cta-band {
  padding-block: 3.5rem;
  color: var(--paper);
  background: var(--turquoise-dark);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.team-list {
  display: grid;
  gap: 2rem;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
  padding: clamp(1.25rem, 4vw, 3rem);
  background: var(--soft);
  border-radius: var(--radius-lg);
}

.team-card img {
  width: 100%;
  max-height: 40rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.team-card__content {
  padding-block: 1rem;
}

.team-card__content p:last-child {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  position: relative;
  min-height: 20rem;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  border-radius: var(--radius);
}

.gallery-card:nth-child(3n + 1) {
  grid-column: span 2;
  min-height: 34rem;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-card:hover img {
  transform: scale(1.02);
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  width: fit-content;
  padding: 0.55rem 0.75rem;
  color: var(--paper);
  background: rgb(20 40 43 / 88%);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 750;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  min-height: 5rem;
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--turquoise-dark);
  border-radius: 50%;
  content: "+";
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary span {
  color: var(--turquoise-dark);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.faq-item > div {
  max-width: 44rem;
  padding: 0 1rem 1.5rem 4rem;
  color: var(--ink-soft);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2.5rem;
}

.service-detail {
  min-height: 11rem;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding-block: 2rem;
  border-top: 1px solid var(--line);
}

.service-detail > span {
  color: var(--turquoise-dark);
  font-size: 0.8rem;
  font-weight: 850;
}

.service-detail h2 {
  font-size: 1.55rem;
}

.service-detail p {
  color: var(--ink-soft);
}

.instruction-panel {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 1.5rem 3rem;
  margin-bottom: 3rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  color: var(--paper);
  background: var(--turquoise-dark);
  border-radius: var(--radius-lg);
}

.instruction-panel .eyebrow {
  color: var(--yellow);
}

.instruction-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.instruction-panel ol {
  margin: 0;
  padding-left: 1.3rem;
  font-weight: 700;
}

.instruction-panel li + li {
  margin-top: 0.5rem;
}

.instruction-panel > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgb(255 255 255 / 35%);
}

.instruction-panel a {
  color: var(--yellow);
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-card {
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.7rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-card__number {
  margin-bottom: 2.5rem;
  color: var(--turquoise-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.form-card h2 {
  max-width: 18ch;
  font-size: 1.65rem;
}

.form-card p {
  color: var(--ink-soft);
}

.form-card .button-row {
  margin-top: auto;
}

.email-form-link {
  margin-top: 1rem;
  font-weight: 850;
}

.form-page-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 5rem);
}

.form-page-grid > div:first-child {
  position: sticky;
  top: 8rem;
}

.confirmation-note {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  background: #fff9d6;
  border-left: 0.35rem solid var(--yellow-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.form-embed {
  min-height: 48rem;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-embed iframe {
  width: 100%;
  min-height: 65rem;
  display: block;
  border: 0;
}

.form-fallback {
  margin-top: 1rem;
}

.setup-notice {
  padding: clamp(2rem, 6vw, 4rem);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.setup-notice h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.location-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--yellow);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  overflow: hidden;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.map-frame {
  min-height: 33rem;
  background: var(--soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 33rem;
  display: block;
  border: 0;
}

.location-card {
  padding: clamp(2rem, 5vw, 4rem);
}

.location-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.location-card address {
  margin-bottom: 1.5rem;
  font-style: normal;
}

.hours-list {
  margin-block: 1.5rem;
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.hours-row dt {
  font-weight: 800;
}

.hours-row dd {
  margin: 0;
}

.site-footer {
  padding-block: 4rem 1.5rem;
  color: rgb(255 255 255 / 82%);
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 3rem;
}

.site-footer h2 {
  color: var(--paper);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a {
  color: var(--paper);
}

.footer-logo {
  width: 12.5rem;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 18%);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.not-found {
  min-height: 55vh;
  display: grid;
  align-items: center;
  padding-block: 6rem;
}

@media (max-width: 72rem) {
  .contact-bar__inner {
    justify-content: center;
  }

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

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100svh - 8rem);
    display: none;
    overflow-y: auto;
    padding: 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .primary-navigation[data-open="true"] {
    display: grid;
  }

  .primary-navigation > a,
  .nav-dropdown > summary {
    width: 100%;
    justify-content: flex-start;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
  }

  .primary-navigation .nav-appointment {
    margin-left: 0;
  }

  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    margin: 0.25rem 0 0 1rem;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 52rem) {
  .contact-bar__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.2rem 1rem;
    padding-block: 0.5rem;
  }

  .contact-bar__inner a:last-child {
    flex-basis: 100%;
  }

  .logo-link img {
    width: 10.75rem;
  }

  .header-inner {
    min-height: 4.9rem;
  }

  .section-heading,
  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-grid,
  .team-feature,
  .team-card,
  .form-page-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-page-grid > div:first-child {
    position: static;
  }

  .card-grid,
  .services-list,
  .forms-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .gallery-card,
  .gallery-card:nth-child(3n + 1) {
    grid-column: span 2;
    min-height: 24rem;
  }

  .instruction-panel {
    grid-template-columns: 1fr;
  }

  .instruction-panel > p {
    grid-column: auto;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 25rem;
  }
}

@media (max-width: 34rem) {
  .shell {
    width: min(calc(100% - 1.25rem), var(--shell));
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 3.6rem);
  }

  .home-hero {
    min-height: 42rem;
  }

  .hero-layout {
    padding-top: 3.5rem;
  }

  .button-row .button {
    width: 100%;
  }

  .slideshow-controls {
    justify-content: center;
  }

  .slideshow-controls button {
    flex: 1 1 0;
    padding-inline: 0.5rem;
    font-size: 0.83rem;
  }

  .story-section {
    grid-template-columns: 2.5rem 1fr;
  }

  .faq-item summary {
    grid-template-columns: 2rem 1fr auto;
    gap: 0.55rem;
  }

  .faq-item > div {
    padding-left: 2.55rem;
  }

  .gallery-card,
  .gallery-card:nth-child(3n + 1) {
    min-height: 18rem;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
}

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

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

@media (forced-colors: active) {
  .button,
  .menu-toggle,
  .slideshow-controls button {
    border: 2px solid ButtonText;
  }
}
