:root {
  --forest: #0d4b32;
  --forest-dark: #073423;
  --leaf: #39794d;
  --flax: #d8c39a;
  --gold: #d6a84f;
  --chalk: #f5f4ed;
  --paper: #ebe8dc;
  --ink: #183128;
  --muted: #66736c;
  --white: #fffef8;
  --line: rgba(24, 49, 40, .18);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--chalk); font-family: var(--sans); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
::selection { color: var(--white); background: var(--forest); }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 100; padding: 12px 18px; background: var(--gold); color: var(--forest-dark); font-weight: 700; }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; z-index: 50; inset: 0 0 auto; height: 82px; display: grid; grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr); align-items: center; padding: 0 clamp(22px, 4vw, 70px); color: var(--ink); background: rgba(255,254,248,.98); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(15px); }
.site-header.scrolled { height: 82px; color: var(--ink); background: rgba(255,254,248,.98); box-shadow: 0 1px 0 var(--line); }
.brand { display: flex; align-items: center; gap: 10px; justify-self: start; }
.brand-mark { display: grid; place-items: center; width: 39px; height: 39px; color: var(--gold); border: 1px solid currentColor; border-radius: 50%; transform: rotate(-9deg); }
.brand-mark svg { width: 22px; height: 22px; stroke-width: 0; fill: currentColor; }
.brand strong { display: block; font-family: var(--serif); font-size: 21px; line-height: .9; font-weight: 600; }
.brand small { display: block; margin-top: 6px; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.header-logo { width: clamp(205px, 16vw, 220px); height: 82px; overflow: hidden; }
.header-logo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.nav { display: flex; gap: 24px; align-items: center; justify-self: center; font-size: 12px; font-weight: 500; letter-spacing: .015em; }
.nav a { position: relative; padding: 12px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 1px; background: currentColor; transition: right .25s ease; }
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }
.header-cta { justify-self: end; padding: 11px 18px; color: white; border: 1px solid var(--forest); border-radius: 99px; background: var(--forest); font-size: 12px; font-weight: 600; letter-spacing: .015em; box-shadow: 0 7px 18px rgba(13,75,50,.12); transition: transform .2s ease, box-shadow .2s ease; }
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(13,75,50,.18); }
.header-cta span { margin-left: 8px; }
.scrolled .header-cta { color: white; border-color: var(--forest); background: var(--forest); }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 680px; height: calc(100svh - 82px); overflow: hidden; color: white; background: var(--forest-dark); }
.hero-image, .hero-shade { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero-image { object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(5,35,22,.86) 0%, rgba(5,35,22,.55) 37%, rgba(5,35,22,.04) 68%), linear-gradient(0deg, rgba(3,28,18,.6), transparent 34%); }
.fibre-arc { position: absolute; width: 58vw; height: 115vh; left: -30vw; top: -7vh; border: clamp(28px, 5vw, 78px) solid rgba(216,195,154,.19); border-right-color: rgba(216,195,154,.35); border-radius: 50%; transform: rotate(-8deg); filter: drop-shadow(0 0 1px rgba(255,255,255,.4)); }
.fibre-arc::after { content: ""; position: absolute; inset: -15px; border: 1px dashed rgba(255,255,255,.35); border-radius: inherit; }
.hero-content { position: relative; z-index: 2; width: min(760px, 82vw); padding-top: clamp(150px, 22vh, 220px); margin-left: clamp(26px, 8vw, 130px); }
.origin-line { display: flex; align-items: center; gap: 12px; margin: 0 0 25px; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.origin-line span { width: 36px; height: 1px; background: var(--gold); }
.hero h1 { margin: 0; max-width: 760px; font-family: var(--serif); font-size: clamp(58px, 6.5vw, 96px); font-weight: 500; line-height: .84; letter-spacing: -.042em; text-wrap: balance; font-optical-sizing: auto; }
.hero-copy { max-width: 515px; margin: 29px 0; color: rgba(255,255,255,.78); font-size: clamp(15px, 1.25vw, 18px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 0; border-radius: 3px; cursor: pointer; font-weight: 700; font-size: 13px; letter-spacing: .015em; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--forest); }
.hero .button-primary { color: var(--forest-dark); background: var(--gold); }
.text-link { font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.4); padding: 10px 0; }
.text-link span { margin-left: 8px; }
.hero-proof { position: absolute; z-index: 2; display: flex; left: clamp(26px,8vw,130px); bottom: 34px; gap: clamp(18px, 2.4vw, 38px); }
.hero-proof div { display: flex; align-items: baseline; gap: 9px; }
.hero-proof strong { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--gold); }
.hero-proof div:not(:first-child) strong { font-size: 20px; }
.hero-proof span { max-width: 70px; color: rgba(255,255,255,.66); font-size: 10px; line-height: 1.2; text-transform: uppercase; letter-spacing: .08em; }
.hero-note { position: absolute; z-index: 2; right: 4.5vw; bottom: 8vh; margin: 0; font-family: var(--serif); font-size: 25px; font-style: italic; line-height: 1.1; transform: rotate(-7deg); text-align: right; }

.section { padding: clamp(85px, 10vw, 155px) clamp(24px, 6vw, 96px); }
.section-kicker { margin: 0 0 14px; color: var(--leaf); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.section-kicker.light { color: var(--flax); }
h2 { margin: 0; font-family: var(--serif); font-size: clamp(46px, 5vw, 76px); font-weight: 500; line-height: .94; letter-spacing: -.032em; text-wrap: balance; font-optical-sizing: auto; }

.roots { display: grid; grid-template-columns: minmax(420px, .9fr) 1.1fr; gap: clamp(60px, 9vw, 145px); align-items: center; background: var(--white); }
.roots-media { position: relative; min-height: 680px; }
.farmer-photo { position: absolute; z-index: 2; top: 0; right: 0; width: 72%; height: 610px; margin: 0; }
.farmer-photo img { height: 100%; object-fit: cover; }
.farmer-photo figcaption { position: absolute; right: 0; bottom: -30px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.fibre-detail { position: absolute; z-index: 3; bottom: 0; left: 0; width: 43%; aspect-ratio: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; color: white; background: repeating-linear-gradient(78deg, #b89a66 0 2px,#d2b887 2px 4px,#9f8153 4px 6px); box-shadow: 0 18px 50px rgba(15,40,28,.16); overflow: hidden; }
.fibre-detail::before { content: "JUTE"; position: absolute; top: -10px; left: -8px; color: rgba(255,255,255,.18); font-family: var(--serif); font-size: 90px; transform: rotate(-90deg) translateX(-100%); transform-origin: left top; }
.fibre-detail span { position: relative; z-index: 2; padding-top: 8px; color: #111; border-top: 1px solid rgba(17,17,17,.4); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.roots-copy { max-width: 690px; }
.roots-copy .lead { margin: 34px 0 16px; color: var(--ink); font-family: var(--serif); font-size: 25px; line-height: 1.3; }
.roots-copy > p:not(.section-kicker):not(.lead) { max-width: 620px; color: var(--muted); line-height: 1.75; }
.root-facts { margin: 40px 0 32px; }
.root-facts > div { display: grid; grid-template-columns: 46px 1fr; padding: 17px 0; border-top: 1px solid var(--line); }
.root-facts > div:last-child { border-bottom: 1px solid var(--line); }
.root-facts dt { color: var(--gold); font-family: var(--serif); font-size: 18px; }
.root-facts dd { margin: 0; display: flex; justify-content: space-between; gap: 20px; }
.root-facts dd strong { font-size: 14px; }
.root-facts dd span { color: var(--muted); font-size: 13px; }
.arrow-link { display: inline-flex; gap: 26px; align-items: center; padding-bottom: 6px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; }

.products { background: var(--paper); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 45px; }
.section-heading > p { max-width: 300px; margin: 0 0 7px; color: var(--muted); line-height: 1.6; }
.products .section-heading { display: block; text-align: center; }
.products .section-heading h2 { font-size: clamp(36px, 3.3vw, 52px); line-height: 1; }
.products .section-heading > p { max-width: 760px; margin: 13px auto 0; }
.products-view-all { display: inline-block; margin-top: 17px; padding-bottom: 4px; border-bottom: 1px solid var(--forest); color: var(--forest); font-size: 12px; font-weight: 700; }
.product-cards { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.product-card { display: block; min-width: 0; padding-bottom: 20px; text-align: center; background: var(--white); border: 1px solid rgba(24,49,40,.06); border-bottom: 3px solid transparent; box-shadow: 0 8px 24px rgba(28,50,39,.035); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.product-card:hover { border-bottom-color: var(--gold); transform: translateY(-5px); box-shadow: 0 16px 32px rgba(28,50,39,.09); }
.product-card-image { position: relative; aspect-ratio: 1.08; overflow: hidden; background: var(--flax); }
.product-card-image img { position: absolute; width: 300%; max-width: none; height: 200%; object-fit: fill; }
.crop-1 img { left: 0; top: 0; }
.crop-2 img { left: -100%; top: 0; }
.crop-3 img { left: -200%; top: 0; }
.crop-4 img { left: 0; top: -100%; }
.crop-5 img { left: -100%; top: -100%; }
.crop-6 img { left: -200%; top: -100%; }
.product-card h3 { margin: 17px 8px 6px; font-family: var(--serif); font-size: 19px; font-weight: 600; line-height: 1.15; letter-spacing: -.01em; }
.product-card p { max-width: 170px; margin: 0 auto; padding: 0 8px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.product-stage { position: relative; overflow: hidden; }
.product-stage > img { aspect-ratio: 16/8.4; object-fit: cover; }
.product-hotspot { position: absolute; display: flex; align-items: center; gap: 10px; color: var(--ink); background: rgba(255,254,248,.88); padding: 8px 12px 8px 8px; backdrop-filter: blur(8px); font-size: 12px; box-shadow: 0 8px 25px rgba(34,43,37,.1); }
.product-hotspot span { display: grid; place-items: center; width: 24px; height: 24px; color: white; background: var(--forest); border-radius: 50%; font-family: var(--serif); }
.hotspot-1 { left: 6%; top: 18%; }.hotspot-2 { left: 40%; top: 16%; }.hotspot-3 { right: 12%; top: 17%; }
.hotspot-4 { left: 15%; bottom: 14%; }.hotspot-5 { left: 48%; bottom: 13%; }.hotspot-6 { right: 7%; bottom: 13%; }
.product-ledger { display: grid; grid-template-columns: repeat(3, 1fr) 1.4fr; margin-top: 1px; background: var(--forest); color: white; }
.product-ledger > * { margin: 0; padding: 18px 22px; border-right: 1px solid rgba(255,255,255,.17); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.product-ledger a { color: var(--gold); text-align: right; }
.product-details { grid-template-columns: repeat(6, 1fr); color: var(--ink); background: var(--white); }
.product-details > p { display: block; padding: 16px 10px; color: var(--ink); border-right-color: var(--line); text-align: center; letter-spacing: 0; text-transform: none; }
.product-details strong { display: block; margin-bottom: 6px; font-size: 12px; }
.product-details span { display: block; color: var(--muted); font-size: 9px; line-height: 1.4; }

.trade { position: relative; min-height: 740px; display: flex; align-items: center; overflow: hidden; color: white; }
.trade-image, .trade-overlay { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.trade-overlay { background: linear-gradient(90deg, rgba(4,39,25,.95) 0%, rgba(4,39,25,.78) 43%, rgba(4,39,25,.08) 76%); }
.trade-copy { position: relative; z-index: 2; width: min(580px, 50vw); margin-left: clamp(24px, 8vw, 130px); }
.trade-copy p:not(.section-kicker) { max-width: 470px; color: rgba(255,255,255,.72); line-height: 1.7; }
.check-list { display: grid; gap: 10px; margin: 28px 0 35px; padding: 0; list-style: none; font-size: 13px; }
.check-list li { display: flex; align-items: center; gap: 10px; }
.check-list svg { width: 18px; height: 18px; color: var(--gold); }
.button-gold { color: var(--forest-dark); background: var(--gold); }
.trade-card { position: absolute; z-index: 3; right: 0; bottom: 0; width: min(370px, 30vw); color: var(--forest-dark); background: var(--gold); }
.trade-card > div { display: flex; align-items: center; gap: 20px; padding: 30px 34px; }
.trade-card > div + div { border-top: 1px solid rgba(7,52,35,.25); }
.trade-card svg { width: 34px; height: 34px; }
.trade-card span { display: grid; gap: 5px; }
.trade-card strong { font-family: var(--serif); font-size: 23px; font-weight: 600; }
.trade-card small { font-size: 11px; line-height: 1.4; }

.process { display: grid; grid-template-columns: .75fr 1.7fr; gap: clamp(45px, 8vw, 120px); background: var(--white); }
.process-heading { position: sticky; top: 110px; align-self: start; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { position: relative; display: grid; grid-template-columns: 50px 60px 130px 1fr; align-items: center; gap: 22px; min-height: 135px; border-bottom: 1px solid var(--line); }
.process-number { color: var(--gold); font-family: var(--serif); font-size: 18px; }
.process-icon { display: grid; place-items: center; width: 55px; height: 55px; color: var(--forest); background: #e4eadc; border-radius: 50%; }
.process-icon svg { width: 25px; height: 25px; }
.process-list h3 { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 600; }
.process-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.impact { position: relative; display: grid; grid-template-columns: .9fr 1.6fr; min-height: 670px; padding: clamp(80px, 9vw, 140px) clamp(24px, 6vw, 96px); color: white; background: var(--forest); overflow: hidden; }
.impact::before { content: ""; position: absolute; width: 550px; height: 550px; left: -220px; bottom: -310px; border: 100px solid rgba(216,195,154,.09); border-radius: 50%; }
.impact-intro { position: relative; z-index: 1; padding-right: 7vw; }
.impact-intro > p:last-child { max-width: 500px; margin-top: 28px; color: rgba(255,255,255,.68); line-height: 1.7; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); align-self: center; border-left: 1px solid rgba(255,255,255,.2); }
.impact-grid article { min-height: 310px; padding: 18px; border-right: 1px solid rgba(255,255,255,.2); }
.impact-grid article > span { color: var(--gold); font-family: var(--serif); }
.impact-grid svg { display: block; width: 40px; height: 40px; margin: 72px 0 23px; color: var(--flax); }
.impact-grid h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 19px; line-height: 1.05; }
.impact-grid p { margin: 0; color: rgba(255,255,255,.57); font-size: 12px; }
.impact-script { position: absolute; right: 5%; bottom: 30px; color: var(--gold); font-family: var(--serif); font-size: 24px; font-style: italic; transform: rotate(-6deg); }

.markets { position: relative; min-height: 680px; overflow: hidden; background: var(--white); }
.markets::before { content: ""; position: absolute; left: -75px; bottom: -110px; width: 210px; height: 330px; border-radius: 70% 30% 65% 35%; background: radial-gradient(ellipse at 70% 35%, #75aa59 0 7%, transparent 8%), linear-gradient(145deg, #2e7a42, #79ad50); transform: rotate(18deg); filter: drop-shadow(0 12px 18px rgba(13,75,50,.12)); }
.markets-heading { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 250px; gap: 80px; align-items: start; }
.markets-heading > div { max-width: 650px; }
.markets-heading h2 { font-size: clamp(44px, 4.4vw, 68px); }
.markets-heading > div > p:last-child { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.markets-heading blockquote { display: grid; align-content: center; min-height: 175px; margin: 0; padding: 25px 30px; color: var(--forest-dark); background: #d7bd8b; background-image: repeating-linear-gradient(84deg, rgba(104,75,36,.08) 0 1px, transparent 1px 3px); box-shadow: 9px 10px 0 rgba(13,75,50,.07); transform: rotate(1deg); }
.markets-heading blockquote strong { font-family: var(--serif); font-size: 38px; font-weight: 600; line-height: 1; }
.markets-heading blockquote span { max-width: 170px; margin-top: 8px; font-family: var(--serif); font-size: 18px; line-height: 1.22; }
.markets-watermark { position: absolute; z-index: 1; width: 460px; height: 250px; right: 22%; top: 25px; opacity: .45; }
.continent { position: absolute; display: block; background: #dfe2d8; }
.continent-a { left: 8%; top: 31%; width: 86px; height: 58px; border-radius: 68% 32% 58% 42%; transform: rotate(-9deg); }
.continent-b { left: 30%; top: 27%; width: 57px; height: 105px; border-radius: 39% 61% 54% 46%; transform: rotate(10deg); }
.continent-c { left: 43%; top: 17%; width: 155px; height: 75px; border-radius: 52% 48% 65% 35%; transform: rotate(-3deg); }
.continent-d { right: 5%; bottom: 15%; width: 66px; height: 43px; border-radius: 54% 46% 57% 43%; transform: rotate(12deg); }
.markets-watermark em { position: absolute; right: 1%; top: 7%; color: var(--forest); font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.05; transform: rotate(-8deg); }
.market-regions { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(6, minmax(92px, 128px)); gap: clamp(18px, 2.2vw, 35px); width: calc(100% - 270px); margin-top: 38px; }
.market-regions article { text-align: center; }
.market-regions img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 5px solid #e8ecdf; border-radius: 50%; box-shadow: 0 7px 20px rgba(29,55,41,.13); transition: transform .25s ease, border-color .25s ease; }
.market-regions article:hover img { border-color: var(--gold); transform: translateY(-4px); }
.market-regions h3 { margin: 12px 0 0; font-size: 12px; font-weight: 700; }
.trusted-strip { position: relative; z-index: 2; margin-top: 50px; padding: 26px 20px 2px; border-top: 1px solid var(--line); }
.trusted-strip > p { margin: 0 0 26px; color: var(--leaf); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-align: center; text-transform: uppercase; }
.partner-logos { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.partner-logos > span { position: relative; white-space: nowrap; font-weight: 700; }
.logo-walmart { color: #196db5; font-size: 21px; }
.logo-walmart i { margin-left: 5px; color: #f2b719; font-style: normal; }
.logo-ikea { padding: 5px 10px; color: #1357a6; background: #f7d417; border: 4px solid #1357a6; border-radius: 50%; font-size: 20px; line-height: 1; }
.logo-carrefour { color: #2662a2; font-size: 17px; }
.logo-tesco { color: #df2735; font-size: 20px; letter-spacing: .06em; border-bottom: 3px solid #2662a2; }
.logo-amazon { color: #212a2b; font-size: 21px; }
.logo-amazon i { position: absolute; left: 20px; right: 0; bottom: -5px; height: 5px; border-bottom: 2px solid #e6a11b; border-radius: 50%; transform: rotate(3deg); }
.logo-hm { color: #dc1e32; font-family: var(--serif); font-size: 28px; font-style: italic; }
.logo-target { display: grid; justify-items: center; gap: 4px; color: #d7192d; font-size: 9px; text-transform: uppercase; }
.logo-target i { display: block; width: 33px; height: 33px; border: 8px solid currentColor; border-radius: 50%; box-shadow: inset 0 0 0 5px white; background: currentColor; }
.more-partners { color: var(--muted); font-size: 11px; font-weight: 500 !important; }

.contact { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 150px); align-items: start; background: var(--white); }
.contact-copy > p:not(.section-kicker) { max-width: 490px; margin-top: 28px; color: var(--muted); line-height: 1.7; }
.contact address { display: grid; gap: 13px; margin-top: 35px; font-style: normal; font-size: 13px; }
.contact address a, .contact address span { display: flex; align-items: center; gap: 12px; }
.contact address svg { width: 19px; height: 19px; color: var(--leaf); }
.inquiry-form { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; padding: clamp(28px, 4vw, 55px); border: 1px solid var(--line); background: var(--chalk); box-shadow: 22px 22px 0 var(--flax); }
.field { display: grid; gap: 8px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; border: 0; border-bottom: 1px solid #9ba49f; border-radius: 0; outline: 0; padding: 11px 2px; color: var(--ink); background: transparent; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest); box-shadow: 0 1px var(--forest); }
.field textarea { resize: vertical; }
.form-button { grid-column: 1 / -1; justify-content: space-between; margin-top: 5px; }
.form-status { grid-column: 1 / -1; min-height: 18px; margin: -8px 0 0; color: var(--leaf); font-size: 12px; }

.footer { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 30px; padding: 65px clamp(24px, 6vw, 96px) 25px; color: rgba(255,255,255,.72); background: var(--forest-dark); }
.brand-light { color: white; }
.footer-brand > p { max-width: 310px; margin: 24px 0 0; font-size: 12px; line-height: 1.6; }
.footer-links, .footer-contact { display: grid; align-content: start; gap: 11px; font-size: 12px; }
.footer-links strong, .footer-contact strong { margin-bottom: 10px; color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 23px; margin-top: 18px; border-top: 1px solid rgba(255,255,255,.16); font-size: 10px; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { position: fixed; inset: 70px 0 auto; display: grid; justify-items: center; gap: 0; padding: 25px; color: var(--ink); background: var(--chalk); box-shadow: 0 15px 30px rgba(0,0,0,.12); transform: translateY(-140%); transition: transform .3s; }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 15px; text-align: center; border-bottom: 1px solid var(--line); }
  .header-cta { display: none; }
  .menu-toggle { display: grid; place-content: center; gap: 6px; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; color: inherit; background: transparent; }
  .menu-toggle span { display: block; width: 18px; height: 1px; background: currentColor; transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .roots { grid-template-columns: .9fr 1.1fr; gap: 50px; }
  .roots-media { min-height: 600px; }
  .farmer-photo { width: 82%; height: 540px; }
  .trade-card { width: 32vw; }
  .process { grid-template-columns: 1fr; }
  .process-heading { position: static; }
  .impact { grid-template-columns: 1fr; gap: 60px; }
  .impact-intro { max-width: 650px; }
  .contact { grid-template-columns: 1fr; }
  .contact-copy { max-width: 700px; }
  .product-cards { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .footer { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .site-header { height: 70px; padding: 0 18px; }
  .site-header.scrolled { height: 70px; }
  .brand strong { font-size: 18px; }
  .header-logo { width: 170px; height: 68px; }
  .hero { min-height: 730px; height: calc(100svh - 70px); }
  .hero-image { object-position: 66% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,35,22,.92), rgba(4,35,22,.42)), linear-gradient(0deg, rgba(4,35,22,.75), transparent 50%); }
  .fibre-arc { width: 100vw; left: -72vw; border-width: 45px; }
  .hero-content { padding-top: 145px; margin-left: 23px; width: calc(100% - 46px); }
  .hero h1 { font-size: clamp(50px, 16vw, 72px); line-height: .86; }
  .hero-copy { max-width: 410px; }
  .hero-actions { align-items: center; flex-direction: row; flex-wrap: wrap; gap: 10px 22px; }
  .hero-proof { display: grid; grid-template-columns: repeat(2, 1fr); left: 23px; right: 20px; bottom: 20px; gap: 10px 28px; }
  .hero-proof div { display: grid; gap: 2px; }
  .hero-proof strong, .hero-proof div:not(:first-child) strong { font-size: 17px; }
  .hero-note { display: none; }
  .section { padding: 82px 22px; }
  h2 { font-size: clamp(43px, 13vw, 62px); }
  .roots { grid-template-columns: 1fr; }
  .roots-media { min-height: 560px; }
  .farmer-photo { width: 85%; height: 500px; }
  .fibre-detail { width: 45%; }
  .root-facts dd { display: grid; gap: 5px; }
  .section-heading { align-items: start; flex-direction: column; }
  .product-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-card h3 { font-size: 17px; }
  .product-stage > img { aspect-ratio: .85; object-fit: cover; }
  .product-hotspot { padding: 6px; }
  .product-hotspot strong { display: none; }
  .hotspot-1 { left: 8%; top: 22%; }.hotspot-2 { left: 47%; top: 21%; }.hotspot-3 { right: 13%; top: 22%; }
  .hotspot-4 { left: 16%; bottom: 18%; }.hotspot-5 { left: 50%; bottom: 16%; }.hotspot-6 { right: 9%; bottom: 18%; }
  .product-ledger { grid-template-columns: 1fr 1fr; }
  .product-ledger > * { padding: 14px; }
  .product-ledger a { text-align: left; }
  .trade { min-height: 780px; align-items: start; }
  .trade-image { object-position: 65% center; }
  .trade-overlay { background: linear-gradient(180deg, rgba(4,39,25,.95) 0%, rgba(4,39,25,.7) 58%, rgba(4,39,25,.2)); }
  .trade-copy { width: calc(100% - 44px); margin: 100px 22px 0; }
  .trade-card { width: 100%; }
  .trade-card > div { flex: 1; padding: 20px; }
  .trade-card { display: flex; }
  .trade-card strong { font-size: 19px; }
  .process-list li { grid-template-columns: 38px 52px 1fr; gap: 13px; padding: 22px 0; }
  .process-list p { grid-column: 3; }
  .process-icon { width: 48px; height: 48px; }
  .impact { padding: 82px 22px 120px; }
  .impact-grid { grid-template-columns: 1fr; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .impact-grid article { min-height: auto; display: grid; grid-template-columns: 40px 55px 1fr; align-items: center; gap: 12px; padding: 22px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .impact-grid svg { margin: 0; }
  .impact-grid p { grid-column: 3; }
  .markets { min-height: auto; }
  .markets::before { display: none; }
  .markets-heading { grid-template-columns: 1fr; gap: 32px; }
  .markets-heading blockquote { width: min(250px, 83%); justify-self: end; min-height: 155px; }
  .markets-watermark { width: 330px; right: -100px; top: 105px; }
  .market-regions { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 27px; width: 100%; margin-top: 45px; }
  .market-regions article { max-width: 145px; justify-self: center; }
  .trusted-strip { margin-top: 50px; padding-inline: 0; }
  .partner-logos { flex-wrap: wrap; justify-content: center; gap: 27px 31px; }
  .inquiry-form { grid-template-columns: 1fr; padding: 27px 20px; box-shadow: 10px 10px 0 var(--flax); }
  .field-wide, .form-button, .form-status { grid-column: auto; }
  .footer { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; gap: 7px; }
}

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