:root {
  --chalk: #f7f5f0;
  --ivory: #f3eee4;
  --sand: #e6dcc8;
  --teal: #5b8f8a;
  --teal-deep: #3f6f6b;
  --navy: #1b2a4a;
  --navy-deep: #121c33;
  --coral: #e07a5f;
  --text: #243044;
  --muted: #5c677a;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(27, 42, 74, 0.08);
  --radius: 18px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1180px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(91, 143, 138, 0.12), transparent 45%),
    radial-gradient(ellipse at 90% 10%, rgba(230, 220, 200, 0.55), transparent 40%),
    linear-gradient(180deg, var(--chalk) 0%, #f1ebe2 100%);
  min-height: 100vh;
}

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

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s ease;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }

p { margin: 0 0 1em; }

.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-sans);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.75rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

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

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

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

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

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

.btn--ghost:hover {
  background: rgba(27, 42, 74, 0.06);
  color: var(--navy);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
}

.link-grow {
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
}

.link-grow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.link-grow:hover::after {
  transform: scaleX(1);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.site-header__brand em {
  font-style: italic;
  color: var(--teal-deep);
}

.site-header__toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}

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

.site-header__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

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

.site-header__list a:not(.site-header__cta)::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.site-header__list a:not(.site-header__cta):hover::after {
  transform: scaleX(1);
}

.site-header__cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem !important;
}

.site-header__cta:hover {
  background: var(--teal-deep);
}

@media (max-width: 960px) {
  .site-header__toggle { display: block; }
  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--chalk);
    border-bottom: 1px solid rgba(27, 42, 74, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .site-header__nav.is-open { max-height: 420px; }
  .site-header__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.85rem;
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--cream { background: rgba(243, 238, 228, 0.65); }
.section--sand { background: linear-gradient(135deg, rgba(230, 220, 200, 0.55), rgba(247, 245, 240, 0.3)); }
.section--navy {
  background: linear-gradient(135deg, var(--navy) 0%, #243b66 100%);
  color: var(--white);
}
.section--navy h2 { color: var(--white); }

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section__inner--narrow { max-width: 720px; }
.section__inner--split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.section__header { margin-bottom: 2rem; }
.section__header--row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.section__cta { margin-top: 2rem; }

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

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 0;
  min-height: calc(100vh - var(--header-h));
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.hero__copy {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__brand {
  font-size: clamp(3rem, 7vw, 5.2rem);
  margin-bottom: 0.4em;
}

.hero__lede {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 28rem;
  margin-bottom: 1.8rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

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

.hero--offset .hero__copy {
  background:
    linear-gradient(160deg, rgba(247, 245, 240, 0.95), rgba(230, 220, 200, 0.35));
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__visual { min-height: 320px; order: -1; }
}

.offset-figure {
  margin: 0;
  position: relative;
}

.offset-figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 42, 74, 0.12);
}

.offset-figure figcaption {
  margin-top: 0.75rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted);
}

.flagship {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--ivory);
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.flagship__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.flagship__body { padding: 2rem 2rem 2rem 0; }

@media (max-width: 800px) {
  .flagship { grid-template-columns: 1fr; }
  .flagship__body { padding: 1.5rem; }
}

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

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--coral);
}

.checklist--muted li::before { background: var(--teal); }

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

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

.card {
  background: var(--ivory);
  border: 1px solid rgba(27, 42, 74, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(27, 42, 74, 0.12);
}

.card__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card__body { padding: 1.35rem 1.4rem 1.6rem; }
.card__title { font-size: 1.45rem; }
.card__title a { text-decoration: none; }
.card__meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.pill {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1px solid rgba(224, 122, 95, 0.45);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .card-grid,
  .card-grid--services { grid-template-columns: 1fr; }
}

.pullquote {
  margin: 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 2px solid var(--coral);
}

.pullquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.35;
  color: var(--navy);
}

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

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 36rem; }

/* Page heroes */
.page-hero {
  padding: 3.5rem 0 1rem;
}

.page-hero--plain { padding-bottom: 0; }

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

.page-hero__figure {
  margin: 0;
  transform: translateY(1.5rem);
}

.page-hero__figure img {
  border-radius: var(--radius);
  border: 1px solid rgba(27, 42, 74, 0.12);
  box-shadow: var(--shadow);
}

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

.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto 1rem;
}

.detail-hero__copy {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-hero__media {
  min-height: 380px;
  overflow: hidden;
}

.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
}

.detail-aside {
  background: var(--ivory);
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: fit-content;
}

.facts { margin: 0; }
.facts dt {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 0.9rem;
}
.facts dd { margin: 0.25rem 0 0; }

.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.85rem;
}

.steps li {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: var(--ivory);
  border-radius: 14px;
  border: 1px solid rgba(27, 42, 74, 0.1);
}

.steps__num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--coral);
  min-width: 1.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.rate-list { display: grid; gap: 1rem; }
.rate-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.35rem 1.5rem;
  background: var(--ivory);
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.rate-row h2 { font-size: 1.5rem; margin: 0 0 0.25rem; }
.rate-row__price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  max-width: 18rem;
  text-align: right;
}

@media (max-width: 700px) {
  .rate-row { flex-direction: column; }
  .rate-row__price { text-align: left; }
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.quote-card {
  margin: 0;
  padding: 1.5rem;
  background: var(--ivory);
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--navy);
}

.quote-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.story-list { display: grid; gap: 1.5rem; }
.story {
  padding: 1.75rem;
  background: var(--chalk);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.story__summary { font-weight: 600; color: var(--navy); }
.story__meta { color: var(--muted); font-size: 0.92rem; }

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

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

.team-card {
  background: var(--ivory);
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.team-card:hover { transform: translateY(-4px); }
.team-card img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}
.team-card h3,
.team-card p { padding: 0 1.2rem; }
.team-card h3 { margin-top: 1rem; }
.team-card p:last-child { padding-bottom: 1.3rem; }
.team-card__role {
  color: var(--teal-deep);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

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

.article-hero { padding-top: 2.5rem; }
.article-hero__media {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  padding: 0 1.5rem;
}
.article-hero__media img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(27, 42, 74, 0.1);
}

.prose { max-width: 42rem; }
.prose--article { max-width: 40rem; margin-left: auto; margin-right: auto; }
.prose.legal { max-width: 46rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }

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

.timeline li {
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid rgba(27, 42, 74, 0.12);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--coral);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-card h2 {
  color: var(--sand);
  font-size: 1.2rem;
  margin-top: 1.2rem;
}

.contact-card h2:first-child { margin-top: 0; }
.contact-card a { color: var(--white); }

.contact-form,
.newsletter-form {
  display: grid;
  gap: 1rem;
}

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

.form-field input,
.form-field select,
.form-field textarea,
.newsletter-form input {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(27, 42, 74, 0.2);
  border-radius: 12px;
  font: inherit;
  background: var(--white);
  color: var(--text);
}

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

.field-error {
  color: #a33b2b;
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
}

.form-status {
  margin: 0.5rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 500;
}

.form-status.is-success {
  background: rgba(91, 143, 138, 0.18);
  color: var(--teal-deep);
}

.form-status.is-error {
  background: rgba(224, 122, 95, 0.18);
  color: #8f3a2a;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: #a33b2b;
}

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

.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
th, td {
  border: 1px solid rgba(27, 42, 74, 0.15);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}
th { background: var(--ivory); }

.section--error {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.86);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}

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

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-footer__wordmark {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.site-footer__wordmark em {
  font-style: italic;
  color: var(--sand);
}

.site-footer__tag {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.site-footer__heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

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

.site-footer__col li { margin-bottom: 0.45rem; }

.site-footer__newsletter {
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 2rem;
}

.newsletter-form {
  grid-template-columns: 1fr auto;
  align-items: start;
  max-width: 520px;
}

.newsletter-form .form-status {
  grid-column: 1 / -1;
}

.site-footer__copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

@media (max-width: 900px) {
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
  .newsletter-form { grid-template-columns: 1fr; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
}

.cookie-banner__inner {
  max-width: 820px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(18, 28, 51, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.cookie-banner__text a { color: var(--sand); }

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1; }
}

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__visual img,
  .detail-hero__media img {
    transform: none !important;
  }
  html { scroll-behavior: auto; }
}
