:root {
  --brand-dark: #005e18;
  --brand-mid: #018b24;
  --brand-accent: #ff8c1a;
  --global-image-saturation: 1.5;
  --neutral-900: #0e1512;
  --neutral-700: #2d3b35;
  --neutral-400: #7c8c84;
  --neutral-200: #dfe6e1;
  --neutral-100: #f5faf6;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 30, 12, 0.22);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

:root {
  --font-sans: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: optional;
    src: url('media/poppins-300.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
    src: url('media/poppins-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: optional;
    src: url('media/poppins-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: optional;
    src: url('media/poppins-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
    src: url('media/poppins-700.woff2') format('woff2');
}

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

html,
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--neutral-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a:hover {
  text-decoration: underline;
}

.shell {
  width: min(1200px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 4px solid var(--brand-accent);
  transition: padding 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, backdrop-filter 0.18s ease;
}

.site-header.is-compact {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 24px rgba(0, 30, 12, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
  transition: padding 0.18s ease;
}

.site-header.is-compact .nav {
  padding: 0.6rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.brand-logo {
  width: 64px;
  height: auto;
}

.brand-wordmark {
  width: 142px;
  max-width: 42vw;
  height: auto;
  display: block;
}

.brand-horizontal {
  display: block;
  width: clamp(178px, 22vw, 246px);
  height: auto;
  aspect-ratio: 500 / 108;
  transition: width 0.18s ease;
}

.site-header.is-compact .brand-horizontal {
  width: clamp(150px, 19vw, 210px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--neutral-700);
}

.nav-links .pill {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand-mid));
  color: var(--white);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 30px;
  height: 30px;
  border: none;
  background: url('data:image/svg+xml,%3Csvg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%23005e18" stroke-width="2" stroke-linecap="round"%3E%3Cline x1="3" y1="6" x2="21" y2="6"/%3E%3Cline x1="3" y1="12" x2="21" y2="12"/%3E%3Cline x1="3" y1="18" x2="21" y2="18"/%3E%3C/svg%3E') center/contain no-repeat;
  position: relative;
  z-index: 1001;
}

.hero {
  min-height: 65vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--brand-dark);
  overflow: hidden;
}

.page-hero {
  min-height: auto;
  color: var(--neutral-900);
  background: linear-gradient(180deg, rgba(245, 250, 246, 0.98), rgba(255, 255, 255, 1));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-hero .page-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3rem;
}

.page-hero .lead {
  color: var(--neutral-700);
  max-width: 56ch;
}

.page-hero .hero-brandline span {
  color: var(--brand-mid);
}

.page-hero .stats {
  border-left-color: var(--brand-mid);
}

.page-hero .stats strong {
  color: var(--brand-dark);
}

.page-hero .btn.ghost {
  border-color: rgba(0, 94, 24, 0.25);
  color: var(--brand-dark);
}

.bunbury-page .page-hero {
  min-height: 65vh;
  color: var(--white);
  background: var(--brand-dark);
  border-bottom: none;
}

.bunbury-page .page-hero .page-hero-content {
  padding: 5rem 0 6rem;
}

.bunbury-page .page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.bunbury-page .page-hero .hero-brandline span {
  color: var(--brand-mid);
}

.bunbury-page .page-hero .stats {
  border-left-color: var(--brand-accent);
}

.bunbury-page .page-hero .stats strong {
  color: var(--white);
}

.bunbury-page .page-hero .btn.ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.burekup-page .page-hero {
  min-height: 65vh;
  color: var(--white);
  background: var(--brand-dark);
  border-bottom: none;
}

.burekup-page .page-hero .page-hero-content {
  padding: 5rem 0 6rem;
}

.burekup-page .page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.burekup-page .page-hero .hero-brandline span {
  color: var(--brand-mid);
}

.burekup-page .page-hero .stats {
  border-left-color: var(--brand-accent);
}

.burekup-page .page-hero .stats strong {
  color: var(--white);
}

.burekup-page .page-hero .btn.ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.collie-page .page-hero {
  min-height: 65vh;
  color: var(--white);
  background: var(--brand-dark);
  border-bottom: none;
}

.collie-page .page-hero .page-hero-content {
  padding: 5rem 0 6rem;
}

.collie-page .page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.collie-page .page-hero .hero-brandline span {
  color: var(--brand-mid);
}

.collie-page .page-hero .stats {
  border-left-color: var(--brand-accent);
}

.collie-page .page-hero .stats strong {
  color: var(--white);
}

.collie-page .page-hero .btn.ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.australind-page .page-hero {
  min-height: 65vh;
  color: var(--white);
  background: var(--brand-dark);
  border-bottom: none;
}

.australind-page .page-hero .page-hero-content {
  padding: 5rem 0 6rem;
}

.australind-page .page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.australind-page .page-hero .hero-brandline span {
  color: var(--brand-mid);
}

.australind-page .page-hero .stats {
  border-left-color: var(--brand-accent);
}

.australind-page .page-hero .stats strong {
  color: var(--white);
}

.australind-page .page-hero .btn.ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.harvey-page .page-hero {
  min-height: 65vh;
  color: var(--white);
  background: var(--brand-dark);
  border-bottom: none;
}

.harvey-page .page-hero .page-hero-content {
  padding: 5rem 0 6rem;
}

.harvey-page .page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.harvey-page .page-hero .hero-brandline span {
  color: var(--brand-mid);
}

.harvey-page .page-hero .stats {
  border-left-color: var(--brand-accent);
}

.harvey-page .page-hero .stats strong {
  color: var(--white);
}

.harvey-page .page-hero .btn.ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.eaton-page .page-hero {
  min-height: 65vh;
  color: var(--white);
  background: var(--brand-dark);
  border-bottom: none;
}

.eaton-page .page-hero .page-hero-content {
  padding: 5rem 0 6rem;
}

.eaton-page .page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.eaton-page .page-hero .hero-brandline span {
  color: var(--brand-mid);
}

.eaton-page .page-hero .stats {
  border-left-color: var(--brand-accent);
}

.eaton-page .page-hero .stats strong {
  color: var(--white);
}

.eaton-page .page-hero .btn.ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1) saturate(var(--global-image-saturation));
}

img {
  filter: saturate(var(--global-image-saturation));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 36%, rgba(0, 0, 0, 0.6) 68%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 6rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.hero h1 .hero-title-accent {
  color: var(--brand-accent);
}

.hero-brandline {
  display: block;
  margin-bottom: 0.55rem;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1;
  color: var(--brand-accent);
  letter-spacing: 0.02em;
}

.hero-brandline span {
  color: var(--brand-mid);
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.9);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--brand-accent);
  color: var(--neutral-900);
  box-shadow: 0 15px 30px rgba(255, 140, 26, 0.28);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn.primary:hover,
.btn.ghost:hover {
  transform: translateY(-2px);
}

.btn.full {
  width: 100%;
}

.stats {
  list-style: none;
  display: flex;
  gap: clamp(1rem, 5vw, 3rem);
  padding: 0 0 0 1.25rem;
  margin: 3rem 0 0;
  border-left: 4px solid var(--brand-accent);
}

.stats li {
  min-width: 120px;
}

.stats strong {
  font-size: 1.6rem;
  display: block;
  color: var(--white);
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.home-page main > section:nth-of-type(odd):not(.hero) {
  background: var(--neutral-100);
}

.home-page main > section:nth-of-type(even):not(.hero) {
  background: var(--white);
}

.area-page main > section {
  position: relative;
  isolation: isolate;
}

.area-page main > section:not(.hero)::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}

.area-page main > section:nth-of-type(odd):not(.hero)::before {
  background: var(--neutral-100);
}

.area-page main > section:nth-of-type(even):not(.hero)::before {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 35px rgba(6, 71, 24, 0.1);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.location-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.location-links a {
  display: block;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(0, 34, 7, 0.06);
  box-shadow: 0 18px 36px rgba(6, 71, 24, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-links a:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 24px 48px rgba(6, 71, 24, 0.1);
}

.location-links h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.location-links p {
  margin: 0;
  color: var(--neutral-700);
}

.pricing-page .pricing-band {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.pricing-page .pricing-band.bg-white {
  background: var(--white);
}

.pricing-page .pricing-band.bg-muted {
  background: var(--neutral-100);
}

.pricing-sheet {
  width: min(1060px, calc(100% - 3rem));
  margin-inline: auto;
}

.pricing-intro {
  margin-bottom: 1.5rem;
  max-width: 70ch;
}

.pricing-intro .eyebrow {
  margin-bottom: 0.6rem;
}

.pricing-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.pricing-intro p {
  margin: 0.85rem 0 0;
  color: var(--neutral-700);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.pricing-section-head {
  margin-bottom: 1rem;
}

.pricing-section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.selectable-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.selectable-item {
  position: relative;
}

.selectable-input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.selectable-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-200);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(6, 71, 24, 0.04);
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.selectable-row::before {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  border-radius: 999px;
  border: 2px solid #bcc8c0;
  background: linear-gradient(180deg, #f4f7f5, #e5ece7);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.75);
}

.selectable-row:hover {
  transform: translateY(-1px);
  border-color: rgba(1, 139, 36, 0.28);
}

.selectable-input:checked + .selectable-row {
  border-color: rgba(1, 139, 36, 0.65);
  background: linear-gradient(90deg, rgba(0, 94, 24, 0.08), rgba(255, 140, 26, 0.09));
  box-shadow: 0 12px 24px rgba(6, 71, 24, 0.08);
}

.selectable-input:checked + .selectable-row::before {
  border-color: var(--brand-mid);
  background:
    radial-gradient(circle at center, var(--white) 0 22%, transparent 24%),
    linear-gradient(180deg, #02a12a, #017b1f);
  box-shadow: 0 0 0 4px rgba(1, 139, 36, 0.12);
}

.selectable-input:focus-visible + .selectable-row {
  outline: 3px solid rgba(255, 140, 26, 0.35);
  outline-offset: 2px;
}

.selectable-name {
  font-weight: 600;
  color: var(--neutral-900);
  flex: 1 1 auto;
  min-width: 0;
}

.selectable-price {
  white-space: nowrap;
  color: var(--neutral-700);
  font-variant-numeric: tabular-nums;
}

.selectable-machine .selectable-price {
  color: var(--brand-mid);
}

.rate-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.15rem 0.15rem 0.15rem 0;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.45;
}

.rate-row span:last-child {
  text-align: right;
  white-space: nowrap;
  padding-left: 1rem;
  font-variant-numeric: tabular-nums;
}

.pricing-note {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: var(--neutral-900);
}

.pricing-group-row {
  margin: 1.8rem 0 0.75rem;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.2;
  color: var(--neutral-900);
}

.delivery-estimator {
  display: grid;
  gap: 1rem;
  margin-top: 0.25rem;
}

.delivery-copy {
  margin: 0;
  color: var(--neutral-700);
}

.delivery-inputs {
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 30;
}

.delivery-address-field {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--neutral-700);
  position: relative;
}

.delivery-address-field input {
  min-height: 3.6rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.2rem;
}

.delivery-address-field span,
.delivery-zone-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--neutral-400);
}

.delivery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
  align-items: center;
}

.delivery-suggestions {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 0;
  padding: 0.35rem;
  border: 1px solid rgba(0, 34, 7, 0.08);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(6, 71, 24, 0.14);
  max-height: 240px;
  overflow-y: auto;
}

.delivery-suggestions[hidden] {
  display: none;
}

.delivery-suggestion-item {
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  color: var(--neutral-700);
  cursor: pointer;
}

.delivery-suggestion-item:hover,
.delivery-suggestion-item.is-active {
  background: rgba(1, 139, 36, 0.08);
  color: var(--neutral-900);
}

.delivery-suggestion-empty {
  padding: 0.85rem 0.9rem;
  color: var(--neutral-700);
  font-size: 0.95rem;
}

.delivery-location-btn {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(0, 94, 24, 0.98), rgba(1, 139, 36, 0.92));
  color: var(--white);
  border: 1px solid rgba(0, 94, 24, 0.25);
  box-shadow: 0 14px 28px rgba(0, 94, 24, 0.18);
  gap: 0.65rem;
  padding-inline: 1.1rem 1.35rem;
}

.delivery-location-btn:hover {
  text-decoration: none;
}

.delivery-location-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-6-5.2-6-11a6 6 0 1 1 12 0c0 5.8-6 11-6 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.delivery-location-spinner {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  display: none;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  animation: delivery-spin 0.8s linear infinite;
}

.delivery-location-btn.is-loading .delivery-location-icon {
  display: none;
}

.delivery-location-btn.is-loading .delivery-location-spinner {
  display: inline-block;
}

@keyframes delivery-spin {
  to {
    transform: rotate(360deg);
  }
}

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

.delivery-zone-card {
  border: 1px solid rgba(1, 139, 36, 0.14);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(245, 250, 246, 0.98), rgba(255, 255, 255, 1));
  padding: 1rem 1.1rem;
}

.delivery-zone-card[data-delivery-estimate-card] {
  grid-column: 1 / -1;
}

.delivery-zone-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.delivery-zone-card p {
  margin: 0.5rem 0 0;
  color: var(--neutral-700);
}

.delivery-zone-pricing ul {
  list-style: none;
  padding: 0;
  margin: 0.65rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.delivery-zone-pricing li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--neutral-700);
}

.delivery-status {
  margin: 0;
  color: var(--neutral-700);
  min-height: 1.5em;
}

.delivery-map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 34, 7, 0.08);
  box-shadow: 0 20px 38px rgba(6, 71, 24, 0.08);
  background: var(--white);
  position: relative;
  z-index: 1;
}

.delivery-map {
  min-height: 420px;
  width: 100%;
  pointer-events: none;
}

.leaflet-popup-content {
  font-family: var(--font-sans);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .pricing-page .pricing-sheet {
    width: 100%;
    padding-inline: 1rem;
  }

  .pricing-page .pricing-section-head {
    margin-bottom: 0.75rem;
  }

  .pricing-page .pricing-section-head h2 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .pricing-page .contact-card {
    grid-template-columns: 1fr;
  }

  .selectable-row,
  .rate-row {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .selectable-row {
    padding: 0.9rem 1rem;
  }

  .selectable-price,
  .rate-row span:last-child {
    white-space: normal;
  }

  .selectable-name,
  .selectable-price,
  .rate-row span {
    min-width: 0;
  }

  .delivery-meta-grid {
    grid-template-columns: 1fr;
  }

  .delivery-actions {
    justify-content: stretch;
  }

  .delivery-actions .btn,
  .delivery-location-btn {
    width: 100%;
    margin-left: 0;
  }

  .delivery-map {
    min-height: 320px;
  }

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

@media (max-width: 600px) {
  .pricing-page .pricing-sheet,
  .contact-card,
  .contact-panel,
  .selected-summary,
  .contact-form,
  .form-meta-grid,
  .form-meta-grid > label {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .pricing-page .pricing-sheet {
    padding-inline: 1rem;
  }

  .contact-card {
    width: calc(100% - 32px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .form-overlay {
    inset: 0;
    padding: 1rem;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }

  .form-state {
    max-width: 100%;
    min-width: 0;
  }
}

.text-block h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-top: 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.checklist li::before {
  content: '✔';
  color: var(--brand-mid);
  margin-right: 0.7rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card-grid article {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(6, 71, 24, 0.08);
  border: 1px solid rgba(0, 34, 7, 0.05);
}

.card-grid .card-tag {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--neutral-100);
  color: var(--brand-mid);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-grid article ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.35rem;
}

.card-grid article ul li {
  display: flex;
  gap: 0.5rem;
}

.card-grid article ul li::before {
  content: '•';
  color: var(--brand-accent);
}

.card-grid article .extras {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--neutral-700);
}

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

.card-grid.mini article {
  padding: 1.5rem;
}

.feature-notes {
  display: grid;
  gap: 1rem;
  padding-left: clamp(1rem, 3vw, 2rem);
  border-left: 3px solid var(--brand-accent);
}

.feature-notes p {
  margin: 0;
  color: var(--neutral-700);
}

.feature-notes strong {
  display: block;
  color: var(--neutral-900);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  margin-top: 0.8rem;
}

.equipment-inner {
  /* padding-inline: clamp(1.5rem, 6vw, 3rem); */
}

.machine-showcase {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.machine-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

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

.machine-feature figure {
  margin: 0;
  width: 546px;
  max-width: 100%;
  height: 100%;
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgb(6 71 24 / 24%);
  /* border: 7px solid rgba(6, 71, 24, 0.08); */
}

.machine-feature figure::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 62%, rgba(245, 250, 246, 0.2) 100%);
}

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

.machine-copy {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 25px 50px rgba(6, 71, 24, 0.08);
  border: 1px solid rgba(0, 34, 7, 0.05);
}

.machine-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.machine-copy ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.5rem;
}

.machine-copy li {
  display: flex;
  gap: 0.5rem;
}

.machine-copy li::before {
  content: '•';
  color: var(--brand-accent);
}

.attachment-list {
  border-top: 1px solid var(--neutral-200);
  padding-top: 1rem;
  margin-top: 1rem;
}

.attachment-list h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.attachment-list p {
  margin: 0;
  color: var(--neutral-700);
}

.rates .card {
  background: linear-gradient(120deg, rgba(0, 94, 24, 0.95), rgba(1, 139, 36, 0.9));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow);
  border-left: 8px solid var(--brand-accent);
}

.rates .cta {
  margin-top: 2rem;
}

.contact-inner {
  padding-inline: 0;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  box-shadow: 0 30px 50px rgba(5, 57, 19, 0.08);
}

.contact-panel {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.selected-summary {
  border-radius: var(--radius-md);
  border: 1px solid rgba(1, 139, 36, 0.16);
  background: linear-gradient(180deg, rgba(245, 250, 246, 0.98), rgba(255, 255, 255, 1));
  padding: 1rem 1.1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.selected-summary p {
  margin: 0;
}

.selected-summary-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.selected-summary-empty {
  color: var(--neutral-700);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-list span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neutral-400);
  margin-bottom: 0.2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--neutral-700);
  font-size: 0.9rem;
  gap: 0.4rem;
  min-width: 0;
}

.form-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

#contact-name-anchor {
  scroll-margin-top: 7rem;
}

@media (max-width: 767px) {
  #contact-name-anchor {
    scroll-margin-top: 9rem;
  }
}

input,
select,
textarea,
button {
  font: inherit;
  min-width: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  background: var(--neutral-100);
  width: 100%;
  max-width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(0, 94, 24, 0.25);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select,
.contact-form input[type="date"] {
  appearance: auto;
  -webkit-appearance: auto;
}

.contact-form button[type="submit"],
.pricing-page .contact-form button[type="submit"] {
  width: 100%;
  max-width: 100%;
}

.turnstile-slot,
.cf-turnstile {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.cf-turnstile iframe {
  max-width: 100%;
}

.form-note {
  font-size: 0.85rem;
  color: var(--neutral-400);
  text-align: center;
  margin: 0;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
  color: var(--neutral-700);
}

.form-status.success {
  color: var(--brand-mid);
}

.form-status.error {
  color: #b3261e;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-overlay {
  position: absolute;
  inset: -0.75rem;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 55px rgba(6, 71, 24, 0.14);
  width: 100%;
  max-width: 100%;
}

.form-overlay[hidden],
.form-state[hidden] {
  display: none;
}

.form-state {
  text-align: center;
  max-width: 320px;
  width: 100%;
}

.form-state h3 {
  margin: 1rem 0 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.form-state p {
  margin: 0;
  color: var(--neutral-700);
  font-size: 1rem;
}

.sending-icon,
.success-check {
  width: 76px;
  height: 76px;
  margin: 0 auto;
}

.sending-icon {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 94, 24, 0.08);
}

.sending-icon::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 4px solid rgba(0, 94, 24, 0.16);
  border-top-color: var(--brand-mid);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.sending-icon span {
  width: 28px;
  height: 28px;
  background: var(--brand-accent);
  clip-path: polygon(8% 10%, 94% 50%, 8% 90%, 24% 56%, 52% 50%, 24% 44%);
  transform: translateX(2px);
}

.success-check svg {
  width: 100%;
  height: 100%;
}

.success-check circle,
.success-check path {
  fill: none;
  stroke: var(--brand-mid);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-check circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: draw-ring 0.55s ease forwards;
}

.success-check path {
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  animation: draw-check 0.4s ease 0.35s forwards;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

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

.site-footer {
  text-align: center;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-share {
  padding: clamp(2rem, 5vw, 3rem) 0;
  display: flex;
  justify-content: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.social-links a,
.social-placeholder {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.social-links a:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.social-links img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.site-footer .small {
  color: var(--neutral-400);
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .card-grid.mini {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid figure:nth-child(n + 9) {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: var(--white);
    backdrop-filter: none;
  }

  .site-header.is-compact {
    box-shadow: 0 8px 20px rgba(0, 30, 12, 0.08);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.35rem;
    min-height: calc(100vh - 88px);
    padding: 2rem 1.5rem;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 30px 60px rgba(0, 30, 12, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 0.2s ease, transform 0.2s ease;
    visibility: hidden;
    z-index: 1000;
  }

  .nav-links a {
    font-size: 1.35rem;
  }

  .nav-links .pill {
    margin-top: 0.75rem;
    padding: 0.8rem 1.75rem;
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: block;
    background-color: transparent;
  }

  .brand-horizontal {
    width: clamp(156px, 48vw, 206px);
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  body.nav-open .nav-toggle {
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%23005e18" stroke-width="2" stroke-linecap="round"%3E%3Cline x1="6" y1="6" x2="18" y2="18"/%3E%3Cline x1="18" y1="6" x2="6" y2="18"/%3E%3C/svg%3E');
  }

  .machine-feature,
  .machine-feature.reverse {
    grid-template-columns: 1fr;
  }

  .machine-feature.reverse figure {
    order: 0;
  }

  .machine-feature figure {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .social-share {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .site-header .nav.shell {
    width: 100%;
    margin-inline: 0;
    padding-inline: 1rem;
  }

  .nav {
    padding: 0.75rem 0;
  }

  .hero-content {
    padding: 4rem 0;
    width: min(350px, calc(100% - 3rem));
    margin-left: 1.5rem;
    margin-right: auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .hero h1 .hero-title-accent {
    display: inline-block;
    max-width: 8ch;
  }

  .hero h1 .hero-brandline {
    display: block;
    max-width: none;
  }

  .lead {
    max-width: 100%;
  }

  .gallery-grid figure:nth-child(n + 7) {
    display: none;
  }

  .cta {
    flex-direction: column;
  }

  .stats {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .card-grid.mini {
    grid-template-columns: 1fr;
  }

  .card-grid article,
  .machine-copy,
  .contact-card {
    padding: 1.5rem;
  }
}
