/* ===== Brand tokens (mocks/4_CORES) ===== */
:root {
  --cream: #f1e5d5;
  --cream-soft: #f7eee4;
  --brown: #754d3a;
  --mustard: #e3a724;
  --teal: #004951;
  --navy: #05316a;
  --ochre: #a8751d;
  --olive: #879b11;
  --terracotta: #bd514e;
  --charcoal: #283237;

  --ink: #283237;
  --ink-soft: rgba(40, 50, 55, 0.78);
  --ink-faint: rgba(40, 50, 55, 0.55);
  --white: #fffaf4;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --page: clamp(1.25rem, 4vw, 2.5rem);
  --max: 1120px;
  --header-h: 4.5rem;
  --radius: 4px;
  --radius-lg: 12px;

  --font-display: "Bree Serif", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 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(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--brown);
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.45rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

p:last-child {
  margin-bottom: 0;
}

em {
  font-style: italic;
  color: var(--brown);
}

strong {
  font-weight: 600;
  color: var(--charcoal);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 2000;
  background: var(--teal);
  color: var(--cream);
  padding: 0.6rem 1rem;
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2 * var(--page), var(--max));
  margin-inline: auto;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(241, 229, 213, 0.86);
  border-bottom: 1px solid rgba(117, 77, 58, 0.1);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(241, 229, 213, 0.95);
  box-shadow: 0 10px 28px rgba(40, 50, 55, 0.06);
}

.header-inner {
  width: min(100% - 2 * var(--page), var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 2.65rem;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--brown);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--mustard);
  color: var(--charcoal) !important;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: #ebc04a;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.55rem;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--brown);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.25s;
  cursor: pointer;
}

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

.btn:active {
  transform: translateY(0);
}

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

.btn-primary {
  background: var(--mustard);
  color: var(--charcoal);
  box-shadow: 0 10px 28px rgba(227, 167, 36, 0.28);
}

.btn-primary:hover {
  background: #ebc04a;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(117, 77, 58, 0.3);
  color: var(--brown);
}

.btn-ghost:hover {
  border-color: var(--brown);
  background: rgba(255, 250, 244, 0.55);
}

.btn-soft {
  background: rgba(241, 229, 213, 0.12);
  border-color: rgba(241, 229, 213, 0.35);
  color: var(--cream);
}

.btn-soft:hover {
  background: rgba(241, 229, 213, 0.22);
}

.btn-lg {
  padding: 1rem 1.65rem;
  font-size: 1.05rem;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: min(100svh, 900px);
  min-height: min(100vh, 900px);
  background:
    radial-gradient(ellipse 50% 45% at 90% 30%, rgba(227, 167, 36, 0.18), transparent 60%),
    linear-gradient(165deg, var(--cream-soft) 0%, var(--cream) 55%, #e8d7c2 100%);
}

.hero-stage {
  width: min(100% - 2 * var(--page), var(--max));
  margin: 0 auto;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: calc(var(--header-h) + 1.5rem) 0 clamp(3rem, 8vw, 5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 32rem;
  animation: hero-enter 1s var(--ease) both;
}

.hero-kicker {
  display: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin: 0 0 0.85rem;
}

.hero-brand {
  width: min(100%, 280px);
  height: auto;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 28rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.hero-art {
  position: relative;
  z-index: 1;
  animation: hero-enter 1.15s var(--ease) 0.12s both;
  /* Fade à esquerda: texto respira */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  aspect-ratio: 3 / 2;
}

.art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(40, 50, 55, 0.12);
}

.art-bird {
  grid-column: 1;
  grid-row: 1 / -1;
}

.art-heart {
  grid-column: 2;
  grid-row: 1;
}

.art-diva {
  grid-column: 2;
  grid-row: 2;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Sections ===== */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
}

.section-header {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-lead {
  font-size: 1.08rem;
}

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

.eyebrow.light {
  color: var(--mustard);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.about-visual {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
}

.portrait-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(40, 50, 55, 0.14);
  background: #e0d0bc;
}

.about-mark {
  position: absolute;
  width: 6.5rem;
  height: auto;
  right: -1rem;
  bottom: -1rem;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(40, 50, 55, 0.16);
}

.about-copy p {
  max-width: 36rem;
}

.crp-line {
  font-weight: 500;
  color: var(--brown) !important;
  margin-bottom: 1.25rem !important;
}

/* ===== Approach ===== */
.approach {
  background:
    linear-gradient(180deg, transparent, rgba(0, 73, 81, 0.06) 18%, rgba(0, 73, 81, 0.05) 82%, transparent);
}

.axis-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
}

.axis {
  padding-top: 1rem;
  border-top: 2px solid rgba(117, 77, 58, 0.18);
}

.axis:nth-child(3n + 1) {
  border-top-color: var(--terracotta);
}

.axis:nth-child(3n + 2) {
  border-top-color: var(--olive);
}

.axis:nth-child(3n) {
  border-top-color: var(--teal);
}

.axis p {
  font-size: 0.98rem;
}

/* ===== Audience ===== */
.audience-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.audience-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.audience-tags li {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(117, 77, 58, 0.14);
}

.audience-tags li::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.85rem;
  border-radius: 50%;
  background: var(--mustard);
  vertical-align: 0.15em;
}

/* ===== Process ===== */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.75rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(117, 77, 58, 0.14);
  align-items: start;
}

.step:last-child {
  border-bottom: 1px solid rgba(117, 77, 58, 0.14);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--terracotta);
  line-height: 1;
  min-width: 2.5rem;
}

.step p {
  max-width: 40rem;
}

/* ===== Values ===== */
.values {
  background:
    radial-gradient(ellipse 50% 60% at 90% 10%, rgba(227, 167, 36, 0.18), transparent 55%),
    linear-gradient(155deg, var(--teal) 0%, #003840 45%, var(--charcoal) 100%);
  color: var(--cream);
}

.values h2,
.values h3 {
  color: var(--cream);
}

.values .eyebrow {
  color: var(--mustard);
}

.values p {
  color: rgba(241, 229, 213, 0.82);
}

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

.value {
  padding-top: 1rem;
  border-top: 1.5px solid rgba(241, 229, 213, 0.28);
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.faq-item {
  border-bottom: 1px solid rgba(117, 77, 58, 0.14);
  padding: 0.15rem 0;
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown);
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 2rem 1.1rem 0;
  position: relative;
  transition: color 0.2s;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.35rem;
  color: var(--teal);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  color: var(--terracotta);
}

.faq-item p {
  padding: 0 0 1.15rem;
  max-width: 40rem;
  animation: faq-open 0.35s var(--ease);
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Contact ===== */
.contact {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.25rem);
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(189, 81, 78, 0.28), transparent 55%),
    linear-gradient(140deg, var(--brown) 0%, #5c3a2c 55%, var(--charcoal) 100%);
  border-radius: var(--radius-lg);
  color: var(--cream);
}

.contact-panel h2 {
  color: var(--cream);
}

.contact-panel p {
  color: rgba(241, 229, 213, 0.85);
}

.contact-meta {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: rgba(241, 229, 213, 0.78);
}

.contact-meta strong {
  color: var(--mustard);
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-actions .btn {
  width: 100%;
}

.socials {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.socials a {
  color: var(--mustard);
  text-decoration: none;
}

.socials a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
.site-footer {
  padding: 2.75rem 0 3rem;
  background: var(--charcoal);
  color: rgba(241, 229, 213, 0.72);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  width: 11rem;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-crp {
  margin: 0 !important;
  font-size: 0.95rem;
  color: rgba(241, 229, 213, 0.7) !important;
}

.footer-disclaimer,
.footer-copy {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(241, 229, 213, 0.5) !important;
  margin: 0 !important;
  max-width: 52rem;
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

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

.axis-list .reveal:nth-child(2) { transition-delay: 0.06s; }
.axis-list .reveal:nth-child(3) { transition-delay: 0.12s; }
.axis-list .reveal:nth-child(4) { transition-delay: 0.18s; }
.axis-list .reveal:nth-child(5) { transition-delay: 0.24s; }
.axis-list .reveal:nth-child(6) { transition-delay: 0.3s; }

.values-row .reveal:nth-child(2) { transition-delay: 0.08s; }
.values-row .reveal:nth-child(3) { transition-delay: 0.16s; }
.values-row .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.25rem;
    padding: calc(var(--header-h) + 1.15rem) 0 2.25rem;
    position: relative;
    overflow: hidden;
    align-items: start;
  }

  .hero-copy {
    max-width: none;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .hero-art {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 0;
    margin: 0;
    pointer-events: none;
    z-index: 0;
    display: block;
    animation: none;
    opacity: 1;
    /* Fade no topo: liga o mosaico ao texto sem roubar legibilidade */
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
  }

  .hero-mosaic {
    max-width: none;
    width: 100%;
    margin: 0;
    gap: 0.5rem;
    aspect-ratio: 3 / 2;
  }

  .art {
    box-shadow: none;
    border-radius: 6px;
  }

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

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

  .about-grid,
  .audience-grid,
  .faq-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .about-mark {
    right: 0.5rem;
    bottom: -0.75rem;
    width: 5.25rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 3.75rem;
    --page: 1.35rem;
  }

  body {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(1.9rem, 7.5vw, 2.4rem);
    line-height: 1.18;
  }

  h2 {
    font-size: clamp(1.55rem, 6.5vw, 1.95rem);
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
    padding: 0.5rem var(--page) 1.25rem;
    background: rgba(241, 229, 213, 0.98);
    border-bottom: 1px solid rgba(117, 77, 58, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(117, 77, 58, 0.08);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 0.85rem;
    justify-content: center;
    border-bottom: 0 !important;
    min-height: 2.75rem;
  }

  .axis-list,
  .values-row {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 2.15rem;
    width: auto;
    max-width: min(58vw, 11rem);
    object-fit: contain;
    object-position: left center;
  }

  .hero-brand {
    display: none;
  }

  .hero-kicker {
    display: block;
    margin-bottom: 0.55rem;
  }

  .hero-stage {
    padding: calc(var(--header-h) + 0.85rem) 0 1.75rem;
    min-height: 0;
    display: grid;
    gap: 1rem;
    align-items: start;
  }

  .hero-copy {
    max-width: none;
    width: 100%;
  }

  .hero-lead {
    font-size: 1.02rem;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    max-width: 20rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn-ghost {
    border: 0;
    background: transparent;
    min-height: auto;
    padding: 0.45rem 0;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    justify-content: flex-start;
  }

  .hero-actions .btn-ghost:hover {
    transform: none;
    background: transparent;
  }

  .hero-art {
    width: 100%;
    right: auto;
    top: auto;
    bottom: auto;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 100%);
  }

  .hero-mosaic {
    gap: 0.4rem;
  }

  .about-visual {
    max-width: 100%;
  }

  .about-mark {
    width: 4.25rem;
    right: 0.35rem;
    bottom: -0.5rem;
  }

  .portrait-photo {
    border-radius: 10px;
  }

  .audience-tags li {
    font-size: 1.1rem;
    padding: 0.85rem 0;
  }

  .step {
    grid-template-columns: auto 1fr;
    gap: 0.85rem 1rem;
    padding: 1.35rem 0;
  }

  .step-num {
    font-size: 1.35rem;
    min-width: 2rem;
  }

  .faq-item summary {
    font-size: 1.05rem;
    padding-right: 1.75rem;
  }

  .contact-panel {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .footer-logo {
    width: 9rem;
  }
}

@media (max-width: 420px) {
  .hero-stage {
    padding: calc(var(--header-h) + 0.7rem) 0 1.5rem;
    gap: 0.85rem;
  }

  .hero-mosaic {
    gap: 0.3rem;
  }

  .about-mark {
    display: none;
  }
}

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

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

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