/* ============================================
   Arnold Bros Films — styles.css
   ============================================ */

:root {
  --bg:          #FAF6EF;
  --bg-alt:      #F0E9DC;
  --dark:        #16130F;
  --dark-alt:    #211C16;
  --accent:      #C1793C;
  --accent-dark: #A6632B;
  --text:        #2A241C;
  --text-light:  #F5F1E8;
  --text-muted:  #6B6155;
  --border:      rgba(42, 36, 28, 0.12);
  --border-light: rgba(245, 241, 232, 0.18);

  --font-display: 'Archivo Black', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-script:  'Alex Brush', cursive;
  --font-quote:   'Playfair Display', serif;

  --section-pad: clamp(64px, 10vw, 140px);
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

section { position: relative; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow-light { color: var(--accent); }

.accent-text { color: var(--accent); }
.accent-dot  { color: var(--accent); }

em {
  font-family: var(--font-quote);
  font-style: italic;
  color: var(--accent);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ── Buttons ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-solid {
  background: var(--accent);
  color: var(--text-light);
}
.btn-solid:hover { background: var(--accent-dark); }
.btn-solid:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-solid:disabled:hover { background: var(--accent); }

.btn-outline {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--bg); }

.btn-ghost-light {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-light);
}
.btn-ghost-light:hover { background: var(--border-light); }

.link-arrow {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: gap 0.25s ease;
}
.link-arrow:hover { gap: 16px; }

/* ── Intro Splash ────────────────────────────────────── */

.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  clip-path: circle(150% at 50% 50%);
  -webkit-clip-path: circle(150% at 50% 50%);
  transition: clip-path 1s cubic-bezier(0.76, 0, 0.24, 1), -webkit-clip-path 1s cubic-bezier(0.76, 0, 0.24, 1);
  --splash-logo-w: min(82vw, 600px);
}

.splash::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: calc(var(--splash-logo-w) * 1.65);
  height: calc(var(--splash-logo-w) * 1.65);
  max-width: 900px;
  max-height: 900px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 246, 239, 0.97) 0%, rgba(250, 246, 239, 0.85) 26%, rgba(250, 246, 239, 0.35) 52%, rgba(250, 246, 239, 0.08) 68%, transparent 80%);
  opacity: 0;
  animation: glow-in 1.1s ease forwards;
  animation-delay: 0.1s;
}

@keyframes glow-in {
  to { opacity: 1; }
}

.splash.is-leaving {
  clip-path: circle(0% at 50% 50%);
  -webkit-clip-path: circle(0% at 50% 50%);
}
.splash.is-hidden { display: none; }

.splash-mark {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: scale(0.82);
  animation: splash-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.splash.is-leaving .splash-mark { transform: scale(1.22); }

@keyframes splash-in {
  to { opacity: 1; transform: scale(1); }
}

.splash-logo-wrap {
  position: relative;
  width: var(--splash-logo-w);
}

.splash-logo-img { width: 100%; display: block; }

.splash-spark {
  position: absolute;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  background: #F5A623;
  filter: drop-shadow(0 0 3px rgba(120, 70, 20, 0.55)) drop-shadow(0 0 8px rgba(255, 220, 150, 0.9));
  opacity: 0;
  animation: twinkle 0.85s ease-in-out 2;
}

.splash-spark.spark-leaf {
  width: 9px;
  height: 9px;
  background: #fff3d6;
  filter: drop-shadow(0 0 3px rgba(90, 110, 60, 0.4)) drop-shadow(0 0 7px rgba(255, 244, 214, 0.95));
}

/* positions match fruit clusters in assets/images/logo.png (873x256 crop) */
.spark-1 { left: 81.9%; top: 29.3%; animation-delay: 0.5s; }
.spark-2 { left: 89.9%; top: 35.2%; animation-delay: 0.85s; }
.spark-3 { left: 77.9%; top: 46.9%; animation-delay: 0.65s; }
.spark-4 { left: 87.6%; top: 46.9%; animation-delay: 1.0s; }
.spark-5 { left: 92.8%; top: 52.0%; animation-delay: 0.75s; }
.spark-6 { left: 90.1%; top: 58.6%; animation-delay: 1.1s; }

/* positions match leaf highlight clusters in the same crop */
.spark-7  { left: 85.0%; top: 20.3%; animation-delay: 0.4s; }
.spark-8  { left: 78.1%; top: 32.0%; animation-delay: 0.95s; }
.spark-9  { left: 93.6%; top: 37.9%; animation-delay: 0.55s; }
.spark-10 { left: 74.7%; top: 43.8%; animation-delay: 1.15s; }
.spark-11 { left: 81.6%; top: 14.5%; animation-delay: 0.7s; }

@keyframes twinkle {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.2) rotate(0deg); }
  50%  { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(20deg); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.3) rotate(40deg); }
}

@media (prefers-reduced-motion: reduce) {
  .splash, .splash::before, .splash-mark, .splash-spark { animation: none !important; transition: none !important; }
}

/* ── Header ──────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(8px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.site-header.is-scrolled .logo { color: var(--text); }

.logo-script {
  font-family: var(--font-script);
  font-size: 30px;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  margin-left: 4px;
}

.nav {
  display: flex;
  gap: 40px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.site-header.is-scrolled .nav { color: var(--text); }

.nav a { position: relative; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; border-color: var(--text-light); color: var(--text-light); }
.site-header.is-scrolled .nav-cta { border-color: var(--text); color: var(--text); }
.site-header.is-scrolled .nav-cta:hover { background: var(--text); color: var(--bg); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--text-light);
  transition: background 0.3s ease;
}
.site-header.is-scrolled .nav-toggle span { background: var(--text); }

/* ── Hero ────────────────────────────────────────────── */

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

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(193, 121, 60, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(22,19,15,0.5) 0%, rgba(22,19,15,0.85) 75%, var(--dark) 100%),
    linear-gradient(120deg, #2b2318 0%, #16130F 60%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sits over the b-roll so the headline stays readable on the brighter clips.
   Heavier on the left, where the copy is, so the footage stays visible right.
   Kept neutral on purpose — the amber radial from the old placeholder gradient
   read as an orange wash once real footage was behind it. */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22,19,15,0.8) 0%, rgba(22,19,15,0.4) 55%, rgba(22,19,15,0.2) 100%),
    linear-gradient(180deg, rgba(22,19,15,0.45) 0%, rgba(22,19,15,0.7) 70%, var(--dark) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 160px 32px 120px;
  width: 100%;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 104px);
  color: var(--text-light);
  max-width: 900px;
}

.hero-copy {
  font-size: 18px;
  color: rgba(245, 241, 232, 0.72);
  max-width: 480px;
  margin: 28px 0 40px;
}

.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  opacity: 0.6;
  font-size: 18px;
  z-index: 2;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ── Partner Marquee ─────────────────────────────────── */

.partners {
  background: var(--bg-alt);
  padding: 40px 0;
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.marquee { width: 100%; overflow: hidden; }

.marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  animation: scroll-left 32s linear infinite;
}

.marquee-track .dot { color: var(--accent); font-style: normal; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section Heads ───────────────────────────────────── */

.section-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  max-width: 780px;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head-row h2 { text-transform: none; font-family: var(--font-display); text-transform: uppercase; }

/* ── Process (How We Work) ──────────────────────────── */

.process { padding: var(--section-pad) 0; }

.process-steps {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step { flex: 1; min-width: 0; }

.step-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 24px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
}

.step-connector {
  color: var(--accent);
  font-size: 18px;
  padding-top: 16px;
}

/* ── Reel ────────────────────────────────────────────── */

.reel {
  background: var(--dark);
  color: var(--text-light);
  padding: var(--section-pad) 32px;
  text-align: center;
}

.reel-inner { max-width: 620px; margin: 0 auto 56px; }

.reel h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 16px 0 20px;
}

.reel-copy { color: rgba(245, 241, 232, 0.65); font-size: 17px; }

.reel-player {
  max-width: 960px;
  margin: 0 auto;
}

.reel-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(193,121,60,0.18), transparent 65%),
    linear-gradient(135deg, #2b2318, #16130F);
  border: 1px solid var(--border-light);
}

.reel-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.play-btn {
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: rgba(193, 121, 60, 0.12);
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}
.play-btn:hover { transform: scale(1.08); background: var(--accent); }

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.reel-play[hidden] { display: none; }

/* ── Why Arnold Bros ─────────────────────────────────── */

/* Standalone section between Reel and Services. No background override —
   default var(--bg), matching Process/Projects, so it doesn't sit adjacent
   to another --bg-alt section (Services is --bg-alt right after it). */
.why-us {
  padding: var(--section-pad) 32px;
  text-align: center;
}

.why-us h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 40px;
}

/* Film strip carousel carrying the quote plus the three reasons as four
   slides — sprocket holes top and bottom, one frame in view at a time.
   Holes are punched with var(--bg): this section has no background
   override, so the holes read as true cutouts showing the page behind,
   not a colour patch. */
.filmstrip {
  max-width: var(--container);
  margin: 56px auto 0;
  background: var(--dark);
  border-radius: 4px;
  overflow: hidden;
}

.filmstrip-sprockets {
  height: 16px;
  background-image: radial-gradient(circle, var(--bg) 3.5px, transparent 4px);
  background-size: 32px 16px;
  background-position: 16px center;
  background-repeat: repeat-x;
}

.filmstrip-viewport { position: relative; }

.filmstrip-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.filmstrip-track::-webkit-scrollbar { display: none; }

/* Every frame carries the orchard photo — same background that used to be
   exclusive to the quote slide, reused here (see .mission-quote) — so the
   whole strip reads as one continuous roll of film rather than three plain
   dark cards trailing one real photo frame. */
.filmstrip-frame {
  position: relative;
  isolation: isolate;
  flex: 0 0 100%;
  min-width: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 72px;
  scroll-snap-align: center;
}

.filmstrip-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(22, 19, 15, 0.34) 0%, rgba(22, 19, 15, 0.5) 100%),
    url('../assets/images/about-orchard-bg.jpg') center / cover no-repeat;
}

.filmstrip-frame-inner { max-width: 620px; margin: 0 auto; text-align: center; }

.filmstrip-frame h3 {
  color: var(--text-light);
  font-size: 19px;
  margin-bottom: 12px;
}

.filmstrip-frame-inner p {
  color: rgba(245, 241, 232, 0.65);
  font-size: 15px;
}

.filmstrip-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: rgba(22, 19, 15, 0.55);
  color: var(--text-light);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease;
}
.filmstrip-nav:hover { background: var(--accent); }
.filmstrip-nav:disabled { opacity: 0.3; cursor: default; background: rgba(22, 19, 15, 0.55); }
.filmstrip-prev { left: 16px; }
.filmstrip-next { right: 16px; }

.filmstrip-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.filmstrip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s ease;
}
.filmstrip-dot.is-active { background: var(--accent); }

/* ── Work ────────────────────────────────────────────── */

.work { padding: var(--section-pad) 0; }

.work-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.work-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-alt);
  transition: transform 0.3s ease;
}
.work-card:hover { transform: translateY(-4px); }

.work-card--feature { grid-column: span 6; flex-direction: row; }
.work-card--upcoming { opacity: 0.7; }

.work-media {
  background: linear-gradient(135deg, #e7ddc9, #d8cbae);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: rgba(42, 36, 28, 0.28);
}

.work-card--feature .work-media { aspect-ratio: auto; flex: 1.3; min-height: 340px; }
.work-card--feature .work-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }

.work-info { padding: 28px; }

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.work-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: none;
}

.work-card--feature .work-info h3 { font-size: 34px; }

.work-info p { color: var(--text-muted); font-size: 15px; }

/* ── Services ────────────────────────────────────────── */

.services { background: var(--bg-alt); padding: var(--section-pad) 0; }

.services-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.service-media {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.service h3 {
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: none;
}

.service p { color: var(--text-muted); font-size: 15px; }

/* ── Recent Projects ─────────────────────────────────── */

.projects { padding: var(--section-pad) 0; }

.projects-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.project-feature {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}

.project-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--border);
}

.project-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 19, 15, 0.45);
}
.project-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent);
}
.project-play[hidden] { display: none; }

.project-info h3 {
  font-size: 34px;
  text-transform: none;
  margin-bottom: 12px;
}

.project-info p { color: var(--text-muted); font-size: 16px; }

/* ── Mission ─────────────────────────────────────────── */

.mission {
  background: var(--dark);
  color: var(--text-light);
  padding: var(--section-pad) 32px;
}

.mission-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Orchard rows behind the story quote — the farm the company is named for.
   `about-orchard-bg.jpg` is a darkened grade of the client's Bio-Background
   file, not a different photo. Grading the image beats piling on a black
   overlay: the sunlit soil sits right on top of the amber accent colour, so a
   scrim heavy enough to fix the text hid the trees entirely. Highlights are
   compressed instead, which drops the soil's luminance while the tree shapes
   survive, and only a light scrim is needed on top.
   Regenerate after any source change:
     ffmpeg -i Bio-Background.jpg.webp \
       -vf "curves=all='0/0 0.5/0.20 1/0.34',eq=saturation=0.7" \
       -q:v 3 about-orchard-bg.jpg
   Source is 300x250, hence the small blur; drop it once there's a real one.
   Lives in the standalone "Why Arnold Bros" section now (.why-us-inner,
   see above, between Reel and Services) — kept here since it's still
   conceptually the mission statement. */
.mission-quote {
  position: relative;
  isolation: isolate;
  padding: 44px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.08);
  /* Explicit rather than inherited: this panel now sits in the light
     .projects section too, not just the dark .mission section, but its own
     background (the orchard photo + scrim) needs light text either way. */
  color: var(--text-light);
}

.mission-quote::before {
  content: '';
  position: absolute;
  inset: -16px; /* bleed past the blur's soft edge */
  z-index: -1;
  /* Scrim is lightest at the top, where the trees are, and deepest at the
     bottom, over the bright soil the amber accent has to survive. Measured
     worst case: accent 3.4:1, cream headline 10:1. */
  background:
    linear-gradient(180deg, rgba(22, 19, 15, 0.34) 0%, rgba(22, 19, 15, 0.5) 100%),
    url('../assets/images/about-orchard-bg.jpg') center / cover no-repeat;
  filter: blur(2px);
}

/* The section head carries its own 32px padding, but .mission already pads the
   section — zero it out so the heading lines up with .mission-inner below. */
.mission .section-head { padding: 0; }

.mission-statement {
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.35;
}

.mission-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mission-body p { color: rgba(245, 241, 232, 0.7); font-size: 16px; }

.mission-body .btn { align-self: flex-start; margin-top: 10px; }

/* ── Contact ─────────────────────────────────────────── */

/* Cream section, same --bg-alt as Services. Everything inside was originally
   styled for the dark treatment, so the text, card, fields and status colours
   below are all light-palette values. */
.contact { background: var(--bg-alt); color: var(--text); overflow: hidden; }

/* Hook kept for the client photo/video that may sit behind this section.
   Intentionally empty while the section is flat cream — add the image and a
   light scrim here when there's one. */
.contact-media {
  position: absolute;
  inset: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-copy h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 16px 0 32px;
}

.contact-details { margin-bottom: 32px; }
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.contact-details i { color: var(--accent); width: 16px; }
.contact-details a { transition: color 0.2s ease; }
.contact-details a:hover { color: var(--accent); }

.social-links { display: flex; gap: 16px; }
.social-links a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-light); /* icon flips to cream once the amber fills in */
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row { display: flex; gap: 16px; }

/* Honeypot: off-screen, not display:none — some bots skip fields hidden that
   way, so this is positioned out of the viewport instead. Real visitors
   never see or reach it; screen readers skip it via aria-hidden. */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
}

/* 0.65 alpha, not the usual faint grey: it measures 4.9:1 on white, so the
   placeholders stay readable as the only labels these fields have. */
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(42, 36, 28, 0.65); }

.contact-form select { color: rgba(42, 36, 28, 0.65); }
.contact-form select option { color: var(--text); }

.contact-form textarea { resize: vertical; }

.form-note,
.form-status {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  min-height: 18px;
}

/* Retuned for the cream card — the old #8FBF7A / #E28B7A were mixed for the
   dark treatment and dropped to ~2:1 here. These measure ~6:1. */
.form-status.is-success { color: #2F6B33; }
.form-status.is-error   { color: #A8412C; }

/* ── Footer ──────────────────────────────────────────── */

.site-footer { background: var(--dark); color: var(--text-light); }

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 32px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.logo-footer { align-items: center; color: var(--text-light); }

.footer-tagline {
  font-size: 15px;
  color: rgba(245, 241, 232, 0.6);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 32px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245, 241, 232, 0.45);
}

.footer-bottom a { text-decoration: underline; }

.footer-nav { display: flex; gap: 24px; }

/* ── Scroll Reveal ───────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 900px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .nav {
    display: flex;
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 22px;
    color: var(--text-light);
    z-index: 99;
  }

  .process-steps { flex-direction: column; }
  .step-connector { display: none; }

  .filmstrip-frame { padding: 32px 56px; }

  .project-feature { grid-template-columns: 1fr; gap: 28px; }

  .work-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .work-card, .work-card--feature { grid-column: span 2; }
  .work-card--feature { flex-direction: column; }
  .work-card--feature .work-media { min-height: 0; }

  .contact-inner { grid-template-columns: 1fr; }
  .mission-quote { padding: 28px; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .services .section-head { text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .work-card, .work-card--feature { grid-column: span 2; }
  .form-row { flex-direction: column; }
  .hero-actions .btn { flex: 1; }

  .filmstrip-frame { padding: 64px 20px 32px; }
  .filmstrip-nav { width: 36px; height: 36px; font-size: 13px; top: 30px; transform: none; }
  .filmstrip-prev { left: 12px; }
  .filmstrip-next { right: 12px; }
}
