﻿:root {
  --ink: #202020;
  --muted: #5f675f;
  --line: rgba(46, 125, 50, .10);
  --paper: #FAFAF8;
  --soft: #F8F8F5;
  --card-border: rgba(46, 125, 50, .08);
  --card-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  --green: #2d7656;
  --green-2: #65a477;
  --orange: #ff750c;
  --orange-deep: #d95b00;
  --orange-2: #ffb36c;
  --pink: #cf5171;
  --gold: #f4b23e;
  --blue: #316e84;
  --white: #ffffff;
  --charcoal: #1f2022;
  --shadow: 0 22px 55px rgba(32, 32, 32, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }

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

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition:
    opacity 820ms cubic-bezier(.22, 1, .36, 1),
    transform 820ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal { transform: translate3d(0, 20px, 0); }
.reveal-left { transform: translate3d(-20px, 0, 0); }
.reveal-right { transform: translate3d(20px, 0, 0); }
.reveal-scale { transform: translate3d(0, 14px, 0) scale(.96); }

.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(45,118,86,.045), transparent 26rem),
    radial-gradient(circle at 8% 46%, rgba(255,117,12,.035), transparent 24rem),
    linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 42%, #F8F8F5 100%);
  line-height: 1.55;
}

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

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

p { margin: 0 0 1rem; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  z-index: 20;
}

.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 250, 248, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: background-color .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .98);
  border-color: rgba(46, 125, 50, .14);
  box-shadow: 0 10px 30px rgba(32,32,32,.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 92px;
  max-width: 205px;
  object-fit: contain;
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
  height: 86px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .95rem;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
  padding: 8px 0;
  transition: color .2s ease;
}

.nav a.button {
  color: #ffffff;
  padding: 12px 18px;
}

.nav a:hover,
.nav a:focus,
.nav a.is-active { color: var(--ink); }

.nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--green-2));
  transform: scaleX(0);
  transform-origin: left;
  opacity: .9;
  transition: transform .2s ease;
}

.nav a:not(.button):hover::after,
.nav a:not(.button):focus::after,
.nav a.is-active:not(.button)::after {
  transform: scaleX(1);
}

.nav a.button:hover,
.nav a.button:focus {
  color: #ffffff;
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f36f12 0%, var(--orange-deep) 100%);
  color: #fff7ef;
  font-weight: 800;
  cursor: pointer;
  text-shadow: 0 1px 1px rgba(82, 31, 0, .32);
  -webkit-font-smoothing: antialiased;
  box-shadow: inset 0 -1px 0 rgba(92, 34, 0, .18);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.button:hover,
.button:focus {
  background: linear-gradient(180deg, #e76408 0%, #bf4c00 100%);
  box-shadow: 0 12px 26px rgba(217,91,0,.18), inset 0 -1px 0 rgba(92, 34, 0, .18);
  transform: translateY(-2px);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid #d9d0c4;
}

.button.secondary:hover,
.button.secondary:focus {
  background: #fff4e8;
  box-shadow: 0 12px 26px rgba(32,32,32,.08);
}

.button.gold {
  background: var(--charcoal);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(255,246,235,.94) 52%, rgba(255,231,206,.86) 100%);
}

.hero-photo {
  min-height: calc(100svh - 92px);
  padding: 0;
  display: grid;
  align-items: stretch;
  background: var(--charcoal);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 13, 13, .86) 0%, rgba(12, 13, 13, .68) 38%, rgba(12, 13, 13, .22) 68%, rgba(12, 13, 13, .06) 100%),
    linear-gradient(0deg, rgba(12, 13, 13, .38), rgba(12, 13, 13, .08) 42%);
}

.hero-photo-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 92px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .34fr);
  gap: 34px;
  align-items: end;
  padding-top: 72px;
  padding-bottom: 54px;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.hero-copy .eyebrow {
  background: rgba(255, 117, 12, .16);
  border-color: rgba(255, 179, 108, .55);
  color: #ffd7b8;
}

.hero-copy h1 {
  max-width: 760px;
  text-wrap: balance;
  text-shadow: 0 3px 22px rgba(0,0,0,.35);
}

.hero-copy .hero-subtitle {
  max-width: 650px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

.button.secondary.light {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.52);
}

.button.secondary.light:hover,
.button.secondary.light:focus {
  background: rgba(255,255,255,.22);
}

.hero-proof {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.66);
  box-shadow: 0 24px 55px rgba(0,0,0,.28);
}

.hero-proof div {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  border-radius: var(--radius);
  background: #fff8f0;
  border: 1px solid #f1dfcf;
}

.hero-proof strong {
  color: var(--orange);
  font-size: 1.28rem;
  line-height: 1.05;
}

.hero-proof span {
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #ffd2aa;
  background: rgba(255,255,255,.7);
  color: #aa4700;
  font-weight: 800;
  font-size: .88rem;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5vw, 5.15rem);
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 18px 0 24px;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
  max-width: 740px;
}

.trust-item {
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
}

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: none;
  background: transparent;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 8px solid var(--white);
}

.hero-note {
  position: absolute;
  left: -18px;
  bottom: 22px;
  width: min(280px, 60%);
  padding: 16px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(0,0,0,.2);
}

.hero-note strong {
  display: block;
  color: var(--orange-2);
  font-size: 1.55rem;
}

.order-card {
  position: absolute;
  right: -14px;
  top: 18px;
  width: min(260px, 56%);
  padding: 14px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}

.order-card small {
  color: var(--muted);
  font-weight: 800;
}

.order-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: .92rem;
}

section { padding: 70px 0; }

.operation-strip {
  padding: 0;
  background: var(--charcoal);
  color: var(--white);
}

.operation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,.14);
  border-right: 1px solid rgba(255,255,255,.14);
}

.operation-grid div {
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,.14);
  display: grid;
  align-content: center;
  gap: 6px;
}

.operation-grid div:last-child { border-right: 0; }

.operation-grid span {
  color: var(--orange-2);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}

.operation-grid strong {
  font-size: 1.25rem;
}

.operation-grid p {
  color: rgba(255,255,255,.72);
  margin: 0;
}

.authority-strip .operation-grid div {
  align-content: start;
}

.authority-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,117,12,.16);
  border: 1px solid rgba(255,179,108,.44);
  color: #ffb36c;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.heritage-section {
  padding: 64px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(45,118,86,.045), transparent 24rem),
    #FAFAF8;
}

.heritage-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.heritage-grid h2 {
  max-width: 720px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.heritage-grid p {
  max-width: 640px;
  color: var(--muted);
  margin-top: 14px;
}

.heritage-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.heritage-stats article {
  min-height: 145px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}

.heritage-stats strong {
  display: block;
  color: var(--orange);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1;
  margin-bottom: 10px;
}

.heritage-stats span {
  color: var(--muted);
  font-weight: 700;
}

.veiling-context {
  background: var(--white);
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.context-grid article {
  min-height: 178px;
  padding: 26px 24px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  display: grid;
  align-content: start;
}

.context-grid strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  line-height: 1.05;
  margin-bottom: 14px;
  max-width: 9ch;
}

.context-grid span {
  color: var(--muted);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
  max-width: 20ch;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 32px;
}

.section-head h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 1.04rem;
}

.section-head > div + p {
  margin-top: 52px;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

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

.buyer-map-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(45,118,86,.045), transparent 30rem),
    radial-gradient(circle at 90% 72%, rgba(255,117,12,.045), transparent 24rem),
    linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
}

.buyer-map {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-areas:
    "feature garden flower"
    "feature market decor";
  gap: 16px;
  align-items: stretch;
}

.buyer-feature {
  grid-area: feature;
  padding: 38px;
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(20,21,22,.9) 0%, rgba(20,21,22,.72) 48%, rgba(20,21,22,.24) 100%),
    url("/assets/veiling-leilao-operacao-card.webp?v=20260624-05") center top / cover;
  color: var(--white);
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,179,108,.42);
  box-shadow: 0 24px 58px rgba(32,32,32,.18);
}

.buyer-feature::before {
  content: "";
  position: absolute;
  right: -96px;
  bottom: -96px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,117,12,.28);
  filter: blur(2px);
}

.buyer-feature::after {
  content: "";
  position: absolute;
  inset: auto 30px 28px auto;
  width: 104px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255,255,255,.34));
}

.buyer-feature > * {
  position: relative;
  z-index: 1;
}

.buyer-feature h3 {
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
  margin: 0;
  line-height: 1.08;
}

.buyer-feature p {
  color: rgba(255,255,255,.86);
  max-width: 520px;
}

.buyer-feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.buyer-feature-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

.buyer-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.buyer-tile {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background:
    linear-gradient(90deg, rgba(255,117,12,.9), rgba(255,117,12,0)) top left / 100% 4px no-repeat,
    radial-gradient(circle at 100% 0%, rgba(45,118,86,.045), transparent 42%),
    linear-gradient(145deg, #ffffff 0%, #FAFAF8 100%);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.buyer-tile::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255,117,12,.08);
  box-shadow: 0 0 0 18px rgba(255,117,12,.035);
}

.buyer-tile.garden {
  grid-area: garden;
  --card-mark: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M48 18c12 0 22 10 22 22 0 10-7 19-16 21v17H42V61c-9-3-16-11-16-21 0-12 10-22 22-22Z' fill='black'/%3E%3Cpath d='M48 64V38M36 42l12 12 12-12M27 78h42' stroke='black' stroke-width='7' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background:
    linear-gradient(90deg, rgba(255,117,12,.9), rgba(255,117,12,0)) top left / 100% 4px no-repeat,
    radial-gradient(circle at 100% 0%, rgba(255,117,12,.055), transparent 42%),
    linear-gradient(145deg, #ffffff 0%, #FAFAF8 100%);
}

.buyer-tile.decor {
  grid-area: decor;
  --card-mark: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m48 6 9 25 25 9-25 9-9 25-9-25-25-9 25-9 9-25Zm28 50 5 13 13 5-13 5-5 13-5-13-13-5 13-5 5-13ZM22 58l4 10 10 4-10 4-4 10-4-10-10-4 10-4 4-10Z' fill='black'/%3E%3C/svg%3E");
  background:
    linear-gradient(90deg, rgba(45,118,86,.82), rgba(45,118,86,0)) top left / 100% 4px no-repeat,
    radial-gradient(circle at 100% 0%, rgba(45,118,86,.075), transparent 42%),
    linear-gradient(145deg, #F8F8F5 0%, #ffffff 100%);
}

.buyer-tile > * {
  position: relative;
  z-index: 1;
}

.buyer-tile h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.buyer-tile p {
  color: var(--muted);
}

.buyer-tile a {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f36f12 0%, var(--orange-deep) 100%);
  color: #fff7ef;
  font-size: .94rem;
  font-weight: 900;
  line-height: 1.15;
  margin-top: auto;
  text-shadow: 0 1px 1px rgba(82, 31, 0, .34);
  -webkit-font-smoothing: antialiased;
  box-shadow:
    inset 0 -1px 0 rgba(92, 34, 0, .18),
    0 10px 22px rgba(217,91,0,.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.buyer-tile a:hover,
.buyer-tile a:focus {
  background: linear-gradient(180deg, #e76408 0%, #bf4c00 100%);
  color: #fff7ef;
  transform: translateY(-1px);
  box-shadow:
    inset 0 -1px 0 rgba(92, 34, 0, .22),
    0 13px 26px rgba(217,91,0,.24);
  outline: none;
}

.tile-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,111,15,.11);
  color: #a94800;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.buyer-map .eyebrow,
.buyer-map .tile-kicker {
  justify-self: start;
  width: fit-content;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #a94800;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.buyer-map .tile-kicker {
  position: relative;
  padding-left: 13px;
}

.buyer-map .tile-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.buyer-feature .eyebrow {
  background: rgba(255,117,12,.22);
  border-color: rgba(255,179,108,.62);
  color: #ffe6d1;
}

.buyer-map .buyer-tile:nth-of-type(3) { grid-area: flower; }
.buyer-map .buyer-tile:nth-of-type(4) { grid-area: market; }

.audience-map {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "feature garden flower"
    "feature market decor"
    "feature landscape distributor";
}

.audience-map .audience-feature {
  min-height: 0;
}

.audience-map .buyer-tile {
  min-height: 245px;
}

.audience-map .buyer-tile:nth-of-type(2) { grid-area: garden; }
.audience-map .buyer-tile:nth-of-type(3) {
  grid-area: flower;
  --card-mark: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M48 36c10-24 36-18 34 4-1 16-18 21-30 15 17 14 5 36-12 29-15-6-13-24-1-33-18 8-32-10-23-25 10-16 27-6 32 10Zm0 9a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z' fill='black'/%3E%3Cpath d='M50 58c10 10 17 19 20 31' stroke='black' stroke-width='6' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}
.audience-map .buyer-tile:nth-of-type(4) {
  grid-area: market;
  --card-mark: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 38h60l-5 45H23L18 38Zm7-20h46l8 16H17l8-16Zm10 30v24M48 48v24M61 48v24' stroke='black' stroke-width='7' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3Ccircle cx='34' cy='86' r='5' fill='black'/%3E%3Ccircle cx='63' cy='86' r='5' fill='black'/%3E%3C/svg%3E");
}
.audience-map .buyer-tile:nth-of-type(5) {
  grid-area: landscape;
  --card-mark: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 20h42l18 18v38H18V20Z' stroke='black' stroke-width='7' stroke-linejoin='round' fill='none'/%3E%3Cpath d='M60 20v20h18M30 67c4-15 14-23 30-25M31 67c8 0 14-5 13-13-11-1-17 4-13 13Zm15-12c10 2 17-3 20-13-13-4-21 1-20 13Z' stroke='black' stroke-width='6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}
.audience-map .buyer-tile:nth-of-type(6) { grid-area: decor; }
.audience-map .buyer-tile:nth-of-type(7) {
  grid-area: distributor;
  --card-mark: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 28h42v34H14V28Zm42 13h13l13 15v6H56V41ZM24 72a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm45 0a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z' stroke='black' stroke-width='7' stroke-linejoin='round' fill='none'/%3E%3Cpath d='M22 18h42M14 18h1' stroke='black' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.audience-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,117,12,.13);
  border: 1px solid rgba(255,179,108,.42);
  color: #bd4f00;
  font-size: 0;
  line-height: 0;
  margin-bottom: 4px;
}

.audience-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask: var(--card-mark) center / contain no-repeat;
  mask: var(--card-mark) center / contain no-repeat;
}

.buyer-tile.decor .audience-icon {
  background: rgba(45,118,86,.12);
  border-color: rgba(45,118,86,.2);
  color: var(--green);
}

.card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 100%;
  box-shadow: var(--card-shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(46,125,50,.16);
  box-shadow: 0 16px 34px rgba(32,32,32,.10);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p,
.card li { color: var(--muted); }

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.profile-card h3,
.profile-card p {
  margin-bottom: 0;
}

.card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f36f12 0%, var(--orange-deep) 100%);
  color: #fff7ef;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 1px 1px rgba(82, 31, 0, .32);
  -webkit-font-smoothing: antialiased;
  box-shadow: inset 0 -1px 0 rgba(92, 34, 0, .18);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.card-action:hover,
.card-action:focus {
  background: linear-gradient(180deg, #e76408 0%, #bf4c00 100%);
  color: #fff7ef;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(217,91,0,.18), inset 0 -1px 0 rgba(92, 34, 0, .18);
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-block {
  display: grid;
  gap: 12px;
}

.content-block h2,
.content-block h3 {
  max-width: 760px;
}

.content-block p {
  max-width: 820px;
  color: var(--muted);
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--white);
  box-shadow: var(--card-shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(46,125,50,.16);
  box-shadow: 0 16px 34px rgba(32,32,32,.10);
}

.service-card strong {
  display: block;
  color: var(--green);
  font-size: 1.05rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.service-card span {
  color: var(--muted);
  display: block;
}

.service-note {
  margin-top: 18px;
  padding: 20px 22px;
  border-left: 5px solid var(--orange);
  background: #FAFAF8;
  border-radius: var(--radius);
  color: var(--muted);
}

.why-hire-section {
  padding-bottom: 36px;
  background:
    radial-gradient(circle at 86% 20%, rgba(45,118,86,.055), transparent 22rem),
    linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
}

.why-hire-section + section {
  padding-top: 36px;
}

.why-hire-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-hire-list ul {
  list-style: none;
  margin: 0;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,117,12,.2);
  background: #FFFFFF;
  box-shadow: var(--card-shadow);
}

.why-hire-list li {
  position: relative;
  margin: 0;
  padding: 13px 0 13px 28px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,117,12,.16);
}

.why-hire-list li:last-child {
  border-bottom: 0;
}

.why-hire-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.38em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255,117,12,.11);
}

.why-hire-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,117,12,.22);
  background: #fff7ef;
  color: var(--muted);
}

.why-hire-highlight strong {
  flex: 0 0 auto;
  color: var(--orange-deep);
}

.product-showcase {
  background:
    radial-gradient(circle at 10% 18%, rgba(45,118,86,.045), transparent 26rem),
    radial-gradient(circle at 92% 12%, rgba(255,117,12,.04), transparent 20rem),
    linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
}

.product-showcase .section-head {
  margin-bottom: 24px;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: 28px;
  align-items: center;
}

.product-showcase-copy {
  display: grid;
  gap: 16px;
}

.product-showcase-copy h2 {
  margin: 0;
  max-width: 650px;
}

.product-showcase-copy p {
  max-width: 620px;
  color: var(--muted);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfe8dd;
  color: #a94800;
  font-size: .86rem;
  font-weight: 900;
}

.product-showcase-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-showcase-media img {
  width: 100%;
  aspect-ratio: 1200 / 616;
  object-fit: cover;
}

.product-showcase-media figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: .82rem;
  background: #FAFAF8;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--white);
  box-shadow: var(--card-shadow);
  isolation: isolate;
  cursor: zoom-in;
  display: flex;
  flex-direction: column;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(46,125,50,.16);
  box-shadow: 0 18px 38px rgba(32,32,32,.12);
}

.product-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.product-card-large img {
  flex: 1 1 auto;
  height: 100%;
}

.product-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0 0 42%;
  background: linear-gradient(180deg, rgba(0,0,0,.18), transparent 58%);
  z-index: 1;
  pointer-events: none;
}

.product-card div {
  position: relative;
  z-index: 2;
  min-height: 0;
  padding: 12px 14px 14px;
  color: var(--ink);
  background: var(--white);
  transition: transform .35s ease;
}

.product-card-large div {
  padding: 14px 16px 16px;
}

.product-card span {
  position: absolute;
  left: 14px;
  top: -42px;
  z-index: 3;
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,117,12,.9);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.product-card h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
  line-height: 1.08;
  color: var(--ink);
}

.product-card p {
  max-width: 430px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.42;
}

.product-card:hover img,
.product-card:focus-within img {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.product-card:hover div,
.product-card:focus-within div {
  transform: none;
}

.product-tags-centered {
  justify-content: center;
  margin-top: 22px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(12, 13, 13, .86);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-card {
  position: relative;
  width: fit-content;
  max-width: calc(100vw - 44px);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
}

.image-lightbox-card img {
  display: block;
  width: auto;
  max-width: calc(100vw - 44px);
  max-height: calc(88vh - 54px);
  object-fit: contain;
  background: #111;
}

.image-lightbox-caption {
  min-height: 54px;
  padding: 12px 18px;
  color: var(--white);
  font-weight: 800;
  background: rgba(255,255,255,.04);
}

.image-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(0,0,0,.48);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-prev {
  left: 12px;
}

.image-lightbox-next {
  right: 12px;
}

.image-lightbox-nav:hover,
.image-lightbox-nav:focus,
.image-lightbox-close:hover,
.image-lightbox-close:focus {
  background: rgba(255,117,12,.9);
  outline: none;
}

.compact-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.compact-list li {
  margin: 7px 0;
}

.faq-section {
  background: #FAFAF8;
}

.faq-section .section-head > div + p {
  align-self: center;
  margin-top: 34px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-item {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
  margin: 0;
}

.band {
  background:
    radial-gradient(circle at 12% 20%, rgba(45,118,86,.05), transparent 28rem),
    radial-gradient(circle at 92% 74%, rgba(255,117,12,.04), transparent 24rem),
    linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logistics-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(45,118,86,.045), transparent 24rem),
    linear-gradient(180deg, #FFFFFF 0%, #F8F8F5 100%);
  color: var(--ink);
}

.logistics-section .section-head p {
  color: var(--muted);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 37px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), #ffc28d);
}

.process-timeline article {
  position: relative;
  padding: 84px 26px 28px;
  min-height: 250px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}

.process-timeline article::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 26px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 10px #fff3e8;
}

.process-time {
  position: absolute;
  top: 20px;
  right: 22px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #1f2022;
  color: var(--white);
  font-weight: 900;
  font-size: .86rem;
}

.process-timeline h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.process-timeline p {
  color: var(--muted);
  margin: 0;
}

.express-teaser {
  padding: 34px 0;
  background: #FAFAF8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.express-teaser-grid {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
}

.express-teaser img {
  width: 138px;
  height: auto;
}

.express-teaser h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin: 10px 0 8px;
}

.express-teaser p {
  max-width: 740px;
  color: var(--muted);
  margin: 0;
}

.express-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.express-teaser .button { white-space: nowrap; }

.band .section-head p,
.band .card p,
.band .card li { color: var(--muted); }

.band .card {
  background: #FFFFFF;
  border-color: var(--card-border);
  box-shadow: var(--card-shadow);
}

.step {
  position: relative;
  padding-top: 26px;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.quote {
  border-left: 5px solid var(--orange);
}

.quote blockquote {
  margin: 0 0 18px;
  font-size: 1.16rem;
  color: var(--ink);
  line-height: 1.55;
}

.quote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.proof-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  grid-template-areas:
    "number quote1"
    "number quote2";
  gap: 16px;
}

.proof-video {
  grid-area: number;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.proof-video:hover,
.proof-video:focus-within {
  transform: translateY(-4px);
  border-color: rgba(46,125,50,.16);
  box-shadow: 0 16px 34px rgba(32,32,32,.10);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  background: #1f2022;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 24px;
  border: 0;
  background-color: #1f2022;
  color: var(--white);
  cursor: pointer;
  isolation: isolate;
}

.video-cover img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(22,23,24,.72), rgba(22,23,24,.18)),
    radial-gradient(circle at 50% 50%, rgba(255,117,12,.22), transparent 32%);
  z-index: -1;
}

.video-cover span:last-child {
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.video-play {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 18px 38px rgba(255,117,12,.34);
  transition: transform .2s ease, box-shadow .2s ease;
}

.video-play::before {
  content: "";
  display: block;
  margin-left: 5px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--white);
}

.video-cover:hover .video-play,
.video-cover:focus-visible .video-play {
  transform: scale(1.06);
  box-shadow: 0 22px 46px rgba(255,117,12,.42);
}

.video-caption {
  display: grid;
  gap: 4px;
  padding: 14px 6px 2px;
}

.video-caption strong {
  color: var(--green);
  font-size: 1rem;
}

.video-caption span {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45;
}

.proof-quote {
  padding: 30px 34px 28px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.proof-quote:hover,
.proof-quote:focus-within {
  transform: translateY(-4px);
  border-color: rgba(46,125,50,.16);
  box-shadow: 0 16px 34px rgba(32,32,32,.10);
}

.proof-quote::before {
  content: "\201C";
  position: absolute;
  right: 20px;
  bottom: -22px;
  color: #ffd6b5;
  font-size: 6.2rem;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
  opacity: .48;
  z-index: 0;
}

.proof-quote blockquote,
.proof-quote cite {
  position: relative;
  z-index: 1;
}

.proof-layout .proof-quote:nth-of-type(2) { grid-area: quote1; }
.proof-layout .proof-quote:nth-of-type(3) { grid-area: quote2; }

.form-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: var(--card-shadow);
}

.form-panel .button {
  min-width: 280px;
  justify-self: end;
}

.express-cta-panel {
  grid-template-columns: minmax(0, 1fr) minmax(360px, auto);
  align-items: center;
  gap: 30px;
  padding: 24px 28px;
}

.express-cta-panel > div:first-child {
  max-width: 640px;
}

.express-cta-panel .eyebrow {
  margin-bottom: 16px;
}

.express-cta-panel h2 {
  max-width: 620px;
  margin-bottom: 6px;
}

.express-cta-panel p {
  margin-bottom: 0;
}

.express-cta-panel .cta-stack {
  justify-content: flex-end;
  align-items: center;
}

.express-cta-panel .cta-stack .button {
  width: auto;
  min-width: 0;
  padding-inline: 24px;
  white-space: nowrap;
}

.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: center;
}

.guide-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
  padding: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 100%, rgba(255,117,12,.045), transparent 22rem),
    var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}

.guide-copy {
  padding: 34px;
  border-radius: calc(var(--radius) - 4px);
  display: grid;
  align-content: start;
  background:
    linear-gradient(145deg, rgba(31,32,34,.96), rgba(47,43,39,.96)),
    var(--charcoal);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}

.guide-copy .eyebrow {
  background: rgba(255,117,12,.16);
  border-color: rgba(255,179,108,.55);
  color: #ffd7b8;
}

.guide-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  max-width: 620px;
  margin-bottom: 18px;
}

.guide-copy p {
  color: rgba(255,255,255,.78);
  max-width: 600px;
  margin-bottom: 16px;
}

.tips-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 22px;
}

.tips-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.tips-list strong {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: .9rem;
}

.tips-list span {
  color: rgba(255,255,255,.86);
}

.guide-form {
  padding: 34px;
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 100% 8%, rgba(45,118,86,.045), transparent 20rem),
    #FAFAF8;
  border: 1px solid rgba(45,118,86,.08);
  align-content: start;
}

.form-title {
  margin-bottom: 10px;
}

.form-title span {
  color: #bd4f00;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}

.form-title h3 {
  margin-top: 4px;
  font-size: 1.55rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfdacf;
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form .button {
  width: 100%;
  min-height: 52px;
  margin-top: 2px;
}

.guide-next {
  margin-top: 8px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,117,12,.07), transparent 44%),
    #ffffff;
}

.guide-next strong {
  display: block;
  margin-bottom: 10px;
  color: #a94800;
  font-size: 1rem;
}

.guide-next ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-next li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
}

.guide-next li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.fine-print {
  color: var(--muted);
  font-size: .9rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(45,118,86,.10), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #f5faf3 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 { font-size: clamp(2.1rem, 4vw, 3.8rem); }

.segment-page-hero {
  padding: 64px 0;
}

.segment-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  gap: 42px;
  align-items: center;
}

.segment-hero-media {
  position: relative;
  margin: 0;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: #ffffff;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.segment-hero-media:hover,
.segment-hero-media:focus-within {
  transform: translateY(-4px);
  border-color: rgba(46,125,50,.16);
  box-shadow: 0 16px 34px rgba(32,32,32,.10);
}

.segment-hero-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(45,118,86,.10);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
  z-index: 1;
}

.segment-hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius) - 4px);
  background: #ffffff;
}

.decor-hero-media img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.guide-hero-media img {
  aspect-ratio: 996 / 639;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.services-hero-media {
  padding: 12px;
}

.services-hero-media::before {
  inset: 12px;
}

.services-hero-media img {
  aspect-ratio: 900 / 682;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.segment-hero-media figcaption {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--card-border);
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
  text-align: center;
}

.express-page-hero {
  background:
    radial-gradient(circle at 86% 12%, rgba(255,117,12,.04), transparent 22rem),
    linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
}

.express-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, .88fr);
  gap: 34px;
  align-items: center;
}

.express-logo-panel {
  min-height: 360px;
  padding: 26px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 15%, rgba(45,118,86,.055), transparent 34%),
    radial-gradient(circle at 8% 86%, rgba(255,111,15,.045), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #FAFAF8 58%, #F8F8F5 100%);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.express-logo-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,111,15,.16);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

.express-logo-card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  display: grid;
  gap: 22px;
  justify-items: center;
  padding: 30px 28px 24px;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255,255,255,.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .24s ease, box-shadow .24s ease;
}

.express-logo-card:hover,
.express-logo-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(32,32,32,.10), inset 0 1px 0 rgba(255,255,255,.8);
}

.express-logo-panel img {
  width: min(100%, 310px);
}

.express-logo-points {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.express-logo-points span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 7px 8px;
  border-radius: 10px;
  background: #ffffff;
  color: #1f5d43;
  border: 1px solid var(--card-border);
  font-size: .78rem;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
}

.fleet-section {
  background:
    radial-gradient(circle at 92% 6%, rgba(255,117,12,.05), transparent 24rem),
    radial-gradient(circle at 8% 88%, rgba(45,118,86,.045), transparent 22rem),
    linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
}

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

.fleet-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,117,12,.06), transparent 44%),
    #ffffff;
  box-shadow: var(--card-shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.fleet-card:hover,
.fleet-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(46,125,50,.16);
  box-shadow: 0 16px 34px rgba(32,32,32,.10);
}

.fleet-card-featured {
  grid-column: span 3;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  align-items: center;
}

.fleet-card figure {
  margin: 0;
  padding: 16px;
  background:
    linear-gradient(145deg, #ffffff 0%, #FAFAF8 100%);
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 19 / 14;
  object-fit: contain;
  border-radius: calc(var(--radius) - 4px);
  background: #ffffff;
}

.fleet-card-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.fleet-kicker {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff0e3;
  border: 1px solid #ffc99d;
  color: #a74300;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.fleet-card h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.fleet-card p {
  margin: 0;
  color: var(--muted);
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 0;
}

.fleet-specs div {
  padding: 10px;
  border-radius: var(--radius);
  background: #FAFAF8;
  border: 1px solid var(--card-border);
}

.fleet-specs dt {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fleet-specs dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.list {
  padding-left: 1.1rem;
  margin: 12px 0 0;
}

.list li { margin: 8px 0; }

.site-footer {
  padding: 44px 0 28px;
  background: #171717;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
}

.site-footer a,
.site-footer p,
.site-footer li {
  color: rgba(255,255,255,.78);
}

.site-footer h2,
.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-contact {
  order: 4;
}

.footer-links {
  order: 3;
}

.footer-contact .footer-list {
  gap: 10px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.footer-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,117,12,.16);
  border: 1px solid rgba(255,117,12,.38);
  color: #ffb06f;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
}

.footer-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255,255,255,.78);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-link-button:hover {
  color: var(--white);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 28px;
  padding-top: 18px;
  color: rgba(255,255,255,.64);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  white-space: nowrap;
}

.footer-credit a {
  color: rgba(255,255,255,.86);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255,117,12,.58);
  text-underline-offset: 3px;
}

.footer-credit a:hover,
.footer-credit a:focus {
  color: var(--white);
}

.footer-seals {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.footer-seals h2 {
  margin-bottom: 6px;
}

.footer-seals p {
  margin: 0;
}

.footer-seals figure {
  margin: 0;
  min-width: 150px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}

.footer-seals .anniversary-seal {
  min-width: 168px;
}

.footer-seals img {
  max-height: 78px;
  width: auto;
  object-fit: contain;
}

.footer-seals .anniversary-seal img {
  max-height: 112px;
  border-radius: 4px;
}

.footer-seals figure:last-child img {
  max-height: 54px;
}

.footer-seals figcaption {
  color: rgba(255,255,255,.68);
  font-size: .82rem;
  font-weight: 800;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #078d4f;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.whatsapp-icon {
  width: 31px;
  height: 31px;
  display: block;
  overflow: visible;
}

.whatsapp-icon path,
.whatsapp-icon circle {
  vector-effect: non-scaling-stroke;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  background: #067d47;
  color: #ffffff;
  transform: translateY(-2px);
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 250, 243, .98);
  border: 1px solid #f3d4b8;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.cookie-banner a {
  color: #bd4f00;
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 10px 14px;
  white-space: nowrap;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(31,32,34,.58);
}

.cookie-modal-card {
  width: min(100%, 620px);
  padding: 26px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}

.cookie-modal-card h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.cookie-modal-card p {
  color: var(--muted);
}

.cookie-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.cookie-choice input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.cookie-choice span {
  grid-column: 2;
  color: var(--muted);
  font-weight: 400;
}

@media (max-width: 900px) {
  .menu-button { display: inline-grid; place-items: center; }
  .nav {
    position: absolute;
    top: 108px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 16px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: grid; }
  .hero-grid,
  .form-panel,
  .guide-panel,
  .footer-grid { grid-template-columns: 1fr; }
  .express-cta-panel {
    gap: 18px;
  }
  .express-cta-panel .cta-stack {
    justify-content: flex-start;
  }
  .hero-photo,
  .hero-photo-inner {
    min-height: auto;
  }
  .hero-bg {
    object-position: center top;
  }
  .hero-photo-inner {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: clamp(64px, 12vw, 104px);
    padding-bottom: 42px;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(12, 13, 13, .18) 0%, rgba(12, 13, 13, .58) 38%, rgba(12, 13, 13, .9) 100%);
  }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16 / 9; }
  .grid-4,
  .grid-3,
  .grid-2,
  .fleet-grid,
  .service-matrix,
  .faq-list { grid-template-columns: repeat(2, 1fr); }

  .fleet-card-featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .operation-grid,
  .heritage-grid,
  .express-page-grid,
  .segment-hero-grid,
  .product-showcase-grid,
  .buyer-map,
  .process-timeline,
  .proof-layout {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
  .buyer-feature,
  .buyer-tile,
  .proof-video,
  .proof-quote {
    grid-area: auto;
  }
  .buyer-feature { min-height: 320px; }
  .process-timeline::before { display: none; }
  .process-timeline article { min-height: 0; }
  .operation-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .operation-grid div:last-child { border-bottom: 0; }
  .heritage-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .context-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .express-teaser-grid {
    grid-template-columns: 120px 1fr;
  }
  .express-actions {
    grid-column: 2;
    justify-self: start;
  }
  .footer-seals {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 12px;
  }
  .hero-note,
  .order-card {
    position: static;
    width: auto;
    margin-top: 12px;
  }
  .cookie-banner {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1120px); }
  .header-inner { min-height: 92px; }
  .brand-logo {
    height: 78px;
    max-width: 176px;
  }
  .nav { top: 92px; }
  .hero { padding-top: 24px; }
  .hero-photo { padding-top: 0; }
  .hero-photo-inner {
    padding-top: 68px;
    padding-bottom: 30px;
  }
  h1 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .hero-subtitle { font-size: 1.04rem; }
  section { padding: 48px 0; }
  .grid-4,
  .grid-3,
  .grid-2,
  .fleet-grid,
  .why-hire-list,
  .service-matrix,
  .faq-list,
  .trust-row { grid-template-columns: 1fr; }

  .why-hire-highlight {
    display: grid;
    gap: 8px;
  }

  .fleet-card-featured {
    grid-column: span 1;
  }

  .fleet-card-body {
    padding: 18px;
  }

  .fleet-specs {
    grid-template-columns: 1fr;
  }
  .product-showcase-media img {
    aspect-ratio: 4 / 3;
  }
  .product-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .product-card,
  .product-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }
  .product-card img {
    aspect-ratio: 4 / 3;
  }
  .product-tags {
    gap: 8px;
  }
  .product-tags span {
    font-size: .8rem;
  }
  .image-lightbox {
    padding: 12px;
  }
  .image-lightbox-card,
  .image-lightbox-card img {
    max-width: calc(100vw - 24px);
  }
  .image-lightbox-card img {
    max-height: calc(86vh - 50px);
  }
  .image-lightbox-caption {
    min-height: 50px;
    padding: 10px 14px;
  }
  .image-lightbox-nav {
    width: 42px;
    height: 42px;
  }
  .hero-actions .button,
  .actions .button { width: 100%; }
  .trust-row { margin-top: 16px; }
  .trust-item { padding: 12px 14px; }
  .trust-item strong { font-size: 1.05rem; }
  .hero-note,
  .order-card { display: none; }
  .card { padding: 18px; }
  .express-logo-panel {
    min-height: 260px;
    padding: 24px;
  }
  .segment-page-hero {
    padding: 46px 0;
  }
  .segment-hero-media {
    padding: 12px;
  }
  .segment-hero-media::before {
    inset: 12px;
  }
  .segment-hero-media figcaption {
    border-radius: var(--radius);
  }
  .express-logo-card {
    padding: 24px 18px 18px;
  }
  .express-logo-points {
    grid-template-columns: 1fr;
  }
  .form-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .form-panel .button {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
  .express-cta-panel .cta-stack {
    width: 100%;
  }
  .express-cta-panel .cta-stack .button {
    width: 100%;
    white-space: normal;
  }
  .guide-copy,
  .guide-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .heritage-stats { grid-template-columns: 1fr; }
  .context-grid { grid-template-columns: 1fr; }
  .express-teaser-grid { grid-template-columns: 1fr; }
  .express-teaser img { width: 112px; }
  .express-actions {
    grid-column: auto;
    width: 100%;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 66px;
    height: 66px;
  }

  .whatsapp-icon {
    width: 29px;
    height: 29px;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-actions .button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .buyer-map,
  .proof-layout {
    display: block;
  }

  .buyer-feature,
  .buyer-tile,
  .proof-video,
  .proof-quote {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 0 16px;
    grid-area: auto;
  }

  .buyer-feature {
    min-height: auto;
    padding: 28px 24px;
    align-content: start;
  }

  .buyer-feature h3 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .buyer-feature-list {
    gap: 8px;
  }

  .buyer-tile {
    min-height: auto;
    padding: 22px;
    align-content: start;
  }

  .buyer-tile h3 {
    font-size: 1.35rem;
    line-height: 1.12;
  }

  .buyer-tile p {
    line-height: 1.45;
  }

  .buyer-tile a {
    width: 100%;
  }

  .buyer-map .tile-kicker {
    max-width: 100%;
    white-space: normal;
    line-height: 1.15;
    text-align: left;
  }

  .proof-video {
    min-height: auto;
    padding: 10px;
  }

  .proof-quote {
    padding: 24px;
  }

  .proof-quote blockquote {
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .card.step {
    padding-top: 62px;
  }

  .card.step .step-number {
    top: 16px;
    left: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}































