:root {
  --color-salt: #f7f5f0;
  --color-dune: #e6dfd2;
  --color-teal: #4a7c74;
  --color-teal-deep: #3a655e;
  --color-navy: #1a3a4a;
  --color-navy-soft: #2a4f5f;
  --color-coral: #e07a5f;
  --color-coral-deep: #c9664d;
  --color-ink: #1c2b33;
  --color-muted: #5c6b73;
  --color-white: #fffcf8;
  --color-rule: rgba(26, 58, 74, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", "Helvetica Neue", sans-serif;
  --radius-card: 18px;
  --shadow-card: 0 10px 28px rgba(26, 58, 74, 0.08);
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --max: 72rem;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(74, 124, 116, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(224, 122, 95, 0.1), transparent 45%),
    linear-gradient(180deg, var(--color-salt) 0%, var(--color-dune) 48%, var(--color-salt) 100%);
  min-height: 100vh;
}

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

a {
  color: var(--color-teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-navy);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

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

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}

.lede {
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 38rem;
}

.price-hint {
  font-size: 0.95rem;
  color: var(--color-navy-soft);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.15s var(--ease);
}

.btn:active {
  transform: scale(0.97);
}

.btn--navy {
  background: var(--color-navy);
  color: var(--color-white);
}

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

.btn--teal {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn--teal:hover {
  background: var(--color-white);
  color: var(--color-teal-deep);
  border-color: var(--color-teal);
}

.btn--coral {
  background: var(--color-coral);
  color: var(--color-white);
}

.btn--coral:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

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

.btn--ghost:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 245, 240, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--color-rule);
}

.page-home .site-header:not(.is-scrolled):not(.is-open) {
  background: transparent;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
}

.site-header__brand {
  text-align: center;
  text-decoration: none;
  color: var(--color-navy);
  justify-self: center;
}

.site-header__wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.site-header__sub {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-top: 0.15rem;
}

.site-header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.1rem;
}

.site-header__nav a {
  text-decoration: none;
  color: var(--color-navy);
  font-size: 0.88rem;
  font-weight: 500;
}

.site-header__nav a[aria-current="page"] {
  color: var(--color-coral);
}

.site-header__nav--left {
  justify-self: start;
}

.site-header__nav--right {
  justify-self: end;
}

.site-header__nav--right ul {
  justify-content: flex-end;
}

.site-header__toggle {
  display: none;
  background: none;
  border: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  cursor: pointer;
  justify-self: end;
}

.site-header__toggle span {
  display: block;
  height: 2px;
  background: var(--color-navy);
  margin: 5px 0;
  transition: transform 0.25s var(--ease);
}

.site-header__mobile {
  background: rgba(247, 245, 240, 0.96);
  border-top: 1px solid var(--color-rule);
  padding: 1rem 1.5rem 1.5rem;
}

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

.site-header__mobile a {
  display: block;
  padding: 0.75rem 0;
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 500;
  border-bottom: 1px solid var(--color-rule);
}

@media (max-width: 900px) {
  .site-header__nav {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header__brand {
    justify-self: start;
  }

  .site-header__toggle {
    display: block;
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(165deg, #d9e5e1 0%, #cfd8d4 40%, #e8dfd4 100%);
  color: var(--color-navy);
  margin-top: 4rem;
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--color-rule);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) 1.3fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(26, 58, 74, 0.15);
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.site-footer__tag,
.site-footer__address {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.site-footer__col h2,
.site-footer__newsletter h2 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

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

.site-footer__col a {
  display: block;
  padding: 0.28rem 0;
  text-decoration: none;
  color: var(--color-navy-soft);
  font-size: 0.95rem;
}

.site-footer__col a:hover {
  color: var(--color-coral);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.newsletter-form input {
  flex: 1 1 10rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(26, 58, 74, 0.2);
  border-radius: 999px;
  background: var(--color-white);
  font: inherit;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

@media (max-width: 960px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section--tint {
  background: rgba(74, 124, 116, 0.08);
}

.section--muted {
  background: rgba(230, 223, 210, 0.55);
}

.section__intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section__title {
  margin-bottom: 1.75rem;
}

.section__more {
  margin-top: 2rem;
}

/* Home hero — full-bleed, editorial */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  color: var(--color-white);
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 58, 74, 0.25) 0%, rgba(26, 58, 74, 0.72) 70%, rgba(26, 58, 74, 0.88) 100%);
  z-index: 1;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
}

.home-hero__kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-dune);
  margin-bottom: 1rem;
}

.home-hero__title {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3.35rem);
  margin-bottom: 1.25rem;
}

.home-hero__lede {
  color: rgba(255, 252, 248, 0.88);
  font-size: 1.1rem;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

/* Page heroes */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 2rem;
}

.page-hero--plain h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 22ch;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-hero__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 22rem;
}

@media (max-width: 800px) {
  .page-hero__grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}

.card-grid--services {
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

@media (max-width: 800px) {
  .card--featured {
    grid-template-columns: 1fr;
  }
}

.card__media img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.card--featured .card__media img {
  height: 100%;
  min-height: 16rem;
}

.card__body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.card__body h2,
.card__body h3 {
  font-size: 1.25rem;
}

.card__body h2 a,
.card__body h3 a {
  text-decoration: none;
  color: inherit;
}

.card__badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-coral);
  font-weight: 700;
  margin: 0;
}

/* Asym blocks */
.asym-block {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.asym-block:nth-child(even) .asym-block__media {
  order: -1;
}

.asym-block__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-rule);
}

.asym-block__media img {
  width: 100%;
  min-height: 18rem;
  object-fit: cover;
}

@media (max-width: 800px) {
  .asym-block {
    grid-template-columns: 1fr;
  }

  .asym-block:nth-child(even) .asym-block__media {
    order: 0;
  }
}

/* Quote / CTA */
.quote-band {
  max-width: 40rem;
}

.quote-band blockquote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
}

.quote-band blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--color-navy);
  line-height: 1.35;
}

.quote-band footer {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.cta-band {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-rule);
  box-shadow: var(--shadow-card);
}

.cta-band p {
  max-width: 32rem;
  margin-inline: auto;
  color: var(--color-muted);
}

/* Posts */
.post-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .post-preview-grid {
    grid-template-columns: 1fr;
  }
}

.post-preview img {
  border-radius: var(--radius-card);
  width: 100%;
  height: 12rem;
  object-fit: cover;
  margin-bottom: 0.85rem;
}

.post-preview__date {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

.post-preview h3 {
  font-size: 1.15rem;
}

.post-preview h3 a {
  text-decoration: none;
  color: inherit;
}

.post-list__item {
  display: grid;
  grid-template-columns: 18rem 1fr;
  gap: 1.75rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-rule);
}

.post-list__media img {
  border-radius: var(--radius-card);
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

@media (max-width: 700px) {
  .post-list__item {
    grid-template-columns: 1fr;
  }
}

.post__hero {
  position: relative;
  padding-top: var(--header-h);
}

.post__hero-media {
  max-height: 28rem;
  overflow: hidden;
}

.post__hero-media img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
}

.post__hero-text {
  padding: 2rem 0 1rem;
}

.post__meta {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.post__body {
  max-width: 42rem;
  padding-bottom: 2rem;
}

.post__footer {
  padding-bottom: 3rem;
}

/* Prose */
.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1.5rem 0;
}

.prose th,
.prose td {
  border: 1px solid var(--color-rule);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.prose th {
  background: rgba(74, 124, 116, 0.1);
}

/* Service detail extras */
.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.panel {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-rule);
  box-shadow: var(--shadow-card);
  padding: 1.5rem 1.75rem;
}

@media (max-width: 700px) {
  .split-panels {
    grid-template-columns: 1fr;
  }
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.process-list__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-rule);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.process-list__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-coral);
  font-weight: 700;
}

/* Team / reviews / dossiers */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-rule);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.team-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.team-card h3,
.team-card p {
  padding: 0 1.25rem;
}

.team-card h3 {
  margin-top: 1rem;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.team-card p:last-child {
  padding-bottom: 1.25rem;
}

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

.review-list {
  display: grid;
  gap: 1.25rem;
}

.review-card {
  margin: 0;
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-rule);
  border-left: 3px solid var(--color-teal);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-card);
}

.review-card footer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-card__service {
  color: var(--color-teal);
}

.story-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-rule);
}

.story-block__client {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.story-block h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1rem;
}

.dossier-grid {
  display: grid;
  gap: 2rem;
}

.dossier-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-rule);
  box-shadow: var(--shadow-card);
}

.dossier-card img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}

.dossier-card__body {
  padding: 1.75rem;
}

.dossier-card__meta {
  font-size: 0.85rem;
  color: var(--color-muted);
}

@media (max-width: 800px) {
  .dossier-card {
    grid-template-columns: 1fr;
  }
}

/* Pricing table */
.pricing-table {
  overflow-x: auto;
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-rule);
  box-shadow: var(--shadow-card);
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-rule);
}

.pricing-table th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(74, 124, 116, 0.1);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2.5rem;
}

.contact-form,
.contact-grid__aside {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-rule);
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
}

.contact-grid__aside address {
  font-style: normal;
  margin-bottom: 1rem;
}

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

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(26, 58, 74, 0.22);
  border-radius: 12px;
  font: inherit;
  background: var(--color-salt);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--color-teal);
  outline-offset: 1px;
}

.field-error {
  color: var(--color-coral-deep);
  font-size: 0.85rem;
  margin: 0.35rem 0 0;
}

.form-message {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

.form-message.is-success {
  background: rgba(74, 124, 116, 0.15);
  color: var(--color-navy);
}

.form-message.is-error {
  background: rgba(224, 122, 95, 0.18);
  color: var(--color-coral-deep);
}

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

/* Legal */
.legal {
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
}

.legal__inner {
  max-width: 44rem;
}

.legal__updated {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.error-page {
  padding-top: calc(var(--header-h) + 4rem);
  min-height: 60vh;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 200;
  max-width: 34rem;
}

.cookie-banner__inner {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-rule);
  box-shadow: 0 16px 40px rgba(26, 58, 74, 0.18);
  padding: 1.25rem 1.4rem;
}

.cookie-banner__text h2 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.cookie-banner__text p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .home-hero__bg img {
    transform: none;
  }
}
