:root {
  --bg: #f4ede4;
  --bg-soft: #fbf6ef;
  --surface: rgba(255, 250, 244, 0.94);
  --surface-strong: #fffdf8;
  --stroke: rgba(82, 60, 45, 0.12);
  --stroke-strong: rgba(82, 60, 45, 0.18);
  --text: #2d241d;
  --muted: #695d54;
  --accent: #cb7c4b;
  --accent-deep: #a55f37;
  --accent-soft: rgba(203, 124, 75, 0.14);
  --sage: #7e8f6d;
  --sage-soft: rgba(126, 143, 109, 0.14);
  --gold: #e1c189;
  --shadow: 0 28px 72px rgba(91, 68, 48, 0.12);
  --shadow-soft: 0 16px 38px rgba(91, 68, 48, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --shell: 1180px;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/onest-cyrillic.woff2") format("woff2"),
       url("assets/fonts/onest-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Pangram Compact";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/pangram-compact.woff") format("woff");
}

@font-face {
  font-family: "Pangram Semi";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/pangram-semibold.woff") format("woff");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 108px;
}

body {
  margin: 0;
  font-family: "Onest", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(203, 124, 75, 0.14), transparent 30%),
    radial-gradient(circle at 100% 10%, rgba(126, 143, 109, 0.14), transparent 24%),
    linear-gradient(180deg, #faf5ee 0%, #f4ede4 45%, #fbf7f1 100%);
}

body.subpage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

button,
input,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

.page-shell {
  width: min(calc(100% - 28px), var(--shell));
  margin: 0 auto;
}

.surface {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  padding-top: 16px;
}

.header-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 18px;
  box-shadow: 0 18px 28px rgba(203, 124, 75, 0.18);
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Pangram Semi", "Onest", sans-serif;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand-copy strong span {
  color: var(--accent-deep);
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
  font-weight: 700;
  text-align: center;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #e0a26f 100%);
  color: #fffdf8;
  box-shadow: 0 18px 34px rgba(203, 124, 75, 0.26);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border: 1px solid rgba(82, 60, 45, 0.08);
  box-shadow: var(--shadow-soft);
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
}

.button-small {
  min-height: 46px;
  padding: 10px 16px;
  font-size: 14px;
}

.button-block {
  width: 100%;
}

.section {
  padding: 68px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

.hero {
  padding-top: 28px;
}

.hero-grid,
.quiz-grid {
  display: grid;
  gap: 22px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: start;
}

.hero-copy,
.hero-visual,
.info-panel,
.quiz-copy,
.quiz-shell,
.feature-card,
.process-card,
.vacancy-card,
.faq-item,
.story-card,
.footer-card,
.thanks-card,
.policy-card {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-soft {
  background: rgba(126, 143, 109, 0.12);
  color: var(--sage);
}

.display-title,
.section-title,
.final-intro h3,
.quiz-question h3,
.thanks-card h1,
.policy-card h1 {
  margin: 0;
  font-family: "Pangram Compact", "Arial Narrow", "Onest", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.display-title {
  margin-top: 18px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  max-width: 11ch;
}

.display-title span {
  display: block;
  margin-top: 10px;
  color: var(--accent-deep);
}

.section-title,
.thanks-card h1,
.policy-card h1,
.quiz-question h3,
.final-intro h3 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-title-compact {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.hero-lead,
.section-copy,
.hero-note,
.feature-card p,
.metric-card span,
.check-list li,
.mini-card p,
.quiz-shell p,
.vacancy-card p,
.notice-card,
.process-card p,
.faq-answer,
.story-card p,
.footer-copy,
.footer-meta,
.form-note,
.field input,
.field textarea,
.policy-copy,
.policy-list li,
.thanks-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.metric-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Pangram Semi", "Onest", sans-serif;
  font-size: 28px;
  color: var(--accent-deep);
  letter-spacing: -0.04em;
}

.hero-side {
  display: grid;
  gap: 16px;
}

.hero-visual,
.panel-media,
.vacancy-photo {
  overflow: hidden;
  position: relative;
}

.hero-visual img {
  height: 390px;
  object-fit: cover;
  object-position: center top;
}

.hero-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.88);
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  box-shadow: 0 12px 30px rgba(41, 31, 24, 0.1);
}

.info-panel,
.quiz-copy,
.quiz-shell,
.feature-card,
.process-card,
.vacancy-card,
.story-card,
.policy-card {
  padding: 28px;
}

.panel-media {
  margin-top: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.panel-media img {
  height: 228px;
  object-fit: cover;
  object-position: center top;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.section-copy {
  margin: 0;
  max-width: 760px;
}

.feature-grid,
.legal-grid,
.process-grid,
.story-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid-wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-index,
.process-index,
.story-city,
.salary-pill,
.step-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 700;
}

.feature-index {
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  background: rgba(126, 143, 109, 0.16);
  color: var(--sage);
  font-size: 13px;
}

.feature-card strong,
.vacancy-card strong,
.process-card strong,
.story-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.42;
}

.feature-card p,
.vacancy-card p,
.process-card p,
.story-card p {
  margin: 10px 0 0;
  font-size: 15px;
}

.quiz-grid {
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  align-items: start;
}

.quiz-copy {
  position: sticky;
  top: 98px;
}

.mini-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.mini-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.mini-card strong {
  display: block;
  font-size: 16px;
}

.mini-card p {
  margin: 8px 0 0;
  font-size: 14px;
}

.quiz-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.step-badge {
  padding: 10px 14px;
  background: rgba(126, 143, 109, 0.12);
  color: var(--sage);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.progress-track {
  margin-top: 18px;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(82, 60, 45, 0.08);
}

.progress-fill {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--accent), var(--gold));
  transition: width 0.3s ease;
}

.quiz-stage {
  margin-top: 24px;
}

.quiz-question,
.quiz-finish {
  display: grid;
  gap: 18px;
}

.option-list {
  display: grid;
  gap: 12px;
}

.option-button {
  width: 100%;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.55;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.option-button:hover,
.option-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
  border-color: rgba(126, 143, 109, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(126, 143, 109, 0.08));
}

.lead-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.lead-form.is-hidden {
  display: none;
}

.final-intro {
  display: grid;
  gap: 10px;
}

.final-intro p {
  margin: 0;
}

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

.summary-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--stroke);
}

.summary-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-deep);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--stroke-strong);
  background: rgba(255, 255, 255, 0.92);
}

.field textarea {
  min-height: 140px;
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid rgba(126, 143, 109, 0.24);
  outline-offset: 2px;
}

.field-wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  font-size: 14px;
}

.form-note a {
  color: var(--accent-deep);
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vacancy-card {
  display: flex;
  flex-direction: column;
}

.vacancy-photo {
  margin: 0 0 18px;
  border-radius: 22px;
}

.vacancy-photo img {
  height: 230px;
  object-fit: cover;
}

.photo-driver img {
  object-position: center 42%;
}

.photo-cook img {
  object-position: center 22%;
}

.photo-nanny img {
  object-position: center 26%;
}

.photo-gardener img {
  object-position: center 30%;
}

.photo-housekeeper img {
  object-position: center 35%;
}

.photo-shift img {
  object-position: center;
}

.salary-pill {
  margin-top: 14px;
  padding: 9px 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 14px;
}

.section-cta {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.notice-card {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card {
  position: relative;
}

.process-index {
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  background: rgba(203, 124, 75, 0.16);
  color: var(--accent-deep);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 24px;
}

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

.faq-answer {
  padding: 0 24px 22px;
  font-size: 15px;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card {
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--sage));
}

.story-city {
  padding: 8px 12px;
  margin-bottom: 18px;
  background: rgba(126, 143, 109, 0.12);
  color: var(--sage);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.story-meta span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 13px;
}

.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  padding: 18px 0 60px;
}

.footer-card {
  display: grid;
  grid-template-columns: minmax(340px, 1.45fr) minmax(220px, 0.82fr) minmax(220px, 0.78fr);
  gap: 42px;
  align-items: start;
  padding: 30px 34px 32px;
}

.brand-footer .brand-mark {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
}

.footer-brand {
  padding-right: 12px;
}

.footer-copy {
  max-width: 500px;
  margin: 20px 0 0;
  font-size: 16px;
}

.footer-meta p,
.footer-links {
  margin: 0;
}

.footer-meta {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-meta p {
  line-height: 1.55;
}

.footer-meta p:first-child {
  margin-bottom: 4px;
}

.footer-links {
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: start;
  padding-top: 2px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

.subpage-main {
  flex: 1;
  padding: 42px 0 34px;
}

.thanks-card,
.policy-card {
  width: min(calc(100% - 28px), 960px);
  margin: 0 auto;
}

.thanks-card {
  padding: 34px;
  text-align: center;
}

.thanks-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(203, 124, 75, 0.18), rgba(126, 143, 109, 0.18));
  color: var(--accent-deep);
  font-family: "Pangram Semi", "Onest", sans-serif;
  font-size: 28px;
}

.thanks-card p {
  max-width: 650px;
  margin: 12px auto 0;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.policy-card {
  padding: 34px;
}

.policy-copy {
  margin-top: 14px;
}

.policy-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.policy-meta-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--stroke);
}

.policy-meta-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-sections {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.policy-section {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--stroke);
}

.policy-section h2 {
  margin: 0 0 12px;
  font-family: "Pangram Semi", "Onest", sans-serif;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.policy-section p {
  margin: 0;
}

.policy-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.policy-list li + li {
  margin-top: 8px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.media-frame {
  box-shadow: var(--shadow-soft);
}

.media-frame img {
  transition: transform 0.5s ease;
}

.media-frame:hover img {
  transform: scale(1.04) translateY(-2px);
}

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

[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 1140px) {
  .header-card,
  .footer-card {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .quiz-grid,
  .feature-grid-wide,
  .feature-grid,
  .process-grid,
  .story-grid,
  .legal-grid,
  .policy-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-grid,
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vacancy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 860px) {
  .section {
    padding: 52px 0;
  }

  .hero-grid,
  .quiz-grid,
  .feature-grid-wide,
  .feature-grid,
  .process-grid,
  .vacancy-grid,
  .story-grid,
  .legal-grid,
  .metrics-grid,
  .summary-grid,
  .form-row,
  .policy-meta {
    grid-template-columns: 1fr;
  }

  .quiz-copy {
    position: static;
  }

  .hero-copy,
  .info-panel,
  .quiz-copy,
  .quiz-shell,
  .feature-card,
  .process-card,
  .vacancy-card,
  .story-card,
  .thanks-card,
  .policy-card {
    padding: 24px;
  }
}

@media (max-width: 620px) {
  .page-shell,
  .thanks-card,
  .policy-card {
    width: min(calc(100% - 18px), var(--shell));
  }

  .site-header {
    top: 8px;
  }

  .header-card,
  .hero-copy,
  .hero-visual,
  .info-panel,
  .quiz-copy,
  .quiz-shell,
  .feature-card,
  .process-card,
  .vacancy-card,
  .faq-item,
  .story-card,
  .footer-card,
  .thanks-card,
  .policy-card {
    border-radius: 24px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .hero-actions,
  .page-actions,
  .thanks-actions {
    flex-direction: column;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .hero-visual img {
    height: 300px;
  }

  .panel-media img,
  .vacancy-photo img {
    height: 210px;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
