:root {
  --red: #bd171c;
  --red-dark: #8f1014;
  --green: #1f742f;
  --green-dark: #115321;
  --green-soft: #e8f3e9;
  --ink: #222426;
  --muted: #646b68;
  --line: #dfe5df;
  --paper: #ffffff;
  --soft: #f6f8f4;
  --shadow: 0 18px 44px rgba(22, 29, 24, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(31, 116, 47, 0.26);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(31, 116, 47, 0.12);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.scrolled {
  min-height: 66px;
  box-shadow: 0 10px 30px rgba(20, 28, 22, 0.12);
}

.brand img {
  width: clamp(116px, 13vw, 168px);
  height: 54px;
  object-fit: contain;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 22px);
  color: #333936;
  font-weight: 750;
  font-size: 0.9rem;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--red);
  border-bottom-color: var(--red);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 2px solid transparent;
  padding: 12px 20px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-action,
.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(189, 23, 28, 0.22);
}

.header-action:hover,
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(31, 116, 47, 0.22);
  border-radius: 6px;
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.button-secondary {
  color: var(--green-dark);
  background: #fff;
  border-color: rgba(31, 116, 47, 0.3);
  box-shadow: 0 12px 28px rgba(31, 116, 47, 0.1);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.feature-panel,
.direction-grid article,
.operation-card,
.opportunity-grid article,
.product-card,
.process-list li,
.reason-grid article,
.trust-grid article,
.policy-card,
.blog-card,
.faq-list details,
.social-links a,
.contact-list a,
.category-gallery figure {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-panel:hover,
.direction-grid article:hover,
.operation-card:hover,
.opportunity-grid article:hover,
.product-card:hover,
.process-list li:hover,
.trust-grid article:hover,
.policy-card:hover,
.blog-card:hover,
.faq-list details:hover,
.social-links a:hover,
.contact-list a:hover,
.category-gallery figure:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 116, 47, 0.24);
  box-shadow: 0 18px 40px rgba(20, 28, 22, 0.1);
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 80vh;
  overflow: hidden;
  padding: 128px clamp(20px, 6vw, 88px) 76px;
  color: #fff;
}

.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background-image: url("assets/store-team.webp");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 35, 20, 0.9) 0%, rgba(15, 42, 20, 0.72) 42%, rgba(17, 45, 21, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 770px;
  animation: fadeUp 620ms ease both;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }

  to {
    transform: scale(1.05) translateX(-10px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b8f0bd;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 930;
}

h3 {
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.hero-kicker {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin: 42px 0 0;
}

.hero-facts div {
  min-height: 86px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, background 180ms ease;
}

.hero-facts div:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
}

.hero-facts dt {
  font-size: 1.25rem;
  font-weight: 950;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  color: var(--green-dark);
  font-weight: 850;
  border-bottom: 1px solid var(--line);
}

.quick-strip div {
  position: relative;
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.quick-strip div::before {
  content: "";
  width: 34px;
  height: 3px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--green));
}

.section {
  padding: clamp(68px, 9vw, 124px) clamp(20px, 6vw, 88px);
}

.intro-section,
.range-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.section-text {
  max-width: 780px;
}

.section-text p,
.section-heading p,
.media-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-text p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  align-items: center;
  gap: 22px;
  min-height: 220px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-panel img {
  width: 180px;
  margin-inline: auto;
}

.feature-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 1.2rem;
}

.feature-panel a {
  display: block;
  margin-top: 6px;
  color: var(--green-dark);
  font-weight: 850;
}

.company-direction {
  padding-top: 0;
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

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

.direction-grid article {
  min-height: 270px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  border-radius: 8px;
}

.direction-grid article:nth-child(2) {
  border-top-color: var(--red);
}

.direction-grid span,
.operation-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.direction-grid h3 {
  font-size: 1.55rem;
}

.direction-grid p,
.operation-card p,
.opportunity-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.operations-section {
  background: #fff;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.operation-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
  min-height: 265px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.operation-card img {
  width: 100%;
  height: 100%;
  min-height: 265px;
  object-fit: cover;
}

.operation-card > div {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 28px;
  background: var(--soft);
}

.operation-card h3 {
  font-size: 1.5rem;
}

.operations-section > .photo-credit {
  max-width: 900px;
  margin: 22px 0 0;
}

.partnership-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  padding: clamp(76px, 9vw, 126px) clamp(20px, 6vw, 88px);
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(135deg, #0c3817, var(--green-dark));
}

.partnership-section .eyebrow {
  color: #b8f0bd;
}

.partnership-intro > p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.partnership-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.partnership-section .button-secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: none;
}

.partnership-section .partnership-note {
  font-size: 0.88rem;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.opportunity-grid article {
  min-height: 220px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.opportunity-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 950;
}

.opportunity-grid h3 {
  color: #fff;
}

.opportunity-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.packages-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  min-height: 650px;
  background: var(--green-dark);
  color: #fff;
}

.package-photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.package-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 36, 15, 0.48));
}

.package-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-budget-badge {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 4vw, 46px);
  bottom: clamp(18px, 4vw, 42px);
  display: grid;
  gap: 2px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(189, 23, 28, 0.94);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.package-budget-badge span {
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.package-budget-badge strong {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.1;
}

.package-copy {
  align-self: center;
  padding: clamp(60px, 8vw, 110px) clamp(24px, 6vw, 82px);
}

.package-copy .eyebrow {
  color: #9ee2aa;
}

.package-copy h2 {
  max-width: 13ch;
  color: #fff;
}

.package-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.package-audiences {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.package-audiences article {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.package-audiences strong,
.package-audiences span {
  display: block;
}

.package-audiences strong {
  margin-bottom: 8px;
  color: #fff;
}

.package-audiences span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.package-note {
  margin: 16px 0 0 !important;
  font-size: 0.86rem !important;
}

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

.has-reveal .products-section.reveal-item {
  opacity: 1;
  transform: none;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.search-box,
.message-box {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.search-box input,
.message-box input,
.message-box textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.search-box input,
.message-box input {
  height: 50px;
  padding: 0 15px;
}

.message-box textarea {
  resize: vertical;
  min-height: 112px;
  padding: 12px 14px;
}

.search-box input:focus,
.message-box input:focus,
.message-box textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 116, 47, 0.12);
}

.filter-tabs {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  background: #fff;
  color: #39403c;
  font-weight: 850;
  cursor: pointer;
}

.filter-tabs button.active,
.filter-tabs button:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(312px, 380px);
  gap: 24px;
  align-items: start;
}

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

.no-results {
  grid-column: 1 / -1;
  min-height: 140px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px dashed #cbd4cb;
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  text-align: center;
}

.product-card {
  display: grid;
  gap: 16px;
  min-height: 220px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(24, 31, 26, 0.05);
}

.product-card header {
  display: grid;
  gap: 8px;
}

.product-card h3 {
  min-height: 2.6em;
  font-size: 1.08rem;
}

.product-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.category-pill {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.availability-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 0;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.availability-line span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}

.add-button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.add-button:hover {
  background: var(--red-dark);
}

.order-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.order-panel h2 {
  font-size: 1.65rem;
}

.customer-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.order-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.summary-status {
  margin: -8px 0 0;
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 750;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-items.empty {
  min-height: 80px;
  place-items: center;
  border: 1px dashed #cbd4cb;
  border-radius: 6px;
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.cart-item strong {
  display: block;
  font-size: 0.95rem;
}

.cart-item span {
  color: var(--muted);
  font-size: 0.84rem;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  font-weight: 950;
  cursor: pointer;
}

.process-section {
  background: #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 152px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.process-list span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 50%;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 950;
}

.process-list li:nth-child(even) span {
  color: var(--green);
}

.why-section {
  background: var(--green-dark);
  color: #fff;
}

.why-section .eyebrow,
.why-section .section-heading p {
  color: #b8f0bd;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reason-grid article {
  min-height: 238px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.reason-grid article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
}

.reason-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  font-weight: 950;
}

.reason-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-section {
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article {
  min-height: 180px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.2rem;
}

.trust-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.warning-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: clamp(42px, 6vw, 76px) clamp(20px, 6vw, 88px);
  background: #fff8f8;
  color: var(--ink);
  border-top: 1px solid #f0d1d2;
  border-bottom: 1px solid #f0d1d2;
}

.warning-band .eyebrow {
  color: var(--red);
}

.warning-band h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.4rem);
}

.warning-band p:not(.eyebrow) {
  margin: 0;
  color: #4f3738;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.media-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(68px, 9vw, 112px) clamp(20px, 6vw, 88px);
  background: #f3f5f1;
}

.media-copy {
  max-width: 680px;
}

.media-copy p:not(.eyebrow) {
  margin: 18px 0 28px;
}

.media-band img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(21, 33, 24, 0.18));
}

.range-section {
  background: #fff;
}

.category-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 12px 30px rgba(20, 28, 22, 0.08);
}

.category-gallery img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.category-gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 83, 33, 0.9);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.range-steps {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.range-steps span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-weight: 850;
}

.range-steps strong {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}

.photo-credit {
  margin-top: 18px !important;
  font-size: 0.82rem !important;
}

.photo-credit a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-section {
  background: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.policy-card {
  min-height: 260px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-card h3 {
  color: var(--green-dark);
}

.policy-card p {
  color: var(--muted);
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-dark);
  font-weight: 900;
}

.social-links a::after {
  content: "Open";
  color: var(--muted);
  font-size: 0.8rem;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 98px) clamp(20px, 6vw, 88px);
  background: var(--soft);
}

.map-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.map-section iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-section {
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  min-height: 330px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-card span {
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-card h3 {
  color: var(--green-dark);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.linked-post-card {
  background: #f9fbf8;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  overflow: hidden;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: var(--green-dark);
  font-weight: 950;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: center;
  padding: clamp(58px, 8vw, 98px) clamp(20px, 6vw, 88px);
  background: var(--red);
  color: #fff;
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list a {
  display: block;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 88px);
  color: #fff;
  background: #151915;
}

.site-footer img {
  width: 106px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 14;
  display: flex;
  gap: 6px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 116, 47, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(20, 28, 22, 0.18);
  backdrop-filter: blur(14px);
}

.floating-actions a {
  min-width: 74px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.floating-actions a:first-child {
  color: #fff;
  background: var(--red);
}

.floating-actions a:hover,
.floating-actions a:focus-visible {
  background: var(--green-soft);
}

.floating-actions a:first-child:hover,
.floating-actions a:first-child:focus-visible {
  background: var(--red-dark);
}

.has-reveal .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

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

  .process-list,
  .reason-grid,
  .trust-grid,
  .info-grid,
  .blog-grid,
  .direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .main-nav {
    display: none;
  }

  .header-action {
    justify-self: end;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    padding: 0 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(31, 116, 47, 0.14);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 20px 42px rgba(20, 28, 22, 0.16);
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, padding 180ms ease;
  }

  .site-header.menu-open .mobile-nav {
    max-height: 78vh;
    padding-block: 12px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
    color: #333936;
    font-weight: 850;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: var(--green-soft);
    color: var(--green-dark);
  }

  .mobile-nav .mobile-primary {
    justify-content: center;
    margin-top: 4px;
    color: #fff;
    background: var(--red);
  }

  .mobile-nav .mobile-primary:hover,
  .mobile-nav .mobile-primary:focus-visible {
    color: #fff;
    background: var(--red-dark);
  }

  .hero {
    min-height: 82vh;
    padding-top: 112px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 35, 20, 0.92), rgba(13, 35, 20, 0.66)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.06));
  }

  h1 {
    max-width: 13ch;
  }

  .hero-facts,
  .quick-strip,
  .intro-section,
  .range-section,
  .partnership-section,
  .packages-section,
  .catalog-toolbar,
  .shop-layout,
  .media-band,
  .warning-band,
  .map-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    justify-content: flex-start;
  }

  .order-panel {
    position: static;
  }

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

  .operation-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .operation-card img {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .operation-card > div {
    align-self: stretch;
  }
}

@media (max-width: 620px) {
  section[id] {
    scroll-margin-top: 82px;
  }

  body {
    padding-bottom: 74px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand img {
    width: 118px;
  }

  .header-action {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 84vh;
    padding: 104px 18px 50px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-facts,
  .product-grid,
  .process-list,
  .reason-grid,
  .trust-grid,
  .info-grid,
  .blog-grid,
  .direction-grid,
  .operations-grid,
  .opportunity-grid,
  .package-audiences,
  .customer-fields {
    grid-template-columns: 1fr;
  }

  .map-section iframe {
    min-height: 320px;
  }

  .feature-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .category-gallery {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .floating-actions a {
    min-width: 0;
  }
}

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

@media print {
  .site-header,
  .floating-actions {
    display: none;
  }
}
