:root {
  color-scheme: dark;
  --ink-950: #06161e;
  --ink-900: #071b24;
  --ink-850: #0a222b;
  --ink-800: #0d2a33;
  --ink-700: #173b43;
  --paper: #f5f2e9;
  --paper-muted: #b9c7c7;
  --gold: #e0b84f;
  --gold-soft: #f0d789;
  --sage: #cfe0d4;
  --blue: #d6e5ea;
  --pink: #edd5d5;
  --line: rgba(245, 242, 233, 0.13);
  --line-strong: rgba(224, 184, 79, 0.32);
  --shadow: 0 28px 80px rgba(2, 11, 15, 0.46);
  --display: "Outfit", "Segoe UI", Arial, sans-serif;
  --body: "Nunito Sans", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink-950);
  color: var(--paper);
  font-family: var(--body);
  line-height: 1.65;
}

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

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--ink-950);
  font-weight: 800;
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

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

/* Shape system: 18-24px for surfaces and full pills for actions. */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 22, 30, 0.84);
  backdrop-filter: blur(18px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: var(--paper-muted);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta) {
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--paper);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 23px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--gold);
  color: #122129;
  box-shadow: 0 14px 34px rgba(224, 184, 79, 0.18);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.nav-cta:active,
.button-primary:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 94px clamp(22px, 5vw, 82px) 34px;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../assets/doutrina-espirita/hero-composicao.png");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 18, 25, 0.98) 0%, rgba(4, 18, 25, 0.88) 36%, rgba(4, 18, 25, 0.28) 61%, rgba(4, 18, 25, 0.08) 100%);
}

.hero-copy {
  width: min(52vw, 720px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  max-width: 820px;
  font-size: clamp(3.2rem, 4.4vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span:last-child {
  color: var(--gold-soft);
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 31px;
  color: #d4dddd;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.6;
}

.availability-strip {
  padding: 22px clamp(22px, 5vw, 82px);
  border-top: 1px solid rgba(224, 184, 79, 0.3);
  border-bottom: 1px solid rgba(224, 184, 79, 0.3);
  background: #0c2630;
}

.availability-strip p {
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  margin: 0 auto;
  text-align: center;
}

.availability-strip strong {
  color: var(--gold-soft);
}

.availability-strip span {
  color: var(--paper-muted);
}

.section-pad {
  padding: clamp(82px, 10vw, 150px) clamp(22px, 6vw, 100px);
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.3vw, 5.7rem);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

h3 {
  font-family: var(--display);
}

.video-story {
  max-width: 1540px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(54px, 10vw, 160px);
  margin: 0 auto;
}

.video-copy > p:not(.eyebrow),
.section-lead,
.ready-copy > p:not(.eyebrow),
.formats-heading > p:last-child,
.occasions-heading > p,
.collection-heading > p:last-child,
.access-copy > p {
  max-width: 660px;
  color: var(--paper-muted);
  font-size: 1.08rem;
}

.video-copy > p:not(.eyebrow) {
  margin: 26px 0 34px;
}

.video-note {
  max-width: 590px;
  padding: 23px 25px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(13, 42, 51, 0.78);
}

.video-note strong,
.video-note span {
  display: block;
}

.video-note strong {
  margin-bottom: 5px;
  color: var(--paper);
}

.video-note span {
  color: var(--paper-muted);
}

.video-frame {
  position: relative;
  width: min(100%, 420px);
  justify-self: center;
  padding: 12px;
  border: 1px solid rgba(224, 184, 79, 0.42);
  border-radius: 28px;
  background: #0f3039;
  box-shadow: var(--shadow);
}

.video-frame::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 6px;
  top: 18px;
  left: 50%;
  z-index: 2;
  border-radius: 99px;
  background: rgba(245, 242, 233, 0.16);
  transform: translateX(-50%);
  pointer-events: none;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 478 / 850;
  border-radius: 19px;
  background: #061219;
  object-fit: cover;
}

.message-experience {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(56px, 10vw, 160px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-900);
}

.message-visual {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
}

.phone-halo {
  position: absolute;
  width: min(42vw, 570px);
  aspect-ratio: 1;
  border: 1px solid rgba(224, 184, 79, 0.26);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 69, 73, 0.8), rgba(7, 27, 36, 0) 67%);
}

.message-visual img {
  position: relative;
  z-index: 2;
  width: min(28vw, 365px);
  filter: drop-shadow(0 38px 45px rgba(0, 0, 0, 0.36));
}

.message-copy {
  max-width: 780px;
}

.message-copy .section-lead {
  margin: 24px 0 40px;
}

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

.experience-list article {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.experience-list article > span {
  padding-top: 5px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.experience-list h3 {
  margin: 0 0 4px;
  color: var(--paper);
  font-size: 1.46rem;
  line-height: 1.2;
}

.experience-list p {
  margin: 0;
  color: var(--paper-muted);
}

.fixed-message-note {
  margin: 28px 0 0;
  padding: 19px 22px;
  border-radius: 16px;
  background: var(--gold);
  color: #102029;
  font-weight: 800;
}

.journey {
  max-width: 1540px;
  margin: 0 auto;
}

.journey-heading {
  max-width: 840px;
}

.journey-heading > p {
  margin: 22px 0 0;
  color: var(--paper-muted);
  font-size: 1.08rem;
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
}

.journey-list li {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 54px;
  padding: 26px 28px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--ink-850);
}

.journey-list li:nth-child(2) {
  transform: translateY(26px);
}

.journey-list li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--display);
  font-weight: 800;
}

.journey-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.3vw, 2.2rem);
  line-height: 1.05;
}

.journey-list p {
  margin: 0;
  color: var(--paper-muted);
}

.formats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a2029;
}

.formats-heading,
.collection-heading {
  max-width: 900px;
  margin-bottom: 60px;
}

.formats-heading > p:last-child,
.collection-heading > p:last-child {
  margin: 20px 0 0;
}

.format-gallery {
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.format-gallery figure {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 8px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  padding: 18px;
}

.format-gallery img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  align-self: center;
  justify-self: center;
  object-fit: contain;
}

.format-gallery figcaption {
  color: #17312f;
  font-size: 0.9rem;
  font-weight: 800;
}

.format-main {
  background: var(--pink);
}

.format-main img {
  max-width: 92%;
  max-height: 82%;
}

.format-mugs {
  background: var(--sage);
}

.format-mugs-alt {
  background: var(--blue);
}

.format-mugs img,
.format-mugs-alt img {
  max-width: 96%;
  max-height: 82%;
}

.format-tile {
  background: #eadcae;
}

.format-tile img {
  max-width: 88%;
  max-height: 84%;
}

.ready-to-sell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(60px, 10vw, 160px);
  background: var(--ink-950);
}

.ready-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
}

.commercial-points {
  border-top: 1px solid var(--line);
}

.commercial-points article {
  padding: 24px 0 26px;
  border-bottom: 1px solid var(--line);
}

.commercial-points article > span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.commercial-points h3 {
  margin: 0 0 5px;
  color: var(--paper);
  font-size: 1.65rem;
  line-height: 1.15;
}

.commercial-points p {
  margin: 0;
  color: var(--paper-muted);
}

.occasions {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-900);
}

.occasions-heading {
  max-width: 860px;
}

.occasions-heading > p {
  margin: 22px 0 0;
}

.occasion-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: auto auto;
  gap: 18px;
  margin-top: 62px;
}

.occasion-grid article {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--ink-850);
}

.occasion-grid article:first-child {
  grid-row: 1 / -1;
  min-height: 498px;
  background:
    linear-gradient(180deg, rgba(7, 27, 36, 0.05) 30%, rgba(7, 27, 36, 0.92) 94%),
    url("../assets/doutrina-espirita/almofada-corpo-traje.png") center 19% / 67% auto no-repeat,
    #5e7070;
}

.occasion-grid h3 {
  margin: 0 0 8px;
  color: var(--paper);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.06;
}

.occasion-grid p {
  max-width: 520px;
  margin: 0;
  color: var(--paper-muted);
}

.occasion-grid .occasion-statement {
  grid-column: 1 / -1;
  min-height: 280px;
  justify-content: center;
  overflow: hidden;
  border-color: rgba(224, 184, 79, 0.45);
  background: var(--gold);
}

.occasion-statement strong {
  color: #10232b;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.76;
}

.collection {
  background: #0a2029;
}

.art-gallery {
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  margin: 0 auto;
}

.art-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  padding: 24px;
  color: #17312f;
  cursor: zoom-in;
  text-align: left;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease;
}

.art-card:first-child {
  grid-column: 1 / 7;
  aspect-ratio: 1.28;
}

.art-card:nth-child(2) {
  grid-column: 7 / -1;
  aspect-ratio: 1.28;
}

.art-card:nth-child(3) {
  grid-column: 1 / 8;
  aspect-ratio: 1.35;
}

.art-card:nth-child(4) {
  grid-column: 8 / -1;
  aspect-ratio: 1;
}

.art-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.art-card:active {
  transform: translateY(1px);
}

.art-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  align-self: center;
  justify-self: center;
  object-fit: contain;
  transition: transform 340ms cubic-bezier(0.16, 1, 0.3, 1);
}

.art-card:hover img {
  transform: scale(1.025);
}

.art-card span {
  padding-top: 7px;
  font-size: 0.9rem;
  font-weight: 800;
}

.art-card-green {
  background: var(--sage);
}

.art-card-blue {
  background: var(--blue);
}

.art-card-pink {
  background: var(--pink);
}

.art-card-gold {
  background: #eadcae;
}

.art-card:first-child img {
  max-width: 96%;
  max-height: 88%;
}

.art-card:nth-child(2) img {
  max-width: 96%;
  max-height: 88%;
}

.art-card:nth-child(3) img {
  max-width: 92%;
  max-height: 88%;
}

.art-card:nth-child(4) img {
  max-width: 90%;
  max-height: 90%;
}

.access {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 50px;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  background: #0d2a33;
}

.access::after {
  content: "";
  position: absolute;
  width: 48vw;
  aspect-ratio: 1;
  right: -16vw;
  top: -17vw;
  border: 1px solid rgba(224, 184, 79, 0.22);
  border-radius: 50%;
}

.access-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.access-copy > img {
  width: min(340px, 76%);
  height: auto;
  aspect-ratio: 1478 / 536;
  object-fit: contain;
  margin-bottom: 34px;
}

.access-copy > p {
  margin: 24px 0 0;
}

.access-copy .access-note {
  margin: 18px 0 28px;
  color: var(--gold-soft);
  font-size: 0.94rem;
  font-weight: 800;
}

.access-product {
  position: relative;
  z-index: 2;
  align-self: end;
}

.access-product img {
  width: min(54vw, 750px);
  margin: 0 auto -2%;
  filter: drop-shadow(0 38px 44px rgba(2, 10, 13, 0.42));
}

.site-footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px clamp(22px, 6vw, 100px);
  border-top: 1px solid var(--line);
  background: var(--ink-950);
}

.site-footer span {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.9rem;
}

.image-dialog {
  width: min(92vw, 1050px);
  max-height: 90dvh;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 56px 24px 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.image-dialog::backdrop {
  background: rgba(3, 14, 19, 0.84);
  backdrop-filter: blur(9px);
}

.image-dialog img {
  max-height: calc(90dvh - 90px);
  margin: 0 auto;
  object-fit: contain;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 1px solid rgba(19, 49, 47, 0.2);
  border-radius: 999px;
  padding: 8px 13px;
  background: #e8e2d6;
  color: #15302f;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1160px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a:nth-child(2),
  .site-nav a:nth-child(4) {
    display: none;
  }

  .hero-copy {
    width: min(58vw, 680px);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5.5vw, 5rem);
  }

  .message-experience,
  .ready-to-sell {
    gap: 60px;
  }
}

@media (max-width: 940px) {
  .hero::before {
    background: linear-gradient(90deg, rgba(4, 18, 25, 0.98) 0%, rgba(4, 18, 25, 0.84) 52%, rgba(4, 18, 25, 0.28) 100%);
  }

  .hero-copy {
    width: min(70vw, 660px);
  }

  .video-story,
  .message-experience,
  .ready-to-sell,
  .access {
    grid-template-columns: 1fr;
  }

  .video-story {
    gap: 56px;
  }

  .message-copy {
    order: 1;
  }

  .message-visual {
    min-height: 680px;
    order: 2;
  }

  .phone-halo {
    width: min(70vw, 560px);
  }

  .message-visual img {
    width: min(43vw, 360px);
  }

  .ready-to-sell {
    gap: 54px;
  }

  .access-product img {
    width: min(88vw, 740px);
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: 78px 18px;
  }

  .site-header {
    min-height: 64px;
    justify-content: center;
    padding: 8px 14px;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    min-height: 44px;
    padding: 10px 18px;
  }

  .hero {
    min-height: 100dvh;
    align-items: flex-start;
    padding: 108px 18px 34px;
  }

  .hero-background {
    background-position: 68% center;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(4, 18, 25, 0.98) 0%, rgba(4, 18, 25, 0.92) 43%, rgba(4, 18, 25, 0.45) 70%, rgba(4, 18, 25, 0.3) 100%);
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.35rem);
    line-height: 0.92;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-lead {
    margin: 22px 0 24px;
    font-size: 1rem;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .availability-strip {
    padding: 18px;
  }

  .availability-strip p {
    flex-direction: column;
    gap: 2px;
    font-size: 0.9rem;
  }

  h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .video-frame {
    width: min(92vw, 390px);
  }

  .video-note {
    padding: 20px;
  }

  .message-visual {
    min-height: 590px;
  }

  .phone-halo {
    width: 90vw;
  }

  .message-visual img {
    width: min(62vw, 330px);
  }

  .experience-list article {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .journey-list {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .journey-list li,
  .journey-list li:nth-child(2) {
    min-height: 0;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 23px;
    transform: none;
  }

  .art-gallery,
  .occasion-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

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

  .art-card,
  .art-card:first-child,
  .art-card:nth-child(2),
  .art-card:nth-child(3),
  .art-card:nth-child(4) {
    min-height: 0;
    grid-row: auto;
    grid-column: auto;
  }

  .art-card,
  .art-card:first-child,
  .art-card:nth-child(2),
  .art-card:nth-child(3) {
    aspect-ratio: 1.05;
  }

  .format-tile,
  .art-card:nth-child(4) {
    aspect-ratio: 1;
  }

  .format-gallery figure {
    min-height: 0;
    aspect-ratio: 1;
    padding: 14px;
  }

  .format-gallery figcaption {
    font-size: 0.78rem;
  }

  .occasion-grid article,
  .occasion-grid article:first-child,
  .occasion-grid .occasion-statement {
    grid-row: auto;
    grid-column: auto;
  }

  .occasion-grid article,
  .occasion-grid article:first-child,
  .occasion-grid .occasion-statement {
    min-height: 360px;
  }

  .occasion-grid article:first-child {
    min-height: 440px;
  }

  .occasion-grid .occasion-statement {
    min-height: 260px;
  }

  .occasion-statement strong {
    font-size: clamp(3.6rem, 20vw, 5.4rem);
  }

  .access {
    min-height: 0;
  }

  .access-copy > img {
    margin-bottom: 26px;
  }

  .site-footer {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 28px 18px;
  }
}

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

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

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