:root {
  --green-900: #123516;
  --green-800: #194a1f;
  --green: #256d2e;
  --green-600: #32963f;
  --green-bright: #3bb04a;
  --grey-50: #f5f6f4;
  --grey-100: #edefec;
  --grey-200: #dde1dc;
  --grey-400: #9aa19a;
  --grey-500: #6a716a;
  --grey-700: #3b413c;
  --ink: #1c211d;
  --white: #ffffff;
  --maxw: 1240px;
  --r: 12px;
  --shadow: 0 16px 44px -24px rgba(16,51,31,.4);
  --shadow-sm: 0 4px 16px -8px rgba(16,51,31,.25);
  --font-head: "Oswald", system-ui, sans-serif;
  --font-body: "Mulish", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 120px; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.6; font-size: 18px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; letter-spacing: 0; font-weight: 700; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--green-600); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green-600); display: inline-block; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 999; background: #fff; padding: 10px 16px; border-radius: 8px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-body); font-weight: 700; font-size: 16px; padding: 14px 28px; border-radius: 999px; cursor: pointer; border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-dark { background: var(--green-900); color: #fff; }
.btn-dark:hover { background: var(--green-800); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--grey-200); }
.btn-outline:hover { border-color: var(--green); background: var(--grey-50); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- Utility bar ---------- */
.utility { background: var(--green-900); color: #d6e0d8; font-size: 13.5px; font-weight: 500; }
.utility .wrap { display: flex; align-items: center; justify-content: space-between; padding: 9px 24px; gap: 16px; }
.utility a, .utility .u-left > span { white-space: nowrap; }
.utility a { display: inline-flex; align-items: center; gap: 7px; color: #d6e0d8; }
.utility a:hover { color: #fff; }
.utility .u-left { display: flex; gap: 22px; align-items: center; }
.utility .u-right { display: flex; gap: 18px; align-items: center; }
.utility svg { width: 14px; height: 14px; opacity: .85; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(54,160,92,.6);} 70%{box-shadow:0 0 0 7px rgba(54,160,92,0);} 100%{box-shadow:0 0 0 0 rgba(54,160,92,0);} }

/* ---------- Header ---------- */
header.site { position: sticky; top: 0; z-index: 60; background: var(--green-800); border-bottom: 1px solid rgba(255,255,255,.08); }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }
.brand img { height: 48px; width: auto; }
nav.main { display: flex; align-items: center; gap: 2px; }
nav.main > a, nav.main .dd > button { color: #e5ece6; font-family: var(--font-head); font-weight: 600; font-size: 15.5px; padding: 10px 14px; border-radius: 7px; transition: background .15s, color .15s; background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
nav.main > a:hover, nav.main .dd > button:hover, nav.main .dd:focus-within > button { background: rgba(255,255,255,.1); color: #fff; }
nav.main > a[aria-current="page"], nav.main .dd > button[aria-current="true"] { background: rgba(255,255,255,.14); color: #fff; }
nav.main .dd { position: relative; }
nav.main .dd > button svg { width: 14px; height: 14px; transition: transform .2s; }
nav.main .dd:hover > button svg, nav.main .dd:focus-within > button svg { transform: rotate(180deg); }
.dd-menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 252px; background: #fff; border: 1px solid var(--grey-200); border-radius: 10px; box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .18s; }
nav.main .dd:hover .dd-menu, nav.main .dd:focus-within .dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-menu a { display: block; padding: 11px 14px; border-radius: 7px; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--green-900); }
.dd-menu a:hover, .dd-menu a[aria-current="page"] { background: var(--grey-50); color: var(--green); }
.dd-menu a span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12.5px; color: var(--grey-500); margin-top: 1px; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-call-head { background: #fff; color: var(--green-900); }
.btn-call-head:hover { background: var(--grey-100); transform: translateY(-2px); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2.5px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; color: #fff; overflow: hidden; border-bottom-right-radius: 110px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(18,53,22,.93) 0%, rgba(18,53,22,.78) 46%, rgba(18,53,22,.40) 100%); }
.hero .wrap { position: relative; z-index: 1; padding: 96px 24px 88px; }
.hero-inner { max-width: 760px; }
.hero h1 { font-size: clamp(36px, 5.4vw, 62px); font-weight: 700; line-height: 1.02; }
.hero p.lead { font-size: clamp(17px, 2.1vw, 21px); margin-top: 22px; max-width: 640px; color: #e2eae3; line-height: 1.6; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }
.hero-trust .t { display: flex; align-items: center; gap: 11px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 10px; padding: 13px 18px; }
.hero-trust .t svg { width: 22px; height: 22px; color: var(--green-bright); flex-shrink: 0; }
.hero-trust .t b { font-family: var(--font-head); font-size: 15px; font-weight: 700; }

/* ---------- Interior page banner ---------- */
.pbanner { position: relative; color: #fff; overflow: hidden; background: var(--green-900); border-bottom-right-radius: 90px; }
.pbanner-bg { position: absolute; inset: 0; z-index: 0; }
.pbanner-bg img { width: 100%; height: 100%; object-fit: cover; }
.pbanner-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(18,53,22,.93) 0%, rgba(18,53,22,.74) 60%, rgba(18,53,22,.55) 100%); }
.pbanner .wrap { position: relative; z-index: 1; padding: 72px 24px 64px; }
.crumb { font-family: var(--font-head); font-weight: 600; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: #aec1b4; margin-bottom: 16px; }
.crumb a { color: #aec1b4; } .crumb a:hover { color: #fff; }
.crumb span { color: var(--green-bright); }
.pbanner h1 { font-size: clamp(32px, 5vw, 54px); line-height: 1.02; }
.pbanner p { font-size: clamp(17px, 2vw, 20px); color: #e2eae3; max-width: 700px; margin-top: 16px; }

/* ---------- Section base ---------- */
section { padding: 86px 0; }
.section-head { max-width: 760px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(29px, 3.8vw, 44px); margin-top: 16px; color: var(--green-900); }
.section-head p { font-size: 19px; color: var(--grey-500); margin-top: 18px; line-height: 1.65; }

/* First section after the hero/banner is white to match the curved corner under it */
.hero + section, .pbanner + section { background-color: #fff; }
.pbanner + section.approach, .pbanner + section.visit { background-color: var(--green-900); }

/* ---------- Products & Services overview ---------- */
.overview { background: var(--grey-50); }
.overview-lead { font-size: clamp(20px, 2.4vw, 26px); font-family: var(--font-head); font-weight: 600; line-height: 1.4; color: var(--green-900); max-width: 980px; letter-spacing: -.01em; }
.overview-sub { font-size: 18px; color: var(--grey-500); max-width: 820px; margin-top: 20px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.svc { background: #fff; border: 1px solid var(--grey-200); border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .2s ease; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc .svc-img { aspect-ratio: 16/10; overflow: hidden; }
.svc .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc:hover .svc-img img { transform: scale(1.05); }
.svc .svc-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.svc h3 { font-size: 22px; color: var(--green-900); }
.svc p { font-size: 16px; color: var(--grey-500); margin-top: 12px; flex: 1; }
.svc a.more { margin-top: 20px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
.svc a.more:hover { gap: 10px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }
.split .media { border-radius: 28px 28px 28px 96px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.split.rev .media { border-radius: 28px 28px 96px 28px; }
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split .media.bos-media { background: #fff; border: 1px solid var(--grey-200); display: grid; place-items: center; }
.split .media.bos-media img { width: auto; height: auto; max-width: 62%; max-height: 60%; object-fit: contain; }
.split h2 { font-size: clamp(28px, 3.5vw, 42px); color: var(--green-900); margin-top: 14px; }
.split p { font-size: 18px; color: var(--grey-700); margin-top: 18px; }
.split p + p { margin-top: 14px; }
.feed-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.feed-tags span { background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: 999px; padding: 9px 17px; font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--green-900); }
.format-row { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.format-row .f { flex: 1; min-width: 130px; background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: 16px; padding: 16px 18px; }
.format-row .f b { font-family: var(--font-head); color: var(--green-900); font-size: 16px; display: block; }
.format-row .f span { font-size: 14px; color: var(--grey-500); }
.bos-badge { display: inline-flex; align-items: center; gap: 14px; background: var(--green-900); border-radius: 16px; padding: 14px 22px; margin-top: 28px; }
.bos-badge img { height: 44px; width: auto; background: #fff; border-radius: 6px; padding: 5px 8px; }
.bos-badge b { font-family: var(--font-head); font-size: 16px; color: #fff; display: block; }
.bos-badge span { font-size: 13.5px; color: #bccabf; }

/* ---------- Retail pricing ---------- */
.pricing { background: var(--grey-50); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
/* Allow grid items to shrink below their content's min-content width when stacked */
.pricing-grid > * { min-width: 0; }
.notes-card { background: #fff; border: 1px solid var(--grey-200); border-radius: 24px; padding: 32px; box-shadow: var(--shadow-sm); }
.notes-card h3 { font-size: 20px; color: var(--green-900); margin-bottom: 20px; }
.notes-card ul { list-style: none; }
.notes-card li { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--grey-100); font-size: 16.5px; color: var(--grey-700); }
.notes-card li:first-of-type { border-top: 0; padding-top: 0; }
.notes-card li svg { width: 22px; height: 22px; color: var(--green-600); flex-shrink: 0; margin-top: 1px; }
.order-card { background: var(--green-900); color: #fff; border-radius: 28px 28px 28px 64px; padding: 36px; }
.order-card .eyebrow { color: var(--green-bright); }
.order-card .eyebrow::before { background: var(--green-bright); }
.order-card h3 { font-size: clamp(24px, 3vw, 32px); color: #fff; margin-top: 14px; }
.order-card p { color: #cdd9d0; font-size: 17px; margin-top: 14px; }
.order-line { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.order-line svg { width: 24px; height: 24px; color: var(--green-bright); flex-shrink: 0; }
.order-line a { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: #fff; }
.order-line .em a { font-size: 17px; font-weight: 600; }
.pricelist { margin-top: 30px; }
.pl-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.pl-head h3 { font-size: clamp(22px, 2.6vw, 28px); color: var(--green-900); }
.pl-head .pl-meta { font-size: 14px; color: var(--grey-500); }
.ptabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.ptab { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--grey-200); background: #fff; color: var(--grey-500); cursor: pointer; transition: .15s; }
.ptab:hover { color: var(--green-900); border-color: var(--grey-400); }
.ptab.active { background: var(--green); color: #fff; border-color: var(--green); }
.pcard { background: #fff; border: 1px solid var(--grey-200); border-radius: 24px; box-shadow: var(--shadow-sm); overflow: hidden; }
.ppanel { display: none; }
.ppanel.active { display: block; }
.ppanel .cap { padding: 18px 24px 0; font-size: 14px; color: var(--grey-500); }
.ptable-wrap { overflow-x: auto; padding: 14px 8px 8px; }
.ptable { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 520px; }
.ptable thead th { background: var(--green-900); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 12.5px; letter-spacing: .03em; text-transform: uppercase; text-align: right; padding: 13px 18px; white-space: nowrap; }
.ptable thead th:first-child { text-align: left; border-radius: 8px 0 0 8px; }
.ptable thead th:last-child { border-radius: 0 8px 8px 0; }
.ptable tbody td { padding: 13px 18px; border-top: 1px solid var(--grey-100); text-align: right; font-variant-numeric: tabular-nums; color: var(--grey-700); white-space: nowrap; }
.ptable tbody td:first-child { text-align: left; font-weight: 600; color: var(--ink); white-space: normal; }
.ptable tbody td:first-child small { display: block; font-weight: 400; font-size: 13px; color: var(--grey-500); }
.ptable tbody tr:nth-child(even) td { background: var(--grey-50); }
.ptable .muted { color: var(--grey-400); }
.pl-foot { font-size: 13.5px; color: var(--grey-500); margin-top: 16px; line-height: 1.6; }

/* ---------- Brokering ---------- */
.broker { background: var(--white); }
.broker .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.broker h2 { font-size: clamp(28px, 3.5vw, 42px); color: var(--green-900); margin-top: 14px; }
.broker p { font-size: 18px; color: var(--grey-700); margin-top: 18px; }
.commodity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.commodity { display: flex; align-items: center; gap: 13px; background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: 16px; padding: 18px 20px; font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--green-900); }
.commodity svg { width: 20px; height: 20px; color: var(--green-600); flex-shrink: 0; }

/* ---------- Approach (dark) ---------- */
.approach { background: var(--green-900); color: #fff; }
.approach .split h2 { color: #fff; }
.approach .eyebrow { color: var(--green-bright); }
.approach .eyebrow::before { background: var(--green-bright); }
.approach .split p { color: #cdd9d0; }
.approach .media { box-shadow: 0 24px 60px -30px rgba(0,0,0,.7); }
.cert-row { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.cert-chip { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 16px; padding: 12px 18px; }
.cert-chip img { height: 34px; width: auto; background: #fff; border-radius: 5px; padding: 4px 6px; }
.cert-chip b { font-family: var(--font-head); font-size: 15px; color: #fff; display: block; }
.cert-chip span { font-size: 12.5px; color: #aebcb1; }

/* ---------- Who we are ---------- */
.about { background-color: #fff; }

/* ---------- Partners ---------- */
.partners { background: var(--white); text-align: center; }
.partner-logos { display: flex; flex-wrap: wrap; gap: 38px 54px; align-items: center; justify-content: center; margin-top: 38px; }
.partner-logos img { height: 50px; width: auto; filter: grayscale(1); opacity: .65; transition: .25s; }
.partner-logos img:hover { filter: grayscale(0); opacity: 1; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); }
.cta-band p { color: #dff0e6; font-size: 18px; margin-top: 14px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-band .hero-cta { justify-content: center; margin-top: 30px; }
.cta-band .btn-outline-light { border-color: rgba(255,255,255,.6); }

/* ---------- Contact / Visit ---------- */
.visit { background: var(--green-900); color: #fff; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.visit h2 { color: #fff; font-size: clamp(28px, 3.5vw, 44px); }
.visit .eyebrow { color: var(--green-bright); }
.visit .eyebrow::before { background: var(--green-bright); }
.visit p.intro { color: #cdd9d0; font-size: 18px; margin-top: 16px; }
.contact-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.cb { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; padding: 20px; }
.cb .label { font-family: var(--font-head); font-weight: 700; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--green-bright); }
.cb a.big { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: #fff; display: block; margin-top: 8px; }
.cb .who { font-size: 14px; color: #b6c4ba; margin-top: 4px; }
.cb a.email { font-size: 14.5px; color: #b6c4ba; display: inline-block; margin-top: 6px; }
.cb a.email:hover { color: #fff; }
.visit-meta { display: flex; gap: 40px; margin-top: 28px; flex-wrap: wrap; }
.visit-meta .vm b { font-family: var(--font-head); display: block; color: var(--green-bright); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.visit-meta .vm p { font-size: 15.5px; color: #d3ddd6; line-height: 1.7; }
.pay-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.pay-row span { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2); border-radius: 7px; padding: 8px 14px; font-size: 14px; font-family: var(--font-head); font-weight: 600; }
.map-frame { border-radius: 28px 28px 96px 28px; overflow: hidden; min-height: 400px; border: 1px solid rgba(255,255,255,.18); }
.map-frame iframe { width: 100%; height: 100%; min-height: 400px; border: 0; filter: saturate(.92); }

/* ---------- Footer ---------- */
footer.site { background: #0d2c14; color: #aebcb1; padding: 56px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
footer.site img.logo { height: 50px; margin-bottom: 18px; }
footer.site p.tag { font-size: 15px; max-width: 290px; line-height: 1.6; }
footer.site h4 { font-family: var(--font-head); color: #fff; font-size: 14px; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 16px; }
footer.site ul { list-style: none; }
footer.site ul li { margin-bottom: 10px; }
footer.site ul a { font-size: 15px; color: #aebcb1; }
footer.site ul a:hover { color: #fff; }
.foot-social { display: flex; gap: 12px; margin-top: 18px; }
.foot-social a { width: 40px; height: 40px; border-radius: 9px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .2s; }
.foot-social a:hover { background: var(--green); }
.foot-social svg { width: 19px; height: 19px; color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }

/* ---------- Mobile drawer ---------- */
.drawer { display: none; }
body.nav-open .drawer { display: block; position: fixed; inset: 0; z-index: 200; background: var(--green-900); padding: 24px 24px 40px; overflow-y: auto; }
.drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.drawer-top img { height: 44px; }
.drawer-close { background: none; border: 0; color: #fff; font-size: 34px; cursor: pointer; line-height: 1; }
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 21px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.drawer nav a.sub { font-size: 16px; font-weight: 600; padding-left: 16px; color: #cdd9d0; }
.drawer .btn { margin-top: 22px; width: 100%; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
}
@media (max-width: 900px) {
  .split, .broker .wrap, .visit-grid, .pricing-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.rev { direction: ltr; }
  nav.main, .header-cta .btn-call-head { display: none; }
  .menu-toggle { display: block; }
  .utility .hide-sm { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  section { padding: 60px 0; }
  .wrap { padding: 0 18px; }
  .hero .wrap { padding: 64px 18px 60px; }
  .pbanner .wrap { padding: 54px 18px 48px; }
  .contact-blocks { grid-template-columns: 1fr; }
  .commodity-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .utility .u-left { gap: 14px; }
}
/* Utility bar: stack rows on small phones so nowrap items can't force page overflow */
@media (max-width: 480px) {
  .utility .wrap { flex-direction: column; align-items: flex-start; gap: 5px; }
}
/* ---------- Contact form ---------- */
.contact-form { background: var(--grey-50); }
.cform { max-width: 720px; margin: 0 auto; }
.cform label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--green-900); margin-bottom: 18px; }
.cform .opt { color: var(--grey-500); font-weight: 400; }
.cform .req { color: var(--green-600); }
.cform input, .cform select, .cform textarea { display: block; width: 100%; margin-top: 7px; font-family: var(--font-body); font-weight: 400; font-size: 16px; color: var(--ink); background: #fff; border: 1px solid var(--grey-200); border-radius: 12px; padding: 13px 15px; transition: border-color .15s ease, box-shadow .15s ease; }
.cform input:focus, .cform select:focus, .cform textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(37,109,46,.15); }
.cform textarea { resize: vertical; min-height: 132px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; }
.cform .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cform-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.cform-status { font-size: 15px; font-weight: 600; margin: 0; line-height: 1.4; }
.cform-status.ok { color: var(--green-600); }
.cform-status.err { color: #c0392b; }
.cform button[disabled] { opacity: .6; cursor: default; transform: none; }
@media (max-width: 560px) { .cform-row { grid-template-columns: 1fr; } }

/* ---------- More services (cross-links) ---------- */
.more-services { background-color: #fff; }
.more-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }

/* ---------- Video placeholder ---------- */
.video-wrap { position: relative; border-radius: 28px 28px 96px 28px; overflow: hidden; box-shadow: var(--shadow); background: var(--green-900); aspect-ratio: 16/9; display: grid; place-items: center; cursor: pointer; }
.video-wrap > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.video-wrap .play { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 14px; color: #fff; text-align: center; padding: 20px; }
.video-wrap .play .pbtn { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.94); display: grid; place-items: center; box-shadow: 0 12px 34px rgba(0,0,0,.45); transition: transform .2s ease; }
.video-wrap:hover .play .pbtn { transform: scale(1.06); }
.video-wrap .play .pbtn svg { width: 30px; height: 30px; color: var(--green); margin-left: 5px; }
.video-wrap .play b { font-family: var(--font-head); font-size: 19px; font-weight: 600; }
.video-wrap .play span { font-size: 13.5px; color: #d3ddd6; }

/* ---------- Coming-soon button ---------- */
.btn-soon { background: var(--grey-100); color: var(--grey-500); border-color: var(--grey-200); cursor: default; }
.btn-soon:hover { background: var(--grey-100); }
.btn-soon .soon-pill { font-family: var(--font-head); font-weight: 700; font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; background: var(--green-600); color: #fff; border-radius: 999px; padding: 2px 8px; }

@media (max-width: 760px) { .more-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .hero { border-bottom-right-radius: 56px; }
  .pbanner { border-bottom-right-radius: 44px; }
  .split .media, .split.rev .media, .video-wrap, .map-frame { border-radius: 18px 18px 18px 52px; }
  .order-card { border-radius: 22px 22px 22px 44px; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; scroll-behavior: auto !important; } }

/* ---------- Curved section tops ---------- */
.cta-band, .approach, .visit { border-top-left-radius: 64px; border-top-right-radius: 64px; }
@media (max-width: 640px) { .cta-band, .approach, .visit { border-top-left-radius: 38px; border-top-right-radius: 38px; } }

/* ---------- Slide-in reveal (no fade) ---------- */
.reveal { transform: translateY(30px); transition: transform .6s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.reveal.in { transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { transform: none !important; transition: none !important; } }

/* ---------- Subtle wheat texture (logo motif) ---------- */
.tex-wheat { background-image: url(wheat-sprig-light.svg); background-size: 116px 116px; }
.tex-wheat-dark { background-image: url(wheat-sprig-dark.svg); background-size: 116px 116px; }
