/* Akın Metal — dependency-free visual system */
:root {
  --ink: #0b1d27;
  --steel: #315668;
  --accent: #f05a3c;
  --paper: #f3f0e8;
  --muted: #c0cacf;
  --white: #ffffff;
  --line: rgba(49, 86, 104, 0.22);
  --shell: min(1280px, calc(100% - 64px));
  --header-height: 82px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .46;
  background-image:
    linear-gradient(rgba(49,86,104,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49,86,104,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
::selection { color: var(--paper); background: var(--accent); }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(84px, 10vw, 150px); }
.scroll-locked { overflow: hidden; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 26px;
  color: var(--steel);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.eyebrow > span { width: 38px; height: 2px; background: var(--accent); }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .97;
}
h1 { max-width: 780px; font-size: clamp(3.4rem, 6.2vw, 6.8rem); }
h2 { font-size: clamp(3rem, 5.1vw, 5.7rem); }
h3 { line-height: 1.12; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 2px solid transparent;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: color .25s, background-color .25s, border-color .25s, transform .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--accent); }
.button-primary:hover { color: var(--paper); background: var(--ink); }
.button-quiet { border-color: var(--steel); }
.button-quiet:hover { color: var(--paper); background: var(--steel); }
.button-small { min-height: 44px; padding: 10px 19px; color: var(--white); background: var(--ink); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(243,240,232,.93);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; min-height: 44px; }
.brand img { width: 210px; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 42px); margin-left: auto; }
.site-nav a, .footer-nav a, .footer-instagram {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: .83rem;
  font-weight: 700;
}
.site-nav a::after, .footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.site-nav a:hover::after, .footer-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.hero-showcase {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  isolation: isolate;
}
.hero-media, .hero-slide, .hero-slide img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide { margin: 0; opacity: 0; transform: scale(1.035); transition: opacity .9s var(--ease), transform 6s linear; }
.hero-slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-slide img { object-fit: cover; }
.hero-slide:nth-child(1) img { object-position: center 57%; }
.hero-slide:nth-child(2) img { object-position: center 52%; }
.hero-slide:nth-child(3) img { object-position: center 48%; }
.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7,20,27,.94) 0%, rgba(7,20,27,.72) 42%, rgba(7,20,27,.18) 75%, rgba(7,20,27,.32) 100%),
    linear-gradient(0deg, rgba(7,20,27,.64) 0%, transparent 42%);
}
.hero-content { position: relative; z-index: 3; display: flex; min-height: inherit; align-items: center; padding-block: clamp(90px, 11vh, 150px) clamp(130px, 15vh, 180px); }
.hero-copy { max-width: 830px; }
.hero-showcase .eyebrow { color: #cbd4d8; }
.hero-showcase h1 { max-width: 800px; color: #fff; font-size: clamp(4.5rem, 7.4vw, 8rem); line-height: .9; letter-spacing: -.055em; }
.hero-lead { max-width: 680px; margin: 32px 0 0; color: #d2dade; font-size: clamp(1.08rem, 1.45vw, 1.3rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-showcase .button-quiet { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(7,20,27,.16); backdrop-filter: blur(6px); }
.hero-showcase .button-quiet:hover { color: var(--ink); border-color: #fff; background: #fff; }
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  color: #fff;
  background: rgba(7,20,27,.18);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .2s, background .2s, border-color .2s;
}
.hero-arrow:hover { color: var(--ink); border-color: #fff; background: #fff; }
.hero-arrow span { font-size: 1.35rem; line-height: 1; }
.hero-arrow-prev { left: clamp(18px, 3vw, 54px); }
.hero-arrow-next { right: clamp(18px, 3vw, 54px); }
.hero-status { position: absolute; right: 0; bottom: clamp(30px, 4vw, 54px); left: 0; z-index: 4; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.hero-status p { display: flex; align-items: center; gap: 12px; margin: 0; font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.hero-status p i { width: 52px; height: 1px; background: rgba(255,255,255,.48); }
.hero-dots { display: flex; gap: 10px; pointer-events: auto; }
.hero-dots button { position: relative; width: 42px; height: 18px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.hero-dots button::before { position: absolute; right: 0; left: 0; top: 8px; height: 2px; content: ""; background: rgba(255,255,255,.35); transition: background .2s, transform .2s; }
.hero-dots button.is-active::before { background: var(--accent); transform: scaleY(2); }

.services { position: relative; border-block: 1px solid var(--line); background: rgba(255,255,255,.36); }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 66px; }
.section-heading .eyebrow { align-self: flex-start; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; grid-column: span 2; min-height: 330px; padding: clamp(28px, 3vw, 44px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; }
.service-number { display: block; margin-bottom: 58px; color: var(--steel); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.service-card h3 { max-width: 300px; margin: 0 0 18px; font-size: clamp(1.45rem, 2vw, 2rem); }
.service-card p { max-width: 390px; margin: 0; color: #42555e; }
.service-card-accent { color: var(--paper); background: var(--steel); }
.service-card-accent p { color: #c5ced2; }
.service-card-accent a { position: absolute; right: 36px; bottom: 32px; left: 36px; display: flex; min-height: 44px; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.24); font-size: .84rem; font-weight: 800; }

.projects { color: var(--paper); background: var(--ink); }
.projects .eyebrow { color: var(--muted); }
.projects-heading { display: grid; grid-template-columns: 1fr minmax(260px, 390px); align-items: end; gap: 50px; margin-bottom: 68px; }
.projects-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 1.05rem; }
.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; gap: 18px; }
.project-card {
  position: relative;
  grid-column: span 4;
  height: 390px;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  cursor: zoom-in;
  background: var(--steel);
  text-align: left;
}
.project-card.project-wide { grid-column: span 8; }
.project-card.project-tall { height: 570px; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s; }
.project-card:nth-child(1) img { object-position: center 54%; }
.project-card:nth-child(2) img { object-position: 54% center; }
.project-card:nth-child(3) img { object-position: center; }
.project-card:nth-child(4) img { object-position: center 40%; }
.project-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(11,29,39,.86), transparent 53%); }
.project-overlay { position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 2; display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.project-overlay strong { max-width: 82%; font-size: clamp(1.05rem, 1.7vw, 1.4rem); line-height: 1.25; }
.project-overlay > span { display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; border: 1px solid rgba(255,255,255,.5); }
.project-card:hover img { transform: scale(1.035); filter: contrast(1.04); }
.project-card:hover .project-overlay > span { color: var(--ink); background: var(--paper); }

.process-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 155px); }
.process-intro { position: sticky; top: calc(var(--header-height) + 50px); align-self: start; }
.process-intro > p:last-child { max-width: 440px; margin: 30px 0 0; color: #42555e; font-size: 1.04rem; }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; counter-reset: step; }
.process-list li { display: grid; grid-template-columns: 80px 1fr; gap: 26px; padding: 34px 0 38px; border-bottom: 1px solid var(--line); }
.step-number { padding-top: 8px; color: var(--steel); font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.process-list h3 { margin: 0 0 10px; font-size: clamp(1.6rem, 2.5vw, 2.35rem); }
.process-list p { max-width: 560px; margin: 0; color: #42555e; }

.contact { padding-top: 0; }
.contact-panel { position: relative; display: grid; grid-template-columns: 1fr .82fr; overflow: hidden; color: var(--paper); background: var(--steel); }
.contact-panel::before { position: absolute; top: -210px; left: -120px; width: 560px; height: 560px; content: ""; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.contact-copy { position: relative; z-index: 1; padding: clamp(48px, 6.5vw, 90px); }
.eyebrow-light { color: var(--muted); }
.contact-copy h2 { font-size: clamp(2.8rem, 5vw, 5.4rem); }
.contact-copy > p:last-child { max-width: 590px; margin: 32px 0 0; color: #c7d0d4; font-size: 1.05rem; }
.contact-actions { display: flex; flex-direction: column; border-left: 1px solid rgba(255,255,255,.17); }
.contact-action { display: flex; min-height: 142px; flex: 1; justify-content: space-between; align-items: center; gap: 20px; padding: 30px clamp(28px, 4vw, 54px); border-bottom: 1px solid rgba(255,255,255,.17); transition: color .25s, background-color .25s; }
.contact-action:last-child { border-bottom: 0; }
.contact-action small { display: block; margin-bottom: 5px; color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .18em; }
.contact-action strong { font-size: clamp(1.05rem, 1.8vw, 1.45rem); }
.contact-action b { display: grid; width: 46px; height: 46px; flex: 0 0 46px; place-items: center; border: 1px solid rgba(255,255,255,.35); font-size: 1.2rem; }
.contact-action:hover { color: var(--ink); background: var(--paper); }
.contact-action:hover small { color: var(--steel); }
.contact-primary { color: var(--ink); background: var(--accent); }
.contact-primary small { color: var(--ink); }
.contact-primary b { border-color: rgba(11,29,39,.5); }

.site-footer { padding: 50px 0 92px; color: var(--paper); background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; padding-bottom: 42px; }
.footer-brand { display: inline-flex; width: max-content; min-height: 44px; align-items: center; }
.footer-brand img { width: 176px; height: auto; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 30px; }
.footer-instagram { justify-self: end; }
.footer-nav a, .footer-instagram { font-size: .86rem; }
.footer-meta { display: flex; justify-content: space-between; gap: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); color: var(--muted); font-size: .82rem; }
.footer-meta p { margin: 0; }

.whatsapp-float { position: fixed; right: max(12px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); z-index: 80; display: flex; width: 56px; height: 56px; align-items: center; justify-content: center; padding: 0; color: #fff; background: #167c4b; border-radius: 50%; box-shadow: 0 8px 16px rgba(11,29,39,.24); font-weight: 800; transition: transform .25s var(--ease), background-color .25s; }
.whatsapp-float:hover { transform: translateY(-3px); background: #10663d; }
.whatsapp-float svg { width: 27px; height: 27px; fill: currentColor; }
.whatsapp-float span { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.lightbox { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; color: var(--paper); background: rgba(11,29,39,.98); }
.lightbox::backdrop { background: rgba(11,29,39,.88); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox-shell { position: relative; display: grid; width: min(1180px, calc(100% - 64px)); height: calc(100% - 64px); grid-template-rows: minmax(0, 1fr) auto; }
.lightbox figure { display: grid; min-height: 0; margin: 0; grid-template-rows: minmax(0, 1fr) auto; }
.lightbox figure img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.lightbox figcaption { padding: 18px 60px 12px 0; font-size: 1rem; font-weight: 800; }
.lightbox-close { position: absolute; top: 0; right: 0; z-index: 2; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.5); color: var(--paper); background: var(--ink); cursor: pointer; font-size: 2rem; line-height: 1; }
.lightbox-controls { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid rgba(255,255,255,.2); }
.lightbox-controls button { min-height: 52px; padding: 8px 0; border: 0; color: var(--paper); background: transparent; cursor: pointer; font-size: .83rem; font-weight: 800; }
.lightbox-controls button:first-child { justify-self: start; }
.lightbox-controls button:last-child { justify-self: end; }
.lightbox-controls > span { color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .08em; }

.reveal-ready [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }


@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 960px); }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: .75rem; }
  .hero-grid { grid-template-columns: 1fr .72fr; gap: 46px; }
  .hero-frame { min-height: 470px; }
  .service-card { grid-column: span 3; }
  .service-card:nth-child(5) { grid-column: span 6; }
  .project-card, .project-card.project-wide { grid-column: span 6; }
  .project-card { height: 420px; }
  .project-card.project-tall { height: 520px; }
  .contact-panel { grid-template-columns: 1fr 1fr; }
  .contact-copy { padding-inline: 52px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-nav { order: 3; grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 36px); --header-height: 70px; }
  .section { padding-block: 82px; }
  h1 { font-size: clamp(3rem, 12.5vw, 4.1rem); }
  h2 { font-size: clamp(2.7rem, 11vw, 3.8rem); }
  .site-header { backdrop-filter: blur(12px); }
  .brand img { width: 166px; }
  .header-inner { gap: 16px; }
  .menu-toggle { display: inline-flex; min-width: 80px; min-height: 44px; align-items: center; justify-content: flex-end; gap: 9px; margin-left: auto; padding: 6px 0; border: 0; background: transparent; cursor: pointer; font-size: .75rem; font-weight: 800; }
  .menu-icon { display: grid; width: 23px; gap: 5px; }
  .menu-icon i { width: 100%; height: 2px; background: currentColor; transition: transform .25s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; top: var(--header-height); right: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 16px 18px max(24px, env(safe-area-inset-bottom)); border-bottom: 1px solid var(--line); background: var(--paper); }
  .site-nav a { min-height: 58px; padding-inline: 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .site-nav a:last-child { border-bottom: 0; }
  .js .site-nav { visibility: hidden; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity .22s, transform .22s, visibility .22s; }
  .js .site-nav.is-open { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
  .header-call { display: none; }

  .hero-showcase { min-height: calc(100svh - var(--header-height)); }
  .hero-content { align-items: flex-end; padding-block: 110px 128px; }
  .hero-showcase h1 { max-width: 620px; font-size: clamp(3.7rem, 16vw, 5.4rem); }
  .hero-lead { max-width: 560px; margin-top: 24px; font-size: 1rem; line-height: 1.58; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 30px; }
  .hero-actions .button { width: 100%; }
  .hero-arrow { top: auto; bottom: 28px; width: 46px; height: 46px; transform: none; }
  .hero-arrow-prev { left: 18px; }
  .hero-arrow-next { right: 18px; }
  .hero-status { bottom: 42px; width: auto; margin-inline: 78px; }
  .hero-status p { display: none; }
  .hero-dots { width: 100%; justify-content: center; gap: 7px; }
  .hero-dots button { width: 28px; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,20,27,.95) 0%, rgba(7,20,27,.72) 54%, rgba(7,20,27,.2) 100%); }

  .section-heading { display: block; margin-bottom: 44px; }
  .service-grid { display: block; }
  .service-card { min-height: 0; padding: 30px 26px 34px; }
  .service-number { margin-bottom: 36px; }
  .service-card-accent { min-height: 300px; padding-bottom: 90px; }
  .service-card-accent a { right: 26px; bottom: 24px; left: 26px; }

  .projects-heading { display: block; margin-bottom: 46px; }
  .projects-heading > p { margin-top: 28px; }
  .project-grid { display: flex; flex-direction: column; gap: 14px; }
  .project-card, .project-card.project-wide, .project-card.project-tall { width: 100%; height: 420px; }
  .project-card:nth-child(odd) { height: 340px; }
  .project-overlay { right: 18px; bottom: 17px; left: 18px; }

  .process-layout { display: block; }
  .process-intro { position: static; }
  .process-list { margin-top: 52px; }
  .process-list li { grid-template-columns: 54px 1fr; gap: 15px; padding-block: 28px; }

  .contact { padding-top: 0; }
  .contact-panel { display: block; width: 100%; }
  .contact-copy { padding: 58px 28px; }
  .contact-actions { border-top: 1px solid rgba(255,255,255,.17); border-left: 0; }
  .contact-action { min-height: 118px; padding: 25px 28px; }

  .site-footer { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
  .footer-main { display: flex; align-items: flex-start; flex-direction: column; gap: 24px; }
  .footer-nav { justify-content: flex-start; gap: 6px 22px; }
  .footer-instagram { align-self: flex-start; }
  .footer-meta { align-items: flex-start; flex-direction: column; gap: 5px; }
  .whatsapp-float { top: auto; right: max(14px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); width: 44px; height: 44px; box-shadow: 0 8px 16px rgba(11,29,39,.24); }
  .lightbox-shell { width: calc(100% - 28px); height: calc(100% - 28px - env(safe-area-inset-bottom)); }
  .lightbox figcaption { padding-right: 52px; }
}

@media (max-width: 390px) {
  :root { --shell: calc(100% - 28px); }
  .brand img { width: 150px; }
  .menu-toggle { min-width: 72px; }
  h1 { font-size: clamp(2.8rem, 12.5vw, 3rem); }
  .project-card, .project-card.project-wide, .project-card.project-tall, .project-card:nth-child(odd) { height: 330px; }
  .contact-copy { padding-inline: 22px; }
  .contact-action { padding-inline: 22px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 44px; height: 44px; justify-content: center; padding: 0; border-radius: 50%; }
  .lightbox-controls button span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}
