:root {
  --forest: #063c2d;
  --forest-deep: #022c22;
  --forest-soft: #0b533e;
  --lime: #b7e34a;
  --lime-strong: #93cc23;
  --paper: #f7f8f3;
  --surface: #ffffff;
  --ink: #10211a;
  --muted: #5c6b64;
  --copper: #b76b35;
  --line: rgb(6 60 45 / 14%);
  --radius: 1.25rem;
  --radius-sm: .75rem;
  --shadow: 0 1.25rem 3.5rem rgb(3 45 33 / 14%);
  --wrap: 74rem;
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Instrument Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
}

body.has-menu {
  overflow: hidden;
}

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

.gtm-noscript {
  display: none;
  visibility: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

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

:focus-visible {
  outline: .22rem solid var(--lime);
  outline-offset: .22rem;
}

#materiais,
#logistica,
#processo,
#rita,
#patio,
#cotacao {
  scroll-margin-top: 5rem;
}

.shell {
  width: min(calc(100% - 2rem), var(--wrap));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  transform: translateY(-170%);
  padding: .65rem .9rem;
  border-radius: .5rem;
  background: var(--lime);
  color: var(--forest-deep);
  font-weight: 800;
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--lime);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .135em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.7rem;
  height: 2px;
  background: currentcolor;
  content: "";
}

.eyebrow-dark {
  color: var(--forest-soft);
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: .91;
  text-wrap: balance;
}

h1,
h2 {
  font-weight: 800;
  letter-spacing: -.045em;
}

h1 em,
h2 em {
  color: var(--lime);
  font-style: normal;
}

.section h2,
.patio h2 {
  color: var(--forest-deep);
  font-size: clamp(2.75rem, 9vw, 5.25rem);
}

.section h2 em,
.patio h2 em {
  color: var(--forest-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .72rem 1rem;
  border: 1px solid transparent;
  border-radius: .55rem;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 1.08rem;
  height: 1.08rem;
  flex: none;
  fill: currentcolor;
}

.button-primary {
  background: var(--lime);
  color: var(--forest-deep);
  box-shadow: 0 .65rem 1.6rem rgb(1 42 31 / 18%);
}

.button-primary:hover {
  background: #caef70;
  box-shadow: 0 .85rem 1.9rem rgb(1 42 31 / 25%);
}

.button-secondary {
  border-color: var(--forest-deep);
  background: transparent;
  color: var(--forest-deep);
}

.button-secondary:hover {
  background: var(--forest-deep);
  color: var(--surface);
}

.button-large {
  min-height: 56px;
  padding-inline: 1.35rem;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--forest-deep);
  color: var(--surface);
}

.header-inner {
  display: flex;
  min-height: 4.35rem;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .52rem;
  color: var(--surface);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}

.brand strong {
  color: var(--lime);
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 2px solid var(--lime);
  border-radius: 50% 50% 50% .24rem;
  color: var(--lime);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  transform: rotate(-10deg);
}

.menu-toggle {
  display: grid;
  width: 44px;
  min-height: 44px;
  place-content: center;
  gap: .27rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--surface);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: currentcolor;
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(.56rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-.56rem) rotate(-45deg);
}

.primary-nav {
  position: absolute;
  z-index: 5;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  gap: .15rem;
  padding: .9rem max(1rem, calc((100vw - var(--wrap)) / 2));
  border-top: 1px solid rgb(255 255 255 / 12%);
  background: var(--forest-deep);
  box-shadow: 0 1rem 2rem rgb(0 0 0 / 20%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-.5rem);
  transition: opacity .18s ease, transform .18s ease;
}

.primary-nav[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-nav a {
  padding: .7rem .2rem;
  color: rgb(255 255 255 / 82%);
  font-size: .9rem;
  font-weight: 700;
}

.primary-nav a:hover {
  color: var(--lime);
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgb(5 53 39 / 94%), rgb(2 44 34 / 99%)),
    var(--forest);
  color: var(--surface);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  border: 1px solid rgb(183 227 74 / 17%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 11rem;
  left: -15rem;
  width: 33rem;
  height: 33rem;
}

.hero::after {
  top: -17rem;
  right: -22rem;
  width: 45rem;
  height: 45rem;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .23;
  background-image:
    radial-gradient(circle at 14% 24%, rgb(183 227 74 / 34%) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 71%, rgb(255 255 255 / 24%) 0 1px, transparent 1.5px),
    linear-gradient(115deg, transparent 0 47%, rgb(255 255 255 / 5%) 47% 48%, transparent 48% 100%);
  background-size: 19px 19px, 23px 23px, 8px 8px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .3rem;
  padding-top: 2.6rem;
  padding-bottom: 2.7rem;
}

.hero-story {
  min-width: 0;
}

.hero h1 {
  max-width: 8ch;
  margin-top: .55rem;
  font-size: clamp(4.15rem, 21vw, 6.35rem);
}

.hero-story > .eyebrow,
.hero-story > h1,
.hero-story > .hero-lead,
.proof-row {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 25rem;
  margin-top: .95rem;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1rem, 3.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
  text-shadow: 0 .1rem .8rem rgb(2 44 34 / 88%);
}

.hero-media {
  position: relative;
  min-height: 14.25rem;
  margin-top: .35rem;
  margin-right: -1.1rem;
  margin-left: -1.1rem;
}

.hero-media::after {
  position: absolute;
  z-index: -1;
  right: 5%;
  bottom: 8%;
  width: 65%;
  height: 16%;
  border-radius: 50%;
  background: rgb(0 0 0 / 28%);
  content: "";
  filter: blur(1rem);
}

.hero-media img {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -4%;
  width: min(133%, 42rem);
  max-width: none;
  transform: translateY(-50%);
}

.hero-orbit {
  position: absolute;
  top: 8%;
  right: 10%;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgb(183 227 74 / 30%);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.hero-orbit::before {
  top: 6%;
  left: 7%;
  width: .45rem;
  height: .45rem;
}

.hero-orbit::after {
  right: -1rem;
  bottom: 11%;
  width: .8rem;
  height: .8rem;
}

.cargo-stamp {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 3%;
  display: grid;
  width: 5.35rem;
  height: 5.35rem;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  background: rgb(2 44 34 / 88%);
  color: var(--lime);
  font-family: var(--display);
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: .92;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(10deg);
}

.proof-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.2fr;
  gap: .35rem;
  margin-top: .15rem;
  text-shadow: 0 .1rem .8rem rgb(2 44 34 / 88%);
}

.proof-row > div {
  min-width: 0;
  padding: .55rem .35rem .15rem 0;
  border-top: 1px solid rgb(255 255 255 / 22%);
}

.proof-row dt {
  color: var(--lime);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.proof-row dd {
  margin: .15rem 0 0;
  color: rgb(255 255 255 / 70%);
  font-size: .64rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.quote-card {
  position: relative;
  padding: 1.3rem;
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-card::before {
  position: absolute;
  top: 0;
  right: 1.15rem;
  left: 1.15rem;
  height: .3rem;
  border-radius: 0 0 .35rem .35rem;
  background: var(--lime);
  content: "";
}

.quote-kicker {
  display: inline-block;
  margin-top: .18rem;
  color: var(--forest-soft);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.quote-card h2 {
  margin-top: .38rem;
  color: var(--forest-deep);
  font-size: clamp(2.25rem, 9vw, 3.2rem);
}

.quote-card > p:not(.quote-preview) {
  margin-top: .55rem;
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.4;
}

.quote-card form {
  display: grid;
  gap: .7rem;
  margin-top: 1.05rem;
}

.field {
  display: grid;
  gap: .28rem;
}

.field label {
  color: var(--forest-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.field input,
.field select {
  width: 100%;
  min-height: 46px;
  appearance: none;
  padding: .65rem .75rem;
  border: 1px solid rgb(6 60 45 / 23%);
  border-radius: .5rem;
  background-color: #fbfcf9;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.2;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.field select {
  padding-right: 2.1rem;
  background-image: linear-gradient(45deg, transparent 50%, var(--forest) 50%), linear-gradient(135deg, var(--forest) 50%, transparent 50%);
  background-position: calc(100% - .95rem) calc(50% - 1px), calc(100% - .65rem) calc(50% - 1px);
  background-repeat: no-repeat;
  background-size: .32rem .32rem, .32rem .32rem;
}

.field input::placeholder {
  color: #839089;
  font-weight: 500;
}

.field input:focus,
.field select:focus {
  border-color: var(--forest-soft);
  outline: 0;
  box-shadow: 0 0 0 .2rem rgb(147 204 35 / 28%);
}

.field [aria-invalid="true"] {
  border-color: #a94432;
  background-color: #fff8f5;
}

.field-error {
  min-height: .85rem;
  color: #973a29;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.2;
}

.location-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 4.8rem;
  gap: .55rem;
}

.quote-preview {
  min-height: 1.15rem;
  padding: .1rem 0;
  color: var(--forest-soft);
  font-size: .71rem;
  font-weight: 700;
  line-height: 1.3;
}

.quote-submit {
  width: 100%;
  min-height: 52px;
}

.quote-fine {
  display: block;
  color: var(--muted);
  font-size: .63rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.logistics-qualifier {
  display: grid;
  gap: .35rem;
  margin-top: .95rem;
  padding-top: .8rem;
  border-top: 1px solid var(--line);
}

.logistics-qualifier p {
  color: var(--muted);
  font-size: .71rem;
  line-height: 1.35;
}

.logistics-qualifier strong {
  color: var(--forest-deep);
}

.section {
  padding: 4.4rem 0;
}

.section-heading {
  max-width: 38rem;
}

.section-heading h2 {
  margin-top: .65rem;
}

.section-heading > p:last-child {
  max-width: 33rem;
  margin-top: .85rem;
  color: var(--muted);
  font-size: .96rem;
}

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

.section-heading.centered .eyebrow {
  justify-content: center;
}

.materials {
  position: relative;
  background:
    linear-gradient(135deg, transparent 0 85%, rgb(183 227 74 / 11%) 85% 100%),
    var(--paper);
}

.material-grid {
  display: grid;
  gap: .9rem;
  margin-top: 2rem;
}

.material-card {
  display: grid;
  grid-template-columns: 7.4rem minmax(0, 1fr);
  min-height: 8.8rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: 0 .6rem 1.7rem rgb(2 44 34 / 5%);
  transition: transform .2s ease, box-shadow .2s ease;
}

.material-card:hover {
  transform: translateY(-.28rem);
  box-shadow: 0 1rem 2.2rem rgb(2 44 34 / 12%);
}

.material-photo {
  min-height: 100%;
  background-color: #e7e9df;
  background-image: linear-gradient(rgb(0 0 0 / 4%), rgb(0 0 0 / 17%)), url("../assets/materials-atlas.webp");
  background-repeat: no-repeat;
  background-size: cover, 200% 200%;
}

.material-copper {
  background-position: center, left top;
}

.material-mixed {
  background-position: center, right top;
}

.material-aluminum {
  background-position: center, left bottom;
}

.material-other {
  background-position: center, right bottom;
}

.material-card > div:last-child {
  padding: 1rem .95rem;
}

.material-card span {
  color: var(--copper);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
}

.material-card h3 {
  margin-top: .04rem;
  color: var(--forest-deep);
  font-size: 1.62rem;
}

.material-card p {
  margin-top: .3rem;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.35;
}

.exclusion-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .6rem;
  margin-top: 1.35rem;
  padding: .9rem 1rem;
  border-left: .27rem solid var(--copper);
  background: #fff6ed;
  color: #623715;
  font-size: .75rem;
  line-height: 1.35;
}

.exclusion-note strong {
  width: 100%;
}

.exclusion-note span {
  padding: .2rem .45rem;
  border: 1px solid rgb(98 55 21 / 18%);
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 700;
}

.logistics-band {
  position: relative;
  overflow: hidden;
  padding: 4.4rem 0 3.8rem;
  background: var(--forest-deep);
  color: var(--surface);
}

.logistics-band::before {
  position: absolute;
  top: -7rem;
  left: -8rem;
  width: 23rem;
  height: 23rem;
  border: 1px solid rgb(183 227 74 / 19%);
  border-radius: 50%;
  content: "";
}

.logistics-grid {
  position: relative;
  display: grid;
  gap: 1.7rem;
}

.logistics-copy h2,
.rita-copy h2 {
  margin-top: .6rem;
  color: var(--surface);
  font-size: clamp(2.75rem, 9vw, 5.15rem);
}

.logistics-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: .85rem;
  color: rgb(255 255 255 / 76%);
}

.icon-list {
  display: grid;
  gap: .55rem;
  margin-top: 1.4rem;
  list-style: none;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgb(255 255 255 / 89%);
  font-size: .83rem;
  font-weight: 700;
}

.icon-list li::before {
  display: grid;
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest-deep);
  content: "✓";
  font-size: .72rem;
  font-weight: 900;
}

.capacity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: 1.5rem;
}

.capacity-row > div {
  padding: .75rem 0;
  border-top: 1px solid rgb(255 255 255 / 27%);
}

.capacity-row strong {
  display: block;
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: .9;
}

.capacity-row span {
  display: block;
  margin-top: .25rem;
  color: rgb(255 255 255 / 68%);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.logistics-media {
  position: relative;
  min-height: 14rem;
}

.logistics-media::after {
  position: absolute;
  right: 9%;
  bottom: 8%;
  left: 9%;
  height: 13%;
  border-radius: 50%;
  background: rgb(0 0 0 / 35%);
  content: "";
  filter: blur(.8rem);
}

.logistics-media img {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 108%;
  max-width: none;
  transform: translateY(-50%);
}

.service-levels {
  background: var(--surface);
}

.level-grid {
  display: grid;
  gap: .8rem;
  margin-top: 1.9rem;
}

.level-card {
  position: relative;
  min-height: 13rem;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcf9;
}

.level-number {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-deep);
  color: var(--lime);
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 800;
}

.level-card h3 {
  max-width: 14rem;
  margin-top: .7rem;
  color: var(--forest-deep);
  font-size: 2rem;
}

.level-card p {
  max-width: 23rem;
  margin-top: .55rem;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.level-card > strong {
  display: inline-block;
  margin-top: 1rem;
  color: var(--forest-soft);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.level-card-featured {
  border-color: transparent;
  background: var(--forest);
}

.level-card-featured .level-number {
  background: var(--lime);
  color: var(--forest-deep);
}

.level-card-featured h3,
.level-card-featured > strong {
  color: var(--surface);
}

.level-card-featured p {
  color: rgb(255 255 255 / 73%);
}

.process {
  padding-top: 1rem;
  background: var(--surface);
}

.process-panel {
  padding: 3rem 1rem;
  border-radius: calc(var(--radius) + .25rem);
  background:
    linear-gradient(135deg, rgb(183 227 74 / 13%) 0 25%, transparent 25% 100%),
    #edf2e9;
}

.process-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.3rem;
  list-style: none;
}

.process-list li {
  position: relative;
  padding-left: 3.15rem;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: 2.45rem;
  bottom: -1.25rem;
  left: 1.02rem;
  width: 1px;
  background: rgb(6 60 45 / 23%);
  content: "";
}

.process-list span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-deep);
  color: var(--lime);
  font-family: var(--display);
  font-weight: 800;
}

.process-list h3 {
  color: var(--forest-deep);
  font-size: 1.85rem;
}

.process-list p {
  max-width: 16rem;
  margin-top: .2rem;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.4;
}

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

.transparency-grid {
  display: grid;
  gap: 2rem;
}

.transparency-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: .85rem;
  color: var(--muted);
}

.payment-facts {
  display: grid;
  gap: .7rem;
  margin-top: 1.35rem;
}

.payment-facts article {
  padding: .9rem 1rem;
  border-left: 3px solid var(--lime-strong);
  background: var(--surface);
  box-shadow: 0 .5rem 1.1rem rgb(2 44 34 / 4%);
}

.payment-facts strong {
  color: var(--forest-deep);
  font-size: .86rem;
}

.payment-facts p {
  margin-top: .2rem;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.35;
}

.scale-figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest-deep);
  box-shadow: var(--shadow);
}

.scale-figure img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.scale-figure figcaption {
  padding: 1rem;
  color: rgb(255 255 255 / 78%);
  font-size: .76rem;
  line-height: 1.38;
}

.scale-figure figcaption strong {
  color: var(--lime);
}

.rita-band {
  position: relative;
  overflow: hidden;
  padding: 4.3rem 0;
  background: var(--forest);
  color: var(--surface);
}

.rita-band::after {
  position: absolute;
  right: -17rem;
  bottom: -17rem;
  width: 37rem;
  height: 37rem;
  border: 1px solid rgb(183 227 74 / 22%);
  border-radius: 50%;
  content: "";
}

.rita-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.rita-photo {
  position: relative;
  max-width: 22rem;
  overflow: hidden;
  border: .4rem solid rgb(255 255 255 / 11%);
  border-radius: 50% 50% 1.1rem 1.1rem;
  background: var(--forest-deep);
}

.rita-photo::after {
  position: absolute;
  right: .9rem;
  bottom: .9rem;
  width: 3.3rem;
  height: 3.3rem;
  border: 1px solid var(--lime);
  border-radius: 50%;
  content: "";
}

.rita-photo img {
  width: 100%;
  aspect-ratio: .9;
  object-fit: cover;
  object-position: 50% 35%;
}

.rita-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: .9rem;
  color: rgb(255 255 255 / 76%);
}

.trust-list {
  display: grid;
  gap: .45rem;
  margin-top: 1.2rem;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgb(255 255 255 / 92%);
  font-size: .82rem;
  font-weight: 700;
}

.trust-list li::before {
  width: .65rem;
  height: .65rem;
  flex: none;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

blockquote {
  max-width: 31rem;
  margin-top: 1.45rem;
  padding: .85rem 0 .85rem 1rem;
  border-left: 2px solid var(--lime);
  color: var(--lime);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.05;
}

.patio {
  background: var(--surface);
}

.patio-grid {
  display: grid;
  gap: 2rem;
}

.patio address {
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.55;
}

.patio address strong {
  color: var(--forest-deep);
  font-size: 1.08rem;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.3rem;
}

.hours-card {
  padding: 1.45rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgb(183 227 74 / 17%) 0 35%, transparent 35% 100%),
    var(--forest-deep);
  color: var(--surface);
  box-shadow: var(--shadow);
}

.hours-card h3 {
  color: var(--lime);
  font-size: 2rem;
}

.hours-card dl {
  display: grid;
  gap: .5rem;
  margin-top: 1.1rem;
}

.hours-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  font-size: .77rem;
}

.hours-card dt {
  color: rgb(255 255 255 / 69%);
}

.hours-card dd {
  color: var(--surface);
  font-weight: 700;
  text-align: right;
}

.hours-card > p {
  margin-top: 1rem;
  color: rgb(255 255 255 / 78%);
  font-size: .82rem;
}

.hours-card > p strong {
  color: var(--lime);
}

.final-cta {
  padding: 3.5rem 0;
  background: var(--lime);
  color: var(--forest-deep);
}

.final-cta-inner {
  display: grid;
  gap: 1.2rem;
}

.final-cta .eyebrow {
  color: var(--forest-soft);
}

.final-cta h2 {
  margin-top: .5rem;
  color: var(--forest-deep);
  font-size: clamp(2.75rem, 9vw, 4.5rem);
}

.final-cta p:not(.eyebrow) {
  margin-top: .55rem;
  color: rgb(2 44 34 / 75%);
}

.final-cta .button-primary {
  align-self: center;
  background: var(--forest-deep);
  color: var(--surface);
  box-shadow: none;
}

.final-cta .button-primary:hover {
  background: var(--forest);
}

.site-footer {
  padding: 3rem 0 6.6rem;
  background: #011e17;
  color: rgb(255 255 255 / 72%);
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

.brand-footer {
  color: var(--surface);
}

.footer-grid > div:first-child > p {
  max-width: 17rem;
  margin-top: .75rem;
  font-size: .77rem;
  line-height: 1.45;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: .35rem;
  font-size: .76rem;
}

.footer-grid strong {
  margin-bottom: .18rem;
  color: var(--lime);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: var(--lime);
}

.footer-fine {
  width: min(calc(100% - 2rem), var(--wrap));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 45%);
  font-size: .66rem;
}

.sticky-cta {
  position: fixed;
  z-index: 30;
  right: .75rem;
  bottom: .75rem;
  left: .75rem;
  min-height: 52px;
  box-shadow: 0 .8rem 2rem rgb(0 0 0 / 31%);
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}

.sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
}

.motion-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity .58s ease, transform .58s cubic-bezier(.2, .8, .2, 1);
}

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

@media (min-width: 40rem) {
  .shell {
    width: min(calc(100% - 3rem), var(--wrap));
  }

  .hero-grid {
    padding-top: 3.5rem;
  }

  .hero-media {
    min-height: 18.5rem;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }

  .hero-media img {
    right: 2%;
    width: min(113%, 43rem);
  }

  .cargo-stamp {
    right: 10%;
  }

  .proof-row {
    max-width: 31rem;
    gap: .75rem;
  }

  .quote-card {
    max-width: 37rem;
  }

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

  .material-card {
    grid-template-columns: 8.2rem minmax(0, 1fr);
  }

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

  .process-panel {
    padding: 3.4rem 2rem;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 1.7rem;
  }

  .process-list li:not(:last-child)::after {
    display: none;
  }

  .transparency-grid,
  .patio-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(16rem, .9fr);
    align-items: center;
  }

  .rita-grid {
    grid-template-columns: minmax(14rem, .78fr) minmax(0, 1.22fr);
    align-items: center;
  }

  .rita-photo {
    max-width: none;
  }

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

@media (min-width: 64rem) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    position: sticky;
    top: 0;
    background: rgb(2 44 34 / 96%);
    backdrop-filter: blur(.85rem);
  }

  .header-inner {
    min-height: 4.85rem;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.3rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav a {
    padding: .4rem 0;
    font-size: .81rem;
  }

  .header-cta {
    display: inline-flex;
    min-height: 42px;
    padding-inline: .9rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(23rem, .72fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5.5rem);
    min-height: 42rem;
    padding-top: 4.1rem;
    padding-bottom: 4.25rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(5.65rem, 8.5vw, 8.3rem);
  }

  .hero-lead {
    max-width: 28rem;
    margin-top: 1.15rem;
    font-size: 1.22rem;
  }

  .hero-media {
    min-height: 21.5rem;
    margin-top: -1.2rem;
    margin-right: -5.5rem;
    margin-left: -2rem;
  }

  .hero-media img {
    right: -4%;
    width: min(123%, 54rem);
  }

  .hero-orbit {
    top: 4%;
    right: 14%;
    width: 17rem;
    height: 17rem;
  }

  .cargo-stamp {
    right: 12%;
    bottom: 4%;
    width: 6.1rem;
    height: 6.1rem;
    font-size: 1.05rem;
  }

  .proof-row {
    margin-top: -1.15rem;
  }

  .proof-row dt {
    font-size: 2rem;
  }

  .quote-card {
    justify-self: end;
    width: 100%;
    max-width: 29rem;
    padding: 1.65rem;
  }

  .quote-card h2 {
    font-size: 3.15rem;
  }

  .section {
    padding: 6.4rem 0;
  }

  .section-heading > p:last-child {
    font-size: 1rem;
  }

  .material-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.6rem;
  }

  .material-card {
    display: block;
    min-height: 23rem;
  }

  .material-photo {
    min-height: 11rem;
  }

  .material-card > div:last-child {
    padding: 1rem 1.05rem 1.25rem;
  }

  .material-card h3 {
    font-size: 2rem;
  }

  .material-card p {
    font-size: .78rem;
  }

  .exclusion-note {
    margin-top: 1.6rem;
    padding: 1rem 1.15rem;
  }

  .exclusion-note strong {
    width: auto;
    margin-right: .25rem;
  }

  .logistics-band {
    padding: 6.5rem 0;
  }

  .logistics-grid {
    grid-template-columns: minmax(0, .9fr) minmax(28rem, 1.1fr);
    align-items: center;
    gap: 3rem;
  }

  .logistics-media {
    min-height: 24rem;
  }

  .logistics-media img {
    width: 120%;
  }

  .level-grid {
    gap: 1rem;
    margin-top: 2.6rem;
  }

  .level-card {
    min-height: 17rem;
    padding: 1.6rem;
  }

  .level-card h3 {
    font-size: 2.25rem;
  }

  .process {
    padding-top: 1.5rem;
  }

  .process-panel {
    padding: 4.2rem clamp(2rem, 6vw, 5rem);
  }

  .process-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .process-list li {
    padding: 3.1rem 0 0;
  }

  .process-list li:not(:last-child)::after {
    display: block;
    top: 1rem;
    right: -1rem;
    bottom: auto;
    left: auto;
    width: calc(100% - 1.75rem);
    height: 1px;
  }

  .process-list span {
    top: 0;
  }

  .transparency-grid {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, .88fr);
    gap: 4rem;
  }

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

  .payment-facts article {
    min-height: 100%;
  }

  .rita-band {
    padding: 6.5rem 0;
  }

  .rita-grid {
    grid-template-columns: minmax(20rem, .8fr) minmax(0, 1.2fr);
    gap: 5rem;
  }

  .rita-photo {
    max-width: 26rem;
  }

  .patio-grid {
    grid-template-columns: minmax(0, 1fr) minmax(23rem, .85fr);
    gap: 4.5rem;
  }

  .hours-card {
    padding: 2rem;
  }

  .final-cta {
    padding: 4.5rem 0;
  }

  .final-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 3rem;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .sticky-cta {
    display: none;
  }
}

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

  .motion-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
