/* ChickenMovers — main stylesheet */

:root {
  --color-primary: #2d6a4f;
  --color-primary-dark: #1b4332;
  --color-secondary: #8b5a2b;
  --color-accent: #dda15e;
  --color-accent-soft: #efe4d0;
  --color-bg: #f6edde;
  --color-section: #f6edde;
  --color-surface: #ffffff;
  --color-text: #283618;
  --color-muted: #5c5c52;
  --color-border: #e6dfd0;
  --color-success: #40916c;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --shadow-sm: 0 2px 8px rgba(40, 54, 24, 0.06);
  --shadow-md: 0 8px 24px rgba(40, 54, 24, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1160px;
  --header-h: 72px;
  --top-bar-h: 37px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: clip;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-primary-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Top bar */
.top-bar {
  background: var(--color-primary-dark);
  color: #e8f5e9;
  font-size: 0.875rem;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}

.top-bar__phone {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.top-bar__phone:hover {
  color: var(--color-accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.site-header:not(.site-header--overlay) {
  background: var(--color-primary-dark);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(21, 47, 36, 0.18);
}

.site-header:not(.site-header--overlay) .nav__link {
  color: rgba(255, 255, 255, 0.9);
}

.site-header:not(.site-header--overlay) .nav__link:hover,
.site-header:not(.site-header--overlay) .nav__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-header:not(.site-header--overlay) .nav-toggle span {
  background: #fff;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-text);
}

.logo__mark {
  color: var(--color-primary);
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.logo__text strong {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  position: relative;
  z-index: 120;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  border-radius: 8px;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--color-primary);
  background: var(--color-accent-soft);
}

.nav__item--has-sub {
  position: relative;
}

.nav__sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__sub a {
  display: block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: var(--color-text);
  border-radius: 6px;
}

.nav__sub a:hover {
  background: var(--color-bg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn--secondary {
  background: var(--color-secondary);
  color: #fff;
}

.btn--secondary:hover {
  background: #6d4522;
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero shell (homepage) */
.hero-shell {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

#main-content {
  max-width: 100%;
  overflow-x: clip;
}

.hero-shell__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: clamp(620px, 78vh, 820px);
}

.hero-shell .hero__bg,
.hero-shell .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-shell .hero__overlay {
  z-index: 1;
}

.site-header--overlay {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  box-shadow: none;
  flex-shrink: 0;
}

.site-header__inner--overlay {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(80px, 1fr);
  align-items: start;
  padding-top: 1.25rem;
  padding-bottom: 1rem;
  min-height: auto;
  gap: 1rem 1.5rem;
  width: 100%;
}

.site-header__inner--overlay .site-header__brand {
  grid-column: 1;
}

.site-header__inner--overlay .nav--overlay {
  grid-column: 2;
  justify-self: center;
}

.site-header__inner--overlay .site-header__actions {
  grid-column: 3;
  justify-self: end;
}

.site-header__inner--overlay .nav-toggle--light {
  grid-column: 3;
  justify-self: end;
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-shrink: 0;
}

.logo--light {
  color: #fff;
  text-decoration: none;
}

.logo--image {
  display: block;
}

.logo--image .logo__img {
  display: block;
  width: auto;
  max-width: min(220px, 55vw);
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.logo--light .logo__mark {
  color: #fff;
}

.logo__stack {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.logo--light .logo__text {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo--light .logo__text strong {
  color: #fff;
}

.logo__tagline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.9);
}

.site-header__phone--brand {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding-left: 0;
  margin-top: 0.35rem;
}

.site-header__phone--brand:hover {
  color: var(--color-accent);
}

.nav--overlay {
  flex: 1;
  justify-content: center;
}

.nav__list--overlay {
  gap: 0.5rem 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav__list--overlay .nav__link {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-radius: 0;
  background: none;
  text-decoration: none;
}

.nav__list--overlay .nav__link:hover,
.nav__list--overlay .nav__link.is-active {
  color: #fff;
  background: none;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-header__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.header-icon:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.nav-toggle--light span {
  background: #fff;
}

/* Mobile nav (drawer — tylko ≤900px) */
.mobile-nav,
.mobile-nav__backdrop {
  display: none;
}

.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(100%, 300px);
  z-index: 115;
  flex-direction: column;
  background: var(--color-primary-dark);
  color: #e8f0ea;
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, visibility 0.25s ease;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-nav.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 114;
  background: rgba(10, 18, 14, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-nav__backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.mobile-nav__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  flex: 1;
}

.mobile-nav__link {
  display: block;
  padding: 0.85rem 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.15s ease, background 0.15s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link.is-active {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav__actions .btn {
  width: 100%;
  justify-content: center;
}

.mobile-nav__phone {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
}

.mobile-nav__phone:hover {
  border-color: var(--color-accent) !important;
  color: var(--color-accent) !important;
}

body.mobile-nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-shell .hero__bg img {
  object-position: 72% center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27, 67, 50, 0.92) 0%, rgba(45, 106, 79, 0.75) 45%, rgba(40, 54, 24, 0.55) 100%);
  z-index: 1;
}

.hero__overlay--landing {
  background: linear-gradient(
    90deg,
    rgba(10, 18, 14, 0.82) 0%,
    rgba(10, 18, 14, 0.55) 38%,
    rgba(10, 18, 14, 0.2) 68%,
    rgba(10, 18, 14, 0.08) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  max-width: 640px;
}

.hero__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  width: 100%;
  max-width: min(640px, 58%);
  padding: 2rem 0 3.5rem;
  text-align: left;
}

.hero-shell .hero__body {
  margin-right: 0;
  margin-top: auto;
  margin-bottom: auto;
}

.hero__intro {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
  opacity: 0.92;
  margin: 0 0 1.5rem;
  color: #fff;
  max-width: 36em;
}

.hero__rule {
  width: 80px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.5rem;
  position: relative;
}

.hero__rule span {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 100%;
  background: var(--color-accent);
}

.hero__body h1 {
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 2rem;
  max-width: 14em;
}

.hero__cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 420px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.35rem;
  background: #fff;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--color-primary-dark);
}

.hero-cta__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.hero-cta__icon img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.hero-cta__label {
  flex: 1;
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(221, 161, 94, 0.25);
  border: 1px solid rgba(221, 161, 94, 0.5);
  border-radius: 999px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.hero__stat span {
  font-size: 0.875rem;
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 4.5rem 0;
  background: var(--color-section);
}

.section--accent {
  background: var(--color-section);
}

.section--alt {
  background: var(--color-section);
}

/* Декоративный фон — только там, где явно указан класс */
.section--decor {
  background-color: var(--color-section);
  background-image: url("/assets/images/section--alt-bg.jpg");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

.section__header h2 {
  color: var(--color-primary-dark);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(45, 106, 79, 0.18);
}

.section__lead {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--color-accent-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card__link {
  font-weight: 600;
  text-decoration: none;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(45, 106, 79, 0.18);
  box-shadow: 0 4px 18px rgba(40, 54, 24, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(40, 54, 24, 0.1);
}

.feature h3 {
  font-family: var(--font-display);
  color: var(--color-primary-dark);
  font-size: 1.15rem;
}

.feature__num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.28;
  line-height: 1;
  margin-bottom: 0.65rem;
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.step {
  position: relative;
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-primary);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

/* Coverage map block */
.coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

.coverage > div:first-child h2 {
  color: var(--color-primary-dark);
}

.coverage > div:first-child .section__eyebrow {
  margin-bottom: 0.65rem;
}

.coverage__map {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid rgba(45, 106, 79, 0.18);
  box-shadow: 0 6px 22px rgba(40, 54, 24, 0.07);
}

.coverage__map h3 {
  font-family: var(--font-display);
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.coverage__photo {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(45, 106, 79, 0.18);
  box-shadow: 0 8px 28px rgba(40, 54, 24, 0.1);
  max-height: 300px;
}

.coverage__photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.region-list {
  columns: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.region-list li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.region-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* CTA band */
.section--cta {
  padding-bottom: 5rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 2.75rem 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 2px solid rgba(27, 67, 50, 0.35);
  box-shadow: 0 12px 36px rgba(27, 67, 50, 0.22);
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-band p {
  margin: 0;
  opacity: 0.9;
}

.cta-band .btn--primary {
  background: var(--color-accent);
  color: var(--color-text);
}

.cta-band .btn--primary:hover {
  background: #c9904f;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq__item {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(45, 106, 79, 0.15);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.75rem;
  box-shadow: 0 3px 14px rgba(40, 54, 24, 0.05);
}

.faq__item h3 {
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.faq__item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(45, 106, 79, 0.18);
  box-shadow: 0 4px 18px rgba(40, 54, 24, 0.06);
  margin: 0;
  display: flex;
  flex-direction: column;
}

.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.35;
  margin-bottom: 0.25rem;
}

.testimonial__quote {
  font-style: normal;
  margin-bottom: 1.25rem;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

.testimonial footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 106, 79, 0.12);
}

.testimonial__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
}

.testimonial__role {
  color: var(--color-muted);
  font-size: 0.85rem;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--color-primary-dark);
  color: #fff;
  padding: 3rem 0;
}

.page-hero h1 {
  color: #fff;
}

.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.breadcrumb a {
  color: var(--color-accent);
}

/* Two column layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Forms */
.form {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.form__group {
  margin-bottom: 1.25rem;
}

.form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__success {
  padding: 1rem;
  background: #d8f3dc;
  border: 1px solid var(--color-success);
  border-radius: 8px;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.form__note {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Pricing table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.price-table th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
}

.price-table tr:last-child td {
  border-bottom: none;
}

/* Legal prose */
.legal {
  max-width: 800px;
  margin: 0 auto;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--color-accent);
  line-height: 1;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  color: #e8f0ea;
}

.site-footer__curve {
  display: block;
  line-height: 0;
  color: var(--color-primary-dark);
}

.site-footer__curve svg {
  display: block;
  width: 100%;
  height: clamp(36px, 5vw, 56px);
}

.site-footer__body {
  background: var(--color-primary-dark);
  padding: 2.75rem 0 1.75rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) 1.6fr;
  gap: 3rem 4rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand__logo {
  display: inline-block;
  margin-bottom: 1.15rem;
}

.footer-brand__logo img {
  width: min(200px, 58vw);
  height: auto;
  display: block;
}

.footer-brand__text {
  margin: 0 0 1.25rem;
  max-width: 22rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(232, 240, 234, 0.88);
}

.footer-brand__phone {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-brand__phone:hover {
  background: rgba(221, 161, 94, 0.2);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.footer-nav__title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1rem;
}

.footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav__list li {
  margin-bottom: 0.5rem;
}

.footer-nav__list a {
  color: rgba(232, 240, 234, 0.92);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.footer-nav__list a:hover {
  color: var(--color-accent);
}

.footer-nav__list--contact li {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(232, 240, 234, 0.88);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.35rem;
  font-size: 0.85rem;
  color: rgba(232, 240, 234, 0.65);
}

.footer-bottom__copy {
  margin: 0;
}

.footer-bottom__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom__legal a {
  color: rgba(232, 240, 234, 0.85);
  text-decoration: none;
}

.footer-bottom__legal a:hover {
  color: var(--color-accent);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__title {
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.cookie-banner__text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  max-width: 640px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Tips list */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tip-item {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(45, 106, 79, 0.18);
  box-shadow: 0 4px 18px rgba(40, 54, 24, 0.06);
}

.tip-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.35rem;
}

.tip-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.tip-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(160deg, #fff 0%, rgba(45, 106, 79, 0.12) 100%);
  color: var(--color-primary);
  border: 2px solid rgba(45, 106, 79, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Contact info cards */
.info-cards {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.25rem;
  background: var(--color-accent-soft);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.info-card h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

/* Services block (after hero) */
.services-block {
  position: relative;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}

.services-block__bg {
  position: absolute;
  inset: 0;
  background: var(--color-section) url("/assets/images/bg-next.png") center top / cover no-repeat;
  z-index: 0;
}

.services-block__inner {
  position: relative;
  z-index: 1;
}

.services-block__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.services-block__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-family: var(--font-display);
}

.services-block__eyebrow-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.services-block__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-block__lead {
  margin: 0 auto 1.75rem;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.services-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-pills li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  border-right: 1px solid rgba(45, 106, 79, 0.2);
}

.services-pills li:last-child {
  border-right: none;
}

.services-pills__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.12);
  color: var(--color-primary);
  flex-shrink: 0;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 8px 28px rgba(40, 54, 24, 0.08);
  border: 2px solid rgba(45, 106, 79, 0.22);
}

.service-card__media {
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__badge {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: -36px;
  margin-bottom: -0.25rem;
  pointer-events: none;
  background: none;
  border: none;
  box-shadow: none;
}

.service-card__badge img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.service-card__body {
  padding: 1.5rem 1.25rem 1.5rem;
  text-align: center;
}

.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.65rem;
}

.service-card__body p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.55;
  margin: 0 0 1rem;
}

.service-card__body a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.service-card__body a:hover {
  text-decoration: underline;
}

.services-process {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(230, 223, 208, 0.95);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  box-shadow: 0 6px 20px rgba(40, 54, 24, 0.06);
}

.services-process__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.services-process__intro h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-primary-dark);
  margin: 0 0 1.25rem;
  line-height: 1.25;
}

.services-process__truck-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(160deg, #fff 0%, rgba(45, 106, 79, 0.1) 100%);
  border: 2px solid rgba(45, 106, 79, 0.18);
  color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(45, 106, 79, 0.1);
}

.services-process__truck-icon svg {
  display: block;
  width: 40px;
  height: 40px;
}

.services-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.services-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 0;
  border-top: 2px dotted rgba(45, 106, 79, 0.32);
  z-index: 0;
  pointer-events: none;
}

.services-steps li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.35rem;
}

.services-steps__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 0 1rem;
  border-radius: 50%;
  background: linear-gradient(160deg, #fff 0%, rgba(45, 106, 79, 0.08) 100%);
  border: 2px solid rgba(45, 106, 79, 0.2);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.1);
  flex-shrink: 0;
}

.services-steps__icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.services-steps li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.4rem;
}

.services-steps li > span:not(.services-steps__icon) {
  display: block;
  max-width: 11.5rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.services-pills__icon svg {
  display: block;
  flex-shrink: 0;
}

/* Transport showcase (poultry vehicles) */
.transport-showcase {
  padding-top: 3.5rem;
}

.transport-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.transport-gallery__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(45, 106, 79, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(40, 54, 24, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.transport-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(40, 54, 24, 0.12);
}

.transport-gallery__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-accent-soft);
}

.transport-gallery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.transport-gallery__item figcaption {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.transport-gallery__item figcaption strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  font-weight: 600;
}

.transport-gallery__item figcaption span {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.transport-showcase__note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.transport-showcase__note a {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none !important;
  }

  .mobile-nav,
  .mobile-nav__backdrop {
    display: block;
  }

  .mobile-nav {
    display: flex;
    top: 0;
    height: 100dvh;
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  body:not(.body--home) .mobile-nav {
    top: calc(var(--top-bar-h) + var(--header-h));
    height: calc(100dvh - var(--top-bar-h) - var(--header-h));
  }

  .mobile-nav:not(.is-open) {
    clip-path: inset(0 0 0 100%);
  }

  .site-header__inner--overlay {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .site-header__brand {
    flex: 1;
    min-width: 0;
  }

  .site-header__phone--brand {
    font-size: 0.9rem;
  }

  .logo--image .logo__img {
    max-height: 56px;
    max-width: 180px;
  }

  .site-header__actions {
    display: none;
  }

  .nav-toggle--light {
    margin-left: auto;
  }

  .coverage,
  .split {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .region-list {
    columns: 1;
  }
}

@media (min-width: 901px) {
  .site-header__inner--overlay .nav-toggle--light {
    display: none;
  }

  .site-header--overlay .nav--overlay {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    overflow: visible;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 900px) {
  .hero__body {
    max-width: 100%;
  }

  .hero__cta-stack {
    max-width: 100%;
  }

  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-process {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .services-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
    column-gap: 1.25rem;
  }

  .services-steps::before {
    display: none;
  }

  .services-process__intro {
    margin-bottom: 0.5rem;
  }

  .services-pills li {
    border-right: none;
    padding: 0.4rem 0.75rem;
  }

  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .transport-gallery {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .hero-shell__inner {
    min-height: 560px;
  }

  .hero__body {
    padding: 1.25rem 0 2.5rem;
  }

  .hero__body h1 {
    max-width: none;
  }

  .hero-shell .hero__bg img {
    object-position: 60% center;
  }

  .hero__cta-stack {
    max-width: none;
  }

  .section {
    padding: 3rem 0;
  }

  .cta-band {
    padding: 2rem 1.5rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }

  .services-block {
    padding: 3rem 0 2.5rem;
  }

  .services-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-steps {
    grid-template-columns: 1fr;
  }

  .services-pills {
    flex-direction: column;
    gap: 0.5rem;
  }

  .testimonials,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .coverage__photo img {
    height: 220px;
  }
}
