:root {
  --ink: #172019;
  --ink-soft: #536057;
  --paper: #f4f6ef;
  --paper-deep: #e8ede2;
  --white: #ffffff;
  --moss: #213a28;
  --moss-deep: #122419;
  --leaf: #75964f;
  --lime: #d8e8ac;
  --clay: #aa6742;
  --line: rgba(23, 32, 25, 0.14);
  --line-light: rgba(255, 255, 255, 0.25);
  --shadow-sm: 0 14px 34px rgba(20, 35, 24, 0.1);
  --shadow-lg: 0 28px 80px rgba(20, 35, 24, 0.16);
  --wrap: min(1180px, calc(100% - 48px));
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: 1.02;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--lime);
  color: var(--moss-deep);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 18px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 4px;
  font-weight: 700;
}

.skip-link:focus {
  top: 18px;
}

.eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--leaf);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--lime);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--moss-deep);
  background: var(--lime);
  box-shadow: 0 14px 34px rgba(7, 15, 9, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e5f0c5;
  box-shadow: 0 18px 42px rgba(7, 15, 9, 0.28);
}

.button-dark {
  color: var(--white);
  background: var(--moss);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--moss-deep);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(12, 24, 15, 0.35);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(12, 24, 15, 0.58);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--moss);
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--clay);
  transform: translateX(4px);
}

.text-link-light {
  color: var(--lime);
}

.top-strip {
  position: fixed;
  top: 9px;
  left: 50%;
  z-index: 110;
  display: flex;
  width: min(700px, calc(100% - 30px));
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(18, 36, 25, 0.9);
  box-shadow: 0 12px 30px rgba(4, 10, 6, 0.16);
  transform: translateX(-50%);
  font-size: 0.78rem;
  transition: opacity 220ms ease, transform 220ms ease;
}

.top-strip a {
  color: var(--lime);
  font-weight: 800;
}

body.is-scrolled .top-strip {
  opacity: 0;
  transform: translate(-50%, -16px);
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 56px;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  width: min(1280px, calc(100% - 32px));
  min-height: 68px;
  align-items: center;
  gap: 22px;
  padding: 9px 12px 9px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(15, 28, 19, 0.34);
  box-shadow: 0 16px 40px rgba(5, 12, 7, 0.08);
  transform: translateX(-50%);
  transition: top 220ms ease, background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.is-scrolled .site-header {
  top: 10px;
  border-color: rgba(255, 255, 255, 0.14);
  background: #112217;
  box-shadow: 0 18px 46px rgba(5, 12, 7, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: start;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-brand {
  display: grid;
  min-width: 132px;
  justify-items: center;
  gap: 1px;
  justify-self: center;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.header-brand img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.24));
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-phone {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
}

.header-quote {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 4px;
  color: var(--moss-deep);
  background: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
}

.mobile-menu-toggle {
  display: none;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  pointer-events: none;
  animation: intro-exit 780ms cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
}

.site-intro__media,
.site-intro__shade {
  position: absolute;
  inset: 0;
}

.site-intro__media {
  background: url("/assets/florino-forest-plan-desktop.webp") center 56% / cover no-repeat;
  transform: scale(1.06);
  animation: intro-media 1.9s ease forwards;
}

.site-intro__shade {
  background: rgba(8, 20, 12, 0.7);
  animation: intro-shade-out 760ms ease 1.5s forwards;
}

.site-intro__drawing {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(720px, 82vw);
  color: rgba(255, 255, 255, 0.78);
  transform: translate(-50%, -46%);
  animation: intro-drawing-out 300ms ease 1.38s forwards;
}

.site-intro__drawing path,
.site-intro__drawing circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: intro-draw 900ms ease 180ms forwards;
}

.site-intro__drawing circle {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
}

.site-intro__brand {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(500px, 72vw);
  justify-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  animation:
    intro-brand 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 480ms forwards,
    intro-brand-out 320ms cubic-bezier(0.4, 0, 0.2, 1) 1.38s forwards;
}

.site-intro__brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.3));
}

.site-intro__brand span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes intro-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes intro-brand {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes intro-media {
  to { transform: scale(1); }
}

@keyframes intro-brand-out {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-8px) scale(0.975); }
}

@keyframes intro-drawing-out {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes intro-shade-out {
  0% { background: rgba(8, 20, 12, 0.7); }
  100% { background: rgba(8, 20, 12, 0.36); }
}

@keyframes intro-exit {
  0% { opacity: 1; visibility: visible; }
  18% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

.home-hero,
.sub-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--moss-deep);
}

.home-hero {
  height: 90svh;
  min-height: 800px;
  max-height: 880px;
}

.sub-hero {
  min-height: 640px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  transform: scale(1.015);
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero-media picture,
.footer-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 18, 10, 0.62) 0%, rgba(7, 18, 10, 0.24) 40%, rgba(7, 18, 10, 0.68) 100%),
    linear-gradient(90deg, rgba(5, 14, 8, 0.34), transparent 48%, rgba(5, 14, 8, 0.22));
}

.home-hero .hero-overlay {
  background:
    radial-gradient(ellipse at 50% 43%, rgba(218, 236, 190, 0.14) 0%, rgba(218, 236, 190, 0.04) 28%, transparent 56%),
    linear-gradient(180deg, rgba(7, 18, 10, 0.54) 0%, rgba(7, 18, 10, 0.13) 42%, rgba(7, 18, 10, 0.62) 100%),
    linear-gradient(90deg, rgba(5, 14, 8, 0.28), transparent 40%, transparent 60%, rgba(5, 14, 8, 0.2));
}

@keyframes hero-breathe {
  to { transform: scale(1.055); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1020px, calc(100% - 48px));
  min-height: 100%;
  align-content: center;
  justify-items: center;
  margin: 0 auto;
  padding: 144px 0 112px;
  text-align: center;
}

.hero-content h1 {
  max-width: 970px;
  color: var(--white);
  font-size: 4rem;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-lead {
  max-width: 790px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.58;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(860px, 100%);
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-signals span {
  display: grid;
  min-height: 74px;
  align-content: center;
  padding: 13px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.hero-signals span:last-child {
  border-right: 0;
}

.hero-signals strong {
  color: var(--white);
  font-size: 0.78rem;
}

.hero-wave {
  position: absolute;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 3;
  width: calc(100% + 2px);
  height: 150px;
  color: var(--paper);
}

.sub-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--wrap);
  min-height: 640px;
  align-content: center;
  margin: 0 auto;
  padding: 148px 0 112px;
}

.sub-hero__content h1 {
  max-width: 850px;
  color: var(--white);
  font-size: 3.65rem;
  line-height: 1;
  text-wrap: balance;
}

.sub-hero__content > p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.sub-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.route-band {
  position: relative;
  z-index: 4;
  padding: 58px 0 64px;
  background: var(--paper);
}

.route-band__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr auto;
  width: var(--wrap);
  align-items: center;
  gap: 48px;
  margin: 0 auto;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.route-band h2 {
  font-size: 2.25rem;
}

.route-band p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

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

.section::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 150px;
  height: 56px;
  border: 1px solid rgba(117, 150, 79, 0.12);
  border-radius: 55% 45% 58% 42%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.section:nth-of-type(odd)::before {
  top: 72px;
  left: -70px;
}

.section:nth-of-type(even)::before {
  right: -60px;
  bottom: 74px;
}

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

.section-heading {
  max-width: 820px;
}

.section-heading h2 {
  text-wrap: balance;
}

.section-heading > p:not(.eyebrow) {
  margin-top: 22px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.elevated {
  padding: 34px 36px;
  border: 1px solid rgba(23, 32, 25, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.elevated::before {
  content: "";
  position: absolute;
  top: 0;
  right: 36px;
  left: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--lime), var(--clay));
}

.audience-section {
  padding-top: 76px;
}

.audience-intro {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
  gap: 28px;
}

.audience-intro .section-heading {
  display: grid;
  min-height: 440px;
  align-content: center;
}

.feature-photo,
.story-photo,
.gallery-feature figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
  box-shadow: var(--shadow-lg);
}

.feature-photo {
  min-height: 440px;
}

.feature-photo img,
.story-photo img,
.gallery-feature figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-reveal.is-visible {
  clip-path: inset(0);
}

.media-reveal.is-visible img {
  transform: scale(1.035);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.audience-card,
.link-card {
  position: relative;
  display: grid;
  min-height: 250px;
  align-content: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(20, 35, 24, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.audience-card:hover,
.link-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: rgba(117, 150, 79, 0.48);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.audience-card > span,
.link-card > span {
  margin-bottom: 34px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-card p,
.link-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.audience-card strong,
.link-card strong {
  align-self: end;
  margin-top: 22px;
  color: var(--moss);
  font-size: 0.78rem;
}

.supply-section {
  background: #edf1e8;
}

.split-heading,
.page-intro__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 54px;
}

.support-copy,
.page-intro__lead {
  padding: 26px;
  border-left: 3px solid var(--leaf);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-sm);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.offer-grid .link-card {
  min-height: 270px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.process-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(117, 150, 79, 0.08), transparent 48%),
    var(--moss-deep);
}

.process-section::before {
  border-color: rgba(216, 232, 172, 0.18);
}

.process-heading {
  margin-inline: auto;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  text-align: center;
}

.process-heading h2 {
  color: var(--white);
}

.process-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 50px;
  padding: 0;
  list-style: none;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, var(--leaf), var(--lime), var(--leaf));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.6s ease 180ms;
}

.process-line.is-visible::before {
  transform: scaleX(1);
}

.process-line li {
  position: relative;
  min-height: 250px;
  padding: 58px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.process-line li > span {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--lime);
  border-radius: 50%;
  color: var(--moss-deep);
  background: var(--lime);
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 900;
}

.process-line strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
  text-align: center;
}

.process-line p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  text-align: center;
}

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

.proof-grid,
.file-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.proof-grid article,
.file-grid article,
.highlights article {
  display: grid;
  min-height: 218px;
  align-content: start;
  justify-items: center;
  padding: 26px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(20, 35, 24, 0.07);
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.proof-grid article:hover,
.file-grid article:hover,
.highlights article:hover {
  transform: translateY(-6px) rotateY(3deg);
  border-color: rgba(117, 150, 79, 0.48);
  box-shadow: var(--shadow-sm);
}

.proof-grid span,
.file-grid span,
.highlights span {
  display: grid;
  min-width: 46px;
  min-height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(117, 150, 79, 0.24);
  border-radius: 50%;
  color: var(--moss);
  background: rgba(216, 232, 172, 0.34);
  font-size: 0.7rem;
  font-weight: 900;
}

.proof-grid p,
.file-grid p,
.highlights p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.send-section {
  background: linear-gradient(180deg, #eef1e8, var(--paper));
}

.file-grid article {
  min-height: 225px;
}

.file-grid span {
  border-radius: 4px;
  color: var(--clay);
  background: rgba(170, 103, 66, 0.08);
}

.story-section {
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.story-photo {
  aspect-ratio: 1.15;
}

.story-copy h2,
.gallery-copy h2 {
  margin-bottom: 24px;
}

.story-copy p:not(.eyebrow),
.gallery-copy p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.quote-section,
.quote-page-section {
  padding-bottom: 70px;
  background: #e9eee3;
}

.quote-heading {
  margin-bottom: 30px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin-top: 24px;
}

.contact-links a {
  color: var(--moss);
  font-size: 1rem;
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  scroll-margin-top: 128px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 32, 25, 0.2);
  border-radius: 4px;
  color: var(--ink);
  background: #f8faf5;
  padding: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.quote-form textarea {
  min-height: 170px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 0;
  border-color: var(--leaf);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(117, 150, 79, 0.16);
}

.quote-form .full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0 0 6px;
  padding: 15px 18px;
  border-left: 3px solid var(--leaf);
  color: var(--moss);
  background: rgba(216, 232, 172, 0.28);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.file-field {
  position: relative;
  min-height: 178px;
  align-content: center;
  justify-items: center;
  padding: 22px;
  border: 1px dashed rgba(33, 58, 40, 0.38);
  background: #f2f6ed;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.file-field::before {
  content: "+";
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 8px;
  border: 1px solid rgba(33, 58, 40, 0.3);
  border-radius: 50%;
  color: var(--moss);
  background: var(--white);
  font-size: 1.4rem;
  font-weight: 400;
}

.file-field:hover,
.file-field.is-dragover {
  transform: translateY(-3px);
  border-color: var(--leaf);
  background: #eaf1e2;
}

.file-field input[type="file"] {
  border: 0;
  background: transparent;
  padding: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.file-field small {
  color: var(--ink-soft);
  font-weight: 500;
}

.selected-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selected-files span {
  padding: 7px 10px;
  border-radius: 3px;
  color: var(--moss);
  background: var(--paper-deep);
  font-size: 0.72rem;
  font-weight: 800;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.consent input {
  width: auto;
  margin-top: 4px;
}

.quote-form button {
  width: 100%;
  min-height: 58px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.page-intro {
  padding-top: 76px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.highlights article {
  min-height: 238px;
}

.article-section {
  padding: 96px 0;
  background: var(--paper);
}

.article-section--tint {
  background: #e9eee4;
}

.article-section__inner {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  width: var(--wrap);
  gap: 90px;
  margin: 0 auto;
}

.article-section h2 {
  max-width: 500px;
  font-size: 3rem;
}

.article-section__inner > div:last-child > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.article-section__inner > div:last-child > p + p {
  margin-top: 20px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 12px 12px 36px;
  border-bottom: 1px solid var(--line);
  color: var(--moss);
  font-size: 0.88rem;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 11px;
  height: 7px;
  border-bottom: 2px solid var(--leaf);
  border-left: 2px solid var(--leaf);
  transform: translateY(-66%) rotate(-45deg);
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: start;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 19px;
  color: var(--leaf);
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 48px 24px 0;
  color: var(--ink-soft);
}

.related-section {
  background: #edf1e8;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.related-grid .link-card {
  min-height: 290px;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 44px;
  width: 100%;
  padding: 54px max(24px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: var(--moss);
}

.cta-band h2 {
  color: var(--white);
  font-size: 2.45rem;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.locations-section {
  padding-top: 50px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.locations-grid article {
  min-height: 220px;
  padding: 34px;
  background: var(--white);
}

.locations-grid article:last-child {
  grid-column: 1 / -1;
}

.locations-grid h2 {
  margin-bottom: 16px;
  font-size: 2.2rem;
}

.locations-grid p {
  color: var(--ink-soft);
}

.gallery-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.gallery-section--dark {
  color: var(--white);
  background: var(--moss-deep);
}

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

.gallery-section--dark .gallery-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.gallery-feature {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 64px;
}

.gallery-feature--reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.gallery-feature--reverse figure {
  order: 2;
}

.gallery-feature figure {
  aspect-ratio: 1.25;
}

.quote-page-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 30px;
}

.quote-contact {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: 34px;
  color: var(--white);
  background: var(--moss);
  box-shadow: var(--shadow-sm);
}

.quote-contact span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-contact a {
  font-size: 1.12rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-primary {
  display: grid;
  align-content: center;
  padding: 44px;
  color: var(--white);
  background: var(--moss);
  box-shadow: var(--shadow-lg);
}

.contact-primary h2 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: 2.8rem;
}

.contact-primary > a:not(.button) {
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-primary .button {
  justify-self: start;
  margin-top: 20px;
  color: var(--moss-deep);
  background: var(--lime);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-details article {
  min-height: 220px;
  padding: 30px;
  background: var(--white);
}

.contact-details article:first-child {
  grid-column: 1 / -1;
}

.contact-details span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details h3 {
  margin: 18px 0;
}

.simple-content {
  max-width: 760px;
  text-align: center;
}

.simple-content h2 {
  margin-bottom: 20px;
}

.simple-content p {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.site-footer {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 780px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--moss-deep);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 80C280 28 430 170 720 170C1010 170 1160 28 1440 80V900H0Z'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 80C280 28 430 170 720 170C1010 170 1160 28 1440 80V900H0Z'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
}

.footer-media,
.footer-media::after {
  position: absolute;
  inset: 0;
}

.footer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  transform: scale(1.03);
}

.footer-media::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(9, 22, 13, 0.2), rgba(9, 22, 13, 0.86) 84%),
    linear-gradient(90deg, rgba(9, 22, 13, 0.7), rgba(9, 22, 13, 0.22) 50%, rgba(9, 22, 13, 0.7));
}

.footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(900px, calc(100% - 48px));
  justify-items: center;
  margin: 0 auto;
  padding: 220px 0 26px;
  text-align: center;
}

.footer-brand img {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.42));
}

.footer-kicker {
  margin: 14px 0 12px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-content h2 {
  max-width: 680px;
  color: var(--white);
  font-size: 3.3rem;
}

.footer-lead {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-content address {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  justify-content: center;
  gap: 7px 18px;
  margin: 24px 0 0;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(7, 17, 10, 0.42);
  font-style: normal;
}

.footer-content address a {
  color: var(--white);
  font-weight: 800;
}

.footer-content address span {
  color: rgba(255, 255, 255, 0.7);
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
  color: var(--lime);
}

.credit {
  margin: 24px 0 0;
  color: var(--white);
  font-size: 0.74rem;
}

.credit a {
  color: var(--lime);
  font-weight: 800;
}

.reveal,
.stagger-group > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible,
.stagger-group.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-group.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.stagger-group.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.stagger-group.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.stagger-group.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.stagger-group.is-visible > *:nth-child(6) { transition-delay: 450ms; }

@media (max-width: 1120px) {
  .site-nav { gap: 15px; }
  .site-nav a { font-size: 0.75rem; }
  .header-phone { display: none; }
  .hero-content h1 { font-size: 3.3rem; }
  .sub-hero__content h1 { font-size: 3.15rem; }
  .proof-grid,
  .file-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .proof-grid article:nth-child(n + 4),
  .file-grid article:nth-child(n + 4) { min-height: 190px; }
  .process-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-line::before { display: none; }
  .process-line li { min-height: 205px; }
  .cta-band { grid-template-columns: 1fr auto; }
  .cta-band > p { grid-column: 1; }
  .cta-band .button { grid-column: 2; grid-row: 1 / span 2; }
}

@media (max-width: 900px) {
  :root { --wrap: min(100% - 34px, 1180px); }
  h2 { font-size: 2.75rem; }
  .top-strip { display: none; }
  .site-header,
  body.is-scrolled .site-header {
    top: 9px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: calc(100% - 18px);
    min-height: 60px;
    padding: 7px;
    background: #112217;
  }
  .mobile-menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 10px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }
  body.is-menu-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.is-menu-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
  body.is-menu-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    width: 100%;
    justify-self: stretch;
    display: grid;
    gap: 1px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: rgba(17, 34, 23, 0.98);
    box-shadow: 0 22px 52px rgba(5, 12, 7, 0.3);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  body.is-menu-open .site-nav { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: 13px 14px; color: rgba(255, 255, 255, 0.82); background: rgba(255, 255, 255, 0.04); font-size: 0.9rem; }
  .site-nav a::after { display: none; }
  .header-brand { position: absolute; left: 50%; min-width: auto; transform: translateX(-50%); font-size: 0.58rem; }
  .header-brand img { width: 30px; height: 30px; }
  .header-actions { grid-column: 3; }
  .header-quote { min-height: 46px; padding: 0 14px; }
  .home-hero { height: auto; min-height: 740px; max-height: none; }
  .hero-content { min-height: 740px; padding: 112px 0 116px; }
  .hero-content h1 { max-width: 700px; font-size: 2.8rem; }
  .hero-lead { max-width: 620px; font-size: 1rem; }
  .hero-signals { max-width: 620px; }
  .sub-hero,
  .sub-hero__content { min-height: 590px; }
  .sub-hero__content { padding: 116px 0 106px; }
  .sub-hero__content h1 { font-size: 2.75rem; }
  .route-band__inner,
  .audience-intro,
  .split-heading,
  .page-intro__grid,
  .story-grid,
  .article-section__inner,
  .faq-layout,
  .gallery-feature,
  .gallery-feature--reverse,
  .quote-page-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .route-band__inner { gap: 24px; }
  .route-band__inner .button { justify-self: start; }
  .audience-intro .section-heading { min-height: auto; }
  .feature-photo { min-height: 370px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 205px; }
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-grid .link-card { min-height: 240px; }
  .story-grid { gap: 30px; }
  .story-photo { aspect-ratio: 1.45; }
  .highlights,
  .related-grid { grid-template-columns: 1fr; }
  .highlights article,
  .related-grid .link-card { min-height: 190px; }
  .article-section__inner { gap: 34px; }
  .article-section h2 { max-width: 700px; font-size: 2.65rem; }
  .faq-layout { gap: 34px; }
  .gallery-feature { gap: 32px; }
  .gallery-feature--reverse figure { order: 0; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-details article,
  .contact-details article:first-child { grid-column: 1; }
}

@media (max-width: 680px) {
  :root { --wrap: min(100% - 28px, 1180px); }
  body { font-size: 15px; }
  h2 { font-size: 2.2rem; }
  main > section:not(.home-hero):not(.sub-hero) h2,
  main > section:not(.home-hero):not(.sub-hero) .eyebrow {
    margin-inline: auto;
    text-align: center;
  }
  .section { padding: 78px 0; }
  .elevated { padding: 26px 22px; }
  .elevated::before { right: 22px; left: 22px; }
  .header-brand span { display: none; }
  .header-brand img { width: 38px; height: 38px; }
  .header-quote { padding: 0 12px; font-size: 0.78rem; }
  .site-intro__brand { width: 82vw; }
  .site-intro__brand span { font-size: 0.66rem; }
  .site-intro { display: none; }
  .hero-media img { animation: none; transform: none; }
  .home-hero { min-height: 780px; }
  .hero-content { width: calc(100% - 28px); min-height: 780px; padding-top: 104px; padding-bottom: 114px; }
  .hero-content h1 { font-size: 2.25rem; line-height: 1.02; }
  .hero-lead { margin-top: 18px; font-size: 0.94rem; line-height: 1.5; }
  .hero-actions { display: grid; width: 100%; max-width: 360px; }
  .hero-actions .button { width: 100%; }
  .hero-signals { grid-template-columns: 1fr; margin-top: 24px; }
  .hero-signals span { min-height: 52px; padding: 8px 12px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .hero-signals span:last-child { border-bottom: 0; }
  .hero-wave { height: 86px; }
  .sub-hero,
  .sub-hero__content { min-height: 610px; }
  .sub-hero__content { padding-top: 104px; }
  .sub-hero__content h1 { font-size: 2.25rem; }
  .sub-hero__content > p:not(.eyebrow) { font-size: 0.94rem; }
  .sub-hero__actions { display: grid; gap: 14px; justify-items: start; }
  .breadcrumbs { margin-bottom: 24px; }
  .route-band { padding: 46px 0 50px; }
  .route-band h2 { font-size: 1.9rem; }
  .section-heading > p:not(.eyebrow) { font-size: 0.94rem; }
  .feature-photo { min-height: 300px; }
  .offer-grid,
  .proof-grid,
  .file-grid,
  .process-line,
  .locations-grid { grid-template-columns: 1fr; }
  .locations-grid article:last-child { grid-column: 1; }
  .link-card,
  .offer-grid .link-card,
  .proof-grid article,
  .file-grid article { min-height: 200px; }
  .process-line li { min-height: 188px; }
  .quote-form { grid-template-columns: 1fr; padding: 18px; }
  .quote-form label,
  .quote-form .full { grid-column: 1; }
  .file-field { min-height: 165px; }
  .contact-links { display: grid; }
  .contact-links a { overflow-wrap: anywhere; }
  .article-section { padding: 72px 0; }
  .article-section h2 { font-size: 2.15rem; }
  .check-list { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; gap: 18px; padding: 42px 20px; text-align: center; }
  .cta-band h2 { font-size: 2rem; }
  .cta-band > p,
  .cta-band .button { grid-column: 1; grid-row: auto; }
  .cta-band .button { justify-self: center; }
  .gallery-feature figure { aspect-ratio: 1; }
  .contact-primary { padding: 28px; }
  .contact-primary h2 { font-size: 2.2rem; }
  .contact-details article { min-height: 190px; padding: 24px; }
  .site-footer {
    min-height: 830px;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 42C280 16 430 88 720 88C1010 88 1160 16 1440 42V900H0Z'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 42C280 16 430 88 720 88C1010 88 1160 16 1440 42V900H0Z'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
  }
  .footer-content { width: calc(100% - 28px); padding-top: 170px; }
  .footer-brand img { width: 260px; }
  .footer-content h2 { font-size: 2.35rem; }
  .footer-content address { display: grid; width: 100%; gap: 9px; padding: 18px; }
  .footer-content address a { overflow-wrap: anywhere; }
  .footer-menu { display: grid; grid-template-columns: repeat(2, 1fr); width: 100%; gap: 4px; }
  .footer-menu a { padding: 9px; border: 1px solid rgba(255, 255, 255, 0.14); }
}

@media (max-width: 390px) {
  .header-quote { font-size: 0.72rem; }
  .hero-content h1 { font-size: 2.05rem; }
  .sub-hero__content h1 { font-size: 2rem; }
  .footer-content h2 { font-size: 2.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; }
  .site-intro { display: none; }
  .hero-media img { transform: none; }
  .reveal,
  .stagger-group > *,
  .media-reveal { opacity: 1; transform: none; clip-path: none; }
}
