/* ===================================================================
   J. ZAHIRSHA BROS (PVT) LTD — ZAHIBRO
   Design tokens

   Colour   forest #0E3B2E (primary) / forest-dark #0A2A21 (secondary)
            red #C6202E (Zahibro accent, used sparingly)
            ivory #FAF7F1 (background) / paper #FFFFFF
            ink #1A1D1B (text) / ink-soft #58635C (secondary text)
   Type     Manrope (headlines + body) / Fraunces (rare display accents)
   Layout   editorial, left-aligned, hairline rules instead of card
            shadows, one recurring arc/route motif borrowed from the
            logo's green underline, used sparingly as a connective device
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;1,9..144,400&display=swap');

:root{
  --forest: #0E3B2E;
  --forest-dark: #0A2A21;
  --forest-mid: #17513F;
  --forest-tint: #EDF2EE;
  --red: #C6202E;
  --red-dim: #9c1a25;
  --ivory: #FAF7F1;
  --paper: #FFFFFF;
  --ink: #1A1D1B;
  --ink-soft: #58635C;
  --ink-faint: #8B948E;
  --line: rgba(14,59,46,0.14);
  --line-strong: rgba(14,59,46,0.28);

  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 3px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body{ margin:0; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input, select, textarea{ font-family:inherit; font-size:inherit; }
h1,h2,h3,h4,p{ margin:0; }

body{
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

:focus-visible{
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Type scale ---------- */
h1, .h1{
  font-size: clamp(2.4rem, 5.4vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
h2, .h2{
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h3, .h3{
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}
.lede{
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 46ch;
}
.body-text{
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 62ch;
}
.display-serif{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.kicker{
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--forest);
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--forest);
  color: var(--paper);
}
.btn-primary:hover{ background: var(--forest-mid); transform: translateY(-1px); }
.btn-ghost{
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover{ border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline{
  background: transparent;
  color: var(--forest);
  border-color: var(--line-strong);
}
.btn-outline:hover{ border-color: var(--forest); background: var(--forest-tint); }
.btn-red{
  background: var(--red);
  color: #fff;
}
.btn-red:hover{ background: var(--red-dim); }

.text-link{
  position: relative;
  font-weight: 600;
  color: var(--forest);
  padding-bottom: 2px;
  background-image: linear-gradient(var(--red), var(--red));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1.5px;
  transition: background-size .3s var(--ease);
}
.text-link:hover{ background-size: 100% 1.5px; }

/* ---------- Navigation ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  transition: height .35s var(--ease);
}
.site-header.solid{
  background: rgba(250,247,241,0.96);
  backdrop-filter: blur(10px);
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(10,42,33,0.06);
}
.site-header.solid .nav-inner{ height: 76px; }

.brand-mark img{ height: 34px; width: auto; transition: filter .3s ease; }
.brand-mark{ display:flex; align-items:center; margin-right: 24px; flex-shrink: 0; }
.brand-mark img.logo-on-dark{ display: none; }
.brand-mark img.logo-on-light{ display: block; }
.header-on-dark .brand-mark img.logo-on-dark{ display:block; }
.header-on-dark .brand-mark img.logo-on-light{ display:none; }
.site-header.solid .brand-mark img.logo-on-dark{ display:none; }
.site-header.solid .brand-mark img.logo-on-light{ display:block; }

.main-nav{ display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.main-nav > li{ position: relative; }
.main-nav > li > a, .nav-drop-btn{
  display: flex; align-items: center; gap: 5px;
  padding: 10px 13px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  border-radius: var(--radius);
  transition: color .3s ease;
  background: none; border:none;
  white-space: nowrap;
}
.site-header.solid .main-nav > li > a,
.site-header.solid .nav-drop-btn{ color: var(--forest); }
.main-nav > li > a:hover, .nav-drop-btn:hover{ color: var(--red); }
.site-header.solid .main-nav > li > a:hover,
.site-header.solid .nav-drop-btn:hover{ color: var(--red); }
.caret{ width: 9px; height: 9px; margin-top: -2px; transition: transform .25s ease; }
.nav-item.open .caret{ transform: rotate(180deg); }

.nav-actions{ display:flex; align-items:center; gap: 14px; }
.nav-actions .btn{ padding: 12px 22px; font-size: 0.88rem; }
.nav-actions .btn-ghost{ color: var(--paper); }
.site-header.solid .nav-actions .btn-primary{ background: var(--red); }
.site-header.solid .nav-actions .btn-primary:hover{ background: var(--red-dim); }
.site-header:not(.solid) .nav-actions .btn-primary{ background: var(--red); }

/* Mega menu */
.mega{
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 460px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(10,42,33,0.14);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav-item.open .mega{ opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-col h4{
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.mega-col a{
  display: block;
  padding: 9px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, padding-left .2s ease;
}
.mega-col a:last-child{ border-bottom: none; }
.mega-col a:hover{ color: var(--red); padding-left: 4px; }

/* Mobile nav */
.nav-toggle{
  display:none;
  width: 44px; height: 44px;
  border: none; background: none;
  position: relative;
  z-index: 700;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:''; position:absolute; left:11px; width:22px; height:2px;
  background: currentColor; transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span{ top:21px; }
.nav-toggle span::before{ top:-7px; left:0; }
.nav-toggle span::after{ top:7px; left:0; }
.site-header:not(.solid) .nav-toggle{ color:#fff; }
.site-header.solid .nav-toggle{ color: var(--forest); }
.nav-open .nav-toggle{ color: var(--paper); }
.nav-open .nav-toggle span{ background: transparent; }
.nav-open .nav-toggle span::before{ top:0; transform: rotate(45deg); background:#fff; }
.nav-open .nav-toggle span::after{ top:0; transform: rotate(-45deg); background:#fff; }

.mobile-drawer{
  position: fixed; inset: 0;
  background: var(--forest-dark);
  z-index: 600;
  padding: 110px 28px 40px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
}
.nav-open .mobile-drawer{ transform: translateX(0); }
.mobile-drawer .m-link{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 0; font-size: 1.35rem; font-weight: 700; color:#fff;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-drawer .m-sub{ max-height:0; overflow:hidden; transition: max-height .35s var(--ease); }
.mobile-drawer .m-item.open .m-sub{ max-height: 600px; }
.mobile-drawer .m-sub a{
  display:block; padding: 12px 0 12px 16px; font-size: 1rem; font-weight:500;
  color: rgba(255,255,255,0.75); border-left: 2px solid rgba(255,255,255,0.2);
}
.mobile-drawer .m-cta{ margin-top: 28px; display:flex; flex-direction:column; gap:12px; }
body.nav-open{ overflow: hidden; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 92vh;
  display:flex;
  align-items:flex-end;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(160deg, #0A2A21 0%, #0E3B2E 55%, #123c2f 100%);
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(198,32,46,0.16), transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(255,255,255,0.05), transparent 50%);
}
.hero-grain{
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero-content{
  position:relative; z-index:2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 160px var(--gutter) 96px;
  width:100%;
}
.hero-arc{ position:absolute; right:-6%; top:12%; width:62%; max-width:760px; opacity:0.9; z-index:1; }
.hero h1{ color:#fff; max-width: 16ch; }
.hero .lede{ color: rgba(255,255,255,0.82); margin-top: 22px; max-width: 52ch; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:16px; margin-top:38px; }
.hero-meta{
  display:flex; gap:36px; margin-top:64px; padding-top:28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}
.hero-meta div{ font-size:0.85rem; color: rgba(255,255,255,0.7); max-width:26ch; }
.hero-meta strong{ display:block; color:#fff; font-size:0.95rem; margin-bottom:4px; }

.page-hero{
  position: relative;
  padding: 170px var(--gutter) 90px;
  background: linear-gradient(160deg, #0A2A21 0%, #0E3B2E 100%);
  color:#fff;
  overflow:hidden;
}
.page-hero .container{ position:relative; z-index:2; max-width: var(--container); padding:0; }
.page-hero h1{ color:#fff; max-width: 20ch; }
.page-hero .lede{ color: rgba(255,255,255,0.82); margin-top:18px; }
.breadcrumb{ font-size:0.82rem; color: rgba(255,255,255,0.55); margin-bottom:22px; }
.breadcrumb a:hover{ color:#fff; }

/* ---------- Sections ---------- */
section{ position: relative; }
.section{ padding: 108px 0; }
.section-tight{ padding: 72px 0; }
.section-split{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 100px);
  align-items:start;
}
.section-head{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items:center;
  margin-bottom: 72px;
}
.section-head .lede{ padding-top: 0; }
.rule{ height:1px; background: var(--line); border:none; margin:0; }
.section-alt{ background: var(--paper); }
.section-dark{ background: var(--forest-dark); color:#fff; }
.section-dark .body-text, .section-dark .lede{ color: rgba(255,255,255,0.78); }

/* Intro / brand story */
.intro-figure{ position:relative; }
.intro-figure img{ border-radius: var(--radius); width:100%; height:100%; object-fit:cover; aspect-ratio: 4/5; }
.intro-figure .arc-motif{ position:absolute; bottom:-28px; left:-28px; width:130px; z-index:2; }

/* What we do */
.services-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:0; border-top:1px solid var(--line); }
.service-card{ padding: 40px 28px 40px 28px; border-right: 1px solid var(--line); text-align:center; display:flex; flex-direction:column; align-items:center; }
.service-card:last-child{ border-right:none; }
.service-icon{ width:44px; height:44px; margin-bottom:26px; color: var(--forest); }
.service-card h3{ margin-bottom:14px; }
.service-card p{ color: var(--ink-soft); font-size:0.94rem; line-height:1.65; max-width:30ch; }
.service-num{ font-family: var(--font-display); font-style:italic; font-size:1.1rem; color: var(--red); display:block; margin-bottom:18px; }

/* Commodities grid — editorial, uneven spans */
.commodity-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.commodity-card{
  position:relative;
  grid-column: span 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: var(--paper);
  display:flex; flex-direction:column;
  transition: border-color .3s ease;
}
.commodity-card.wide{ grid-column: span 4; }
.commodity-card.narrow{ grid-column: span 2; }
.commodity-card:hover{ border-color: var(--line-strong); }
.commodity-media{ position:relative; aspect-ratio: 5/3; overflow:hidden; }
.commodity-media img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.commodity-card:hover .commodity-media img{ transform: scale(1.045); }
.commodity-tag{
  position:absolute; top:14px; left:14px;
  font-size:0.7rem; font-weight:700; letter-spacing:0.03em;
  background: rgba(10,42,33,0.85); color:#fff; padding:6px 11px; border-radius:20px;
  backdrop-filter: blur(4px);
}
.commodity-body{ padding: 26px 24px 28px; flex:1; display:flex; flex-direction:column; }
.commodity-body h3{ margin-bottom:10px; }
.commodity-body p{ color: var(--ink-soft); font-size:0.93rem; line-height:1.6; flex:1; }
.commodity-link{
  margin-top:18px; display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:0.88rem; color: var(--forest);
}
.commodity-link svg{ width:15px; height:15px; transition: transform .25s var(--ease); }
.commodity-card:hover .commodity-link svg{ transform: translateX(4px); }

/* Origin ribbon (Sri Lanka -> World) */
.origin-strip{
  display:grid; grid-template-columns: repeat(4,1fr); gap:1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
}
.origin-item{ background: var(--paper); padding:34px 26px; position:relative; }
.origin-item img{ width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:2px; margin-bottom:18px; }
.origin-item h4{ font-size:1.05rem; font-weight:700; margin-bottom:8px; }
.origin-item p{ font-size:0.86rem; color: var(--ink-soft); line-height:1.55; }

/* Global network map */
.map-wrap{ position:relative; }
.map-legend{ display:flex; gap:28px; flex-wrap:wrap; margin-top: 34px; }
.legend-item{ display:flex; align-items:center; gap:10px; font-size:0.88rem; font-weight:600; cursor:pointer; padding:8px 14px; border:1px solid var(--line); border-radius:20px; transition: border-color .25s ease, background .25s ease; background:#fff;}
.legend-item:hover, .legend-item.active{ border-color: var(--forest); background: var(--forest-tint); }
.legend-dot{ width:9px; height:9px; border-radius:50%; }
.legend-dot.outbound{ background: var(--red); }
.legend-dot.inbound{ background: var(--forest); }
#world-map{ width:100%; height:auto; display:block; }
.route-path{ fill:none; stroke-width:1.6; stroke-linecap:round; opacity:0.85; }
.route-outbound{ stroke: var(--red); }
.route-inbound{ stroke: var(--forest); }
.route-dash{ stroke-dasharray: 1 9; animation: dashmove 22s linear infinite; }
@keyframes dashmove{ to{ stroke-dashoffset: -400; } }
.map-node{ fill: var(--forest-dark); }
.map-node.sl{ fill: var(--red); }
.map-label{ font-family: var(--font-sans); font-size:10.5px; font-weight:700; fill: var(--ink); }
.map-dim .route-path:not(.active-route){ opacity:0.12; }
.map-dim .map-node:not(.active-node){ opacity:0.25; }

/* Why Zahibro */
.why-list{ border-top:1px solid var(--line); }
.why-row{
  display:grid; grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items:baseline;
}
.why-row h3{ color: var(--forest); }
.why-row p{ color: var(--ink-soft); max-width:60ch; }

/* Final CTA */
.cta-band{
  background: linear-gradient(155deg, var(--forest-dark), var(--forest));
  color:#fff;
  padding: 100px 0;
  position:relative;
  overflow:hidden;
}
.cta-band::after{
  content:'';
  position:absolute; left:-4%; bottom:-40%;
  width:56%; aspect-ratio:1/1;
  border: 1px solid rgba(198,32,46,0.35);
  border-radius:50%;
}
.cta-band .container{ position:relative; z-index:2; }
.cta-band h2{ color:#fff; max-width: 20ch; }
.cta-band .lede{ color: rgba(255,255,255,0.78); }
.cta-band .btn-group{ display:flex; gap:16px; margin-top:34px; flex-wrap:wrap; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--forest-dark); color: rgba(255,255,255,0.75); padding: 76px 0 28px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap:48px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,0.12); }
.footer-brand img{ height:38px; margin-bottom:20px; }
.footer-brand p{ font-size:0.88rem; line-height:1.6; max-width:32ch; color: rgba(255,255,255,0.6); }
.footer-tagline{ font-weight:700; color:#fff !important; margin-top:10px !important; }
.footer-col h5{ color:#fff; font-size:0.82rem; letter-spacing:0.03em; font-weight:700; margin-bottom:18px; text-transform:uppercase; }
.footer-col a, .footer-col p{ display:block; font-size:0.9rem; margin-bottom:12px; color: rgba(255,255,255,0.68); transition:color .2s ease; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; font-size:0.82rem; color: rgba(255,255,255,0.5); flex-wrap:wrap; gap:12px; }
.footer-social{ display:flex; gap:14px; }
.footer-social a{ width:36px; height:36px; border:1px solid rgba(255,255,255,0.2); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:16px; height:16px; }

/* ---------- Cards / misc reusable ---------- */
.eyebrow-plain{ color: var(--ink-faint); font-size:0.85rem; font-weight:600; }
.stat-block{ }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:56px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.panel{ border:1px solid var(--line); border-radius: var(--radius); padding:36px; background:var(--paper); }
.fade-up{ opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fade-up.in{ opacity:1; transform:none; }

/* Leadership */
.leader-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:32px; }
.leader-card{ }
.leader-photo{ aspect-ratio: 4/5; background: var(--forest-tint); border-radius:var(--radius); overflow:hidden; margin-bottom:22px; display:flex; align-items:center; justify-content:center; }
.leader-photo img{ width:100%; height:100%; object-fit:cover; }
.leader-photo .placeholder-icon{ width:56px; height:56px; color: var(--forest); opacity:0.35; }
.leader-card h3{ margin-bottom:4px; }
.leader-role{ color: var(--red); font-weight:700; font-size:0.85rem; margin-bottom:14px; }
.leader-bio{ color: var(--ink-soft); font-size:0.92rem; line-height:1.6; }

/* Services page detail */
.service-detail{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,90px); align-items:center; padding: 88px 0; border-bottom:1px solid var(--line); }
.service-detail:last-of-type{ border-bottom:none; }
.service-detail.reverse{ direction: rtl; }
.service-detail.reverse > *{ direction: ltr; }
.service-detail img{ border-radius: var(--radius); aspect-ratio: 4/3; object-fit:cover; width:100%; }
.detail-points{ margin-top:22px; display:flex; flex-direction:column; gap:12px; }
.detail-points li{ display:flex; gap:12px; align-items:flex-start; font-size:0.95rem; color: var(--ink-soft); }
.detail-points svg{ width:18px; height:18px; flex-shrink:0; margin-top:2px; color: var(--forest); }

/* Exports spice tags */
.spice-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.spice-tags span{ font-size:0.85rem; font-weight:600; padding:9px 16px; border:1px solid var(--line-strong); border-radius:20px; color: var(--forest); }

/* Contact */
.contact-grid{ display:grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px,6vw,80px); align-items:start; }
.contact-methods{ display:flex; flex-direction:column; gap:22px; margin-top:32px; }
.contact-method{ display:flex; gap:18px; align-items:flex-start; padding: 20px 0; border-bottom:1px solid var(--line); }
.contact-method svg{ width:22px; height:22px; color:var(--forest); flex-shrink:0; margin-top:2px; }
.contact-method strong{ display:block; margin-bottom:4px; }
.contact-method .quick-actions{ display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }
.contact-method .quick-actions .btn{ padding:9px 16px; font-size:0.82rem; }
.form-field{ margin-bottom:20px; }
.form-field label{ display:block; font-size:0.85rem; font-weight:700; margin-bottom:8px; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:14px 16px; border:1px solid var(--line-strong); border-radius:var(--radius);
  background:#fff; color:var(--ink); font-size:0.95rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(14,59,46,0.12);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-note{ font-size:0.8rem; color: var(--ink-faint); margin-top:14px; }
.map-embed{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); margin-top:32px; aspect-ratio:16/10; }
.map-embed iframe{ width:100%; height:100%; border:0; }
.form-success{ display:none; padding:20px; border:1px solid var(--forest); background:var(--forest-tint); border-radius:var(--radius); font-weight:600; color:var(--forest); margin-bottom:20px; }
.form-success.show{ display:block; }

/* Commodity detail anchors on commodities page */
.commodity-detail{ padding: 90px 0; border-bottom:1px solid var(--line); scroll-margin-top: 110px; }
.commodity-detail:last-child{ border-bottom:none; }
.commodity-detail-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,80px); align-items:center; }
.commodity-detail.reverse .commodity-detail-grid{ direction:rtl; }
.commodity-detail.reverse .commodity-detail-grid > *{ direction:ltr; }
.commodity-detail img{ border-radius:var(--radius); aspect-ratio:4/3; object-fit:cover; width:100%; }
.pill-nav{ display:flex; gap:10px; flex-wrap:wrap; padding:18px 0 0; }
.pill-nav a{ font-size:0.85rem; font-weight:700; padding:10px 18px; border:1px solid var(--line-strong); border-radius:20px; color: var(--forest); transition: all .2s ease; }
.pill-nav a:hover, .pill-nav a.active{ background: var(--forest); color:#fff; border-color:var(--forest); }

/* Small paired-image gallery, used to give Tea extra visual depth */
.mini-gallery{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:22px; }
.mini-gallery img{ aspect-ratio:4/3; object-fit:cover; border-radius:var(--radius); width:100%; }

/* Tea types & steeping guide */
.tea-types-list{ border-top:1px solid var(--line); margin-top:8px; }
.tea-types-row{ display:grid; grid-template-columns: 240px 1fr; gap:24px; padding:20px 0; border-bottom:1px solid var(--line); }
.tea-types-row h4{ font-size:1.05rem; font-weight:700; color:var(--forest); }
.tea-types-row p{ color:var(--ink-soft); font-size:0.94rem; line-height:1.6; }
.steep-list{ list-style:none; margin:18px 0 0; padding:0; display:grid; gap:10px; }
.steep-list li{ font-size:0.93rem; color:var(--ink-soft); }
.steep-list strong{ color:var(--ink); }
.tea-subblock{ padding:60px 0; border-top:1px solid var(--line); }

/* Leadership — horizontal strip, circular grayscale portraits, hover zoom */
.leadership-strip{ display:flex; flex-wrap:wrap; justify-content:flex-start; gap: 40px 32px; padding: 8px 0 4px; }
.leader-item{ display:flex; flex-direction:column; align-items:center; text-align:center; width:150px; }
.leader-avatar{
  width:126px; height:126px; border-radius:50%; overflow:hidden;
  border:3px solid var(--forest-tint);
  transition: transform .4s var(--ease), border-color .4s ease, box-shadow .4s ease;
}
.leader-avatar img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .6s var(--ease); }
.leader-item:hover .leader-avatar{ transform: scale(1.08); border-color: var(--red); box-shadow: 0 10px 26px rgba(10,42,33,0.18); }
.leader-item:hover .leader-avatar img{ transform: scale(1.1); }
.leader-avatar.monogram{
  display:flex; align-items:center; justify-content:center;
  background: var(--forest); color:#fff;
  font-family: var(--font-display); font-style:italic; font-weight:500; font-size:1.9rem;
}
.leader-name{ margin-top:16px; font-weight:700; font-size:0.96rem; line-height:1.3; }
.leader-role{ font-size:0.82rem; color:var(--red); font-weight:700; margin-top:3px; }
.leader-location{ font-size:0.78rem; color:var(--ink-faint); margin-top:2px; }

/* Footer dual-logo lockup */
.footer-logos{ display:flex; align-items:center; gap:16px; margin-bottom:20px; }
.footer-logos img{ height:38px; margin-bottom:0; }
.footer-logos .divider{ width:1px; height:28px; background:rgba(255,255,255,0.22); }

/* Enquiry banner used across service/commodity/export pages */
.inline-cta{ display:flex; justify-content:space-between; align-items:center; gap:24px; padding:44px; border:1px solid var(--line); border-radius: var(--radius); background: var(--paper); flex-wrap:wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px){
  .main-nav, .nav-actions{ display:none; }
  .nav-toggle{ display:block; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .service-card{ border-right:none; border-bottom:1px solid var(--line); padding:32px 0; }
  .section-split, .grid-2{ grid-template-columns:1fr; gap:40px; }
  .section-head{ grid-template-columns:1fr; gap:20px; }
  .origin-strip{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .why-row{ grid-template-columns:1fr; gap:10px; }
  .leader-grid{ grid-template-columns:repeat(3,1fr); }
  .service-detail, .commodity-detail-grid{ grid-template-columns:1fr; }
  .service-detail.reverse, .commodity-detail.reverse .commodity-detail-grid{ direction:ltr; }
  .service-detail.reverse img{ order:-1; }
}
@media (max-width: 720px){
  .commodity-grid{ grid-template-columns: repeat(2,1fr); }
  .commodity-card, .commodity-card.wide, .commodity-card.narrow{ grid-column: span 2; }
  .origin-strip{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap:32px; }
  .leader-grid, .grid-3{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .hero{ min-height: 100vh; }
  .hero-content{ padding-top:130px; }
  .hero-arc{ display:none; }
  .inline-cta{ flex-direction:column; align-items:flex-start; }
  .map-legend{ gap:12px; }
}
@media (max-width: 480px){
  .footer-grid{ grid-template-columns: 1fr; gap:32px; }
}
