/*
 * MALER DANIEL VEZETEU — STILURI EDITABILE
 * Fișier CSS clasic, fără Tailwind, Next.js sau proces de compilare.
 */

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-latin.woff2") format("woff2");
}

:root {
  --font-geist: "Geist", "Helvetica Neue", Arial, sans-serif;
  --paper: #f4f0e8;
  --paper-light: #fbf9f4;
  --ink: #171817;
  --ink-soft: #5d5d56;
  --olive: #455447;
  --olive-deep: #344137;
  --ochre: #c8934a;
  --line: rgba(23, 24, 23, 0.15);
  --radius: 1.35rem;
  --shadow: 0 26px 80px rgba(52, 45, 31, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  scroll-behavior: smooth;
  background: var(--paper);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(255, 255, 255, 0.8),
      transparent 32rem
    ),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-geist), "Helvetica Neue", Arial, sans-serif;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  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='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

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

button,
input,
textarea,
select {
  margin: 0;
  color: inherit;
  font: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: rgba(200, 147, 74, 0.24);
}

:where(a, button, summary, input, textarea, select):focus-visible {
  outline: 3px solid #925c18;
  outline-offset: 3px;
}

svg {
  display: block;
}

.site-header,
.hero,
.service-strip {
  width: min(100% - 2.5rem, 90rem);
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand,
.header-phone {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 0.8rem;
  font-size: 1.05rem;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(69, 84, 71, 0.35);
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.header-phone {
  gap: 0.65rem;
  border-bottom: 1px solid transparent;
  font-size: 1rem;
  font-weight: 560;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.header-phone:hover {
  border-color: currentColor;
  color: var(--olive);
}

.header-phone svg,
.button svg {
  width: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero {
  display: grid;
  min-height: calc(100svh - 13rem);
  grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.95fr);
  gap: clamp(2rem, 5vw, 6.5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 5.75rem);
}

.hero-copy {
  position: relative;
  isolation: isolate;
  padding-left: clamp(0rem, 4vw, 4rem);
}

.hero-copy::before {
  position: absolute;
  z-index: -1;
  top: 1.4rem;
  bottom: 2.8rem;
  left: 0;
  width: clamp(2rem, 4vw, 4rem);
  border-top: 1.5px solid var(--ochre);
  border-left: 1.5px solid var(--ochre);
  border-top-left-radius: 3.5rem;
  content: "";
  transform-origin: top left;
  animation: draw-line 900ms 240ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 2rem;
  color: #925c18;
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: rise 650ms 80ms both;
}

.eyebrow > span {
  display: block;
  width: 0.75rem;
  aspect-ratio: 1;
  border: 1.5px solid var(--ochre);
  border-radius: 50%;
  background: var(--paper);
}

.hero h1 {
  max-width: 47rem;
  margin: 0;
  font-size: clamp(3.2rem, 5.35vw, 6.15rem);
  font-weight: 650;
  letter-spacing: -0.066em;
  line-height: 0.96;
  text-wrap: balance;
  animation: rise 700ms 140ms both;
}

.hero-lead {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: #3d3e39;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.55;
  animation: rise 700ms 210ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
  animation: rise 700ms 280ms both;
}

.button {
  display: inline-flex;
  min-height: 3.7rem;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid var(--ink);
  border-radius: 0.85rem;
  font-size: 0.98rem;
  font-weight: 630;
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    background-color 190ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.header-phone:focus-visible,
.brand:focus-visible {
  outline: 3px solid #925c18;
  outline-offset: 4px;
  box-shadow: 0 0 0 2px var(--paper);
}

.button-primary {
  min-width: 13.5rem;
  border-color: var(--olive);
  background: var(--olive);
  box-shadow: 0 14px 36px rgba(69, 84, 71, 0.22);
  color: #fff;
}

.button-primary:hover {
  background: var(--olive-deep);
  box-shadow: 0 18px 44px rgba(69, 84, 71, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.24);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin: 1.8rem 0 0;
  color: #3f413c;
  font-size: 0.88rem;
  font-weight: 530;
  animation: rise 700ms 350ms both;
}

.trust-ring {
  width: 1.7rem;
  aspect-ratio: 1;
  border: 1.5px solid var(--ochre);
  border-right-color: transparent;
  border-radius: 50%;
}

.trust-line i {
  width: 0.22rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ochre);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: min(43rem, 70svh);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #d9cbb8;
  box-shadow: var(--shadow);
  animation: image-in 850ms 160ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual:hover img {
  transform: scale(1.025);
}

.image-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.12rem;
  min-width: 10.5rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.8rem;
  background: rgba(23, 24, 23, 0.58);
  color: #fff;
  text-align: left;
  backdrop-filter: blur(12px);
}

.image-caption span {
  font-size: 0.78rem;
  font-weight: 650;
}

.image-caption small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 2rem;
}

.service-strip article {
  display: grid;
  min-height: 6.3rem;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(251, 249, 244, 0.56);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.service-strip article:hover {
  border-color: rgba(69, 84, 71, 0.35);
  background: rgba(251, 249, 244, 0.9);
  transform: translateY(-3px);
}

.service-number {
  display: grid;
  width: 2.9rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.service-strip h2 {
  margin: 0;
  font-size: 1.03rem;
  font-weight: 610;
  letter-spacing: -0.02em;
}

.service-arrow svg {
  width: 1.2rem;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
}

.section-shell {
  width: min(100% - 2.5rem, 90rem);
  margin-inline: auto;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  display: grid;
  max-width: 58rem;
  gap: 1.1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading.compact {
  max-width: 47rem;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: #97621d;
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-kicker.light {
  color: #e6b56d;
}

.section-heading h2,
.local-copy h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.7vw, 5.15rem);
  font-weight: 620;
  letter-spacing: -0.058em;
  line-height: 1;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 48rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.65;
}

.services-section {
  padding-block: clamp(6.5rem, 10vw, 10rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: rgba(251, 249, 244, 0.76);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.service-card::after {
  position: absolute;
  right: -3.5rem;
  bottom: -4.5rem;
  width: 10rem;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 147, 74, 0.24);
  border-radius: 50%;
  content: "";
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(69, 84, 71, 0.34);
  box-shadow: 0 22px 54px rgba(53, 48, 38, 0.1);
  transform: translateY(-6px);
}

.service-card:hover::after {
  transform: scale(1.25);
}

.service-card.featured {
  grid-column: span 2;
  border-color: var(--olive);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(200, 147, 74, 0.24),
      transparent 15rem
    ),
    var(--olive);
  color: #fff;
}

.service-card.featured p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.75);
}

.service-card.featured .service-icon {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.service-card.featured::after {
  border-color: rgba(255, 255, 255, 0.2);
}

.service-icon {
  display: grid;
  width: 3.25rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(69, 84, 71, 0.2);
  border-radius: 50%;
  background: rgba(69, 84, 71, 0.08);
  color: var(--olive);
}

.service-icon svg {
  width: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.card-index {
  position: absolute;
  top: 1.8rem;
  right: 1.7rem;
  color: rgba(23, 24, 23, 0.36);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-card.featured .card-index {
  color: rgba(255, 255, 255, 0.44);
}

.service-card h3 {
  max-width: 17rem;
  margin: 3.3rem 0 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 630;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 25rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.quality-band {
  overflow: hidden;
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(200, 147, 74, 0.14),
      transparent 28rem
    ),
    var(--olive-deep);
  color: #fff;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 5rem);
}

.quality-grid article {
  position: relative;
  padding-left: 3rem;
}

.quality-grid article:not(:first-child)::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2.5rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  content: "";
}

.quality-grid article > span {
  position: absolute;
  top: 0.15rem;
  left: 0;
  color: #e6b56d;
  font-size: 0.74rem;
  font-weight: 700;
}

.quality-grid h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.quality-grid p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.93rem;
  line-height: 1.65;
}

.process-section {
  padding-block: clamp(7rem, 11vw, 11rem);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  min-height: 15rem;
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(23, 24, 23, 0.25);
}

.process-list li:not(:last-child) {
  margin-right: 1.4rem;
}

.process-list li::before {
  position: absolute;
  top: -0.31rem;
  left: 0;
  width: 0.62rem;
  aspect-ratio: 1;
  border: 1px solid var(--ochre);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.process-list li > span {
  color: #97621d;
  font-size: 0.75rem;
  font-weight: 730;
  letter-spacing: 0.12em;
}

.process-list li > div {
  margin-top: 4rem;
}

.process-list h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 630;
  letter-spacing: -0.03em;
}

.process-list p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.gallery-section {
  padding-bottom: clamp(7rem, 11vw, 11rem);
}

.gallery-heading {
  max-width: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
}

.gallery-heading > p:last-child {
  padding-bottom: 0.5rem;
  font-size: 0.95rem;
}

.gallery-slider {
  display: grid;
  gap: 0.9rem;
}

.gallery-slider-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1.25rem;
  background: radial-gradient(
    circle at 50% 40%,
    #333832 0,
    #20231f 60%,
    #171916 100%
  );
  box-shadow: 0 22px 70px rgba(37, 34, 28, 0.16);
  isolation: isolate;
}

.gallery-slider-open {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  place-items: center;
  background: transparent;
  color: #fff;
  cursor: zoom-in;
  touch-action: pan-y;
}

.gallery-slider-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  animation: gallery-image-in 420ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-slider-open:hover .gallery-slider-image {
  transform: scale(1.012);
}

.gallery-slider-open:focus-visible,
.gallery-slider-nav:focus-visible,
.gallery-thumbnail:focus-visible {
  outline: 3px solid #e6b56d;
  outline-offset: -5px;
}

.gallery-slider-zoom {
  position: absolute;
  z-index: 4;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.9rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(15, 17, 15, 0.58);
  backdrop-filter: blur(9px);
}

.gallery-slider-zoom svg,
.gallery-slider-nav svg {
  width: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.gallery-slider-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 3.15rem;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  place-items: center;
  background: rgba(16, 18, 16, 0.66);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
  backdrop-filter: blur(10px);
}

.gallery-slider-nav:hover {
  background: rgba(16, 18, 16, 0.9);
  transform: translateY(-50%) scale(1.06);
}

.gallery-slider-nav.previous {
  left: 1rem;
}

.gallery-slider-nav.next {
  right: 1rem;
}

.gallery-slider-caption {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.75fr);
  gap: 1.5rem;
  align-items: end;
  padding: 5rem 5.25rem 1.35rem;
  background: linear-gradient(to top, rgba(12, 14, 12, 0.9), transparent);
  color: #fff;
  pointer-events: none;
}

.gallery-slider-caption.is-title-only {
  grid-template-columns: minmax(0, 1fr);
}

.gallery-slider-caption > div {
  display: grid;
  gap: 0.25rem;
}

.gallery-slider-caption span {
  color: #e6b56d;
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.13em;
}

.gallery-slider-caption strong {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.gallery-slider-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: right;
}

.gallery-thumbnails {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.28rem 0.18rem 0.7rem;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(69, 84, 71, 0.42) transparent;
  scrollbar-width: thin;
}

.gallery-thumbnail {
  position: relative;
  flex: 0 0 6.6rem;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  background: #d8cbb9;
  cursor: pointer;
  opacity: 0.68;
  scroll-snap-align: center;
  transition:
    opacity 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.is-active {
  border-color: var(--ochre);
  opacity: 1;
}

.gallery-thumbnail.is-active {
  transform: translateY(-2px);
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbnail span {
  position: absolute;
  right: 0.35rem;
  bottom: 0.3rem;
  padding: 0.14rem 0.32rem;
  border-radius: 0.28rem;
  background: rgba(14, 16, 14, 0.72);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.06em;
}

.gallery-disclaimer {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.55;
}

.local-section {
  padding-block: clamp(6.5rem, 10vw, 10rem);
  background: var(--paper-light);
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(23rem, 0.75fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: center;
}

.local-copy h2 {
  margin-top: 1.3rem;
}

.local-copy > p:not(.section-kicker) {
  max-width: 46rem;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.28rem;
  font-size: 0.95rem;
  font-weight: 650;
  transition:
    color 180ms ease,
    gap 180ms ease;
}

.text-link:hover {
  gap: 1rem;
  color: var(--olive);
}

.text-link svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.local-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.local-card-top {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.brand-mark.large {
  width: 3.5rem;
}

.local-card-top > div {
  display: grid;
  gap: 0.2rem;
}

.local-card-top strong {
  font-size: 1.05rem;
}

.local-card-top > div span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.local-card address {
  display: grid;
  gap: 0.2rem;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--line);
  font-style: normal;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.65rem 0;
  color: #3e403b;
  font-size: 0.9rem;
  line-height: 1.55;
}

a.contact-row:hover {
  color: var(--olive);
}

.contact-row svg,
.hours-title svg {
  width: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--ochre);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hours {
  padding: 1.5rem;
}

.hours-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hours-title strong {
  font-size: 0.9rem;
}

.hours dl {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
}

.hours dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dd {
  color: var(--ink);
  font-weight: 620;
  text-align: right;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.55fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-block: clamp(7rem, 11vw, 11rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: #97621d;
  font-size: 0.7rem;
  font-weight: 730;
  letter-spacing: 0.1em;
}

.faq-list summary strong {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 610;
  letter-spacing: -0.02em;
}

.faq-list summary i {
  display: grid;
  width: 2.1rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.faq-list summary svg {
  width: 0.9rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.faq-list details[open] summary i {
  background: var(--olive);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  padding: 0 3.1rem 1.5rem 2.4rem;
}

.faq-answer p {
  max-width: 51rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.72;
}

.contact-section {
  padding-block: clamp(6rem, 9vw, 9rem);
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(200, 147, 74, 0.14),
      transparent 30rem
    ),
    var(--ink);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(28rem, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.contact-intro h2 {
  margin-top: 1.4rem;
  color: #fff;
}

.contact-intro > p:not(.section-kicker) {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1rem;
  line-height: 1.7;
}

.direct-contact {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
}

.direct-contact a {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  transition: color 180ms ease;
}

.direct-contact a:hover {
  color: #e6b56d;
}

.direct-contact svg,
.form-actions svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.direct-contact a > span {
  display: grid;
  gap: 0.1rem;
}

.direct-contact small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.69rem;
}

.direct-contact strong {
  font-size: 0.9rem;
  font-weight: 570;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2.3rem);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.75rem;
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 3.25rem;
  padding: 0.75rem 0.85rem;
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
  padding: 0.85rem;
  line-height: 1.5;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #e6b56d;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(230, 181, 109, 0.16);
}

.contact-form .consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.consent input {
  width: 1rem;
  min-height: 0;
  aspect-ratio: 1;
  margin-top: 0.15rem;
  accent-color: #e6b56d;
}

.contact-form .consent span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.form-actions .button {
  min-width: 12rem;
  cursor: pointer;
}

.whatsapp-button {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #fff;
}

.whatsapp-button:hover {
  border-color: #6dcc86;
  background: rgba(109, 204, 134, 0.1);
}

.form-note,
.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.69rem;
  line-height: 1.5;
}

.form-status:not(:empty) {
  color: #e6b56d;
}

.site-footer {
  padding-block: 4rem 5.5rem;
  background: #111210;
  color: #fff;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-brand {
  width: fit-content;
}

.footer-top > div:first-child > p {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-contact {
  display: grid;
  gap: 0.45rem;
  justify-items: end;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer-contact a:hover {
  color: #e6b56d;
}

.legal-details {
  display: flex;
  gap: 2rem;
  padding-block: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.legal-details details {
  width: 100%;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.legal-details summary {
  width: fit-content;
  padding: 0.35rem 0;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-weight: 600;
}

.legal-details details > div {
  max-width: 50rem;
  padding: 1.5rem 0 1rem;
}

.legal-details h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.25rem;
}

.legal-details h3 {
  margin: 1.2rem 0 0.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.legal-details p {
  margin: 0.65rem 0;
  line-height: 1.7;
}

.legal-details a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.3rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.mobile-contact-bar {
  display: none;
}

.scroll-top-button {
  position: fixed;
  z-index: 18;
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  display: grid;
  width: 3rem;
  aspect-ratio: 1;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(69, 84, 71, 0.92);
  box-shadow: 0 12px 30px rgba(23, 24, 23, 0.18);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.65rem) scale(0.94);
  visibility: hidden;
  transition:
    opacity 190ms ease,
    transform 190ms ease,
    visibility 0s linear 190ms,
    background-color 190ms ease;
  backdrop-filter: blur(12px);
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
  transition-delay: 0s;
}

.scroll-top-button:hover {
  background: var(--olive-deep);
  transform: translateY(-2px);
}

.scroll-top-button:active {
  transform: translateY(0) scale(0.96);
}

.scroll-top-button:focus-visible {
  outline-color: #e6b56d;
  box-shadow:
    0 0 0 2px var(--paper),
    0 12px 30px rgba(23, 24, 23, 0.18);
}

.scroll-top-button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 5.5rem 6rem 4.6rem;
  background: rgba(12, 13, 12, 0.96);
  color: #fff;
  animation: lightbox-in 220ms ease both;
  backdrop-filter: blur(18px);
  overscroll-behavior: contain;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-toolbar {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.lightbox-toolbar > div {
  display: grid;
  gap: 0.15rem;
  margin-right: auto;
}

.lightbox-toolbar strong {
  font-size: 0.9rem;
}

.lightbox-toolbar span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.lightbox-toolbar button,
.lightbox-nav {
  display: grid;
  width: 2.9rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(8px);
}

.lightbox-toolbar button:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.05);
}

.lightbox-toolbar button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
}

.lightbox-toolbar button:focus-visible,
.lightbox-nav:focus-visible {
  outline: 3px solid rgba(230, 181, 109, 0.62);
  outline-offset: 3px;
}

.lightbox-toolbar svg,
.lightbox-nav svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.lightbox-stage {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}

.lightbox-stage.is-zoomed {
  cursor: grab;
}

.lightbox-stage.is-panning {
  cursor: grabbing;
}

.lightbox-stage:focus-visible {
  outline: 3px solid #e6b56d;
  outline-offset: -5px;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.65rem;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.44);
  transition: transform 180ms ease;
  animation: lightbox-image-in 330ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox-stage.is-panning img {
  transition: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.lightbox-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-nav.previous {
  left: 1rem;
}

.lightbox-nav.next {
  right: 1rem;
}

.chevron-right {
  transform: rotate(180deg);
}

.lightbox-caption {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  max-width: 50rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  text-align: center;
  transform: translateX(-50%);
}

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

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

@keyframes gallery-image-in {
  from {
    opacity: 0.38;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-in {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0 round var(--radius));
    transform: translateY(0.8rem);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round var(--radius));
    transform: translateY(0);
  }
}

@keyframes draw-line {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 3.5rem 2rem;
  }

  .hero-copy {
    padding-left: 2.5rem;
  }

  .hero-visual {
    min-height: 36rem;
  }

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

  .quality-grid {
    gap: 2rem;
  }

  .quality-grid article:not(:first-child)::before {
    left: -1rem;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .process-list li:not(:last-child) {
    margin-right: 0;
  }

  .gallery-heading,
  .local-grid,
  .faq-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-heading {
    gap: 1.5rem;
  }

  .gallery-slider-stage {
    aspect-ratio: 4 / 3;
  }

  .local-grid,
  .contact-grid {
    gap: 3.5rem;
  }

  .local-card {
    width: min(100%, 36rem);
  }

  .faq-section {
    gap: 1rem;
  }

  .faq-section .section-heading {
    margin-bottom: 2rem;
  }

  .contact-intro {
    max-width: 47rem;
  }
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    overscroll-behavior-x: none;
  }

  .site-header,
  .hero,
  .service-strip,
  .section-shell {
    width: min(100% - 1.35rem, 90rem);
  }

  body {
    padding-bottom: calc(4rem + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 4.5rem;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 2rem;
    font-size: 0.62rem;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    display: grid;
    width: 2.7rem;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-copy {
    padding-left: 1.15rem;
  }

  .hero-copy::before {
    bottom: 1.4rem;
    width: 1.25rem;
  }

  .eyebrow {
    margin-bottom: 1.35rem;
    font-size: 0.72rem;
  }

  .hero h1 {
    max-width: 30rem;
    font-size: clamp(2.65rem, 13vw, 4.5rem);
    line-height: 0.97;
  }

  .hero-lead {
    margin-top: 1.35rem;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-line {
    gap: 0.55rem;
    font-size: 0.78rem;
  }

  .hero-visual {
    min-height: 32rem;
    border-radius: 1rem;
  }

  .image-caption {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .service-strip {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .service-strip article {
    min-height: 5.2rem;
  }

  .section-heading h2,
  .local-copy h2,
  .contact-intro h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.4rem);
    line-height: 1.02;
  }

  .services-section,
  .process-section,
  .faq-section {
    padding-block: 6.5rem;
  }

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

  .service-card,
  .service-card.featured {
    min-height: 17.5rem;
    grid-column: auto;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .quality-grid article:not(:first-child)::before {
    top: -1.2rem;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-list li {
    min-height: auto;
    padding-bottom: 2.6rem;
  }

  .process-list li > div {
    margin-top: 2.2rem;
  }

  .gallery-section {
    padding-bottom: 6.5rem;
  }

  .gallery-slider-stage {
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
  }

  .gallery-slider-nav {
    width: 2.75rem;
  }

  .gallery-slider-nav.previous {
    left: 0.65rem;
  }

  .gallery-slider-nav.next {
    right: 0.65rem;
  }

  .gallery-slider-zoom {
    top: 0.65rem;
    right: 0.65rem;
    width: 2.65rem;
  }

  .gallery-slider-caption {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 5rem 1rem 1rem;
  }

  .gallery-slider-caption p {
    max-width: 24rem;
    font-size: 0.74rem;
    text-align: left;
  }

  .gallery-thumbnail {
    flex-basis: 5.4rem;
    border-radius: 0.62rem;
  }

  .local-section {
    padding-block: 6.5rem;
  }

  .local-card {
    width: 100%;
    border-radius: 1rem;
  }

  .local-card-top,
  .local-card address,
  .hours {
    padding-inline: 1.1rem;
  }

  .hours dl > div {
    font-size: 0.76rem;
  }

  .faq-list summary {
    grid-template-columns: auto 1fr auto;
    gap: 0.65rem;
    padding-block: 1.25rem;
  }

  .faq-answer {
    padding-right: 0;
    padding-left: 1.8rem;
  }

  .contact-section {
    padding-block: 5.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    border-radius: 1rem;
    backdrop-filter: none;
  }

  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-actions .button {
    width: 100%;
  }

  .site-footer {
    padding-block: 3.5rem 2.5rem;
  }

  .footer-top {
    display: grid;
    align-items: start;
    gap: 2rem;
  }

  .footer-contact {
    justify-items: start;
  }

  .legal-details {
    display: grid;
    gap: 0.7rem;
  }

  .footer-bottom {
    display: grid;
    gap: 0.4rem;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 20;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0.55rem max(0.65rem, env(safe-area-inset-right))
      calc(0.55rem + env(safe-area-inset-bottom))
      max(0.65rem, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 18, 16, 0.94);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(18px);
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 2.9rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 0.65rem;
    color: #fff;
    font-size: 0.79rem;
    font-weight: 650;
  }

  .mobile-contact-bar a:last-child {
    background: #2f7e47;
  }

  .mobile-contact-bar svg {
    width: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .scroll-top-button {
    right: max(0.8rem, env(safe-area-inset-right));
    bottom: calc(4.8rem + env(safe-area-inset-bottom));
    width: 2.75rem;
  }

  .lightbox {
    padding: 4.7rem 0.7rem calc(4.2rem + env(safe-area-inset-bottom));
  }

  .lightbox-toolbar {
    top: max(0.65rem, env(safe-area-inset-top));
    right: 0.65rem;
    left: 0.65rem;
  }

  .lightbox-nav {
    top: auto;
    bottom: calc(0.85rem + env(safe-area-inset-bottom));
    transform: none;
  }

  .lightbox-nav:hover {
    transform: scale(1.05);
  }

  .lightbox-nav.previous {
    left: 0.75rem;
  }

  .lightbox-nav.next {
    right: 0.75rem;
  }

  .lightbox-caption {
    bottom: calc(1.35rem + env(safe-area-inset-bottom));
    width: calc(100% - 8rem);
    font-size: 0.68rem;
  }

  .lightbox-stage img {
    max-height: calc(100svh - 10rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }

  .has-js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
