/* ============================================================
   ACUE MARMONITE — design tokens
   Flooring · Countertops · Kitchen & Bath · Closets — DFW
   ============================================================ */

:root {
  /* Color — named for the quarry, not the template */
  --limestone: #E8E1D3;   /* primary light ground */
  --porcelain: #FBF9F5;   /* card / raised surface */
  --basalt:    #24211C;   /* primary dark ground / ink */
  --slate:     #55504A;   /* secondary text on light */
  --mist:      #C9C1B2;   /* hairline / seam on light */
  --verde:     #46573F;   /* deep marble-green accent */
  --verde-lt:  #5E7455;   /* verde, lifted for hover */
  --brass:     #B08D57;   /* metallic accent / CTA */
  --brass-lt:  #C9A876;   /* brass, lifted for hover */
  --terracotta: #C6857B; /* real brand color — from the current Acue Marmonite logo */

  /* Type */
  --font-display: "Zilla Slab", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.95rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1:  clamp(1.25rem, 1.15rem + 0.4vw, 1.5rem);
  --step-2:  clamp(1.6rem, 1.4rem + 0.8vw, 2.1rem);
  --step-3:  clamp(2.1rem, 1.7rem + 1.6vw, 3.2rem);
  --step-4:  clamp(2.7rem, 2.1rem + 2.6vw, 4.6rem);
  --step-5:  clamp(3.4rem, 2.4rem + 4vw, 6.4rem);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.75rem;
  --space-4: 2.75rem;
  --space-5: 4.5rem;
  --space-6: 7rem;

  --seam: 1px solid var(--mist);
  --seam-dark: 1px solid rgba(232, 225, 211, 0.16);
  --radius: 2px;
  --max: 1240px;
}

/* ---------- reset ---------- */
*, *::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; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: var(--limestone);
  color: var(--basalt);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
@media (max-width: 640px) {
  .container { padding: 0 var(--space-2); }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: var(--space-2);
}
.eyebrow::before {
  content: "";
  width: 1.6em;
  height: 1px;
  background: currentColor;
}

.section { padding: var(--space-6) 0; position: relative; }
@media (max-width: 780px) { .section { padding: var(--space-5) 0; } }
.section--dark { background: var(--basalt); color: var(--limestone); }
.section--dark .eyebrow { color: var(--brass-lt); }
.section--porcelain { background: var(--porcelain); }
.section--seam { border-top: var(--seam); }
.section--seam-dark { border-top: var(--seam-dark); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--mist); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--mist); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--mist); }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1100px) { .grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 780px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-4, .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .grid-5 { grid-template-columns: 1fr; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 0.95em 1.6em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}
.btn-primary { background: var(--brass); color: var(--basalt); }
.btn-primary:hover { background: var(--brass-lt); transform: translateY(-1px); }
.btn-ghost { border-color: currentColor; color: var(--limestone); }
.btn-ghost:hover { background: rgba(251, 249, 245, 0.08); }
.btn-ghost-dark { border-color: var(--basalt); color: var(--basalt); }
.btn-ghost-dark:hover { background: rgba(36, 33, 28, 0.06); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-2) 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.is-solid {
  background: rgba(36, 33, 28, 0.94);
  backdrop-filter: blur(6px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 rgba(232, 225, 211, 0.1);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); }
.nav-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  background: var(--limestone);
  padding: 0.45em 0.75em;
  line-height: 0;
}
.logo-img { display: block; height: 32px; width: auto; }
.logo-img--footer { height: 38px; }
.nav-links {
  display: flex;
  gap: clamp(1rem, 1.8vw, 2rem);
  align-items: center;
}
.nav-links a {
  color: var(--limestone);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { opacity: 1; color: var(--brass-lt); }
.nav-phone {
  font-family: var(--font-mono);
  color: var(--limestone);
  text-decoration: none;
  font-size: 0.78rem;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(232, 225, 211, 0.35);
  padding: 0.6em 1em;
  border-radius: var(--radius);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-phone:hover { border-color: var(--brass-lt); color: var(--brass-lt); }
.nav-toggle {
  display: none;
  position: relative;
  z-index: 210;
  background: none; border: none; color: var(--limestone);
  padding: 0.4em;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-scrim {
  display: none;
  position: fixed; inset: 0;
  background: rgba(36, 33, 28, 0.5);
  z-index: 190;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-scrim.is-open { display: block; opacity: 1; }
@media (max-width: 1080px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px); height: 100vh; z-index: 200;
    background: var(--basalt); flex-direction: column; align-items: flex-start; justify-content: center;
    gap: var(--space-3); padding: var(--space-4); transform: translateX(100%); transition: transform 0.35s ease; }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: var(--step-0); }
  .nav-phone { margin-top: var(--space-2); }
  .nav-toggle { display: block; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--basalt);
  color: var(--limestone);
  padding-top: calc(var(--space-6) + 3rem);
  padding-bottom: var(--space-6);
  overflow: hidden;
}
.hero-vein {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,18,15,0.96) 0%, rgba(20,18,15,0.9) 32%, rgba(20,18,15,0.65) 58%, rgba(20,18,15,0.35) 82%, rgba(20,18,15,0.35) 100%);
}
@media (max-width: 860px) {
  .hero-photo::after { background: linear-gradient(180deg, rgba(20,18,15,0.75) 0%, rgba(20,18,15,0.93) 55%, rgba(20,18,15,0.96) 100%); }
}
.hero-video { position: absolute; inset: 0; z-index: 0; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,18,15,0.93) 0%, rgba(20,18,15,0.85) 30%, rgba(20,18,15,0.6) 55%, rgba(20,18,15,0.4) 80%, rgba(20,18,15,0.4) 100%);
}
@media (max-width: 860px) {
  .hero-video::after { background: linear-gradient(180deg, rgba(20,18,15,0.7) 0%, rgba(20,18,15,0.9) 55%, rgba(20,18,15,0.95) 100%); }
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brass-lt);
  margin-bottom: var(--space-2);
}
.hero h1 {
  font-size: var(--step-5);
  max-width: 15ch;
  color: var(--limestone);
}
.hero h1 em { color: var(--brass-lt); font-style: normal; }
.hero-sub {
  font-size: var(--step-1);
  color: rgba(232, 225, 211, 0.78);
  max-width: 46ch;
  margin-bottom: var(--space-4);
}
.hero-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-bottom: var(--space-5); }
.hero-counties {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: rgba(232, 225, 211, 0.6);
  border-top: var(--seam-dark);
  padding-top: var(--space-2);
}
.hero-counties strong { color: var(--limestone); font-weight: 500; }

/* small page hero (service/about/contact) */
.hero--sub { padding-top: calc(var(--space-5) + 3rem); padding-bottom: var(--space-4); }
.hero--sub h1 { font-size: var(--step-4); max-width: 20ch; }

/* ---------- swatch / service cards ---------- */
.swatch {
  position: relative;
  background: var(--porcelain);
  padding: var(--space-4) var(--space-3);
  overflow: hidden;
  text-decoration: none;
  color: var(--basalt);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: color 0.3s ease;
}
.swatch-vein {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.swatch:hover .swatch-vein, .swatch:focus-visible .swatch-vein { opacity: 1; }
.swatch:hover, .swatch:focus-visible { color: var(--limestone); }
.swatch:hover::after, .swatch:focus-visible::after { opacity: 1; }
.swatch::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--basalt);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}
.swatch > * { position: relative; z-index: 1; }
.swatch-index { font-family: var(--font-mono); font-size: var(--step--1); color: var(--brass); margin-bottom: auto; }
.swatch h3 { font-size: var(--step-2); margin-top: var(--space-3); }
.swatch p { color: var(--slate); font-size: var(--step--1); margin-bottom: 0; }
.swatch:hover p, .swatch:focus-visible p { color: rgba(232, 225, 211, 0.75); }
.swatch-arrow { margin-top: var(--space-2); font-family: var(--font-mono); font-size: var(--step--1); }

/* ---------- homepage service photo cards ---------- */
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: var(--limestone);
  background: var(--basalt);
}
.service-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover img, .service-card:focus-visible img { transform: scale(1.06); }
.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-3);
}
.service-card .swatch-index { color: var(--brass-lt); margin-bottom: 0; }
.service-card h3 { color: var(--limestone); margin-top: 0.3em; }
.service-card p { color: rgba(232, 225, 211, 0.85); flex: 1; }
.service-card .swatch-arrow { color: var(--limestone); margin-top: var(--space-2); }

/* ---------- process ---------- */
.process-list { counter-reset: step; display: grid; gap: 0; border-top: var(--seam); }
.process-item {
  counter-increment: step;
  display: grid;
  grid-template-columns: 5rem 1fr 2fr;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: var(--seam);
  align-items: baseline;
}
.process-item::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  color: var(--brass);
  font-size: var(--step-1);
}
.process-item h3 { font-size: var(--step-1); margin: 0; }
.process-item p { margin: 0; color: var(--slate); }
@media (max-width: 700px) {
  .process-item { grid-template-columns: 3rem 1fr; }
  .process-item p { grid-column: 2; }
}

/* ---------- real work video ---------- */
.work-video {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 9/16;
  background: var(--basalt);
  overflow: hidden;
}
.work-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-video-caption { text-align: center; font-family: var(--font-mono); font-size: var(--step--1); color: var(--slate); margin-top: var(--space-2); }

/* ---------- proof / gallery placeholder ---------- */
.proof-slab {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(155deg, var(--limestone), var(--mist));
  display: flex;
  align-items: flex-end;
  padding: var(--space-2);
  overflow: hidden;
}
.proof-slab svg { position: absolute; inset: 0; opacity: 0.6; }
.proof-slab img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.proof-slab span {
  position: relative;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--slate);
  background: rgba(251, 249, 245, 0.85);
  padding: 0.4em 0.7em;
}

/* ---------- stat row ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: var(--seam-dark); }
.stat { padding: var(--space-3) var(--space-2) 0; border-right: var(--seam-dark); }
.stat:last-child { border-right: none; }
.stat b { display: block; font-family: var(--font-display); font-size: var(--step-3); color: var(--brass-lt); }
.stat span { font-family: var(--font-mono); font-size: var(--step--1); color: rgba(232,225,211,0.65); text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 700px) { .stat-row { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(2) { border-right: none; } .stat:nth-child(n+3) { border-top: var(--seam-dark); padding-top: var(--space-3); margin-top: var(--space-2); } }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--verde);
  color: var(--limestone);
  padding: var(--space-5) 0;
  text-align: center;
}
.cta-band h2 { font-size: var(--step-3); max-width: 22ch; margin: 0 auto var(--space-3); }
.cta-actions { display: flex; gap: var(--space-2); justify-content: center; flex-wrap: wrap; }
.cta-band .btn-ghost { border-color: rgba(232,225,211,0.5); }

/* ---------- footer ---------- */
.site-footer { background: var(--basalt); color: rgba(232, 225, 211, 0.7); padding: var(--space-5) 0 var(--space-3); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-4); border-bottom: var(--seam-dark); padding-bottom: var(--space-4); }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-mark { font-family: var(--font-display); font-size: var(--step-2); color: var(--limestone); margin-bottom: var(--space-2); }
.footer-col h4 { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: var(--step--1); color: var(--brass-lt); margin-bottom: var(--space-2); }
.footer-col a, .footer-col p { display: block; color: inherit; text-decoration: none; margin-bottom: 0.6em; font-size: var(--step--1); }
.footer-col a:hover { color: var(--brass-lt); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-1); padding-top: var(--space-3); font-family: var(--font-mono); font-size: 0.78rem; color: rgba(232,225,211,0.45); }

/* ---------- content page basics (about/contact/service) ---------- */
.prose { max-width: 62ch; }
.prose h2 { font-size: var(--step-2); margin-top: var(--space-4); }
.prose h3 { font-size: var(--step-1); margin-top: var(--space-3); }
.prose p { color: var(--slate); }
.prose li { color: var(--slate); margin-bottom: 0.6em; padding-left: 1.4em; position: relative; }
.prose li::before { content: "—"; position: absolute; left: 0; color: var(--brass); }
.prose ul { margin: 1em 0 1.5em; }

.post-meta {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--slate);
  display: flex;
  gap: 0.8em;
  align-items: center;
  flex-wrap: wrap;
}
.post-meta span:not(:last-child)::after { content: "·"; margin-left: 0.8em; color: var(--mist); }
.hero .post-meta { color: rgba(232, 225, 211, 0.65); }
.hero .post-meta span:not(:last-child)::after { color: rgba(232, 225, 211, 0.3); }

.callout {
  border-left: 3px solid var(--brass);
  padding: 0.2em 0 0.2em 1.4em;
  margin: var(--space-3) 0;
  font-size: var(--step-0);
  color: var(--basalt);
}
.callout strong { color: var(--basalt); }

.post-list { border-top: var(--seam); }
.post-item {
  display: block;
  padding: var(--space-3) 0;
  border-bottom: var(--seam);
  text-decoration: none;
  color: inherit;
}
.post-item .eyebrow { margin-bottom: 0.6em; }
.post-item h3 { font-size: var(--step-2); margin: 0 0 0.4em; transition: color 0.2s ease; }
.post-item:hover h3, .post-item:focus-visible h3 { color: var(--verde); }
.post-item p { color: var(--slate); max-width: 62ch; margin-bottom: 0.6em; }
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-5); align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: var(--space-4); } }

.spec-list { border-top: var(--seam); }
.spec-list li { display: flex; justify-content: space-between; gap: var(--space-2); padding: var(--space-2) 0; border-bottom: var(--seam); font-family: var(--font-mono); font-size: var(--step--1); }
.spec-list li span:first-child { color: var(--slate); }

.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 780px) { .location-grid { grid-template-columns: 1fr; } }
.location-card { background: var(--porcelain); display: flex; flex-direction: column; }
.location-card iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }
.location-card-body { padding: var(--space-3); display: flex; flex-direction: column; flex-grow: 1; }
.location-card h3 { font-size: var(--step-1); margin-bottom: 0.2em; }
.location-card .location-dba { font-family: var(--font-mono); font-size: var(--step--1); color: var(--terracotta); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.6em; }
.location-card address { font-style: normal; color: var(--slate); margin-bottom: 0.8em; line-height: 1.6; }
.location-card .location-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: auto; padding-top: var(--space-2); }

.reviews-badge { display: flex; align-items: baseline; gap: 0.5em; margin-bottom: var(--space-1); }
.reviews-badge .stars { color: var(--brass); letter-spacing: 0.1em; }
.reviews-badge b { font-family: var(--font-display); font-size: var(--step-2); }
.reviews-badge span { font-family: var(--font-mono); font-size: var(--step--1); color: var(--slate); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--mist); margin-top: var(--space-4); }
@media (max-width: 900px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .review-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--porcelain); padding: var(--space-3); display: flex; flex-direction: column; }
.review-card .stars { color: var(--brass); font-size: var(--step--1); margin-bottom: 0.6em; letter-spacing: 0.1em; }
.review-card p { color: var(--basalt); flex-grow: 1; margin-bottom: 0.8em; }
.review-card cite { font-style: normal; font-family: var(--font-mono); font-size: var(--step--1); color: var(--slate); }

.form-field { margin-bottom: var(--space-3); }
.form-field label { display: block; font-family: var(--font-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5em; color: var(--slate); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font: inherit; font-size: var(--step-0);
  background: var(--porcelain); border: var(--seam); border-radius: var(--radius);
  padding: 0.85em 1em; color: var(--basalt);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--brass); outline-offset: 1px; border-color: var(--brass); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
