/* ============================================================
   HUTCHROOTS — Family Orchard & Roots Theme
   Light theme: orchard-cream, root-bark, orchard-leaf, root-cellar
   Motif: family orchard & roots, rendered purely with CSS
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", "Palatino Linotype", serif;
  font-size: 16px;
  line-height: 1.75;
  color: #33301F;
  background-color: #F7F3E6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #5F7C3A;
}

.home-page {
  overflow-x: hidden;
}

/* ============================================================
   CLASS-SCOPED decorative details follow. No bare selectors.
   ============================================================ */

/* ---------- TRELLIS-LINE NAV (.trellisnav) ---------- */
.trellisnav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: #33301F;
  box-shadow: 0 3px 14px rgba(35, 32, 20, 0.22);
}

.trellisnav .trellisnav-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.trellisnav .branch-strip {
  display: flex;
  align-items: center;
  height: 16px;
}

.trellisnav .branch-line {
  width: 100%;
  height: 6px;
  background-color: #A97E3F;
  position: relative;
  border-radius: 3px;
}

.trellisnav .branch-line .leaf-pair {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  position: absolute;
  left: 34px;
  top: -5px;
}

.trellisnav .branch-line .leaf {
  width: 12px;
  height: 10px;
  background-color: #5F7C3A;
  border-radius: 0 8px 0 8px;
  transform: rotate(-35deg);
  display: inline-block;
}

.trellisnav .branch-line .leaf:nth-child(even) {
  transform: rotate(35deg) scaleX(-1);
}

.trellisnav .branch-line .fruit-dot {
  width: 9px;
  height: 9px;
  background-color: #D9A441;
  border-radius: 50%;
  position: absolute;
  top: -8px;
}

.trellisnav .branch-line .fruit-dot.one { left: 18%; }
.trellisnav .branch-line .fruit-dot.two { left: 70%; margin-top: -3px; }

.trellisnav .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.trellisnav .brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #FCFAF1;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 21px;
  font-family: Georgia, serif;
  text-transform: uppercase;
}

.trellisnav .sprout-glyph {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.trellisnav .sprout-glyph::before {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 0;
  width: 3px;
  height: 9px;
  background-color: #A97E3F;
}

.trellisnav .sprout-glyph::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 12px;
  height: 7px;
  background-color: #5F7C3A;
  border-radius: 12px 4px 12px 4px;
}

.trellisnav nav.tnav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trellisnav nav.tnav-links a {
  color: #CDC5AF;
  font-family: Georgia, serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 4px;
  position: relative;
  white-space: nowrap;
}

.trellisnav nav.tnav-links a:hover {
  color: #FCFAF1;
}

.trellisnav nav.tnav-links a::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 2px;
  height: 2px;
  background-color: #5F7C3A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.trellisnav nav.tnav-links a:hover::after,
.trellisnav nav.tnav-links a.active::after {
  transform: scaleX(1);
}

.trellisnav nav.tnav-links .dot-sep {
  width: 7px;
  height: 7px;
  background-color: #D9A441;
  border-radius: 50%;
  margin: 0 6px;
  flex: 0 0 auto;
}

/* Mobile nav toggle */
.trellisnav .nav-toggle {
  display: none;
  background: none;
  border: 1px solid #A97E3F;
  color: #FCFAF1;
  font-size: 20px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: Georgia, serif;
}

@media (max-width: 820px) {
  .trellisnav .nav-toggle {
    display: inline-block;
  }
  .trellisnav nav.tnav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 16px;
    gap: 8px;
  }
  .trellisnav nav.tnav-links.open {
    display: flex;
  }
  .trellisnav nav.tnav-links .dot-sep {
    display: none;
  }
  .trellisnav .nav-row {
    flex-wrap: wrap;
  }
  .trellisnav .nav-toggle-block {
    margin-left: auto;
  }
  .trellisnav nav.tnav-links a {
    width: 100%;
  }
}

/* ---------- ORCHARD-TREE HERO (.orchardtreehero) ---------- */
.orchardtreehero {
  background-color: #F7F3E6;
  border-bottom: 1px solid #E2DCC6;
}

.orchardtreehero .hero-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 66px 24px 74px;
  display: flex;
  gap: 48px;
  align-items: center;
}

.orchardtreehero .hero-text {
  flex: 1 1 55%;
  max-width: 620px;
}

.orchardtreehero .eyebrow-chip {
  display: inline-block;
  background-color: #5F7C3A;
  color: #FCFAF1;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 3px;
  font-family: Georgia, serif;
  margin-bottom: 22px;
}

.orchardtreehero h1 {
  font-size: 47px;
  line-height: 1.12;
  color: #33301F;
  font-family: Georgia, serif;
  margin-bottom: 20px;
}

.orchardtreehero h1 .accent {
  color: #5F7C3A;
}

.orchardtreehero p.hero-sub {
  color: #5C5138;
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 30px;
  font-family: Georgia, serif;
}

.orchardtreehero .ctalist {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 3px;
  font-family: Georgia, serif;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background-color: #5F7C3A;
  color: #FCFAF1;
  border: 1px solid #5F7C3A;
}

.btn-primary:hover {
  background-color: #4E6630;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #33301F;
  border: 1px solid #33301F;
}

.btn-secondary:hover {
  background-color: #EEE7D0;
  transform: translateY(-2px);
}

/* Hero orchard scene */
.orchardtreehero .hero-art {
  flex: 1 1 45%;
  max-width: 520px;
  border: 1px solid #E2DCC6;
  background-color: #FDFBF2;
  border-radius: 4px;
  padding: 26px 22px 20px;
  position: relative;
}

.scene-figure {
  position: relative;
  min-height: 400px;
}

/* trunk + generation rings */
.scene-figure .trunk {
  position: absolute;
  left: 18%;
  bottom: 34%;
  width: 20px;
  height: 112px;
  background-color: #A97E3F;
  border-radius: 6px 6px 3px 3px;
}

.scene-figure .gen-ring {
  position: absolute;
  left: 12%;
  width: 34px;
  height: 5px;
  background-color: #8C6630;
  border-radius: 3px;
}

.scene-figure .gen-ring.r1 { bottom: 40%; }
.scene-figure .gen-ring.r2 { bottom: 26%; width: 26px; left: 15%; }
.scene-figure .gen-ring.r3 { bottom: 14%; width: 18px; left: 18%; }

.scene-figure .branch-line-going {
  position: absolute;
  background-color: #A97E3F;
  height: 4px;
  border-radius: 2px;
}

.scene-figure .branch-line-going.bl1 { left: 26%; top: 44%; width: 80px; transform: rotate(18deg); }
.scene-figure .branch-line-going.bl2 { left: 30%; top: 34%; width: 120px; transform: rotate(30deg); }
.scene-figure .branch-line-going.bl3 { left: 20%; top: 30%; width: 60px; transform: rotate(-26deg); }

/* leaf name tags on branches */
.scene-figure .leaf-tag {
  position: absolute;
  background-color: #FCFAF1;
  border: 1px solid #CDC5AF;
  color: #4A4330;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Georgia, serif;
  padding: 3px 7px;
  border-radius: 2px;
  font-weight: bold;
}

.scene-figure .leaf-tag .twine {
  display: block;
  width: 1px;
  height: 8px;
  background-color: #A97E3F;
  margin: 3px auto 0;
}

.scene-figure .leaf-tag.highlight {
  background-color: #D9A441;
  color: #33301F;
  border-color: #A97E3F;
}

.scene-figure .leaf-tag.t1 { left: 18%; top: 8%; }
.scene-figure .leaf-tag.t2 { left: 30%; top: 20%; }
.scene-figure .leaf-tag.t3 { left: 52%; top: 22%; }
.scene-figure .leaf-tag.t4 { left: 66%; top: 40%; }
.scene-figure .leaf-tag.t5 { left: 36%; top: 5%; transform: rotate(-4deg); }

/* soil line + roots */
.scene-figure .soil-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22%;
  height: 2px;
  background-color: #4A4330;
}

.scene-figure .root-stroke {
  position: absolute;
  bottom: 18%;
  height: 3px;
  background-color: #8C6630;
  border-radius: 3px;
}

.scene-figure .root-stroke.rs1 { left: 0%; width: 70px; transform: rotate(16deg); }
.scene-figure .root-stroke.rs2 { left: 12%; width: 100px; transform: rotate(-14deg) translateY(12px); }
.scene-figure .root-stroke.rs3 { left: 34%; width: 60px; transform: rotate(12deg) translateY(20px); }

/* trowel in soil */
.scene-figure .trowel {
  position: absolute;
  right: 22%;
  bottom: 10%;
  width: 4px;
  height: 60px;
  background-color: #A97E3F;
  border-radius: 2px;
  transform: rotate(-12deg);
}

.scene-figure .trowel::before {
  content: "";
  position: absolute;
  right: -14px;
  left: -3px;
  top: -2px;
  height: 26px;
  background-color: #8C6630;
  border-radius: 50% 50% 6px 6px;
}

.scene-figure .trowel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 7px;
  background-color: #5C5138;
  border-radius: 3px;
}

/* photo trellis arch */
.scene-figure .photo-trellis {
  position: absolute;
  right: 2%;
  top: 6%;
  width: 38%;
}

.scene-figure .trellis-arch {
  height: 6px;
  background-color: #4A4330;
  border-radius: 90px 90px 0 0;
  width: 100%;
}

.scene-figure .piccard {
  position: absolute;
  background-color: #FCFAF1;
  border: 2px solid #A97E3F;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.scene-figure .piccard .frame-color {
  display: block;
  height: 30px;
  margin: 4px 4px 2px;
  border-radius: 2px;
  position: relative;
}

.scene-figure .piccard .frame-color .person {
  position: absolute;
  border-radius: 8px 8px 0 0;
}

.scene-figure .piccard .frame-color .head {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #6b4a2f;
}

.scene-figure .piccard .frame-color .cap {
  width: 14px;
  height: 6px;
  border-radius: 6px;
}

.scene-figure .piccard .frame-color .body {
  width: 12px;
  height: 9px;
  background-color: #5F7C3A;
  border-radius: 2px;
}

.scene-figure .piccard .name-cap {
  font-size: 7px;
  color: #4A4330;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  padding-bottom: 3px;
}

.scene-figure .piccard.p1 { width: 62px; left: -4px; top: 4px; transform: rotate(-3deg); }
.scene-figure .piccard.p2 { width: 62px; left: 62px; top: 2px; }
.scene-figure .piccard.p3 { width: 62px; left: -2px; top: 78px; transform: rotate(2deg); }
.scene-figure .piccard.p4 { width: 62px; left: 58px; top: 76px; transform: rotate(-2deg); }

/* picnic basket + letters */
.scene-figure .picnic-basket {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 74px;
}

.scene-figure .basket-body {
  background-color: #A97E3F;
  border-radius: 4px;
  padding-top: 6px;
}

.scene-figure .basket-lid {
  width: 70%;
  height: 7px;
  background-color: #8C6630;
  border-radius: 3px;
  margin: 0 auto;
}

.scene-figure .letter-sheet {
  position: absolute;
  background-color: #F6F0DA;
  border: 1px solid #CDC5AF;
  border-radius: 1px;
}

.scene-figure .letter-sheet .tiny-line {
  display: block;
  height: 2px;
  background-color: #CDC5AF;
  margin: 3px 4px;
}

.scene-figure .letter-sheet.ls1 { width: 52px; height: 34px; left: 10px; top: -26px; transform: rotate(-8deg); }
.scene-figure .letter-sheet.ls2 { width: 46px; height: 30px; left: 18px; top: -20px; transform: rotate(6deg); }

/* lineage scroll */
.scene-figure .lineage-scroll {
  position: absolute;
  right: 4%;
  bottom: 2%;
  width: 120px;
  height: 16px;
  background-color: #F1E7C8;
  border: 1px solid #CDC5AF;
  border-radius: 2px;
  transform: rotate(-4deg);
}

.scene-figure .lineage-scroll::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 3px;
  bottom: 3px;
  border: 1px solid #CDC5AF;
}

/* preserves shelf + jars */
.scene-figure .preserves-shelf {
  position: absolute;
  left: 44%;
  bottom: 34%;
  background-color: #A97E3F;
  border-radius: 2px;
  text-align: center;
  padding-top: 6px;
  width: 46px;
}

.scene-figure .preserves-shelf .shelf-board {
  height: 5px;
  background-color: #8C6630;
  border-radius: 2px;
}

.scene-figure .preserves-shelf .jar {
  display: inline-block;
  width: 16px;
  height: 22px;
  background-color: #E6DCC0;
  border: 1px solid #A97E3F;
  border-radius: 2px;
  position: relative;
  margin: 0 2px;
}

.scene-figure .preserves-shelf .jar .ring {
  width: 100%;
  height: 7px;
  background-color: #8C6630;
  border-radius: 2px;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section-pad {
  padding: 70px 24px;
}

.section-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
}

.sec-label {
  display: inline-block;
  color: #5F7C3A;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: Georgia, serif;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-title {
  font-size: 34px;
  line-height: 1.2;
  color: #33301F;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}

.section-title .green {
  color: #5F7C3A;
}

.section-intro {
  color: #5C5138;
  max-width: 760px;
  font-family: Georgia, serif;
  margin-bottom: 40px;
}

/* ---------- LINEAGE-LEDGER ROWS ---------- */
.lineage-ledger {
  background-color: #F7F3E6;
}

.lineage-row {
  display: flex;
  align-items: center;
  gap: 26px;
  background-color: #FCFAF1;
  border: 1px solid #E2DCC6;
  border-radius: 5px;
  padding: 24px 26px;
  margin-bottom: 14px;
}

.lineage-row .generation-ring {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border: 4px solid #A97E3F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #C89A55 0%, #A97E3F 100%);
  box-shadow: inset 0 0 0 3px #C89A55;
  position: relative;
}

.lineage-row .generation-ring::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 14px;
  width: 10px;
  height: 14px;
  background-color: #FCFAF1;
  border: 1px solid #A97E3F;
  border-radius: 50% 0 50% 0;
}

.lineage-row .generation-code {
  color: #33301F;
  font-weight: bold;
  font-size: 18px;
  font-family: Georgia, serif;
  margin-top: 4px;
}

.lineage-row .gen-text {
  flex: 1 1 auto;
}

.lineage-row h3 {
  font-size: 21px;
  color: #33301F;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}

.lineage-row p {
  color: #5C5138;
  font-family: Georgia, serif;
}

.lineage-row .harvest-tag {
  flex: 0 0 auto;
  background-color: #FCFAF1;
  border: 1px solid #A97E3F;
  color: #5C5138;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Georgia, serif;
  padding: 8px 12px;
  width: 110px;
  text-align: center;
  border-radius: 2px;
  position: relative;
  font-weight: bold;
}

.lineage-row .harvest-tag .tag-hole {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: #5F7C3A;
  border-radius: 0 9px 0 9px;
}

.lineage-row:nth-child(even) .harvest-tag { transform: rotate(-3deg); }
.lineage-row:nth-child(odd) .harvest-tag { transform: rotate(2deg); }

/* ---------- HEIRLOOM METRIC BAND ---------- */
.metric-band {
  background-color: #232014;
}

.metric-band .metric-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.metric-band .metric {
  flex: 1 1 auto;
  text-align: center;
  position: relative;
}

.metric-band .metric-number {
  font-size: 52px;
  color: #A97E3F;
  font-family: Georgia, serif;
  font-weight: bold;
  line-height: 1.1;
}

.metric-band .metric-label {
  display: block;
  color: #CDC5AF;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: Georgia, serif;
  margin-top: 10px;
}

.metric-band .metric-hair {
  width: 1px;
  height: 70px;
  background-color: #CDC5AF;
  flex: 0 0 auto;
}

/* ---------- STATEMENT BAND ---------- */
.statement-band {
  background-color: #33301F;
}

.statement-band .statement-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 66px 24px;
}

.statement-block {
  border-left: 4px solid #A97E3F;
  padding: 6px 0 6px 28px;
}

.statement-block .statement-mark {
  color: #A97E3F;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.statement-block p.statement-text {
  color: #FCFAF1;
  font-size: 25px;
  line-height: 1.5;
  font-family: Georgia, serif;
  font-style: italic;
}

.statement-block .statement-attribution {
  color: #CDC5AF;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 18px;
  font-family: Georgia, serif;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background-color: #F7F3E6;
}

.cta-band .cta-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 76px 24px;
  border-top: 1px solid #E2DCC6;
}

.cta-band h2 {
  font-size: 36px;
  color: #5F7C3A;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}

.cta-band p {
  color: #5C5138;
  font-size: 18px;
  font-family: Georgia, serif;
  margin-bottom: 30px;
}

/* ---------- MORE : summary band on homepage ---------- */
.value-note {
  background-color: #F7F3E6;
}

.value-note .value-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}

.value-card {
  flex: 1 1 200px;
  background-color: #FCFAF1;
  border: 1px solid #E2DCC6;
  border-radius: 5px;
  padding: 26px;
}

.value-card .vc-emblem {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}

.value-card h4 {
  color: #33301F;
  font-family: Georgia, serif;
  margin-bottom: 8px;
  font-size: 18px;
}

.value-card p {
  color: #5C5138;
  font-family: Georgia, serif;
  font-size: 15px;
}

.journey-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 8px;
}

.journey-text h3.journey-title {
  font-size: 26px;
  color: #33301F;
  font-family: Georgia, serif;
  margin-bottom: 14px;
}

.journey-text p {
  color: #5C5138;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}

.journey-text ul {
  margin: 12px 0 0 18px;
  color: #5C5138;
  font-family: Georgia, serif;
}

.journey-text ul li {
  margin-bottom: 6px;
}

/* ============================================================
   ROOT-CELLAR FOOTER
   ============================================================ */
.orchfooter {
  background-color: #1C1A10;
  color: #CDC5AF;
}

.orchfooter .twig-strip {
  height: 16px;
  display: block;
  background-image: linear-gradient(
    to right,
    #A97E3F 0 18px, transparent 18px 20px,
    #D9A441 20px 26px, transparent 26px 28px,
    #A97E3F 28px 46px, transparent 46px 48px,
    #D9A441 48px 54px, transparent 54px 56px
  );
  background-size: 56px 16px;
  background-repeat: repeat-x;
  margin-bottom: 4px;
}

.orchfooter .foot-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 46px 24px 30px;
  text-align: center;
}

.orchfooter .foot-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #FCFAF1;
  font-weight: bold;
  letter-spacing: 4px;
  font-size: 22px;
  font-family: Georgia, serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.orchfooter .foot-sprout {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-color: #5F7C3A;
  border-radius: 14px 4px 14px 4px;
  position: relative;
}

.orchfooter .foot-sprout::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 2px;
  height: 8px;
  background-color: #A97E3F;
  transform: translateX(-50%);
}

.orchfooter .foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 24px;
  font-family: Georgia, serif;
}

.orchfooter .foot-links a {
  color: #CDC5AF;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.orchfooter .foot-links a:hover {
  color: #FCFAF1;
  text-decoration: underline;
}

.orchfooter .trowel-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 4px 0 24px;
}

.orchfooter .trowel-divider .leaf-sprite {
  width: 16px;
  height: 12px;
  background-color: #5F7C3A;
  border-radius: 0 14px 0 14px;
  display: inline-block;
}

.orchfooter .trowel-divider .leaf-sprite.right {
  transform: scaleX(-1);
}

.orchfooter .trowel-divider .trowel-stem {
  width: 3px;
  height: 18px;
  background-color: #A97E3F;
  transform: rotate(-16deg);
  display: inline-block;
  border-radius: 2px;
}

.orchfooter .trowel-divider .crossing-twig {
  width: 26px;
  height: 3px;
  background-color: #A97E3F;
  transform: rotate(16deg);
  display: inline-block;
  border-radius: 2px;
  margin-left: -14px;
}

.orchfooter .legal-line {
  font-size: 14px;
  color: #CDC5AF;
  font-family: Georgia, serif;
  line-height: 1.9;
}

.orchfooter .legal-line a {
  color: #D9A441;
}

/* ============================================================
   Fade-up reveal: safe default-visible fallback
   ============================================================ */
.fade-up {
  opacity: 1;
  transform: none;
}

html.js .fade-up-raw.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .fade-up-raw.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .orchardtreehero .hero-wrap {
    flex-direction: column;
    gap: 36px;
  }
  .orchardtreehero .hero-text,
  .orchardtreehero .hero-art {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .lineage-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .metric-band .metric-wrap {
    flex-wrap: wrap;
  }
  .metric-band .metric-number {
    font-size: 40px;
  }
  .metric-band .metric-hair {
    display: none;
  }
  .journey-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .orchardtreehero h1 {
    font-size: 34px;
  }
  .statements p.statement-text {
    font-size: 20px;
  }
  .metric-band .metric-number {
    font-size: 34px;
  }
}
