/* ================================================================
   JOHN SHEPPARD BUTCHERS — style.css
   Farm-to-Factory Parallax Journey Website
   ================================================================ */

/* ----------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   ---------------------------------------------------------------- */
:root {
  --grass-dark:    #2d5016;
  --grass-mid:     #4a7c2f;
  --grass-light:   #7ab648;
  --sky-dawn:      #f4a261;
  --sky-orange:    #e76f51;
  --sky-pink:      #d4748a;
  --sky-blue:      #264653;
  --sky-deep:      #0d1b2a;
  --mist:          rgba(255, 255, 255, 0.6);
  --mist-thick:    rgba(220, 230, 230, 0.75);
  --craft-dark:    #1a0a0a;
  --craft-red:     #8b1a1a;
  --craft-mid:     #3d0f0f;
  --cream:         #faf7f0;
  --cream-mid:     #f0ebe0;
  --text-dark:     #1c1c1c;
  --text-mid:      #3a3a3a;
  --text-light:    rgba(255, 255, 255, 0.92);
  --text-muted:    rgba(255, 255, 255, 0.65);
  --gold:          #d4a017;
  --gold-light:    #e8c050;
  --gold-dark:     #a07a0a;
  --navy:          #0d1b2a;
  --navy-mid:      #142233;
  --navy-light:    #1e3347;
  --delivery-sky:  #b8ccd8;
  --delivery-road: #6b7280;
  --white:         #ffffff;

  --font-serif:    Georgia, 'Times New Roman', serif;
  --font-sans:     system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.18);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.25);
  --shadow-gold:   0 4px 20px rgba(212,160,23,0.3);

  --transition-fast:   150ms ease;
  --transition-base:   280ms ease;
  --transition-slow:   500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-reveal: 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------------------
   Reset & Base
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--sky-deep);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ----------------------------------------------------------------
   SCROLL PROGRESS BAR
   ---------------------------------------------------------------- */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--gold);
}

/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: background var(--transition-slow), box-shadow var(--transition-slow),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-100%);
}

#main-nav.visible {
  transform: translateY(0);
  background: rgba(13, 27, 42, 0.0);
}

#main-nav.scrolled {
  background: rgba(13, 27, 42, 0.94);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-base), filter var(--transition-base);
}

.nav-logo:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.nav-logo--wordmark {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.brand-art {
  display: block;
  overflow: visible;
}

.brand-art--nav {
  width: 132px;
  height: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-link {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
  text-transform: uppercase;
}

.nav-link--button {
  font-family: inherit;
  cursor: pointer;
}

.admin-logout-form {
  margin: 0;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-link--active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 0.5rem 1.2rem;
}

.nav-link.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ----------------------------------------------------------------
   SECTION BASE
   ---------------------------------------------------------------- */
.section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Parallax layers are absolutely positioned within sections */
.parallax-layer {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  will-change: transform;
  pointer-events: none;
  user-select: none;
}

/* Section content sits above parallax layers */
.section__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
}

.section__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grass-light);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.8rem;
  border: 1.5px solid var(--grass-light);
  border-radius: 100px;
}

.section__label--gold {
  color: var(--gold);
  border-color: var(--gold);
}

.section__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.section__heading--light {
  color: var(--white);
}

.section__body {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 580px;
  margin-bottom: 1.25rem;
}

.section__body--light {
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.btn--outline {
  color: var(--grass-dark);
  border-color: var(--grass-dark);
  background: transparent;
  margin-top: 0.5rem;
}

.btn--outline:hover {
  background: var(--grass-dark);
  color: var(--white);
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ----------------------------------------------------------------
   REVEAL ANIMATIONS
   ---------------------------------------------------------------- */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

.reveal-item--left {
  transform: translateX(-50px) translateY(20px);
}

.reveal-item--right {
  transform: translateX(50px) translateY(20px);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ================================================================
   SECTION 1: HERO
   ================================================================ */
.section--hero {
  min-height: 100vh;
  background: var(--sky-deep);
}

.section--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(6,14,26,0.22) 0%, rgba(6,14,26,0.06) 40%, rgba(236,32,39,0.1) 100%),
    radial-gradient(ellipse 75% 45% at 50% 44%, rgba(236,32,39,0.18), transparent 62%);
  pointer-events: none;
}

.section--hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(13,27,42,0.28));
  pointer-events: none;
}

/* Deep navy sky */
.hero__sky-deep {
  background: linear-gradient(
    180deg,
    #060e1a 0%,
    #0d1b2a 20%,
    #1a2d40 45%,
    #264653 65%,
    #3a5f6e 80%,
    #5a7a6a 90%,
    #7a9060 100%
  );
}

/* Mid sky — slight colour variation */
.hero__sky-mid {
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(244, 162, 97, 0.08) 70%,
    rgba(244, 162, 97, 0.22) 85%,
    rgba(244, 162, 97, 0.38) 100%
  );
}

/* Dawn glow at horizon */
.hero__glow {
  inset: auto 0 -20% 0;
  height: 55%;
  background: radial-gradient(
    ellipse 80% 50% at 50% 100%,
    rgba(244, 162, 97, 0.55) 0%,
    rgba(231, 111, 81, 0.35) 30%,
    rgba(212, 116, 138, 0.15) 60%,
    transparent 100%
  );
}

/* Stars */
.hero__stars {
  top: 0;
  bottom: 50%;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* Far hills - dark silhouette */
.hero__hill-far {
  inset: auto 0 -5% 0;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, var(--sky-blue) 30%);
  clip-path: polygon(
    0% 100%, 0% 55%,
    3% 50%, 7% 42%, 12% 38%, 18% 44%, 22% 36%, 28% 28%,
    33% 34%, 38% 25%, 44% 18%, 49% 26%, 53% 20%, 57% 15%,
    61% 22%, 66% 30%, 70% 22%, 75% 28%, 79% 20%, 83% 28%,
    87% 34%, 91% 26%, 95% 34%, 98% 30%, 100% 35%, 100% 100%
  );
}

/* Mid hills */
.hero__hill-mid {
  inset: auto 0 -8% 0;
  height: 42%;
  background: linear-gradient(180deg, var(--grass-dark) 0%, #1e3a10 100%);
  clip-path: polygon(
    0% 100%, 0% 65%,
    4% 55%, 9% 48%, 15% 58%, 20% 42%, 26% 36%, 31% 48%,
    36% 38%, 42% 28%, 47% 40%, 52% 30%, 57% 22%, 62% 34%,
    67% 44%, 72% 34%, 77% 42%, 82% 30%, 87% 40%, 92% 48%,
    96% 38%, 100% 50%, 100% 100%
  );
}

/* Near foreground hills */
.hero__hill-near {
  inset: auto 0 -12% 0;
  height: 38%;
  background: linear-gradient(180deg, var(--grass-mid) 0%, var(--grass-dark) 100%);
  clip-path: polygon(
    0% 100%, 0% 70%,
    6% 58%, 12% 70%, 18% 52%, 24% 62%, 30% 48%, 38% 60%,
    44% 46%, 50% 56%, 56% 44%, 62% 54%, 68% 42%, 74% 58%,
    80% 46%, 86% 62%, 92% 50%, 97% 62%, 100% 56%, 100% 100%
  );
}

.hero__grazing {
  inset: auto 0 12% 0;
  z-index: 6;
  height: 20%;
}

.grazing-animal {
  position: absolute;
  bottom: 0;
  display: block;
  color: rgba(16, 35, 12, 0.9);
  filter: drop-shadow(0 4px 4px rgba(0,0,0,0.16));
}

.grazing-animal::before,
.grazing-animal::after {
  content: "";
  position: absolute;
  display: block;
  background: currentColor;
}

.grazing-animal--cow {
  width: 48px;
  height: 24px;
  border-radius: 45% 45% 35% 35%;
  background: currentColor;
}

.grazing-animal--cow::before {
  right: -13px;
  top: 4px;
  width: 17px;
  height: 13px;
  border-radius: 45% 55% 50% 45%;
  transform-origin: left center;
  animation: graze-head 4.8s ease-in-out infinite;
}

.grazing-animal--cow::after {
  left: 8px;
  bottom: -9px;
  width: 33px;
  height: 10px;
  background:
    linear-gradient(90deg, currentColor 0 4px, transparent 4px 10px, currentColor 10px 14px, transparent 14px 22px, currentColor 22px 26px, transparent 26px 30px, currentColor 30px 33px);
}

.grazing-animal--sheep {
  width: 34px;
  height: 19px;
  border-radius: 48% 48% 42% 42%;
  background:
    radial-gradient(circle at 22% 34%, currentColor 0 7px, transparent 7.5px),
    radial-gradient(circle at 45% 28%, currentColor 0 8px, transparent 8.5px),
    radial-gradient(circle at 65% 38%, currentColor 0 7px, transparent 7.5px),
    currentColor;
}

.grazing-animal--sheep::before {
  right: -8px;
  top: 7px;
  width: 10px;
  height: 9px;
  border-radius: 50%;
  transform-origin: left center;
  animation: graze-head 5.6s ease-in-out infinite;
}

.grazing-animal--sheep::after {
  left: 7px;
  bottom: -7px;
  width: 23px;
  height: 8px;
  background:
    linear-gradient(90deg, currentColor 0 3px, transparent 3px 9px, currentColor 9px 12px, transparent 12px 19px, currentColor 19px 22px);
}

.grazing-animal--one {
  left: 15%;
  bottom: -8%;
  transform: scale(0.82);
}

.grazing-animal--two {
  left: 27%;
  bottom: 26%;
  transform: scale(0.72);
  opacity: 0.78;
}

.grazing-animal--three {
  right: 23%;
  bottom: 18%;
  transform: scale(0.68) scaleX(-1);
  opacity: 0.75;
}

.grazing-animal--four {
  right: 12%;
  bottom: 2%;
  transform: scale(0.62) scaleX(-1);
}

@keyframes graze-head {
  0%, 100% {
    transform: rotate(0deg) translateY(0);
  }

  45%, 60% {
    transform: rotate(20deg) translateY(5px);
  }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 12;
  text-align: center;
  padding: 0 1.5rem;
  padding-top: 6vh;
  max-width: 980px;
  margin: 0 auto;
}

.hero__logo-lockup {
  width: min(78vw, 620px);
  aspect-ratio: 552 / 127;
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.35));
}

.brand-art--hero {
  width: 100%;
  height: 100%;
}

.hero__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.58);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  background: rgba(236,32,39,0.78);
  box-shadow: 0 8px 24px rgba(114, 11, 16, 0.28);
  backdrop-filter: blur(4px);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--white);
  text-shadow: 0 3px 28px rgba(0,0,0,0.62);
  margin-bottom: 1rem;
  text-transform: none;
}

.hero__title-accent {
  color: var(--gold);
  -webkit-text-stroke: 0;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 650;
  margin-bottom: 2rem;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: #ec2027;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  box-shadow: 0 4px 24px rgba(236,32,39,0.42);
}

.hero__btn:hover {
  background: #ff343b;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(236,32,39,0.56);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBob 2.5s ease-in-out infinite;
}

.scroll-indicator__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.arrow-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: fadeChevron 2s ease-in-out infinite;
}

.arrow-chevron:nth-child(2) {
  animation-delay: 0.3s;
  opacity: 0.5;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeChevron {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.2; }
}

/* ================================================================
   SECTION 2: THE FARM
   ================================================================ */
.section--farm {
  background: #3a6e1a;
}

/* Sky */
.farm__sky {
  background: linear-gradient(
    180deg,
    #b8d4e8 0%,
    #d4e8f4 20%,
    #f0e8c8 55%,
    #f8d890 75%,
    #f4b060 90%,
    #e8845a 100%
  );
}

/* Sun */
.farm__sun {
  inset: auto;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #fff7a0 0%, #ffe040 40%, #f4a020 70%, transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 60px 20px rgba(255,220,60,0.4), 0 0 120px 60px rgba(244,160,32,0.2);
  transition: opacity 120ms linear;
}

/* Sun rays */
.farm__sun-rays {
  inset: auto;
  top: -5%;
  left: 0;
  right: 0;
  height: 65%;
  background: repeating-conic-gradient(
    from 0deg at 50% 20%,
    rgba(255, 220, 60, 0.06) 0deg 5deg,
    transparent 5deg 10deg
  );
  opacity: 0.15;
}

/* Far hills */
.farm__hill-far {
  inset: auto 0 -5% 0;
  height: 55%;
  background: linear-gradient(180deg, #8bc468 0%, #6aaa40 100%);
  clip-path: polygon(
    0% 100%, 0% 50%,
    5% 42%, 11% 32%, 18% 40%, 24% 28%, 31% 20%,
    38% 32%, 43% 22%, 49% 14%, 54% 24%, 59% 16%,
    65% 26%, 71% 35%, 76% 24%, 81% 32%, 87% 22%,
    92% 30%, 96% 22%, 100% 30%, 100% 100%
  );
}

/* Mid hills */
.farm__hill-mid {
  inset: auto 0 -8% 0;
  height: 48%;
  background: linear-gradient(180deg, #5a9830 0%, var(--grass-mid) 100%);
  clip-path: polygon(
    0% 100%, 0% 60%,
    7% 48%, 14% 58%, 20% 44%, 27% 36%, 34% 48%,
    40% 38%, 46% 28%, 53% 40%, 59% 30%, 65% 44%,
    71% 52%, 77% 40%, 83% 50%, 89% 36%, 94% 48%,
    97% 40%, 100% 50%, 100% 100%
  );
}

/* Field */
.farm__field {
  inset: auto 0 -10% 0;
  height: 44%;
  background: linear-gradient(180deg, var(--grass-light) 0%, var(--grass-mid) 40%, var(--grass-dark) 100%);
  clip-path: polygon(
    0% 100%, 0% 72%,
    6% 62%, 14% 70%, 22% 56%, 30% 66%, 38% 52%,
    46% 64%, 54% 50%, 62% 62%, 70% 50%, 78% 64%,
    86% 54%, 93% 66%, 98% 58%, 100% 66%, 100% 100%
  );
}

/* Foreground */
.farm__foreground {
  inset: auto 0 -14% 0;
  height: 36%;
  background: linear-gradient(180deg, var(--grass-dark) 0%, #1e3a0a 100%);
  clip-path: polygon(
    0% 100%, 0% 80%,
    8% 68%, 16% 78%, 24% 64%, 32% 76%, 40% 60%,
    48% 74%, 56% 62%, 64% 78%, 72% 64%, 80% 78%,
    88% 66%, 95% 78%, 100% 70%, 100% 100%
  );
}

/* Farm section layout */
.section__content--farm {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.farm__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.farm__text {
  flex: 1;
}

/* ================================================================
   SECTION 3: THE JOURNEY — Misty Fields
   ================================================================ */
.section--journey {
  background: #a8b8a0;
  min-height: 100vh;
}

/* Base layer */
.journey__base {
  background: linear-gradient(
    180deg,
    #c8d8c0 0%,
    #b0c4a8 30%,
    #98b090 60%,
    #7a9870 100%
  );
}

/* Far mist */
.journey__mist-far {
  background: linear-gradient(
    180deg,
    rgba(240, 248, 244, 0.85) 0%,
    rgba(220, 236, 228, 0.6) 40%,
    transparent 100%
  );
}

/* Far treeline */
.journey__treeline-far {
  inset: auto 0 -5% 0;
  height: 70%;
  background: linear-gradient(180deg, #3a5a2e 0%, #4a6a38 100%);
  clip-path: polygon(
    0% 100%,
    0% 70%, 2% 60%, 3% 50%, 4% 42%, 5% 50%, 6% 40%, 7% 30%,
    8% 40%, 9% 28%, 10% 38%, 11% 26%, 12% 36%, 13% 24%, 14% 34%,
    15% 22%, 16% 32%, 17% 20%, 18% 30%, 19% 40%, 20% 28%, 21% 38%,
    22% 26%, 23% 36%, 24% 24%, 25% 32%, 26% 20%, 27% 28%, 28% 36%,
    29% 24%, 30% 34%, 31% 22%, 32% 30%, 33% 18%, 34% 28%, 35% 36%,
    36% 24%, 37% 32%, 38% 20%, 39% 30%, 40% 38%, 41% 26%, 42% 34%,
    43% 22%, 44% 30%, 45% 18%, 46% 28%, 47% 36%, 48% 24%, 49% 32%,
    50% 22%, 51% 32%, 52% 20%, 53% 30%, 54% 18%, 55% 28%, 56% 36%,
    57% 24%, 58% 34%, 59% 22%, 60% 32%, 61% 20%, 62% 28%, 63% 36%,
    64% 26%, 65% 34%, 66% 22%, 67% 30%, 68% 18%, 69% 28%, 70% 36%,
    71% 26%, 72% 34%, 73% 22%, 74% 32%, 75% 20%, 76% 28%, 77% 36%,
    78% 24%, 79% 34%, 80% 22%, 81% 30%, 82% 38%, 83% 26%, 84% 34%,
    85% 22%, 86% 30%, 87% 18%, 88% 28%, 89% 36%, 90% 24%, 91% 32%,
    92% 20%, 93% 30%, 94% 38%, 95% 26%, 96% 34%, 97% 22%, 98% 32%,
    99% 40%, 100% 60%, 100% 100%
  );
}

/* Mid mist layer */
.journey__mist-mid {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(220, 236, 228, 0.45) 30%,
    rgba(240, 250, 244, 0.7) 55%,
    rgba(220, 240, 232, 0.35) 75%,
    transparent 100%
  );
}

/* Near treeline */
.journey__treeline-near {
  inset: auto 0 -8% 0;
  height: 55%;
  background: linear-gradient(180deg, #2a4020 0%, #3a5028 100%);
  clip-path: polygon(
    0% 100%,
    0% 80%, 1% 65%, 2% 50%, 3% 60%, 4% 45%, 5% 32%, 6% 44%, 7% 30%,
    8% 42%, 9% 28%, 10% 40%, 11% 26%, 12% 38%, 13% 24%, 14% 36%,
    15% 50%, 16% 38%, 17% 26%, 18% 38%, 19% 24%, 20% 34%, 21% 20%,
    22% 32%, 23% 18%, 24% 30%, 25% 40%, 26% 28%, 27% 38%, 28% 24%,
    29% 34%, 30% 20%, 31% 32%, 32% 18%, 33% 30%, 34% 40%, 35% 28%,
    36% 38%, 37% 24%, 38% 34%, 39% 20%, 40% 32%, 41% 44%, 42% 30%,
    43% 18%, 44% 30%, 45% 40%, 46% 28%, 47% 36%, 48% 22%, 49% 32%,
    50% 18%, 51% 30%, 52% 40%, 53% 26%, 54% 36%, 55% 22%, 56% 34%,
    57% 20%, 58% 30%, 59% 42%, 60% 28%, 61% 36%, 62% 22%, 63% 32%,
    64% 44%, 65% 30%, 66% 18%, 67% 30%, 68% 40%, 69% 26%, 70% 36%,
    71% 22%, 72% 34%, 73% 20%, 74% 32%, 75% 44%, 76% 30%, 77% 18%,
    78% 30%, 79% 40%, 80% 26%, 81% 36%, 82% 24%, 83% 34%, 84% 46%,
    85% 32%, 86% 20%, 87% 32%, 88% 44%, 89% 28%, 90% 38%, 91% 24%,
    92% 34%, 93% 20%, 94% 30%, 95% 42%, 96% 28%, 97% 40%, 98% 60%,
    99% 70%, 100% 80%, 100% 100%
  );
}

/* Near mist */
.journey__mist-near {
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 45%,
    rgba(230, 245, 238, 0.8) 60%,
    rgba(240, 250, 244, 0.9) 70%,
    rgba(240, 250, 244, 0.55) 85%,
    transparent 100%
  );
}

/* Ground */
.journey__ground {
  inset: auto 0 -10% 0;
  height: 35%;
  background: linear-gradient(180deg, #5a7848 0%, #3a5028 100%);
  clip-path: polygon(
    0% 100%, 0% 78%, 10% 68%, 20% 80%, 30% 66%, 40% 78%,
    50% 64%, 60% 78%, 70% 66%, 80% 80%, 90% 68%, 100% 78%, 100% 100%
  );
}

/* Journey section content */
.section__content--journey {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.section__content--journey .section__heading--light {
  margin-bottom: 3rem;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--transition-base), background var(--transition-base);
}

.stat-box:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

.stat-box__number {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-box__number span {
  font-size: 1.8rem;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 0.2rem;
}

.stat-box__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-box__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ================================================================
   SECTION 4: THE CRAFT
   ================================================================ */
.section--craft {
  position: relative;
  background: var(--craft-dark);
  min-height: 100vh;
  align-items: flex-start;
}

.craft__bg-deep {
  background: linear-gradient(135deg, #0a0404 0%, #1a0808 40%, #280e0e 70%, #1a0808 100%);
}

/* Subtle texture overlay */
.craft__texture {
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 6px,
      rgba(255,255,255,0.008) 6px,
      rgba(255,255,255,0.008) 12px
    );
}

/* Warm light glows */
.craft__glow-left {
  inset: auto;
  top: 10%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(139,26,26,0.35) 0%, transparent 70%);
  border-radius: 50%;
}

.craft__glow-right {
  inset: auto;
  top: 20%;
  right: -10%;
  width: 45%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(212,160,23,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

/* Craft content */
.section__content--craft {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.section__content--craft::before {
  content: "";
  position: absolute;
  top: 4.7rem;
  left: 50%;
  width: min(78vw, 860px);
  height: 240px;
  background:
    linear-gradient(88deg, transparent 0 13%, rgba(0,0,0,0.34) 13% 82%, transparent 82% 100%),
    linear-gradient(103deg, transparent 0 10%, rgba(0,0,0,0.26) 10% 23%, transparent 23% 100%);
  clip-path: polygon(0 50%, 8% 31%, 70% 31%, 82% 39%, 100% 39%, 100% 50%, 82% 50%, 70% 60%, 8% 60%);
  opacity: 0.45;
  transform: translateX(-50%) rotate(-7deg);
  filter: blur(0.6px);
  pointer-events: none;
  z-index: 0;
}

.section__content--craft > * {
  position: relative;
  z-index: 1;
}

/* Animated divider */
.craft__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem auto 2rem;
  max-width: 400px;
}

.craft__divider-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

#craft-divider-line-right {
  transform-origin: right center;
}

.craft__divider.revealed .craft__divider-line {
  transform: scaleX(1);
}

.craft__divider-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.craft__intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 980px;
  margin: 0 auto;
}

.craft__intro .section__body {
  max-width: none;
  margin-bottom: 0;
}

/* Craft workflow */
.craft__workflow {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: 2rem;
  text-align: left;
}

.craft__bench {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
  overflow: visible;
}

.craft__bench-image {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: 1.3;
  overflow: hidden;
  background: rgba(18, 12, 10, 0.8);
  border: 1px solid rgba(212,160,23,0.22);
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35), inset 0 0 0 10px rgba(255,255,255,0.025);
  transform: rotate(-3deg);
}

.craft__bench-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  pointer-events: none;
}

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

.craft__steps {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  counter-reset: craft-step;
}

.craft__step {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(212,160,23,0.18);
  border-radius: var(--radius-sm);
}

.craft__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  color: var(--gold);
  border: 1px solid rgba(212,160,23,0.45);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.craft__step h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.craft__step p {
  color: rgba(255,255,255,0.66);
  line-height: 1.6;
  font-size: 0.95rem;
}

.craft__service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 1.75rem;
  border: 1px solid rgba(212,160,23,0.18);
  border-radius: var(--radius-sm);
  background: rgba(212,160,23,0.18);
  text-align: left;
}

.craft__service-strip div {
  padding: 1.1rem 1.2rem;
  background: rgba(10,4,4,0.7);
}

.craft__service-strip strong,
.craft__service-strip span {
  display: block;
}

.craft__service-strip strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.craft__service-strip span {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ================================================================
   SECTION 5: OUR RANGE
   ================================================================ */
.section--range {
  background: var(--cream);
  min-height: 100vh;
}

.range__bg {
  background: linear-gradient(160deg, #faf7f0 0%, #f0ebe0 40%, #e8dfd0 70%, #f0ebe0 100%);
}

.range__texture {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212,160,23,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(45,80,22,0.05) 0%, transparent 50%);
}

/* Range content */
.section__content--range {
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.section__content--range .section__label {
  color: var(--grass-dark);
  border-color: var(--grass-dark);
}

.section__content--range .section__heading,
.section__content--range .section__body {
  color: var(--text-dark);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-card--beef::before   { background: linear-gradient(90deg, #8b1a1a, #c0392b); }
.product-card--pork::before   { background: linear-gradient(90deg, #c0748a, #d4899a); }
.product-card--lamb::before   { background: linear-gradient(90deg, #c8b89a, #a89070); }
.product-card--poultry::before { background: linear-gradient(90deg, #e8c87a, #d4a060); }

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card__icon {
  margin-bottom: 1.2rem;
  display: flex;
}

.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.product-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-card__list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1.2rem;
  position: relative;
}

.product-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ================================================================
   SECTION 6: DELIVERY
   ================================================================ */
.section--delivery {
  background: #c0d0dc;
  min-height: 100vh;
}

/* Sky */
.delivery__sky {
  background: linear-gradient(
    180deg,
    #d8e8f4 0%,
    #e4eef8 30%,
    #c8dce8 60%,
    #b0c8d8 100%
  );
}

/* Horizon */
.delivery__horizon {
  inset: auto 0 -5% 0;
  height: 55%;
  background: linear-gradient(
    180deg,
    rgba(200, 220, 210, 0.5) 0%,
    rgba(180, 210, 195, 0.6) 50%,
    rgba(160, 195, 178, 0.7) 100%
  );
  clip-path: polygon(
    0% 100%, 0% 40%,
    15% 32%, 30% 38%, 45% 28%, 60% 34%, 75% 26%, 90% 32%, 100% 28%,
    100% 100%
  );
}

/* Road background */
.delivery__road-bg {
  inset: auto 0 -8% 0;
  height: 50%;
  background: linear-gradient(180deg, #9ab0a8 0%, #788a80 100%);
  clip-path: polygon(
    0% 100%, 20% 40%, 50% 35%, 80% 40%, 100% 100%
  );
}

/* Road */
.delivery__road {
  inset: auto 0 -10% 0;
  height: 45%;
  background: linear-gradient(180deg, #6b7280 0%, #4a5260 100%);
  clip-path: polygon(
    25% 0%, 75% 0%, 100% 100%, 0% 100%
  );
}

.road-markings {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 10% 0;
}

.road-mark {
  width: 4px;
  height: 40px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: roadScroll 1.8s linear infinite;
}

.road-mark:nth-child(2) { animation-delay: -0.36s; }
.road-mark:nth-child(3) { animation-delay: -0.72s; }
.road-mark:nth-child(4) { animation-delay: -1.08s; }
.road-mark:nth-child(5) { animation-delay: -1.44s; }

@keyframes roadScroll {
  0%   { opacity: 0; transform: translateY(-20px); }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(20px); }
}

/* Verge grass */
.delivery__verge {
  inset: auto 0 -12% 0;
  height: 35%;
  background: transparent;
}

.delivery__verge::before,
.delivery__verge::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 100%;
  background: linear-gradient(180deg, #8ab060 0%, var(--grass-mid) 100%);
}

.delivery__verge::before {
  left: 0;
  width: 22%;
  clip-path: polygon(0% 100%, 0% 20%, 100% 60%, 100% 100%);
}

.delivery__verge::after {
  right: 0;
  width: 22%;
  clip-path: polygon(0% 60%, 100% 20%, 100% 100%, 0% 100%);
}

/* Delivery content */
.section__content--delivery {
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.section__content--delivery .section__heading {
  color: var(--sky-blue);
}

.section__content--delivery .section__body {
  color: var(--text-mid);
}

.delivery__points {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.5rem;
  max-width: 620px;
}

.delivery__point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  backdrop-filter: blur(6px);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.delivery__point:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.delivery__point-check {
  flex-shrink: 0;
  margin-top: 2px;
}

.delivery__point strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sky-blue);
  margin-bottom: 0.2rem;
}

.delivery__point p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ================================================================
   DISTRIBUTION SECTION
   ================================================================ */
.section--distribution {
  background: #f5f1e8;
  min-height: 100vh;
}

.section__content--distribution {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 3rem;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.distribution__copy .section__label {
  color: var(--grass-dark);
  border-color: var(--grass-dark);
}

.distribution__selected {
  max-width: 420px;
  margin-top: 2rem;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1.5px solid rgba(45,80,22,0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.distribution__selected-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grass-mid);
}

.distribution__selected strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.1;
  color: var(--text-dark);
}

.distribution__map-panel {
  background: var(--white);
  border: 1.5px solid rgba(45,80,22,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-md);
}

.distribution__map {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.distribution__map svg {
  width: 100%;
  max-height: 560px;
  height: auto;
  display: block;
}

.distribution__map-fallback {
  width: 100%;
}

.distribution__map-object {
  width: 100%;
  min-height: 420px;
  display: block;
  border: 0;
}

.distribution-map__county {
  cursor: none;
  transition: fill var(--transition-base), opacity var(--transition-base), transform var(--transition-base);
  transform-box: fill-box;
  transform-origin: center;
}

.distribution-map__county:hover,
.distribution-map__county:focus {
  opacity: 0.9;
  transform: scale(1.018);
  outline: none;
}

.distribution-map__county.is-selected {
  fill: var(--gold) !important;
  opacity: 1;
}

.distribution-map__van-cursor {
  --van-x: 50%;
  --van-y: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 46px;
  height: 26px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--van-x), var(--van-y), 0) translate(-18px, -18px);
  transition: opacity 160ms ease;
}

.distribution-map__van-cursor.is-visible {
  opacity: 1;
}

.distribution-map__van-body {
  position: absolute;
  left: 3px;
  top: 5px;
  width: 38px;
  height: 17px;
  background: var(--deep-green);
  border: 2px solid var(--white);
  border-radius: 5px 8px 4px 4px;
  box-shadow: 0 6px 12px rgba(15, 32, 16, 0.18);
  animation: van-chug 420ms ease-in-out infinite;
}

.distribution-map__van-body::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 13px;
  height: 4px;
  background: var(--gold);
  border-radius: 999px;
}

.distribution-map__van-cab {
  position: absolute;
  right: -5px;
  top: 4px;
  width: 12px;
  height: 11px;
  background: var(--deep-green);
  border: 2px solid var(--white);
  border-left: 0;
  border-radius: 0 6px 4px 0;
}

.distribution-map__van-window {
  position: absolute;
  right: 0;
  top: 6px;
  width: 7px;
  height: 5px;
  background: #dcefe9;
  border-radius: 1px 4px 1px 1px;
}

.distribution-map__van-wheel {
  position: absolute;
  bottom: -5px;
  width: 8px;
  height: 8px;
  background: var(--text-dark);
  border: 2px solid var(--white);
  border-radius: 50%;
  animation: van-wheel 420ms linear infinite;
}

.distribution-map__van-wheel--front {
  right: 1px;
}

.distribution-map__van-wheel--rear {
  left: 5px;
}

.distribution__map-status {
  color: var(--text-mid);
  font-size: 0.95rem;
  text-align: center;
}

@keyframes van-chug {
  0%, 100% {
    transform: translateY(0) rotate(-1.5deg);
  }

  50% {
    transform: translateY(-2px) rotate(1.5deg);
  }
}

@keyframes van-wheel {
  to {
    transform: rotate(360deg);
  }
}

/* ================================================================
   ACCREDITATIONS SECTION
   ================================================================ */
.section--accreditations {
  background: var(--cream);
  min-height: auto;
  padding: 5rem 0;
}

.section__content--accreditations {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.accreditations__intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #555;
}

/* ── Carousel wrapper ─────────────────────────────────────────── */
.accred-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.accred-carousel__track-wrap {
  overflow: hidden;
  width: 100%;
  padding: 1.8rem 0;
}

.accred-carousel__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  min-height: 360px;
}

/* Each slide */
.accred-card {
  flex: 0 0 clamp(160px, 24vw, 230px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  box-sizing: border-box;
  opacity: 0;
  transform: scale(0.78);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
  pointer-events: none;
  display: none;
}

.accred-card.is-visible {
  display: flex;
  opacity: 0.62;
  transform: scale(0.86);
  pointer-events: auto;
}

.accred-card.is-active {
  flex-basis: clamp(240px, 34vw, 340px);
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 14px 44px rgba(0,0,0,0.16);
  z-index: 2;
}

.accred-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.accred-card__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
}

/* Placeholder shown until image loads */
.accred-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #deecd0, #c8d8bc);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grass-dark);
  letter-spacing: 0.05em;
  z-index: 1;
}

.accred-card__name {
  min-height: 2.4em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.accred-card.is-active .accred-card__name {
  font-size: 0.95rem;
}

/* Prev / Next buttons */
.accred-carousel__btn {
  flex-shrink: 0;
  background: #fff;
  border: 2px solid rgba(45,80,22,0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--grass-dark);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.accred-carousel__btn:hover {
  background: var(--grass-dark);
  color: #fff;
  border-color: var(--grass-dark);
  transform: scale(1.08);
}

/* Dots */
.accred-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.accred-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(45,80,22,0.2);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}

.accred-carousel__dot.active {
  background: var(--grass-dark);
  transform: scale(1.5);
}

@media (max-width: 720px) {
  .accred-carousel {
    gap: 0.35rem;
  }

  .accred-carousel__track-wrap {
    padding: 1rem 0;
  }

  .accred-carousel__track {
    gap: 0.45rem;
    min-height: 250px;
  }

  .accred-card {
    flex: 0 0 22vw;
    padding: 0.85rem 0.55rem;
    border-radius: 12px;
  }

  .accred-card.is-visible {
    display: flex;
    transform: scale(0.82);
  }

  .accred-card.is-active {
    display: flex;
    flex: 0 0 36vw;
    transform: scale(1);
  }

  .accred-card__name {
    min-height: 3.2em;
    font-size: 0.58rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }

  .accred-card.is-active .accred-card__name {
    font-size: 0.7rem;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(6px);
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: default;
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.lightbox__close:hover {
  opacity: 1;
}

/* ================================================================
   SECTION 7: CONTACT
   ================================================================ */
.section--contact {
  background: var(--navy);
  min-height: 100vh;
  display: block;
}

.contact__bg-deep {
  background: linear-gradient(
    135deg,
    #060e1a 0%,
    #0d1b2a 30%,
    #0f2238 60%,
    #0d1b2a 100%
  );
}

.contact__bg-mid {
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(26,80,50,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 60%, rgba(13,27,42,0.4) 0%, transparent 70%);
}

.contact__accent {
  background: radial-gradient(ellipse 40% 30% at 50% 0%, rgba(212,160,23,0.1) 0%, transparent 60%);
}

.section__content--contact {
  padding-top: 8rem;
  padding-bottom: 3rem;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

/* Info card */
.contact__info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.contact__info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact__info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact__info-item:first-child {
  padding-top: 0;
}

.contact__info-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact__info-value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--transition-base);
}

a.contact__info-value:hover {
  color: var(--gold);
}

/* Contact badges */
.contact__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.contact__badge {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

/* Form */
.contact__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.form-group label span {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition-base), background var(--transition-base);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 3rem;
}

.password-toggle {
  position: absolute;
  right: 0.55rem;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: rgba(255,255,255,0.6);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color var(--transition-base), background var(--transition-base);
}

.password-toggle:hover,
.password-toggle:focus-visible {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.password-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy-mid);
  color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212,160,23,0.06);
}

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: rgba(231,111,81,0.85);
  background: rgba(231,111,81,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  text-align: left;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
}

.form-success.show {
  display: block;
}

.form-success--success {
  color: var(--gold-light);
  background: rgba(212,160,23,0.1);
  border-color: rgba(212,160,23,0.35);
}

.form-success--error {
  color: #ffb09f;
  background: rgba(231,111,81,0.12);
  border-color: rgba(231,111,81,0.35);
}

.form-success--info {
  color: rgba(255,255,255,0.84);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.footer__tagline {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin-bottom: 1.5rem;
}

.footer__nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  transition: color var(--transition-base);
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

.admin-quick-link {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  color: rgba(255,255,255,0.52);
  background: rgba(13,27,42,0.52);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  opacity: 0.45;
  backdrop-filter: blur(8px);
  transition: opacity var(--transition-base), color var(--transition-base), background var(--transition-base), transform var(--transition-base);
}

.admin-quick-link:hover,
.admin-quick-link:focus-visible {
  color: var(--gold);
  background: rgba(13,27,42,0.82);
  opacity: 1;
  transform: translateY(-2px);
}

.admin-quick-link svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ================================================================
   MEDIA PAGE
   ================================================================ */
.media-page {
  background: var(--cream);
}

.media-hero {
  min-height: 58vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(13,27,42,0.78), rgba(13,27,42,0.92)),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(236,32,39,0.32), transparent 65%),
    linear-gradient(180deg, #102033 0%, #213b48 100%);
  color: var(--white);
  padding: 9rem 2rem 5rem;
}

.media-hero__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.media-hero h1 {
  max-width: 840px;
  font-family: var(--font-serif);
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}

.media-hero p {
  max-width: 650px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.media-section {
  padding: clamp(3.5rem, 8vw, 6rem) 2rem;
}

.media-section__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.media-feature {
  max-width: 760px;
  margin-bottom: 3rem;
}

.media-feature__label {
  display: inline-block;
  color: #ec2027;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.media-feature h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.media-feature p {
  max-width: 620px;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.media-card {
  min-height: 230px;
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid rgba(45,80,22,0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.media-card span {
  display: inline-block;
  color: #ec2027;
  font-weight: 800;
  margin-bottom: 2rem;
}

.media-card h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.media-card p {
  color: var(--text-mid);
  line-height: 1.65;
}

.media-posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.media-post {
  display: grid;
  grid-template-columns: minmax(190px, 0.85fr) 1fr;
  min-height: 250px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(45,80,22,0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.media-post__visual {
  position: relative;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(236,32,39,0.82), rgba(13,27,42,0.88)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.12) 0 8px, transparent 8px 18px);
}

.media-post__visual--article {
  background:
    linear-gradient(135deg, rgba(45,80,22,0.82), rgba(13,27,42,0.86)),
    radial-gradient(circle at 28% 30%, rgba(255,255,255,0.18), transparent 28%);
}

.media-post__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 62px;
  height: 62px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.24);
}

.media-post__play::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 19px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #ec2027;
}

.media-post__content {
  padding: 1.6rem;
  align-self: center;
}

.media-post__type {
  display: inline-block;
  color: #ec2027;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.media-post h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.media-post p {
  color: var(--text-mid);
  line-height: 1.65;
}

.published-posts {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.published-posts__header {
  margin-bottom: 1.5rem;
}

.published-posts__header h2,
.admin-posts__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.published-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.published-post-card,
.admin-post-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(45,80,22,0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.published-post-card__media {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), transparent 42%),
    linear-gradient(135deg, rgba(13,27,42,0.92), rgba(236,32,39,0.76));
}

.published-post-card__media--video {
  aspect-ratio: auto;
  min-height: 360px;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.published-post-card__asset {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.published-post-card__asset--image {
  object-fit: cover;
}

.published-post-card__asset--video {
  width: auto;
  max-width: 100%;
  max-height: 70vh;
  height: auto;
}

.published-post-card__content,
.admin-post-card {
  padding: 1.25rem;
}

.published-post-card__meta,
.admin-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: #ec2027;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.published-post-card h3,
.admin-post-card h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}

.published-post-card p,
.admin-post-card p {
  color: var(--text-mid);
  line-height: 1.6;
}

.published-posts__empty {
  color: var(--text-mid);
  background: rgba(255,255,255,0.7);
  border: 1px dashed rgba(45,80,22,0.22);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
}

.admin-page {
  background: var(--cream);
}

.admin-login-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(13,27,42,0.88), rgba(13,27,42,0.96)),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(236,32,39,0.24), transparent 65%);
}

.admin-login-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 7rem 1.5rem 3rem;
}

.admin-login-panel {
  width: min(100%, 430px);
  color: var(--white);
}

.admin-login-panel h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  line-height: 1;
  margin: 0.75rem 0 1rem;
}

.admin-login-panel p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.admin-login-form {
  background: rgba(255,255,255,0.96);
}

.admin-hero {
  min-height: 42vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(13,27,42,0.82), rgba(13,27,42,0.94)),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(236,32,39,0.26), transparent 65%);
  color: var(--white);
  padding: 9rem 2rem 4rem;
}

.admin-hero__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.admin-hero h1 {
  max-width: 760px;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.admin-hero p {
  max-width: 620px;
  color: rgba(255,255,255,0.78);
  font-size: 1.12rem;
  line-height: 1.7;
}

.admin-hero__logout {
  margin-top: 1.5rem;
}

.admin-section {
  padding: clamp(3.5rem, 8vw, 6rem) 2rem;
}

.admin-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 2rem;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.admin-form,
.admin-posts {
  background: var(--white);
  border: 1px solid rgba(45,80,22,0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.admin-form {
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.admin-form .form-group label {
  color: var(--text-mid);
}

.admin-form .form-group input,
.admin-form .form-group select,
.admin-form .form-group textarea {
  background: #fbfaf6;
  border-color: rgba(45,80,22,0.2);
  color: var(--text-dark);
}

.admin-form .password-toggle {
  color: rgba(28,28,28,0.48);
}

.admin-form .password-toggle:hover,
.admin-form .password-toggle:focus-visible {
  color: #b31920;
  background: rgba(236,32,39,0.08);
}

.admin-form .form-group input::placeholder,
.admin-form .form-group textarea::placeholder {
  color: rgba(28,28,28,0.38);
}

.admin-form .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(28,28,28,0.55)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.admin-form .form-group select option {
  background: var(--white);
  color: var(--text-dark);
}

.admin-posts {
  padding: 1.5rem;
}

.admin-posts__header {
  margin-bottom: 1.25rem;
}

.admin-posts__list {
  display: grid;
  gap: 1rem;
}

.admin-post-card__actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.admin-post-card__delete {
  border: 1px solid rgba(236,32,39,0.3);
  background: rgba(236,32,39,0.08);
  color: #b31920;
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.footer--standalone {
  margin-top: 0;
}

/* ================================================================
   RESPONSIVE STYLES
   ================================================================ */

/* Tablet */
@media (max-width: 900px) {
  .section__content--farm {
    flex-direction: column;
    text-align: center;
  }

  .farm__icon {
    margin: 0 auto;
  }

  .farm__text .section__body {
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 2rem auto 0;
  }

  .craft__workflow {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 3rem auto 0;
  }

  .craft__intro {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .craft__bench {
    min-height: 300px;
  }

  .craft__service-strip {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3rem auto 0;
  }

  .section__content--distribution {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .distribution__selected {
    max-width: 100%;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact__form {
    padding: 1.8rem;
  }

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

  .media-posts {
    grid-template-columns: 1fr;
  }

  .published-posts__grid {
    grid-template-columns: 1fr;
  }

  .admin-section__inner {
    grid-template-columns: 1fr;
  }
}

/* Mobile nav */
@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(13,27,42,0.97);
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 0.9rem 2rem;
    border-radius: 0;
    font-size: 0.95rem;
  }

  .media-hero {
    min-height: 52vh;
    padding: 8rem 1.5rem 4rem;
  }

  .media-section {
    padding: 3.5rem 1.5rem;
  }

  .admin-hero {
    min-height: 46vh;
    padding: 8rem 1.5rem 4rem;
  }

  .admin-section {
    padding: 3.5rem 1.5rem;
  }

  .media-post {
    grid-template-columns: 1fr;
  }

  .media-post__visual {
    min-height: 190px;
  }

  .published-post-card__media--video {
    min-height: 300px;
    max-height: 62vh;
  }

  .published-post-card__asset--video {
    max-height: 62vh;
  }

  .brand-art--nav {
    width: 112px;
  }

  .hero__content {
    padding-top: 3vh;
  }

  .hero__grazing {
    bottom: 14%;
    transform: scale(0.78);
    transform-origin: center bottom;
  }

  .grazing-animal--two,
  .grazing-animal--three {
    display: none;
  }

  .hero__logo-lockup {
    width: min(86vw, 460px);
    margin-bottom: 1.25rem;
  }

  .hero__title {
    font-size: clamp(2.25rem, 10vw, 4.2rem);
    letter-spacing: 0;
  }

  .section__heading {
    font-size: clamp(1.9rem, 7vw, 3rem);
  }

  .section__content {
    padding: 6rem 1.5rem 4rem;
  }

  .stats-grid {
    max-width: 100%;
  }

  .product-grid {
    max-width: 100%;
  }

  .delivery__points {
    max-width: 100%;
  }

  .distribution__map {
    min-height: 320px;
  }
}

/* ================================================================
   ABOUT US — HORIZONTAL SCROLL SECTION
   ================================================================ */

.about-scroll-section {
  /* 300vh = scroll room to transition through 3 panels */
  height: 300vh;
  position: relative;
}

.about-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: stretch;
}

.about-track {
  display: flex;
  width: 300vw;
  will-change: transform;
}

/* Individual panels */
.about-panel {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-shrink: 0;
  overflow: hidden;
}

/* Image half */
.about-panel__image {
  position: relative;
  overflow: hidden;
}

.about-panel__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
}

/* Placeholder — visible until real image loads */
.about-panel__image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #c8d8bc 0%, #deecd0 50%, #e8f4dd 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 1;
  color: var(--grass-dark);
  font-size: 0.9rem;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.03em;
}

/* Content half */
.about-panel__content {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
  margin: auto;
  max-height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
}

/* Flip content to left side on panel 2 */
.about-panel__content--right {
  order: -1;
}

.about-panel__heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin: 0.3rem 0 0.75rem;
  letter-spacing: -0.01em;
}

.about-panel__body {
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  color: #4a4a4a;
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.about-panel__cta {
  margin-top: 0.75rem;
  align-self: flex-start;
  color: var(--grass-dark);
  border-color: var(--grass-dark);
}

.about-panel__cta:hover {
  background: var(--grass-dark);
  color: var(--white);
}

/* Progress dots */
.about-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.65rem;
  z-index: 20;
}

.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(45, 80, 22, 0.2);
  transition: background 0.35s ease, transform 0.35s ease;
  cursor: default;
}

.about-dot--active {
  background: var(--grass-dark);
  transform: scale(1.5);
}

/* Scroll hint arrow */
.about-scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  right: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--grass-dark);
  opacity: 0.65;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 20;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.04em;
}

.about-scroll-hint.hidden {
  opacity: 0;
}

/* ── Responsive: mobile stacks vertically ────────────────────── */
@media (max-width: 720px) {
  .about-scroll-section {
    height: auto;
  }

  .about-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .about-track {
    flex-direction: column;
    width: 100%;
    transform: none !important;
  }

  .about-panel {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 60vw auto;
  }

  .about-panel:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .about-panel__content--right {
    order: 0;
  }

  .about-panel__image {
    height: 60vw;
    position: relative;
  }

  .about-panel__content {
    padding: 2.5rem 1.5rem;
  }

  .about-dots,
  .about-scroll-hint {
    display: none;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__logo-lockup {
    width: min(90vw, 360px);
  }

  .hero__badge {
    font-size: 0.7rem;
  }

  .hero__subtitle {
    letter-spacing: 0.06em;
  }

  .hero__btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.85rem;
  }

  .stat-box__number {
    font-size: 2.6rem;
  }

  .craft__divider {
    max-width: 280px;
  }

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

  .craft__step-number {
    width: 2.6rem;
    height: 2.6rem;
  }

  .contact__badges {
    justify-content: center;
  }
}
