/* Americare Property Solution — site styles */
:root {
  --color-bg: #f6f4f0;
  --color-surface: #ffffff;
  --color-ink: #0c1829;
  --color-ink-muted: #3d4f66;
  --color-accent: #1e5a8a;
  --color-accent-hover: #164a72;
  --color-gold: #c9a227;
  --color-border: rgba(12, 24, 41, 0.08);
  --shadow-sm: 0 2px 8px rgba(12, 24, 41, 0.06);
  --shadow-md: 0 12px 40px rgba(12, 24, 41, 0.12);
  --shadow-lg: 0 24px 60px rgba(12, 24, 41, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --header-h: 100px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.55s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@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;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-ink-muted);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-accent-hover);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-ink);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  transition: background var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out), backdrop-filter var(--duration) var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(246, 244, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 4px 20px rgba(12, 24, 41, 0.22),
    0 0 0 1px rgba(12, 24, 41, 0.06);
}

.site-header.is-scrolled .brand-logo-wrap {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 2px 12px rgba(12, 24, 41, 0.08),
    0 0 0 1px rgba(12, 24, 41, 0.05);
}

.brand-logo {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(280px, 52vw);
  object-fit: contain;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--color-ink);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), padding 0.35s var(--ease-out);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-list a {
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.35rem;
  width: auto;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out);
  border-radius: 1px;
}

.site-header.is-scrolled .nav-list a:hover {
  color: var(--color-accent);
  background: rgba(30, 90, 138, 0.08);
}

.site-header.is-scrolled .nav-list a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  flex-shrink: 0;
}

/* Desktop: readable “glass” nav over dark hero */
@media (min-width: 901px) {
  .site-header:not(.is-scrolled) .site-nav {
    gap: 0.65rem;
    padding: 0.35rem 0.5rem 0.35rem 0.85rem;
    background: rgba(12, 24, 41, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  .site-header:not(.is-scrolled) .nav-list a {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  }

  .site-header:not(.is-scrolled) .nav-list a::after {
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    bottom: 0.4rem;
    height: 2px;
    opacity: 0.95;
  }

  .site-header:not(.is-scrolled) .nav-list a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .site-header:not(.is-scrolled) .nav-list a:hover::after,
  .site-header:not(.is-scrolled) .nav-list a:focus-visible::after {
    transform: scaleX(1);
  }

  .site-header:not(.is-scrolled) .nav-list a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.65);
    outline-offset: 2px;
  }

  .site-header.is-scrolled .site-nav {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    gap: 2rem;
  }

  .site-header.is-scrolled .nav-list {
    gap: 0.35rem;
  }
}

.nav-list a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    z-index: 102;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(12, 24, 41, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .site-header.is-scrolled .nav-toggle {
    border-color: rgba(12, 24, 41, 0.12);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
  }

  .site-header.is-scrolled .nav-toggle-bar {
    background: var(--color-ink);
  }

  .nav-toggle-bar {
    background: #fff;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(165deg, #f0f4f8 0%, #f6f4f0 45%, #eef4f9 100%);
    backdrop-filter: blur(16px);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .brand {
    position: relative;
    z-index: 102;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    width: min(360px, 100%);
  }

  .nav-list a {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-ink);
    padding: 0.85rem 1.15rem;
    border-radius: 14px;
    background: var(--color-surface);
    border: 1px solid rgba(12, 24, 41, 0.08);
    box-shadow: var(--shadow-sm);
    text-align: center;
  }

  .nav-list a::after {
    display: none;
  }

  .nav-list a:active {
    transform: scale(0.98);
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--color-accent);
    border-color: rgba(30, 90, 138, 0.25);
    box-shadow: var(--shadow-md);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #143d5c 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(30, 90, 138, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 90, 138, 0.45);
  color: #fff;
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--color-ink);
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  transform: translateY(-2px);
  color: var(--color-ink);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=85");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: hero-kenburns 22s ease-in-out infinite alternate;
}

@keyframes hero-kenburns {
  from {
    transform: scale(1.05) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1%, -1%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
    transform: scale(1.05);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 24, 41, 0.85) 0%, rgba(12, 24, 41, 0.45) 45%, rgba(30, 90, 138, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Animate-in (hero) */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
}

.animate-in.is-visible {
  animation: fade-up 0.9s var(--ease-out) forwards;
}

.animate-in[data-animate]:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-in[data-animate]:nth-child(2) {
  animation-delay: 0.22s;
}
.animate-in[data-animate]:nth-child(3) {
  animation-delay: 0.34s;
}
.animate-in[data-animate]:nth-child(4) {
  animation-delay: 0.46s;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.section-header {
  max-width: 560px;
  margin-bottom: 3rem;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.center .section-desc {
  margin-inline: auto;
}

.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-desc {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--color-ink-muted);
}

.section-desc.left {
  text-align: left;
}

/* Services */
.services {
  background: var(--color-bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 90, 138, 0.15);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(30, 90, 138, 0.12), rgba(30, 90, 138, 0.04));
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 0.5rem;
}

.service-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* Split about */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 0;
  background: var(--color-surface);
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split-media {
  min-height: 420px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}

.split-media:hover img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .split-media img {
    transition: none;
  }
}

.split-content {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 560px;
}

.prose {
  margin: 0 0 1rem;
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  font-weight: 500;
  color: var(--color-ink);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
}

/* Why */
.why {
  background: linear-gradient(180deg, #eef2f6 0%, var(--color-bg) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent), var(--color-gold));
  opacity: 0;
  transition: opacity 0.35s;
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-card:hover::before {
  opacity: 1;
}

.why-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(30, 90, 138, 0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 0.5rem;
}

.why-card p {
  margin: 0;
  font-size: 0.9375rem;
}

/* CTA banner */
.cta-banner {
  position: relative;
  padding: clamp(4rem, 12vw, 6rem) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80");
  background-size: cover;
  background-position: center;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 24, 41, 0.88) 0%, rgba(30, 90, 138, 0.75) 100%);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  color: #fff;
  margin: 0 0 0.75rem;
}

.cta-banner-text {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
}

/* Contact */
.contact {
  background: var(--color-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-copy .section-desc {
  margin-bottom: 1.5rem;
}

.contact-address {
  font-style: normal;
  margin: 0 0 1rem;
  color: var(--color-ink);
  line-height: 1.65;
}

.contact-phone {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-phone a {
  color: var(--color-ink);
  text-decoration: none;
}

.contact-phone a:hover {
  color: var(--color-accent);
}

.contact-email {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.contact-email a {
  color: var(--color-ink);
  text-decoration: none;
  word-break: break-all;
}

.contact-email a:hover {
  color: var(--color-accent);
}

.contact-web {
  margin: 0 0 1.5rem;
}

.contact-web a {
  word-break: break-all;
}

.contact-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.contact-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-card-caption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-bg);
}

.contact-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* Footer */
.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo-wrap {
  background: rgba(255, 255, 255, 0.96);
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.footer-logo {
  height: 48px;
  width: auto;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
}

.footer-meta {
  margin: 0;
  font-size: 0.8125rem;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-meta a:hover {
  color: #fff;
}

/* Scroll reveal */
.reveal,
.reveal-side {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-side[data-reveal="slide"] {
  transform: translateX(-24px);
}

.reveal.is-visible,
.reveal-side.is-visible {
  opacity: 1;
  transform: translate(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-side {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
