/* ============================================================
   Arke Estates — styles.css
   Palette: white / near-black / warm gray / hairline. No accent.
   Type: Archivo (display, thin) + Inter (body).
   Motion: near-stillness — opacity fades, 1.03 image scale.
   ============================================================ */

:root {
  --white: #FFFFFF;
  --ink: #111111;
  /* Deepened from #8A8680 (3.62:1 on white — 94 measured AA failures at the
     small sizes .micro is used at). 4.63:1. Six consumers, every one of them a
     `color:` on muted label text, so nothing but text weight moves. */
  --gray: #79746D;
  --hairline: #E5E2DD;

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --pad: clamp(1.25rem, 5vw, 4.5rem);
  --section-pad: clamp(4.5rem, 11vw, 10rem);
  --head-h: 5rem;

  --fade: 0.9s ease;
  --img-fade: filter 0.8s ease, transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--white);
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input,
textarea {
  font: inherit;
  color: inherit;
}

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

/* ---------- Shared primitives ---------- */

.wrap {
  max-width: 1520px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: var(--section-pad);
  border-top: 1px solid var(--hairline);
}

/* Tiny tracked-out uppercase micro-label — the brand's smallest voice */
.micro {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1.7;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.section-index {
  color: var(--gray);
}

.text-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 0.45em;
  border-bottom: 1px solid var(--ink);
  transition: opacity 0.4s ease;
}

.text-link:hover,
.text-link:focus-visible {
  opacity: 0.45;
}

.text-link-muted {
  color: var(--ink);
  opacity: 0.72;
  border-bottom-color: var(--hairline);
}

.plain-link {
  transition: opacity 0.4s ease;
}

.plain-link:hover,
.plain-link:focus-visible {
  opacity: 0.45;
}

/* Image frames: sharp corners, grayscale at rest, colour on hover,
   1.03 scale inside a fixed overflow-hidden boundary. */
.frame {
  overflow: hidden;
  background-color: var(--hairline);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--hairline);
  filter: grayscale(1);
  transform: scale(1);
  transition: var(--img-fade);
}

.frame:hover img,
a:hover .frame img,
a:focus-visible .frame img {
  filter: grayscale(0);
  transform: scale(1.03);
}

/* Scroll reveal: opacity only — motion as absence.
   Gated on html.js so content is never hidden without JavaScript. */
html.js .reveal {
  opacity: 0;
  transition: opacity var(--fade);
}

html.js .reveal.is-visible {
  opacity: 1;
}

/* ---------- Header / navigation ---------- */

.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.5s ease;
}

.site-head.is-scrolled {
  border-bottom-color: var(--hairline);
}

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.75rem;
  transition: padding 0.5s ease;
}

.site-head.is-scrolled .head-inner {
  padding-block: 0.9rem;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark span {
  color: var(--gray);
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.75rem);
}

/* Functional navigation carries ink at 0.72 — the same warm value the
   eye reads as grey, but clear of the 4.5:1 threshold. */
.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
  opacity: 0.72;
  transition: opacity 0.4s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  opacity: 1;
}

.nav-link-cta {
  color: var(--ink);
  opacity: 1;
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--ink);
}

/* Hamburger — two hairlines */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  align-items: flex-end;
  padding: 10px;
}

.nav-toggle-line {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--ink);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

body.nav-open .nav-toggle-line:first-child {
  transform: translateY(4px) rotate(45deg);
}

/* The button's last child is the visually-hidden label, so the second
   hairline must be addressed by position, not by :last-child. */
body.nav-open .nav-toggle-line:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile navigation panel — raised above the 768–880px band where the
   full desktop nav collides with the wordmark. */
@media (max-width: 899.98px) {
  .nav-toggle {
    display: flex;
  }

  .head-inner {
    position: relative;
    z-index: 2;
  }

  /* The bar's contents must out-rank the panel inside .head-inner's
     stacking context, or the open menu paints over its own close button. */
  .wordmark,
  .nav-toggle {
    position: relative;
    z-index: 2;
  }

  /* The panel is fixed to the viewport and body.nav-open takes the page's
     scroll away, so anything taller than the viewport had nowhere to go: at
     640x512 — a 1280x1024 screen at the 200% zoom 1.4.4 asks for — the list
     measures 496px and "Private consultation" ended 32px below the bottom
     edge; at 667x375 "Listings" was cut off 9px ABOVE the top edge in the
     same breath. Both were focusable the whole time. The panel carries its
     own scroll now. */
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    background-color: var(--white);
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    /* Same reason html carries one: the bar is fixed on top of this scroller,
       so scrolling a focused link "into view" has to stop short of it or Tab
       parks the link underneath the wordmark — measured at 640x512, cycling
       back to "Listings" put it entirely behind the bar. */
    scroll-padding-top: 6rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
  }

  /* Auto cross-axis margins centre the list exactly as align-items: center
     did while there is room to spare — same pixels — but collapse to zero
     once the list outgrows the panel, which parks it at the top edge instead
     of hanging half of it above scrollTop 0 where no scroll can reach. */
  .site-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.25rem;
    padding-inline: var(--pad);
    margin-block: auto;
    width: 100%;
  }

  .nav-link {
    font-family: var(--font-display);
    font-weight: 100;
    font-size: clamp(2rem, 9vw, 2.75rem);
    letter-spacing: -0.01em;
    text-transform: none;
    white-space: normal;
    color: var(--ink);
    opacity: 1;
  }

  .nav-link-cta {
    border-bottom: 0;
    padding-bottom: 0;
    color: var(--ink);
    opacity: 0.72;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* ---------- Hero ---------- */

.hero {
  padding-top: calc(var(--head-h) + clamp(2rem, 6vw, 4.5rem));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(3.25rem, 10.5vw, 8.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero-foot {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 34rem;
}

.hero-sub {
  color: var(--ink);
  opacity: 0.72;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
}

.hero-frame {
  aspect-ratio: 4 / 5;
  max-height: 82vh;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-block: 1.5rem;
  border-top: 1px solid var(--hairline);
}

/* ---------- Listings ---------- */

.listings .section-head {
  flex-direction: column;
}

.listing {
  border-top: 1px solid var(--hairline);
}

.listing:last-of-type {
  border-bottom: 1px solid var(--hairline);
}

.listing-link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.listing-frame {
  aspect-ratio: 4 / 3;
}

.listing-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.listing-loc {
  transition: color 0.5s ease;
}

.listing-link:hover .listing-loc,
.listing-link:focus-visible .listing-loc {
  color: var(--ink);
}

.listing-name {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Enormous price in thin numerals — the row's true headline */
.listing-price {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.listing-meta li {
  padding-right: 1.25rem;
  margin-right: 1.25rem;
  border-right: 1px solid var(--hairline);
}

.listing-meta li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

.listing-cue {
  color: var(--ink);
  margin-top: auto;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.listing-link:hover .listing-cue,
.listing-link:focus-visible .listing-cue {
  opacity: 1;
}

/* Stacked layout: the number flows above the row. It only floats
   into the top-right corner at 1100px, where clearance is reserved. */
.listing-index {
  position: static;
  order: -1;
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1;
  color: var(--gray);
}

/* ---------- Philosophy ---------- */

.philosophy .wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.philosophy-line {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(2.1rem, 5.5vw, 4.9rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 24ch;
}

.philosophy-attr {
  align-self: flex-end;
}

/* ---------- Stats ---------- */

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

/* ---------- Process ---------- */

.process-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 2rem;
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--hairline);
}

.process-step:last-child {
  border-bottom: 1px solid var(--hairline);
}

.process-num {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  color: var(--gray);
}

.process-name {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.process-copy {
  color: var(--ink);
  opacity: 0.72;
  line-height: 1.75;
  max-width: 34rem;
}

/* ---------- Featured spotlight ---------- */

.featured .section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.featured-bleed {
  padding-inline: clamp(0rem, 2vw, 2rem);
}

.featured-frame {
  aspect-ratio: 16 / 9;
  max-height: 84vh;
}

.featured-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.featured-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 36rem;
}

.featured-copy {
  color: var(--ink);
  opacity: 0.72;
  line-height: 1.8;
}

.featured-price {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(3rem, 7vw, 5.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.featured-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: start;
}

.featured-small {
  background: none;
}

.featured-small img {
  aspect-ratio: 4 / 5;
  height: auto;
}

.featured-small figcaption {
  padding-top: 0.85rem;
  background-color: var(--white);
}

/* ---------- Client words ---------- */

.words-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 6rem);
}

.quote blockquote p {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 26ch;
}

.quote-attr {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 2rem;
}

.quote-portrait {
  width: 56px;
  height: 56px;
  object-fit: cover;
  filter: grayscale(1);
  background-color: var(--hairline);
  flex-shrink: 0;
  transition: filter 0.8s ease;
}

.quote:hover .quote-portrait {
  filter: grayscale(0);
}

.quote-who {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.quote-name {
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ---------- Contact / consultation ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3.5rem, 7vw, 7rem);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.contact-title {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(0, 7rem) minmax(0, 1fr);
  gap: 1.5rem;
  padding-block: 1.1rem;
  border-top: 1px solid var(--hairline);
}

.contact-row:last-child {
  border-bottom: 1px solid var(--hairline);
}

.contact-row dd {
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.field input,
.field textarea {
  width: 100%;
  background-color: var(--white);
  border: 0;
  border-bottom: 1px solid var(--hairline);
  padding: 0.65rem 0;
  line-height: 1.5;
  border-radius: 0;
  transition: border-color 0.4s ease;
  resize: vertical;
}

/* Functional UI text carries full contrast; --gray stays for decoration. */
.field label.micro {
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--gray);
  opacity: 1;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}

/* A hairline colour change is not a focus indicator — restore a real ring. */
.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-bottom-color: var(--ink);
}

.form-error {
  color: var(--ink);
}

.form-error[hidden] {
  display: none;
}

.submit-btn {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--ink);
  padding: 1.1rem 2.5rem;
  transition: opacity 0.4s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  opacity: 0.8;
}

.form-note {
  letter-spacing: 0.14em;
}

.form-success {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--hairline);
}

.form-success[hidden],
.consult-form[hidden] {
  display: none;
}

.form-success-line {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.5;
}

/* ---------- Footer ---------- */

.site-foot {
  border-top: 1px solid var(--hairline);
  padding-block: clamp(3.5rem, 7vw, 6rem) 2rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
}

.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.foot-wordmark {
  font-size: 1rem;
}

.foot-line {
  color: var(--ink);
  opacity: 0.72;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 22rem;
}

.foot-head {
  margin-bottom: 1.1rem;
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--ink);
  opacity: 0.72;
}

/* The list is a single opacity group, so its links fade with the
   page-wide .plain-link hover rather than brightening past the group. */

.foot-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
}

/* ============================================================
   Breakpoint: 768px
   ============================================================ */

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    /* The hairline dividers are the gap from here up. */
    gap: 0;
  }

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

  .stat {
    padding-inline: 2.5rem;
    border-left: 1px solid var(--hairline);
  }

  .stat:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .process-step {
    grid-template-columns: 6rem 1fr;
  }

  .process-num {
    grid-row: 1 / 3;
  }

  .words-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
  }

  .foot-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .hero-strip {
    padding-block: 2rem;
  }
}

/* ============================================================
   Breakpoint: 1100px — the split-screen signature engages
   ============================================================ */

@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
  }

  .hero-copy {
    justify-content: space-between;
    min-height: min(78vh, 56rem);
    padding-bottom: 0.5rem;
  }

  .hero-frame {
    height: 100%;
    aspect-ratio: auto;
    max-height: none;
  }

  .hero-media {
    max-height: min(78vh, 56rem);
    display: flex;
  }

  .section-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2rem 3rem;
  }

  .section-head .micro:first-child {
    grid-column: 1 / -1;
  }

  .listing-link {
    grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
    align-items: stretch;
  }

  .listing-frame {
    aspect-ratio: auto;
    min-height: 24rem;
  }

  .listing-body {
    padding-right: 7rem;
    gap: 1.25rem;
  }

  .listing-index {
    position: absolute;
    order: 0;
    top: clamp(2rem, 4vw, 3.5rem);
    right: 0;
  }

  .listing-price {
    margin-top: 0.5rem;
  }

  .process-step {
    grid-template-columns: 8rem 1fr 1.15fr;
    align-items: start;
  }

  .process-num {
    grid-row: auto;
  }

  .featured-detail {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
  }

  .contact-form-col {
    padding-top: 0.5rem;
  }
}

/* ============================================================
   Touch devices: no hover, so the signature is shown at rest
   ============================================================ */

@media (hover: none) {
  /* Grayscale stays the resting state — it is the brand's image treatment,
     not a hover flourish. Colour arrives on an explicit touch instead. */
  .listing-cue {
    opacity: 1;
  }

  .frame:active img,
  a:active .frame img {
    filter: grayscale(0);
    transform: scale(1.03);
  }

  .quote:active .quote-portrait {
    filter: grayscale(0);
  }
}

/* ============================================================
   Reduced motion: stillness, absolutely
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.001s !important;
    transition-delay: 0s !important;
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
  }

  html {
    scroll-behavior: auto;
  }

  html.js .reveal {
    opacity: 1;
    transition: none;
  }

  .frame:hover img,
  a:hover .frame img,
  a:focus-visible .frame img {
    transform: none;
  }
}
