:root {
  color-scheme: light;
  --paper: #f8f1e8;
  --paper-deep: #ebe0d2;
  --paper-warm: #f3e8dc;
  --surface: #fffaf6;
  --surface-strong: #fffdf9;
  --ink: #2c241f;
  --muted: #74675d;
  --muted-soft: #928277;
  --line: rgba(78, 58, 42, 0.14);
  --line-strong: rgba(78, 58, 42, 0.24);
  --brown: #7a5138;
  --brown-dark: #463024;
  --sage: #687664;
  --rose: #b48778;
  --shadow: 0 22px 48px rgba(61, 42, 28, 0.09);
  --shadow-soft: 0 14px 32px rgba(61, 42, 28, 0.065);
  --max-width: 1160px;
  --copy-width: 660px;
  --hero-copy-width: 610px;
  --heading-width: 720px;
  --header-height: 72px;
  --sans: "Pretendard Variable", Pretendard, SUIT, "Noto Sans KR", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, #fbf7f1 0%, var(--paper) 42%, var(--paper-warm) 100%);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 430;
  line-height: 1.72;
  letter-spacing: -0.018em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
  overflow-wrap: break-word;
}

body.nav-open {
  overflow: auto;
}

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

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

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

p,
li,
dd {
  line-height: 1.72;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--surface);
  background: var(--brown-dark);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 241, 232, 0.84);
  border-bottom: 1px solid rgba(78, 58, 42, 0.08);
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 245, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(54, 38, 27, 0.07);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(122, 81, 56, 0.32);
  border-radius: 8px;
  color: var(--brown-dark);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 10px 24px rgba(61, 42, 28, 0.06);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0.045em;
}

.brand small {
  max-width: 220px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.nav-toggle {
  display: none;
}

.site-nav {
  position: static;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 3px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.site-nav a {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 620;
  line-height: 1.25;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brown-dark);
  background: rgba(122, 81, 56, 0.08);
  outline: none;
}

.site-nav .nav-cta {
  display: inline-flex;
  min-height: 40px;
  padding: 10px 15px;
  color: var(--surface-strong);
  background: var(--brown-dark);
  box-shadow: 0 10px 22px rgba(70, 48, 36, 0.17);
  font-size: 0.84rem;
  font-weight: 720;
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 66px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.78), rgba(248, 241, 232, 0.34) 60%, rgba(248, 241, 232, 0));
  border-bottom: 1px solid rgba(78, 58, 42, 0.07);
}

.hero-grid {
  display: grid;
  grid-template-areas:
    "content"
    "visual"
    "proof";
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.hero-content {
  grid-area: content;
  max-width: 760px;
}

.hero-content::before {
  display: block;
  width: 46px;
  height: 1px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, rgba(122, 81, 56, 0.48), rgba(180, 135, 120, 0.24));
  content: "";
}

.hero-visual {
  grid-area: visual;
}

.proof-list {
  grid-area: proof;
}

.eyebrow,
.section-label,
.card-number,
.process-list span,
.portfolio-item span {
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.35;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.eyebrow,
.section-label {
  margin-bottom: 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-feature-settings: "kern";
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
}

.hero-title {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(32px, 7.2vw, 42px);
  font-weight: 670;
  line-height: 1.25;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

h2 {
  max-width: var(--heading-width);
  margin-bottom: 22px;
  font-size: clamp(1.72rem, 4.7vw, 2.32rem);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.024em;
  text-wrap: balance;
}

h2 span {
  display: block;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.08rem;
  font-weight: 710;
  line-height: 1.36;
  letter-spacing: -0.012em;
}

.hero-copy {
  max-width: var(--hero-copy-width);
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.section-lead,
.section-heading p:not(.section-label) {
  max-width: var(--copy-width);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.76;
}

.hero-actions {
  display: grid;
  width: 100%;
  max-width: 430px;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.button {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: var(--surface-strong);
  background: var(--brown-dark);
  box-shadow: 0 16px 30px rgba(70, 48, 36, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #39251b;
}

.button-secondary {
  color: var(--brown-dark);
  border-color: rgba(122, 81, 56, 0.24);
  background: rgba(255, 253, 249, 0.68);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(122, 81, 56, 0.44);
  background: var(--surface-strong);
}

.proof-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.proof-list div {
  padding: 18px 18px;
  border: 1px solid rgba(78, 58, 42, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.62);
  box-shadow: 0 10px 26px rgba(61, 42, 28, 0.04);
}

.proof-list dt {
  color: var(--brown-dark);
  font-weight: 720;
  line-height: 1.25;
}

.proof-list dd {
  max-width: 28rem;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.66;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(78, 58, 42, 0.11);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  filter: saturate(0.96) contrast(0.98);
  object-fit: cover;
}

.hero-visual figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  max-width: 430px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  color: var(--surface-strong);
  background: rgba(45, 36, 30, 0.6);
  backdrop-filter: blur(14px);
  font-size: 0.9rem;
  line-height: 1.64;
}

.hero-visual figcaption span {
  display: block;
  margin-bottom: 6px;
  font-weight: 740;
  line-height: 1.25;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: rgba(255, 250, 245, 0.76);
}

.section-muted {
  border-block: 1px solid rgba(78, 58, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(235, 224, 210, 0.78), rgba(241, 231, 220, 0.64)),
    var(--paper-deep);
}

.recommended-grid {
  display: grid;
  gap: 36px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading:not(.narrow) h2 {
  max-width: 620px;
}

.service-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.service-card,
.portfolio-item,
.process-list li {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.74);
}

.service-card p,
.process-list p,
.portfolio-item p,
.cta-box p {
  max-width: 36rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.74;
}

.service-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 220px;
  gap: 0;
  padding: 30px 28px 32px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(255, 250, 245, 0.76));
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brown), var(--rose), var(--sage));
  content: "";
  opacity: 0.7;
}

.service-card p {
  max-width: 31rem;
}

.card-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--rose);
}

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

.check-list li {
  position: relative;
  padding: 19px 21px 19px 50px;
  border: 1px solid rgba(100, 118, 100, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.62);
  color: var(--ink);
  line-height: 1.72;
  box-shadow: 0 8px 22px rgba(61, 42, 28, 0.04);
}

.check-list li::before {
  position: absolute;
  top: 24px;
  left: 22px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(104, 118, 100, 0.12);
  content: "";
}

.process-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  gap: 11px;
  min-height: 210px;
  padding: 27px 25px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 10px 26px rgba(61, 42, 28, 0.045);
}

.process-list span {
  color: var(--sage);
}

.portfolio-item {
  display: grid;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow-soft);
}

.portfolio-item img {
  aspect-ratio: 4 / 3;
  filter: saturate(0.96) contrast(0.98);
  object-fit: cover;
}

.portfolio-item div {
  padding: 28px 25px 30px;
}

.portfolio-item-text {
  background: rgba(255, 253, 249, 0.82);
}

.cta-section {
  padding: 74px 0;
  background: var(--paper);
}

.cta-box {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  padding: 38px 24px;
  border: 1px solid rgba(122, 81, 56, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(235, 224, 210, 0.82)),
    var(--surface);
  box-shadow: var(--shadow);
}

.cta-box::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brown), var(--rose), var(--sage));
  content: "";
  opacity: 0.72;
}

.cta-box h2 {
  max-width: 760px;
  margin-bottom: 24px;
}

.cta-box p,
.cta-copy {
  max-width: 620px;
  margin-bottom: 30px;
  line-height: 1.76;
}

.cta-box .button {
  margin-top: 0;
}

.site-footer {
  padding: 28px 0;
  color: var(--muted);
  background: var(--brown-dark);
}

.footer-inner {
  display: grid;
  gap: 8px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 245, 0.74);
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer strong {
  color: var(--surface-strong);
}

.thanks-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

@supports (height: 100dvh) {
  .thanks-page {
    min-height: 100dvh;
  }
}

.thanks-main {
  flex: 1;
  display: grid;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(247, 240, 232, 0.78)),
    var(--paper);
}

.thanks-section {
  display: grid;
  min-height: calc(100svh - 152px);
  align-items: center;
  padding: 56px 0;
}

@supports (height: 100dvh) {
  .thanks-section {
    min-height: calc(100dvh - 152px);
  }
}

.thanks-panel {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 24px;
  border: 1px solid rgba(122, 81, 56, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(235, 224, 210, 0.88));
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-panel .section-label {
  margin-bottom: 20px;
}

.status-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(104, 118, 100, 0.32);
  border-radius: 50%;
  color: var(--sage);
  background: rgba(255, 253, 249, 0.72);
  font-size: 0.8rem;
  font-weight: 740;
  line-height: 1;
}

.thanks-panel h1 {
  max-width: 520px;
  margin: 0 auto 22px;
  font-size: clamp(30px, 7vw, 42px);
  font-weight: 660;
  line-height: 1.26;
  letter-spacing: -0.03em;
}

.thanks-panel h1 span {
  display: block;
}

.thanks-copy {
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.76;
}

.thanks-meta {
  max-width: 520px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.thanks-header-link {
  width: auto;
  min-height: 40px;
  flex: 0 0 auto;
  padding: 10px 14px;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (min-width: 768px) {
  .container {
    width: min(100% - 64px, var(--max-width));
  }

  .site-nav a {
    display: inline-flex;
    padding: 9px 11px;
  }

  .site-nav .nav-cta {
    margin-left: 5px;
    padding-inline: 15px;
  }

  .hero {
    padding: 76px 0 82px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-title {
    max-width: 760px;
    margin-bottom: 26px;
    font-size: clamp(38px, 4.9vw, 50px);
    line-height: 1.21;
    letter-spacing: -0.03em;
  }

  .hero-copy,
  .section-lead,
  .section-heading p:not(.section-label) {
    font-size: 1.05rem;
  }

  .hero-copy {
    max-width: var(--hero-copy-width);
    margin-bottom: 32px;
  }

  .hero-actions {
    max-width: none;
    grid-template-columns: repeat(2, max-content);
    gap: 12px;
  }

  .button {
    width: auto;
  }

  .hero-visual {
    max-width: 720px;
    aspect-ratio: 16 / 10;
  }

  .proof-list,
  .service-grid,
  .portfolio-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .portfolio-item {
    grid-template-rows: auto 1fr;
  }

  .cta-box {
    padding: 48px;
  }

  .cta-box .button,
  .thanks-panel .button {
    min-width: 220px;
  }

  .thanks-panel {
    padding: 54px 46px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  body {
    font-size: 1.01rem;
  }

  .container {
    width: min(100% - 72px, var(--max-width));
  }

  .hero {
    min-height: min(760px, calc(100svh - var(--header-height)));
    padding: 86px 0 88px;
  }

  @supports (height: 100dvh) {
    .hero {
      min-height: min(760px, calc(100dvh - var(--header-height)));
    }
  }

  .hero-grid {
    grid-template-areas:
      "content visual"
      "proof visual";
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    column-gap: 56px;
    row-gap: 34px;
    align-items: center;
  }

  .hero-content {
    max-width: 760px;
    align-self: end;
  }

  .hero-title {
    max-width: 720px;
    font-size: clamp(42px, 3.55vw, 54px);
    line-height: 1.22;
    letter-spacing: -0.028em;
  }

  .hero-copy {
    max-width: 600px;
    margin-bottom: 34px;
  }

  .hero-visual {
    width: 100%;
    max-width: 430px;
    justify-self: end;
    align-self: center;
    aspect-ratio: 4 / 5;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .proof-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: start;
  }

  .section {
    padding: 92px 0;
  }

  .recommended-grid {
    grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1fr);
    align-items: start;
    gap: 58px;
  }

  .section-heading.narrow {
    max-width: 720px;
    margin-bottom: 48px;
  }

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

  .service-card {
    min-height: 255px;
  }

  .check-list {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .process-list li {
    min-height: 250px;
    align-content: start;
    padding: 28px 26px;
  }

  .cta-section {
    padding: 96px 0;
  }

  .cta-box {
    padding: 56px;
  }
}

@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 450px);
    column-gap: 66px;
  }

  .hero-visual {
    max-width: 450px;
  }

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

@media (max-width: 767px) {
  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero-visual {
    margin-top: 0;
  }

  .proof-list {
    margin-top: -2px;
  }

  .service-card,
  .process-list li,
  .portfolio-item div {
    padding-inline: 22px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 40px, var(--max-width));
  }

  .header-inner {
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.72rem;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    display: none;
  }

  .site-nav .nav-cta {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 44px 0 58px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-title {
    font-size: clamp(30px, 7.4vw, 35px);
    line-height: 1.26;
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 0.98rem;
    line-height: 1.74;
  }

  h2 {
    font-size: 1.66rem;
    line-height: 1.32;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading.narrow {
    margin-bottom: 34px;
  }

  .section-lead,
  .section-heading p:not(.section-label),
  .service-card p,
  .process-list p,
  .portfolio-item p,
  .cta-box p {
    font-size: 0.98rem;
    line-height: 1.74;
  }

  .service-card,
  .process-list li,
  .portfolio-item div {
    padding: 22px 20px;
  }

  .card-number {
    margin-bottom: 30px;
  }

  .hero-visual figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 14px;
    font-size: 0.84rem;
  }

  .cta-section {
    padding: 62px 0;
  }

  .cta-box {
    padding: 34px 20px;
  }

  .thanks-section {
    padding: 44px 0;
  }

  .thanks-panel {
    padding: 34px 20px;
  }

  .thanks-panel h1 {
    font-size: clamp(28px, 7.6vw, 34px);
    line-height: 1.28;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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