/* ============================================================
   Hugama Studio — site.css
   Custom stylesheet, no framework. Palette drawn from the
   studio's photography: warm plaster, ink-navy, brass.
   ============================================================ */

:root {
  --plaster: #f8f5ef;
  --sand: #efe9df;
  --white: #ffffff;
  --ink: #262b33;
  --navy: #35435c;
  --navy-deep: #2b3346;
  --brass: #a07a3f;
  --brass-dark: #8a6832;
  --muted: #6e695f;
  --line: rgba(38, 43, 51, 0.14);
  --shadow: 0 1px 2px rgba(38, 43, 51, 0.06), 0 12px 32px -12px rgba(38, 43, 51, 0.18);
  --font-serif: "DM Serif Display", Georgia, serif;
  --font-sans: "Karla", "Helvetica Neue", Arial, sans-serif;
  --header-h: 84px;
}

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

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--plaster);
}

h1, h2, h3, h4, p, figure, blockquote {
  margin: 0;
}

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

a {
  color: var(--brass-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

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

::selection {
  background: var(--navy);
  color: var(--plaster);
}

/* ---------- Type ---------- */

h1, h2, h3,
.display {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

.accent-i {
  font-style: italic;
  color: var(--brass);
}

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

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

/* Drafting-style section label: brass tick + spaced caps */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
}

.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--brass);
  flex: none;
}

/* ---------- Layout ---------- */

.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

.container--narrow {
  width: min(820px, 100% - 3rem);
}

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

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

.section--flush-top {
  padding-top: 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.section-head p {
  margin-top: 1rem;
  color: var(--muted);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--plaster);
  background: var(--navy);
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--plaster);
}

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

.btn--ghost:hover {
  background: var(--ink);
  color: var(--plaster);
}

.btn--light {
  background: var(--plaster);
  border-color: var(--plaster);
  color: var(--navy-deep);
}

.btn--light:hover {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--navy-deep);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--plaster);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px -12px rgba(38, 43, 51, 0.25);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--header-h);
}

.site-logo img {
  width: 132px;
  height: auto;
}

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

.site-nav a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding-block: 0.4rem;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--brass-dark);
}

.site-nav a[aria-current="page"] {
  border-bottom-color: var(--brass);
  color: var(--brass-dark);
}

.site-nav a.btn {
  padding: 0.7rem 1.4rem;
  color: var(--plaster);
}

.site-nav a.btn:hover {
  color: var(--plaster);
  background: var(--navy-deep);
}

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--plaster);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.5rem 1.5rem;
    display: none;
  }

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

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a[aria-current="page"] {
    border-bottom-color: var(--line);
  }

  .site-nav .btn {
    margin-top: 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--navy);
  }
}

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

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  color: var(--plaster);
}

.hero__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(15deg, rgba(31, 36, 45, 0.72) 0%, rgba(31, 36, 45, 0.35) 45%, rgba(31, 36, 45, 0.05) 75%);
}

.hero__content {
  padding-block: clamp(3rem, 8vw, 5.5rem);
  max-width: 44rem;
}

.hero__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.85);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  text-wrap: balance;
}

.hero .accent-i {
  color: #d9b877;
}

.hero__sub {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: 1.1rem;
  color: rgba(248, 245, 239, 0.92);
}

.hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .btn--ghost {
  color: var(--plaster);
  border-color: rgba(248, 245, 239, 0.7);
}

.hero .btn--ghost:hover {
  background: var(--plaster);
  color: var(--ink);
}

/* Orchestrated load moment: kicker → headline → sub → actions */
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero__kicker,
.hero h1,
.hero__sub,
.hero__actions {
  animation: hero-rise 0.8s ease both;
}

.hero h1 { animation-delay: 0.15s; }
.hero__sub { animation-delay: 0.3s; }
.hero__actions { animation-delay: 0.45s; }

/* ---------- Intro (problem / promise) ---------- */

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

.intro-grid h2 {
  text-wrap: balance;
}

.intro-grid p + p {
  margin-top: 1.1rem;
}

@media (max-width: 860px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Value cards ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.value-card {
  padding-top: 1.6rem;
  border-top: 1px solid var(--brass);
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

@media (max-width: 860px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Gallery-wall project cards ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.work-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  padding: 0.9rem 0.9rem 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(38, 43, 51, 0.06), 0 24px 48px -16px rgba(38, 43, 51, 0.28);
  color: var(--ink);
}

.work-card__thumb {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--sand);
}

.work-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.work-card:hover .work-card__thumb img {
  transform: scale(1.045);
}

.work-card figcaption {
  padding: 1.1rem 0.4rem 0;
}

.work-card__title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.25;
}

.work-card__meta {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dark);
}

.work-more {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

@media (max-width: 960px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Process phases (real project sequence) ---------- */

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

.phase {
  border-top: 1px solid var(--ink);
  padding-top: 1.75rem;
}

.phase__num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.25rem;
  line-height: 1;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

.phase h3 {
  margin-bottom: 0.5rem;
}

.phase__intro {
  color: var(--muted);
  font-size: 0.98rem;
}

.phase__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.phase__list li {
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}

@media (max-width: 860px) {
  .phase-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Testimonials ---------- */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.quote {
  background: var(--white);
  padding: 1.9rem 2rem 2.25rem;
  box-shadow: var(--shadow);
}

.quote::before {
  content: "\201E";
  display: block;
  height: 2.4rem;
  font-family: var(--font-serif);
  font-size: 4.25rem;
  line-height: 0.1;
  color: var(--brass);
  opacity: 0.5;
}

.quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
}

.quote cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dark);
}

.quote__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.quote__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  border: 1px solid var(--line);
}

.quote__author cite {
  margin-top: 0;
}

.quote-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 860px) {
  .quote-grid,
  .quote-grid--two {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 52rem;
}

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

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

.faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 0.25rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-sans);
  font-size: 1.3rem;
  color: var(--brass);
  transition: transform 0.25s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq summary:hover {
  color: var(--brass-dark);
}

.faq__body {
  padding: 0 0.25rem 1.5rem;
  color: var(--muted);
  max-width: 62ch;
}

.faq__body p + p,
.faq__body ul {
  margin-top: 0.9rem;
}

.faq__body ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.faq__body li + li {
  margin-top: 0.35rem;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-grid__photo {
  background: var(--white);
  padding: 0.9rem;
  box-shadow: var(--shadow);
}

.about-grid__photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.about-grid p + p {
  margin-top: 1.1rem;
}

.about-signature {
  margin-top: 2rem;
  width: 190px;
}

.about-cta {
  margin-top: 2rem;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid__photo {
    max-width: 420px;
  }
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--navy);
  color: var(--plaster);
  text-align: center;
  padding-block: clamp(4rem, 8vw, 6rem);
}

.cta-band h2 {
  color: var(--white);
  text-wrap: balance;
}

.cta-band p {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: rgba(248, 245, 239, 0.85);
}

.cta-band .btn {
  margin-top: 2.25rem;
}

/* ---------- Page hero (inner pages) ---------- */

.page-head {
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.page-head .eyebrow {
  justify-content: flex-start;
}

.page-head h1 {
  max-width: 20ch;
  text-wrap: balance;
}

.page-head__sub {
  margin-top: 1.25rem;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.1rem;
}

/* ---------- Project detail ---------- */

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.project-meta div {
  font-size: 0.95rem;
}

.project-meta dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dark);
}

.project-meta dd {
  margin: 0.1rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.prose {
  max-width: 66ch;
}

.prose p + p {
  margin-top: 1.15rem;
}

.masonry {
  columns: 2;
  column-gap: 1.5rem;
}

.masonry a {
  display: block;
  margin-bottom: 1.5rem;
  background: var(--white);
  padding: 0.6rem;
  box-shadow: var(--shadow);
  break-inside: avoid;
  transition: transform 0.3s ease;
}

.masonry a:hover {
  transform: translateY(-3px);
}

.masonry img {
  width: 100%;
}

@media (max-width: 640px) {
  .masonry {
    columns: 1;
  }
}

/* ---------- Lightbox ---------- */

.lightbox {
  border: 0;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 27, 33, 0.96);
  color: var(--plaster);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox[open] {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  width: auto;
  height: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(248, 245, 239, 0.1);
  color: var(--plaster);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lightbox__btn:hover {
  background: rgba(248, 245, 239, 0.25);
}

.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }

.lightbox__count {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 0.4rem;
}

.contact-info .contact-block + .contact-block {
  margin-top: 2rem;
}

.contact-info a {
  text-decoration: none;
}

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

.form-field {
  margin-bottom: 1.4rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease;
}

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

.form-field textarea {
  min-height: 200px;
  resize: vertical;
}

.form-status {
  margin-top: 1.25rem;
  font-weight: 700;
  display: none;
}

.form-status.is-ok { display: block; color: #3d6b40; }
.form-status.is-error { display: block; color: #a03c2e; }

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

.site-footer {
  background: var(--navy-deep);
  color: rgba(248, 245, 239, 0.78);
  padding-block: clamp(3.5rem, 7vw, 5rem) 2rem;
  font-size: 0.95rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248, 245, 239, 0.15);
}

.site-footer__brand img {
  width: 150px;
  margin-bottom: 1.25rem;
}

.site-footer h3 {
  font-size: 0.78rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plaster);
  margin-bottom: 1.1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.55rem;
}

.site-footer a {
  color: rgba(248, 245, 239, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.site-footer .social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-footer .social-links a {
  display: inline-flex;
  padding: 0.15rem;
}

.site-footer .social-links svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.site-footer .social-links a:hover {
  color: var(--white);
}

.site-footer__bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(248, 245, 239, 0.55);
}

@media (max-width: 860px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

/* ---------- 404 ---------- */

.error-page {
  text-align: center;
  padding-block: clamp(5rem, 12vw, 9rem);
}

.error-page h1 {
  margin-bottom: 1rem;
}

.error-page .btn {
  margin-top: 2rem;
}

/* ---------- Scroll to top ---------- */

.btn-scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--plaster);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background-color 0.2s ease;
  box-shadow: 0 8px 24px -8px rgba(38, 43, 51, 0.4);
}

.btn-scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.btn-scroll-top:hover {
  background: var(--navy-deep);
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
