:root {
  --green: #033e20;
  --green-dark: #021c11;
  --gold: #d5a349;
  --gold-light: #f0d08a;
  --cement: #e7e4dc;
  --paper: #f8f6ef;
  --ink: #0c1110;
  --white: #ffffff;
  --header-height: 80px;
  --content-width: 1280px;
  --page-gutter: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 320ms ease;
}

body.no-scroll {
  overflow: hidden;
}

body.page-leaving {
  opacity: 0;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--green-dark);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), visibility 700ms;
}

.page-loader.hidden {
  visibility: hidden;
  opacity: 0;
}

.page-loader img {
  width: min(260px, 62vw);
  animation: loader-breathe 1.4s ease-in-out infinite;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: 0;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(213, 163, 73, 0.65);
}

.ambient-grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes loader-breathe {
  0%, 100% { opacity: 0.55; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

button {
  color: inherit;
  font: inherit;
}

.container {
  width: 100%;
  max-width: calc(var(--content-width) + (var(--page-gutter) * 2));
  margin: 0 auto;
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 28, 17, 0.88);
  backdrop-filter: blur(18px);
  transition: height 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(2, 28, 17, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand-logo {
  width: 178px;
  height: auto;
  flex: 0 0 auto;
  transition: width 300ms ease, transform 300ms ease;
}

.site-header.scrolled .brand-logo {
  width: 158px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 200ms ease;
}

.nav-cta:hover,
.button:hover {
  border-color: var(--gold);
  background: rgba(213, 163, 73, 0.14);
}

.button {
  position: relative;
  overflow: hidden;
}

.button::before,
.nav-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.22), transparent 80%);
  transform: translateX(-120%);
  transition: transform 600ms ease;
}

.button:hover::before,
.nav-cta:hover::before {
  transform: translateX(120%);
}

.whatsapp-icon {
  display: block;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  background: #ffffff;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.5 32 2 131.6 2 254c0 39.1 10.2 77.3 29.6 111L.1 480l117.7-30.9c32.4 17.7 68.9 27 106 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.8l-6.7-4-69.8 18.3 18.6-68-4.4-7c-18.5-29.4-28.2-63.4-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green-dark);
}

.button-gold:hover {
  background: var(--gold-light);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 22px;
}

.page-hero,
.home-hero {
  position: relative;
  display: flex;
  min-height: 72vh;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--green-dark);
  color: var(--white);
  isolation: isolate;
}

.home-hero {
  min-height: 100vh;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-settle 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-settle {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 17, 10, 0.94), rgba(2, 17, 10, 0.52) 52%, rgba(2, 17, 10, 0.2)),
    linear-gradient(0deg, rgba(2, 17, 10, 0.94), rgba(2, 17, 10, 0.04) 60%, rgba(2, 17, 10, 0.52));
}

.home-hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: 64px;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-copy-in 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy > :nth-child(1) { animation-delay: 220ms; }
.hero-copy > :nth-child(2) { animation-delay: 320ms; }
.hero-copy > :nth-child(3) { animation-delay: 440ms; }
.hero-copy > :nth-child(4) { animation-delay: 560ms; }

@keyframes hero-copy-in {
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.hero-title,
.section-title {
  margin: 18px 0 0;
  color: inherit;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.home-hero .hero-title {
  max-width: 760px;
  text-wrap: balance;
}

.hero-text,
.section-text {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue::after {
  width: 44px;
  height: 1px;
  content: "";
  background: var(--gold);
  animation: scroll-pulse 1.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleX(0.4); opacity: 0.35; }
  50% { transform: scaleX(1); opacity: 1; }
}

.section {
  position: relative;
  padding: 96px 0;
}

.section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(3, 62, 32, 0.12), transparent);
  transform: translateX(-50%);
}

.section-dark::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

.section-paper {
  background: var(--paper);
}

.section-cement {
  background: var(--cement);
}

.section-cement + .section-cement {
  background: var(--paper);
}

.section-dark {
  background: var(--green-dark);
  color: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading > div {
  max-width: 780px;
}

.section-title {
  max-width: 760px;
  color: var(--green-dark);
  font-size: clamp(38px, 4.4vw, 64px);
  text-wrap: balance;
}

.section-title em {
  color: var(--gold);
  font-style: normal;
}

.section-dark .section-title {
  color: var(--white);
}

.section-heading .section-text {
  max-width: 420px;
  margin: 0;
  color: rgba(12, 17, 16, 0.62);
}

.section-dark .section-text {
  color: rgba(255, 255, 255, 0.66);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(380px, 1.18fr);
  gap: clamp(56px, 8vw, 120px);
}

.editorial-copy {
  max-width: 680px;
  font-size: 20px;
  line-height: 1.75;
  color: rgba(12, 17, 16, 0.7);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.feature-item {
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.64);
  color: var(--green-dark);
  font-weight: 700;
  transition: border-color 240ms ease, background 240ms ease, transform 240ms ease;
}

.feature-item:hover {
  border-color: var(--green);
  background: var(--white);
  transform: translateX(5px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--green-dark);
  color: var(--white);
  transform: translateZ(0);
  transition: border-color 300ms ease, transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 600ms ease, opacity 300ms ease;
}

.service-card:hover img {
  transform: scale(1.045);
  opacity: 0.82;
}

.service-card:hover {
  border-color: rgba(213, 163, 73, 0.75);
  transform: translateY(-8px);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 28, 17, 0.98), rgba(2, 28, 17, 0.18) 75%);
}

.service-card-content {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  transform: translateY(10px);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card-content {
  transform: translateY(0);
}

.service-number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin: 12px 0;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 27px;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.service-card::after {
  position: absolute;
  right: 26px;
  bottom: 26px;
  color: var(--gold);
  content: "↗";
  font-size: 24px;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: 300ms ease;
}

.service-card:hover::after {
  opacity: 1;
  transform: translate(0);
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 0;
  background: var(--green-dark);
  cursor: zoom-in;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 350ms ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
  transition: transform 500ms ease, opacity 300ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  opacity: 0.82;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(2, 28, 17, 0.18);
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.tab-button {
  padding: 15px 20px;
  border: 1px solid rgba(3, 62, 32, 0.2);
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tab-button.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 110px 84px 36px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(22px);
}

.lightbox.open {
  display: flex;
  animation: lightbox-in 280ms ease both;
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-image {
  display: block;
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 150px);
  object-fit: contain;
  animation: image-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes image-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.art-statement {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--gold);
  color: var(--green-dark);
}

.art-statement::after {
  position: absolute;
  right: -80px;
  bottom: -190px;
  content: "RB";
  color: rgba(3, 62, 32, 0.08);
  font-size: 420px;
  font-weight: 900;
  line-height: 1;
}

.art-statement p {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0;
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.98;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.metric {
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--gold);
  font-size: clamp(30px, 4vw, 52px);
}

.metric span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(2, 28, 17, 0.7);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 24px;
}

.lightbox-arrow {
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translateY(-50%);
  font-size: 34px;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  padding: 8px 14px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(3, 62, 32, 0.16);
}

.faq-item {
  border-bottom: 1px solid rgba(3, 62, 32, 0.16);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 800;
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
  color: rgba(12, 17, 16, 0.7);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  padding: 28px;
  background: var(--white);
}

.contact-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card span {
  color: var(--green-dark);
  font-size: 19px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  background: var(--green);
  color: var(--white);
}

.cta-band::after {
  position: absolute;
  right: -20px;
  bottom: -90px;
  content: "RB";
  color: rgba(255, 255, 255, 0.055);
  font-size: 240px;
  font-weight: 900;
  line-height: 1;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

.site-footer {
  padding: 64px 0 28px;
  background: var(--green-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  width: 200px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.footer-column strong {
  color: var(--white);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.menu-open {
    height: auto;
    min-height: 100vh;
    background: var(--green-dark);
  }

  .site-header.menu-open .header-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 20px;
  }

  .site-header.menu-open .main-nav {
    display: grid;
    order: 3;
    width: 100%;
    gap: 22px;
    padding: 40px 0;
  }

  .site-header.menu-open .main-nav a {
    font-size: 22px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  :root {
    --page-gutter: 22px;
  }

  .brand-logo {
    width: 155px;
  }

  .hero-content {
    padding-bottom: 44px;
  }

  .section {
    padding: 72px 0;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .cta-inner {
    display: block;
  }

  .section-heading .section-text {
    margin-top: 20px;
  }

  .editorial-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 2;
  }

  .lightbox {
    padding: 100px 14px 58px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 10px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .art-statement {
    padding: 78px 0;
  }
}

@media (max-width: 520px) {
  :root {
    --page-gutter: 20px;
  }

  .gallery-grid {
    columns: 1;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

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

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