@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #19231f;
  --ink-2: #24342e;
  --forest: #263a32;
  --forest-deep: #14231e;
  --ivory: #f8f3e8;
  --paper: #fffaf1;
  --sand: #e8deca;
  --bronze: #a87f43;
  --bronze-light: #cfb078;
  --muted: #5f6862;
  --line: rgba(25, 35, 31, 0.16);
  --white-line: rgba(255, 250, 241, 0.18);
  --shadow: 0 28px 70px rgba(20, 35, 30, 0.13);
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --wrap: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
section[id] { scroll-margin-top: 104px; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 9999; padding: 10px 16px; background: var(--paper); color: var(--ink); }
.skip-link:focus { top: 16px; }

.callbar {
  padding: 9px 16px;
  background: var(--bronze);
  color: #111c18;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  letter-spacing: .02em;
}
.callbar a { text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 243, 232, .94);
  backdrop-filter: blur(16px);
}
.header-inner { width: var(--wrap); min-height: 68px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { text-decoration: none; font-family: var(--heading); font-size: 23px; font-weight: 700; line-height: .95; }
.brand small { display: block; margin-top: 7px; color: var(--bronze); font-family: var(--body); font-size: 8px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.desktop-nav { display: none; align-items: center; gap: 25px; }
.desktop-nav a { position: relative; color: #445049; font-size: 12px; font-weight: 700; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--bronze); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.header-cta { display: none; padding: 11px 18px; background: var(--ink); color: white; font-size: 12px; font-weight: 800; text-decoration: none; }
.menu-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; padding: 0; border: 1px solid var(--line); background: transparent; }
.menu-toggle span { width: 20px; height: 1px; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 990; display: grid; align-content: center; gap: 5px; padding: 110px 25px 40px; background: var(--forest-deep); color: var(--paper); transform: translateY(-110%); transition: transform .32s cubic-bezier(.2,.8,.2,1); }
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { padding: 13px 0; border-bottom: 1px solid var(--white-line); font-family: var(--heading); font-size: 27px; text-decoration: none; }
.mobile-menu .mobile-contact { margin-top: 18px; padding: 14px; border: 1px solid var(--bronze); color: var(--bronze-light); font-family: var(--body); font-size: 13px; font-weight: 800; text-align: center; }

.hero { position: relative; min-height: 690px; display: grid; align-items: end; overflow: hidden; background: var(--forest-deep); color: var(--paper); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,29,24,.97) 0%, rgba(16,29,24,.86) 48%, rgba(16,29,24,.28) 78%, rgba(16,29,24,.14) 100%); }
.hero-content { position: relative; z-index: 2; width: var(--wrap); margin-inline: auto; padding: 88px 0 62px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 17px; color: var(--bronze-light); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.hero h1 { max-width: 780px; margin: 0; font-family: var(--heading); font-size: clamp(43px, 8vw, 79px); font-weight: 600; line-height: .98; letter-spacing: -.035em; }
.hero-lead { max-width: 650px; margin: 23px 0 0; color: #e6e7df; font-size: clamp(16px,2vw,19px); line-height: 1.62; }
.hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: 10px; max-width: 440px; margin-top: 29px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 13px 19px; border: 1px solid transparent; background: var(--bronze); color: #101b17; font-size: 13px; font-weight: 800; text-align: center; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--bronze-light); }
.button.secondary { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.04); color: white; }
.button.secondary:hover { border-color: white; background: rgba(255,255,255,.1); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 11px 24px; margin-top: 28px; color: #d4d8d3; font-size: 12px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--bronze-light); }
.hero-caption { position: absolute; z-index: 3; right: 18px; bottom: 18px; margin: 0; color: rgba(255,255,255,.68); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.seo-copy { max-width: 900px; }
.seo-copy h3 { margin: 30px 0 10px; font-family: var(--heading); font-size: 29px; line-height: 1.08; }
.seo-copy p { margin: 0 0 17px; color: var(--muted); }
.seo-copy a { color: var(--ink); font-weight: 800; text-decoration-color: var(--bronze); text-underline-offset: 4px; }
.related-links { display: grid; gap: 10px; margin-top: 30px; }
.related-links a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 13px; font-weight: 800; text-decoration: none; }
.related-links a::after { content: "→"; color: var(--bronze); font-size: 19px; }

.trust-strip { background: var(--bronze); color: #111c18; }
.trust-grid { display: grid; }
.trust-item { padding: 22px 5px; border-bottom: 1px solid rgba(17,28,24,.2); }
.trust-item:last-child { border-bottom: 0; }
.trust-item strong { display: block; font-family: var(--heading); font-size: 24px; line-height: 1; }
.trust-item span { display: block; margin-top: 5px; font-size: 11px; font-weight: 700; }

.section { padding: 76px 0; }
.section.paper { background: var(--paper); }
.section.dark { background: var(--forest-deep); color: var(--paper); }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.kicker { margin: 0 0 12px; color: var(--bronze); font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.section h2 { margin: 0; font-family: var(--heading); font-size: clamp(34px,6vw,54px); font-weight: 600; line-height: 1.03; letter-spacing: -.025em; }
.section-intro { margin: 17px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.dark .section-intro { color: #cdd5d0; }

.video-section { position: relative; overflow: hidden; background: var(--forest-deep); color: var(--paper); }
.video-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 15%, rgba(207,176,120,.15), transparent 42%); pointer-events: none; }
.video-layout { position: relative; }
.video-section .section-head { max-width: 820px; }
.video-section .section-intro { color: #cdd5d0; }
.video-shell { position: relative; width: min(100%, 1040px); aspect-ratio: 16 / 9; margin-inline: auto; overflow: hidden; border: 1px solid rgba(207,176,120,.42); background: #09110e; box-shadow: 0 32px 80px rgba(0,0,0,.36); }
.video-shell::before { content: ""; position: absolute; z-index: 2; inset: 0; border: 8px solid rgba(255,250,241,.025); pointer-events: none; }
.video-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cta { max-width: 1040px; display: grid; gap: 18px; align-items: center; margin: 26px auto 0; padding-top: 24px; border-top: 1px solid var(--white-line); }
.video-cta p { margin: 0; color: #d9dedb; font-family: var(--heading); font-size: 24px; line-height: 1.2; }
.video-cta .button { width: 100%; }

.voc-grid { display: grid; gap: 10px; }
.voc-item { padding: 22px; border: 1px solid var(--line); background: rgba(255,255,255,.34); font-family: var(--heading); font-size: 23px; font-style: italic; line-height: 1.2; }
.service-grid { display: grid; gap: 14px; }
.service-card { position: relative; min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.service-card::before { content: attr(data-number); position: absolute; z-index: 3; right: 17px; top: -16px; color: rgba(168,127,67,.13); font-family: var(--heading); font-size: 100px; font-weight: 700; line-height: 1; }
.service-card .card-label { position: relative; color: var(--bronze); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.service-card h3 { position: relative; margin: 34px 0 12px; font-family: var(--heading); font-size: 31px; font-weight: 600; line-height: 1.02; }
.service-card p { position: relative; margin: 0; color: var(--muted); font-size: 14px; }
.service-card a { position: relative; display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; color: var(--ink); font-size: 12px; font-weight: 800; text-decoration: none; }
.service-card a::after { content: "→"; color: var(--bronze); font-size: 19px; transition: transform .2s ease; }
.service-card a:hover::after { transform: translateX(4px); }
.service-card.has-image { min-height: 0; justify-content: flex-start; padding: 0; }
.service-card.has-image::before { color: rgba(255,250,241,.78); text-shadow: 0 2px 20px rgba(12,23,19,.36); }
.service-card-media { position: relative; aspect-ratio: 1672 / 941; flex: 0 0 auto; overflow: hidden; background: var(--sand); }
.service-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(12,23,19,.05),rgba(12,23,19,.3)); pointer-events: none; }
.service-card-media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform .45s ease; }
.service-card:hover .service-card-media img { transform: scale(1.035); }
.service-card-body { flex: 1; padding: 25px 25px 0; }
.service-card.has-image h3 { margin-top: 28px; }
.service-card.has-image > a { margin: 22px 25px 25px; }

.feature-layout { display: grid; gap: 34px; align-items: center; }
.feature-image { position: relative; min-height: 390px; overflow: hidden; box-shadow: var(--shadow); }
.feature-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-image::after { content: ""; position: absolute; inset: auto 0 0; height: 36%; background: linear-gradient(transparent,rgba(12,23,19,.48)); }
.feature-copy h2 { margin-bottom: 18px; }
.feature-copy p { color: var(--muted); }
.feature-copy .signature { margin-top: 25px; color: var(--bronze); font-family: var(--heading); font-size: 25px; font-style: italic; }
.check-list { display: grid; gap: 11px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 26px; color: var(--muted); font-size: 14px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .65em; width: 9px; height: 9px; border: 1px solid var(--bronze); transform: rotate(45deg); }

.process-grid { display: grid; gap: 26px; }
.process-item { position: relative; padding-top: 18px; border-top: 1px solid var(--white-line); }
.process-item strong { color: var(--bronze-light); font-family: var(--heading); font-size: 39px; font-weight: 500; }
.process-item h3 { margin: 8px 0 9px; font-family: var(--heading); font-size: 26px; }
.process-item p { margin: 0; color: #cdd5d0; font-size: 14px; }
.urgency { padding: 30px 0; background: var(--ink-2); color: white; }
.urgency .wrap { display: grid; gap: 18px; align-items: center; }
.urgency p { margin: 0; font-family: var(--heading); font-size: 27px; line-height: 1.17; }

.audience-grid { display: grid; gap: 12px; }
.audience-item { padding: 22px; border-left: 2px solid var(--bronze); background: rgba(255,255,255,.48); }
.audience-item h3 { margin: 0 0 8px; font-family: var(--heading); font-size: 24px; }
.audience-item p { margin: 0; color: var(--muted); font-size: 14px; }

.testimonials-shell { position: relative; }
.testimonials-shell::before { content: "“"; position: absolute; right: 2vw; top: -58px; color: rgba(168,127,67,.1); font-family: var(--heading); font-size: clamp(180px,28vw,370px); line-height: 1; pointer-events: none; }
.testimonial-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 22px; color: var(--muted); font-size: 12px; font-weight: 700; }
.testimonial-summary .stars, .testimonial-stars { color: var(--bronze); letter-spacing: .13em; }
.video-testimonial { display: grid; gap: 0; margin: 0 0 28px; border: 1px solid var(--line); background: var(--ink); box-shadow: var(--shadow); }
.video-testimonial-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #101a16; }
.video-testimonial iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-testimonial figcaption { display: grid; gap: 3px; margin: 0; padding: 18px 22px 20px; color: white; }
.video-testimonial figcaption span { color: var(--bronze-light); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.video-testimonial figcaption strong { font-family: var(--heading); font-size: 23px; font-weight: 600; line-height: 1.15; }
.testimonial-grid { position: relative; display: grid; gap: 14px; }
.testimonial-card { display: flex; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-left: 3px solid var(--bronze); background: rgba(255,250,241,.78); box-shadow: 0 16px 42px rgba(20,35,30,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(168,127,67,.55); box-shadow: 0 22px 50px rgba(20,35,30,.11); }
.testimonial-card:nth-child(even) { background: rgba(255,255,255,.58); }
.testimonial-meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 11px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.testimonial-meta strong { font-family: var(--heading); font-size: 23px; line-height: 1; }
.testimonial-city { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.testimonial-stars { margin-left: auto; font-size: 12px; }
.testimonial-card blockquote { margin: 19px 0 0; color: #39443f; font-size: 13px; line-height: 1.78; }
.testimonial-card mark { padding: 1px 4px; background: rgba(207,176,120,.19); color: var(--ink); font-weight: 700; }
.testimonial-note { max-width: 820px; margin: 24px auto 0; color: var(--muted); font-size: 10px; line-height: 1.6; text-align: center; }

.faq-list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 45px 22px 0; list-style: none; font-family: var(--heading); font-size: 23px; font-weight: 600; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 18px; color: var(--bronze); font-family: var(--body); font-size: 25px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -5px 0 22px; color: var(--muted); }

.contact-layout { display: grid; gap: 28px; }
.contact-copy h2 { margin-bottom: 17px; }
.contact-copy p { color: #cdd5d0; }
.direct-contact { display: grid; gap: 10px; margin-top: 25px; }
.direct-contact a { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--white-line); color: white; font-size: 13px; font-weight: 700; text-decoration: none; }
.direct-contact span { color: var(--bronze-light); }
.analysis-form { padding: 25px; background: var(--paper); color: var(--ink); }
.analysis-form h3 { margin: 0 0 18px; font-family: var(--heading); font-size: 31px; }
.form-grid { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cfc6b4; border-radius: 0; outline: 0; background: white; color: var(--ink); padding: 12px 13px; font-size: 14px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--bronze); box-shadow: 0 0 0 3px rgba(168,127,67,.12); }
.field textarea { min-height: 115px; resize: vertical; }
.analysis-form .button { width: 100%; margin-top: 15px; border: 0; }
.privacy-note { margin: 12px 0 0; color: #6b726d; font-size: 10px; text-align: center; }
.form-status { min-height: 20px; margin: 10px 0 0; color: #3b5c4d; font-size: 11px; font-weight: 700; text-align: center; }

.site-footer { padding: 56px 0 105px; background: #0f1d18; color: #d4d9d4; }
.footer-grid { display: grid; gap: 34px; }
.footer-brand { color: white; font-family: var(--heading); font-size: 30px; }
.footer-col h3 { margin: 0 0 14px; color: var(--bronze-light); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.footer-col p, .footer-col a { color: #b8c1bb; font-size: 12px; }
.footer-links { display: grid; gap: 7px; }
.footer-links a { text-decoration: none; }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--white-line); color: #8f9a94; font-size: 10px; }
.footer-bottom p { margin: 5px 0; }

.sticky-actions { position: fixed; z-index: 1050; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; padding: 8px; background: rgba(15,29,24,.96); backdrop-filter: blur(12px); }
.sticky-actions a { min-height: 48px; display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; font-weight: 800; text-decoration: none; }
.sticky-actions a:last-child { background: #208c4f; }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 680px) {
  :root { --wrap: min(1180px, calc(100% - 72px)); }
  .hero { min-height: 720px; }
  .hero-content { padding: 115px 0 80px; }
  .hero-actions { flex-direction: row; max-width: none; }
  .button { min-width: 210px; }
  .trust-grid { grid-template-columns: repeat(3,1fr); }
  .trust-item { padding: 24px 24px 24px 0; border-right: 1px solid rgba(17,28,24,.2); border-bottom: 0; }
  .trust-item + .trust-item { padding-left: 24px; }
  .trust-item:last-child { border-right: 0; }
  .voc-grid, .service-grid, .audience-grid { grid-template-columns: repeat(3,1fr); }
  .service-grid.four { grid-template-columns: repeat(2,1fr); }
  .video-testimonial { grid-template-columns: minmax(0,1fr) 250px; align-items: stretch; }
  .video-testimonial figcaption { align-content: end; padding: 28px; }
  .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .urgency .wrap { grid-template-columns: 1fr auto; }
  .video-cta { grid-template-columns: 1fr auto; }
  .video-cta .button { width: auto; }
  .analysis-form { padding: 36px; }
  .form-grid.two { grid-template-columns: 1fr 1fr; }
  .field.full { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.25fr .75fr .9fr; }
}

@media (min-width: 980px) {
  .callbar { display: none; }
  .desktop-nav, .header-cta { display: flex; }
  .menu-toggle, .mobile-menu { display: none; }
  .header-inner { min-height: 82px; }
  .hero { min-height: calc(100vh - 82px); }
  .hero-content { padding: 130px 0 100px; }
  .hero-lead { max-width: 610px; }
  .portrait-hero { min-height: 720px; background: var(--ivory); color: var(--ink); }
  .portrait-hero .hero-media { left: 48%; }
  .portrait-hero .hero-media img { object-position: center 30%; }
  .portrait-hero .hero-media::after { background: linear-gradient(90deg, var(--ivory) 0%, rgba(248,243,232,.72) 11%, rgba(248,243,232,.08) 35%, rgba(248,243,232,0) 100%); }
  .portrait-hero .hero-content { padding-block: 110px; }
  .portrait-hero h1, .portrait-hero .hero-lead { max-width: 48%; color: var(--ink); }
  .portrait-hero .button.secondary { border-color: rgba(25,35,31,.4); color: var(--ink); }
  .portrait-hero .button.secondary:hover { border-color: var(--ink); background: rgba(25,35,31,.06); }
  .portrait-hero .hero-proof { max-width: 46%; color: #46534c; }
  .portrait-hero .hero-caption { color: rgba(255,255,255,.78); text-shadow: 0 1px 4px rgba(0,0,0,.4); }
  .related-links { grid-template-columns: repeat(2,1fr); column-gap: 35px; }
  .service-grid.four { grid-template-columns: repeat(4,1fr); }
  .service-grid.four .service-card { padding: 24px; }
  .service-grid.four .service-card.has-image { padding: 0; }
  .service-grid.four .service-card h3 { font-size: 27px; }
  .section { padding: 108px 0; }
  .feature-layout { grid-template-columns: .95fr 1.05fr; gap: 80px; }
  .feature-layout.reverse .feature-image { order: 2; }
  .feature-image { min-height: 540px; }
  .contact-layout { grid-template-columns: .84fr 1.16fr; gap: 80px; align-items: start; }
  .sticky-actions { left: auto; right: 22px; bottom: 22px; width: auto; display: flex; gap: 8px; padding: 0; background: transparent; backdrop-filter: none; }
  .sticky-actions a { min-width: 132px; padding: 0 17px; background: var(--ink); box-shadow: 0 10px 32px rgba(0,0,0,.2); }
  .site-footer { padding-bottom: 55px; }
}

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