:root {
    --bg: #f4f8ee;
    --bg-soft: #e8f1df;
    --ink: #121614;
    --ink-soft: #2d3631;
    --line: #b8cda9;
    --accent: #edf240;
    --accent-deep: #357c2e;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(20, 42, 14, 0.18);
    --radius: 1.3rem;
    --container: min(1140px, calc(100% - 2.4rem));
    --header-h: 88px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    padding-bottom: 62px;
}

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

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

h1,
h2,
h3,
.brand strong {
    font-family: "Sora", sans-serif;
    letter-spacing: -0.02em;
}

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

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--accent-deep);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 110;
    padding: 0.72rem 0 0;
    transition: padding 0.3s ease;
}

.header-shell {
    width: var(--container);
    margin-inline: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(12, 24, 9, 0.52);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 34px rgba(9, 20, 7, 0.28);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header.is-scrolled .header-shell,
.site-header.menu-open .header-shell {
    background: rgba(14, 29, 11, 0.9);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 40px rgba(9, 20, 7, 0.4);
}

.site-header.is-scrolled {
    padding-top: 0.4rem;
}

.header-inner {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 0.9rem;
    padding: 0 0.55rem 0 0.95rem;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 0.1rem;
    color: var(--white);
    padding-left: 0.95rem;
    position: relative;
    white-space: nowrap;
}

.brand::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    transform: translateY(-50%);
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.2);
}

.brand strong {
    font-size: 1.14rem;
    letter-spacing: 0;
}

.brand span {
    font-size: 0.66rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    opacity: 0.82;
}

.main-nav {
    display: flex;
    gap: 0.16rem;
    align-items: center;
    justify-self: center;
    padding: 0.22rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
}

.main-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.82rem;
    white-space: nowrap;
    border-radius: 999px;
    padding: 0.45rem 0.72rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.14);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.header-quick {
    display: inline-flex;
    flex-direction: column;
    padding-right: 0.55rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1.15;
    color: var(--white);
}

.header-quick span {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.74;
}

.header-quick strong {
    margin-top: 0.15rem;
    font-size: 0.86rem;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    position: relative;
    border-radius: 999px;
    justify-self: end;
}

.menu-toggle span {
    position: absolute;
    left: 0.62rem;
    right: 0.62rem;
    height: 2px;
    background: var(--white);
    transition: transform 0.25s ease;
}

.menu-toggle span:first-child {
    top: 0.96rem;
}

.menu-toggle span:last-child {
    top: 1.52rem;
}

.site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.78rem 1.3rem;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-small {
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #1f240b;
}

.btn-accent:hover {
    background: #f7fa73;
    border-color: #f7fa73;
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.56);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.11);
}

.btn-outline-dark {
    border-color: rgba(23, 37, 34, 0.45);
    color: var(--ink);
    background: transparent;
}

.btn-outline-dark:hover {
    border-color: rgba(23, 37, 34, 0.9);
    background: rgba(23, 37, 34, 0.05);
}

.hero {
    min-height: 100svh;
    display: block;
    color: var(--white);
    position: relative;
    overflow: clip;
    background:
        radial-gradient(circle at 86% 14%, rgba(237, 242, 64, 0.18), transparent 34%),
        radial-gradient(circle at 14% 86%, rgba(237, 242, 64, 0.12), transparent 38%),
        linear-gradient(142deg, #14250f 0%, #24501b 52%, #3a7426 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg, rgba(6, 13, 5, 0.84) 0%, rgba(6, 13, 5, 0.68) 38%, rgba(6, 13, 5, 0.6) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: repeating-linear-gradient(
        -35deg,
        rgba(255, 255, 255, 0.05) 0,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 13px
    );
    pointer-events: none;
    opacity: 0.24;
}

.hero-grid {
    position: relative;
    z-index: 2;
    width: var(--container);
    margin-inline: auto;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + clamp(1.7rem, 5vh, 3.2rem)) 0 clamp(2rem, 6vh, 3.6rem);
}

.hero-copy {
    max-width: min(50rem, 100%);
}

.hero-copy h1 {
    margin-top: 0.75rem;
    font-size: clamp(2.15rem, 5.4vw, 5.7rem);
    line-height: 0.98;
    max-width: 10.5ch;
    text-wrap: balance;
}

.hero-lead {
    margin-top: 1.05rem;
    font-size: clamp(1rem, 1.38vw, 1.18rem);
    max-width: 50ch;
    color: rgba(255, 255, 255, 0.92);
}

.hero-copy .eyebrow {
    color: rgba(255, 214, 123, 0.96);
}

.hero-actions {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-flow {
    margin: 1.35rem 0 0;
    padding: 0.75rem 0;
    list-style: none;
    display: grid;
    gap: 0.44rem;
    max-width: 44rem;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-flow li {
    display: grid;
    grid-template-columns: 1.7rem 1fr;
    gap: 0.66rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.96rem;
}

.hero-flow span {
    width: 1.7rem;
    height: 1.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #1c240a;
    background: var(--accent);
}

.hero-points,
.bigbag-points,
.location-list {
    margin-top: 1.7rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.72rem;
    font-size: 0.96rem;
}

.hero-points {
    color: rgba(255, 255, 255, 0.95);
    margin-top: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.46rem;
}

.hero-points li,
.bigbag-points li,
.location-list li {
    display: flex;
    align-items: center;
    gap: 0.58rem;
}

.hero-points li::before,
.bigbag-points li::before,
.location-list li::before {
    content: "";
    flex: none;
    width: 0.56rem;
    height: 0.56rem;
    border-radius: 999px;
    background: var(--accent);
}

.hero-points li {
    padding: 0.42rem 0.64rem 0.4rem 0.56rem;
    border-radius: 999px;
    background: rgba(8, 15, 13, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.hero-points li::before {
    width: 0.42rem;
    height: 0.42rem;
}

.section {
    padding: clamp(3.9rem, 10vw, 7rem) 0;
}

.section-muted {
    background: var(--bg-soft);
}

.section-fleet {
    color: var(--white);
    background:
        radial-gradient(circle at 82% 14%, rgba(237, 242, 64, 0.24), transparent 38%),
        linear-gradient(152deg, #10210f 0%, #1f4419 56%, #356e26 100%);
}

.section-fleet .eyebrow {
    color: rgba(241, 244, 153, 0.95);
}

.section-fleet .section-head h2 {
    color: rgba(255, 255, 255, 0.98);
}

.fleet-layout {
    margin-top: 1.9rem;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
    gap: clamp(0.95rem, 2.1vw, 1.4rem);
    align-items: stretch;
}

.fleet-hero {
    margin: 0;
    min-height: min(42rem, 66vw);
    border-radius: 1.35rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #132410;
    position: relative;
    box-shadow: 0 24px 54px rgba(4, 12, 4, 0.34);
}

.fleet-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fleet-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 14, 5, 0.02) 36%, rgba(6, 14, 5, 0.8) 100%);
    pointer-events: none;
}

.fleet-hero figcaption {
    position: absolute;
    z-index: 1;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    gap: 0.22rem;
}

.fleet-hero figcaption strong {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.08rem, 1.75vw, 1.55rem);
    line-height: 1.1;
}

.fleet-hero figcaption span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 38ch;
}

.fleet-grid {
    display: grid;
    gap: clamp(0.9rem, 1.9vw, 1.2rem);
}

.fleet-shot {
    margin: 0;
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    min-height: min(20rem, 33vw);
    box-shadow: 0 18px 42px rgba(4, 10, 9, 0.28);
}

.fleet-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fleet-shot:nth-child(1) img {
    object-position: center;
}

.fleet-shot:nth-child(2) img {
    object-position: center 26%;
}

.fleet-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 9, 8, 0) 44%, rgba(4, 9, 8, 0.76) 100%);
}

.fleet-shot figcaption {
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.85rem;
    z-index: 1;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.93);
    font-weight: 600;
}

.section-head {
    max-width: 45rem;
}

.section-head h2 {
    margin-top: 0.85rem;
    font-size: clamp(1.6rem, 2.8vw, 2.7rem);
    line-height: 1.15;
}

.offer-status {
    margin-top: 1.25rem;
    max-width: 66ch;
    color: var(--ink);
    font-weight: 600;
}

.capacity-board {
    margin-top: 1.5rem;
    display: grid;
    gap: 1.45rem;
}

.capacity-group {
    border-top: 1px solid var(--line);
    padding-top: 0.9rem;
}

.capacity-group-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.3rem;
}

.capacity-group-head h3 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.capacity-group-head p {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    font-weight: 700;
}

.capacity-rows {
    display: grid;
}

.capacity-row {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: minmax(16rem, 1.15fr) 1fr auto;
    align-items: center;
    gap: 1rem;
}

.capacity-main {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.8rem;
}

.capacity-size {
    font-family: "Sora", sans-serif;
    font-size: clamp(1rem, 1.55vw, 1.24rem);
    letter-spacing: -0.01em;
    min-width: 4.4rem;
}

.capacity-meter {
    height: 0.54rem;
    border-radius: 999px;
    background: rgba(23, 37, 34, 0.16);
    overflow: hidden;
}

.capacity-meter span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent) 0%, #f6f98f 100%);
}

.capacity-use {
    color: var(--ink-soft);
}

.size-row-cta {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    justify-self: start;
    border: 1px solid rgba(23, 37, 34, 0.26);
    border-radius: 999px;
    padding: 0.42rem 0.7rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.size-row-cta:hover {
    background: rgba(23, 37, 34, 0.07);
    border-color: rgba(23, 37, 34, 0.52);
}

.capacity-cta {
    justify-self: start;
}

.section-note {
    margin-top: 1.2rem;
    max-width: 58ch;
    color: var(--ink-soft);
}

.waste-layout {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(1.4rem, 3vw, 3.1rem);
    align-items: start;
}

.waste-media {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(23, 37, 34, 0.16);
    box-shadow: 0 18px 38px rgba(13, 24, 21, 0.13);
    background: #d9e5d0;
}

.waste-media img {
    width: 100%;
    height: min(30rem, 52vw);
    object-fit: cover;
    display: block;
}

.waste-media figcaption {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    padding: 0.85rem 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(8, 16, 7, 0.84);
}

.waste-media figcaption a {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #f2f780;
}

.waste-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
}

.waste-item {
    border-bottom: 1px solid var(--line);
    padding: 1.05rem 0;
    display: grid;
    gap: 0.8rem;
}

.waste-meta h3 {
    font-size: clamp(1.02rem, 1.55vw, 1.32rem);
}

.waste-meta p {
    margin-top: 0.36rem;
    color: var(--ink-soft);
}

.waste-tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.44rem;
}

.waste-tags li {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    padding: 0.3rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(23, 37, 34, 0.22);
    background: rgba(255, 255, 255, 0.7);
}

.photo-slot {
    border: 2px dashed rgba(214, 139, 0, 0.56);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 183, 3, 0.18), rgba(23, 37, 34, 0.06)),
        repeating-linear-gradient(-40deg, rgba(23, 37, 34, 0.08), rgba(23, 37, 34, 0.08) 10px, transparent 10px, transparent 18px);
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.35rem;
    min-height: 12rem;
    position: relative;
    overflow: hidden;
}

.photo-slot p {
    font-size: 0.96rem;
    font-weight: 700;
}

.photo-slot span,
.photo-slot figcaption {
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.8;
}

.section-bigbag {
    background: #edf4e4;
}

.bigbag-grid {
    display: grid;
    grid-template-columns: 1fr minmax(14rem, 0.85fr);
    gap: clamp(1.4rem, 3vw, 3rem);
    align-items: center;
}

.bigbag-lead {
    margin-top: 1rem;
    color: var(--ink-soft);
    max-width: 56ch;
}

.bigbag-points {
    color: var(--ink);
}

.slot-bag {
    min-height: 20rem;
    aspect-ratio: 4 / 3;
}

.photo-live {
    border: 1px solid rgba(23, 37, 34, 0.18);
    background: #d6e3cb;
    padding: 0;
}

.photo-live img {
    width: 100%;
    height: 100%;
    min-height: 20rem;
    object-fit: cover;
    display: block;
}

.photo-live figcaption {
    position: absolute;
    left: 0.72rem;
    right: 0.72rem;
    bottom: 0.72rem;
    border-radius: 0.74rem;
    padding: 0.6rem 0.72rem;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    background: rgba(10, 20, 8, 0.74);
}

.steps {
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.step {
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: minmax(3.4rem, 5.5rem) 1fr;
    gap: 1rem;
    align-items: start;
}

.step-number {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.6rem, 2.2vw, 2.4rem);
    line-height: 1;
    color: var(--accent-deep);
}

.step h3 {
    font-size: clamp(1.05rem, 1.9vw, 1.45rem);
}

.step p {
    margin-top: 0.25rem;
    color: var(--ink-soft);
}

.section-location {
    background: #dfead5;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    gap: clamp(1.4rem, 3vw, 3rem);
    align-items: center;
}

.location-copy h2 {
    margin-top: 0.8rem;
    font-size: clamp(1.7rem, 3.2vw, 2.9rem);
}

.location-copy p:not(.eyebrow) {
    margin-top: 0.95rem;
    color: var(--ink-soft);
    max-width: 45ch;
}

.location-list {
    margin-top: 1.3rem;
    color: var(--ink);
}

.map-shell {
    display: grid;
    gap: 1rem;
}

.map-canvas {
    position: relative;
    min-height: 20rem;
    border-radius: var(--radius);
    border: 1px solid rgba(23, 37, 34, 0.16);
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 36%, rgba(255, 255, 255, 0.6), transparent 48%),
        linear-gradient(125deg, #c6ddaf, #9ec47e 52%, #83ab63 100%);
}

.map-canvas::before,
.map-canvas::after {
    content: "";
    position: absolute;
    inset: 0;
}

.map-canvas::before {
    background:
        linear-gradient(90deg, transparent 18%, rgba(255, 255, 255, 0.35) 18.4%, rgba(255, 255, 255, 0.35) 19.2%, transparent 19.6%),
        linear-gradient(14deg, transparent 42%, rgba(255, 255, 255, 0.35) 42.5%, rgba(255, 255, 255, 0.35) 43.6%, transparent 44.1%),
        linear-gradient(130deg, transparent 63%, rgba(255, 255, 255, 0.3) 63.2%, rgba(255, 255, 255, 0.3) 64.4%, transparent 64.8%);
}

.map-canvas::after {
    background: repeating-linear-gradient(
        45deg,
        rgba(23, 37, 34, 0.06) 0,
        rgba(23, 37, 34, 0.06) 8px,
        transparent 8px,
        transparent 16px
    );
}

.map-marker {
    position: absolute;
    z-index: 1;
    background: rgba(11, 20, 18, 0.78);
    color: var(--white);
    font-size: 0.73rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.35rem 0.58rem;
    border-radius: 999px;
}

.map-marker::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.42rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid rgba(11, 20, 18, 0.6);
}

.marker-main {
    left: 44%;
    top: 47%;
    background: #21471d;
}

.marker-a {
    left: 56%;
    top: 28%;
}

.marker-b {
    left: 30%;
    top: 66%;
}

.marker-c {
    left: 68%;
    top: 68%;
}

.marker-d {
    left: 24%;
    top: 21%;
}

.area-tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.area-tags li {
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid rgba(23, 37, 34, 0.2);
    padding: 0.32rem 0.56rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
}

.section-sms {
    background: #f6faef;
}

.sms-form {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.95rem;
}

.sms-form label {
    display: flex;
    flex-direction: column;
    gap: 0.44rem;
    font-weight: 700;
    font-size: 0.94rem;
}

.field-note {
    font-size: 0.78rem;
    color: var(--ink-soft);
    font-weight: 600;
}

.sms-form input,
.sms-form select,
.sms-form textarea {
    border: 1px solid rgba(23, 37, 34, 0.24);
    border-radius: 0.9rem;
    padding: 0.82rem 0.9rem;
    font: inherit;
    color: var(--ink);
    background: var(--white);
}

.sms-form input:focus,
.sms-form select:focus,
.sms-form textarea:focus {
    outline: 2px solid rgba(255, 183, 3, 0.45);
    outline-offset: 1px;
}

.full-row {
    grid-column: 1 / -1;
}

.sms-actions {
    margin-top: 0.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.sms-helper {
    color: var(--ink-soft);
    font-size: 0.93rem;
}

.section-contact {
    color: var(--white);
    background:
        radial-gradient(circle at 80% 18%, rgba(237, 242, 64, 0.24), transparent 36%),
        linear-gradient(145deg, #14270f 0%, #2a4d20 100%);
}

.contact-shell {
    max-width: 52rem;
}

.contact-shell h2 {
    margin-top: 0.8rem;
    font-size: clamp(1.65rem, 3.2vw, 3.15rem);
    line-height: 1.08;
}

.contact-links {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.7rem;
}

.contact-links a {
    font-size: clamp(1.03rem, 1.9vw, 1.34rem);
    font-weight: 700;
    width: fit-content;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.contact-links a:hover {
    color: var(--accent);
}

.site-footer {
    background: #122111;
    color: rgba(255, 255, 255, 0.74);
    padding: 1.2rem 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-inner a {
    color: var(--accent);
    font-weight: 600;
}

.floating-call {
    position: fixed;
    right: 1.1rem;
    bottom: 1.2rem;
    z-index: 90;
    background: var(--accent);
    color: #1f240b;
    padding: 0.86rem 1.18rem;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(14, 22, 20, 0.28);
}

.mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: none;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #162a14;
}

.mobile-contact-bar a {
    text-align: center;
    padding: 0.9rem 1rem;
    color: var(--white);
    font-weight: 700;
}

.mobile-contact-bar a:first-child {
    background: var(--accent);
    color: #1f240b;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body.is-ready .hero-copy > * {
    animation: heroRise 0.72s ease both;
}

body.is-ready .hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
body.is-ready .hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
body.is-ready .hero-copy > *:nth-child(3) { animation-delay: 0.18s; }
body.is-ready .hero-copy > *:nth-child(4) { animation-delay: 0.24s; }
body.is-ready .hero-copy > *:nth-child(5) { animation-delay: 0.31s; }
body.is-ready .hero-copy > *:nth-child(6) { animation-delay: 0.38s; }

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1160px) {
    .main-nav a {
        font-size: 0.78rem;
        padding: 0.42rem 0.58rem;
    }

    .header-quick {
        display: none;
    }
}

@media (max-width: 980px) {
    :root {
        --header-h: 76px;
    }

    .site-header {
        padding-top: 0.52rem;
    }

    .header-shell {
        border-radius: 1rem;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .header-inner {
        min-height: 66px;
        grid-template-columns: 1fr auto;
        padding: 0 0.4rem 0 0.85rem;
    }

    .brand strong {
        font-size: 1.06rem;
    }

    .brand span {
        font-size: 0.62rem;
    }

    .site-header.menu-open .main-nav {
        position: absolute;
        top: calc(100% + 0.45rem);
        left: 0;
        right: 0;
        display: grid;
        gap: 0.35rem;
        padding: 0.8rem;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 1rem;
        background: rgba(10, 18, 16, 0.97);
        box-shadow: 0 16px 36px rgba(8, 16, 14, 0.35);
    }

    .site-header.menu-open .main-nav a {
        padding: 0.62rem 0.72rem;
        border-radius: 0.72rem;
        font-size: 0.93rem;
        background: transparent;
    }

    .site-header.menu-open .main-nav a:hover {
        background: rgba(255, 255, 255, 0.12);
    }

    .waste-layout,
    .bigbag-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .fleet-layout {
        grid-template-columns: 1fr;
    }

    .fleet-hero {
        min-height: 20.5rem;
    }

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

    .fleet-shot {
        min-height: 13rem;
    }

    .hero-grid {
        min-height: 90svh;
        padding-top: calc(var(--header-h) + 1.9rem);
        padding-bottom: 2.1rem;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-copy h1 {
        max-width: 14ch;
    }

    .hero-flow {
        max-width: 100%;
    }

    .capacity-row,
    .waste-item,
    .step {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .capacity-group-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .capacity-main {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .waste-media,
    .slot-bag {
        max-width: 100%;
    }

    .floating-call {
        display: none;
    }

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

@media (max-width: 640px) {
    :root {
        --header-h: 72px;
    }

    body {
        padding-bottom: 58px;
    }

    .hero-grid {
        min-height: 86svh;
        padding-top: calc(var(--header-h) + 1.7rem);
        padding-bottom: 1.7rem;
    }

    .hero-copy h1 {
        max-width: 11.5ch;
    }

    .hero-lead {
        max-width: 38ch;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-points {
        gap: 0.42rem;
    }

    .hero-flow li {
        grid-template-columns: 1.55rem 1fr;
        font-size: 0.9rem;
    }

    .hero-flow span {
        width: 1.55rem;
        height: 1.55rem;
        font-size: 0.75rem;
    }

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

    .waste-media img {
        height: 17rem;
    }

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

    .fleet-hero {
        min-height: 18rem;
    }

    .fleet-shot {
        min-height: 11.8rem;
    }

    .map-canvas {
        min-height: 17rem;
    }

    .map-marker {
        font-size: 0.66rem;
    }
}

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

    .reveal,
    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}
