/* ==========================================================================
   Shaarav Global Exports — site stylesheet
   Derived from the SHAARAV design system (Claude Design project c4e19477).
   Token block below is the single source of truth for colour and type.
   ========================================================================== */

:root {
  /* Greens — the house colour, darkest to lightest */
  --green-950: #072A19;   /* top bar, CTA band, deepest field   */
  --green-900: #0B3B24;   /* primary brand green, dark sections */
  --ink:       #1B2A21;   /* body text on light                 */
  --green-600: #46564B;   /* table cells, secondary text        */
  --green-500: #5C6B60;   /* paragraphs on light                */
  --green-400: #7A8A7E;   /* fine print                         */
  --green-300: #A9BFAC;   /* body text on dark                  */
  --green-250: #9FB4A2;   /* stat captions on dark              */
  --green-200: #C6D5C6;   /* lede text on dark                  */
  --green-100: #D8E2D8;   /* top bar text                       */

  /* Gold — the single accent */
  --gold:      #C9A24B;
  --gold-dark: #9A7B33;   /* gold that passes contrast on cream */
  --gold-lite: #E3C77E;

  /* Grounds */
  --cream:     #FBFAF6;   /* page background                    */
  --cream-2:   #F2EEE2;   /* alternating band                   */
  --cream-3:   #F7F3E9;   /* text on dark green                 */
  --paper:     #FFFDF7;   /* headings on dark green             */
  --white:     #ffffff;

  /* Lines */
  --line:      #E4DECD;
  --line-2:    #D9D2BF;
  --line-dark: rgba(247, 243, 233, .18);

  /* WhatsApp */
  --wa:        #1FA855;
  --wa-dark:   #17853F;

  /* Type */
  --display: Cinzel, Georgia, 'Times New Roman', serif;
  --body: Barlow, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Rhythm */
  --wrap: 1200px;
  --gutter: 24px;
  --section-y: 88px;
}

/* --------------------------------------------------------------- reset -- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 16px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; }
img { height: auto; }

a { color: var(--green-900); text-decoration: none; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }

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

::selection { background: rgba(201, 162, 75, .3); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 14px 20px;
  background: var(--green-900);
  color: var(--cream-3);
  font: 600 13px/1 var(--body);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.skip-link:focus { left: 0; color: var(--cream-3); }

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

/* ------------------------------------------------------------- layout -- */

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

.section { padding: var(--section-y) 0; }
.section-tight { padding: 72px 0; }
.section-lead { padding: 96px 0 40px; }
.section-trail { padding: 40px 0 var(--section-y); }
.cols-1 { grid-template-columns: 1fr; }
.cols-mini { grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr)); }
.section-dark { background: var(--green-900); color: var(--cream-3); }
.section-cream { background: var(--cream-2); }
.rule-top { border-top: 1px solid var(--line); }
.rule-bottom { border-bottom: 1px solid var(--line); }

/* Two-column feature block: image beside prose */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 56px;
  align-items: center;
}
.split-wide { gap: 64px; }
.split-top { align-items: start; }

/* Hairline grid — cells separated by 1px of --line showing through */
.cellgrid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cellgrid > * { background: var(--white); }
.cellgrid-cream > * { background: var(--cream); }
.cols-2 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
/* 300px keeps the six-cell grids (markets, documents, services) at 3 x 2 on a
   1200px measure — 260px would give four columns and leave two cells empty. */
.cols-3 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.cols-4 { grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); }
.cols-5 { grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); }

/* Section opener: heading block on the left, a "see all" link on the right */
.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 46px;
}
.section-head-copy { max-width: 640px; }
.section-head-center { display: block; text-align: center; max-width: 660px; margin: 0 auto 60px; }

.center { text-align: center; }
.mt-lg { margin-top: 48px; }

/* ---------------------------------------------------------------- type -- */

.kicker {
  font: 600 11px/1 var(--body);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.kicker.on-dark { color: var(--gold); }

.h1 {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.06;
  color: var(--green-900);
  text-wrap: pretty;
}
.h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  color: var(--green-900);
  text-wrap: pretty;
}
.h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  color: var(--green-900);
}
.h1.on-dark, .h2.on-dark, .h3.on-dark { color: var(--paper); }

.lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--green-500);
  text-wrap: pretty;
}
.lede.on-dark { color: var(--green-200); }

.prose {
  font-size: 17px;
  line-height: 1.75;
  color: var(--green-500);
  text-wrap: pretty;
}
.prose + .prose { margin-top: 18px; }
.prose strong { color: var(--green-900); font-weight: 600; }
.measure { max-width: 660px; }
.measure-wide { max-width: 820px; }

.fine {
  font-size: 14px;
  line-height: 1.7;
  color: var(--green-400);
}

/* Underlined text link used as a section's "read on" action */
.link-more {
  display: inline-block;
  font: 600 13px/1 var(--body);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-900);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
}
.link-more:hover { color: var(--gold-dark); border-bottom-color: var(--gold-dark); }

/* ------------------------------------------------------------- buttons -- */

.btn {
  display: inline-block;
  padding: 16px 30px;
  border: 1px solid transparent;
  font: 700 13px/1 var(--body);
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-sm { padding: 13px 22px; font-size: 12px; }

.btn-dark { background: var(--green-900); color: var(--cream-3); }
.btn-dark:hover, .btn-dark:focus-visible { background: var(--gold); color: var(--green-950); }

.btn-gold { background: var(--gold); color: var(--green-950); }
.btn-gold:hover, .btn-gold:focus-visible { background: var(--gold-lite); color: var(--green-950); }

.btn-outline-light { border-color: rgba(247, 243, 233, .35); color: var(--cream-3); }
.btn-outline-light:hover, .btn-outline-light:focus-visible { border-color: var(--gold); color: var(--gold); }

.btn-outline-gold { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold:hover, .btn-outline-gold:focus-visible { background: var(--gold); color: var(--green-950); }

.btn-outline-dark { border-color: var(--green-900); color: var(--green-900); background: var(--white); }
.btn-outline-dark:hover, .btn-outline-dark:focus-visible { background: var(--green-900); color: var(--cream-3); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover, .btn-wa:focus-visible { background: var(--wa-dark); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row-center { justify-content: center; }

/* -------------------------------------------------------------- header -- */

.topbar {
  background: var(--green-950);
  color: var(--green-100);
  font-size: 13px;
  letter-spacing: .04em;
}
.topbar-in {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar-contact { display: flex; flex-wrap: wrap; gap: 6px 24px; }
.topbar a { color: var(--green-100); }
.topbar a:hover { color: var(--gold); }
.topbar-note {
  color: var(--gold);
  font: 600 11px/1.4 var(--body);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header-in {
  display: flex;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: block; line-height: 1; }
.brand-name {
  display: block;
  font: 700 26px/1 var(--display);
  letter-spacing: .10em;
  color: var(--green-900);
}
.brand-sub {
  display: block;
  font: 500 10px/1 var(--body);
  letter-spacing: .42em;
  color: var(--gold-dark);
  margin-top: 6px;
}

.nav { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.nav-link {
  padding: 9px 14px;
  font: 600 13px/1 var(--body);
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--green-600);
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.nav-link:hover, .nav-link:focus-visible {
  color: var(--green-900);
  border-bottom-color: var(--gold);
}
.nav-link.is-active { color: var(--green-900); border-bottom-color: var(--gold); }
.nav-cta { margin-left: 10px; padding: 12px 20px; font-size: 12px; font-weight: 600; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 11px 10px;
  background: transparent;
  border: 1px solid var(--line-2);
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  background: var(--green-900);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-bar + .nav-toggle-bar { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .header-in { flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 14px;
    border-top: 1px solid var(--line);
    margin-top: 12px;
  }
  .nav.is-open { display: flex; }
  .nav-link {
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
    border-left: 2px solid transparent;
  }
  .nav-link:hover, .nav-link.is-active {
    border-bottom-color: var(--line);
    border-left-color: var(--gold);
    padding-left: 12px;
  }
  .nav-cta { margin: 16px 0 0; }
}

@media (max-width: 560px) {
  .topbar-note { display: none; }
}

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  background: var(--green-900);
  color: var(--cream-3);
  overflow: hidden;
}
.hero-in {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 48px;
  align-items: center;
  min-height: 600px;
}
.hero-copy { padding: 72px 0; animation: rise .7s ease both; }

.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.eyebrow span {
  font: 600 11px/1.4 var(--body);
  letter-spacing: .30em;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.06;
  color: var(--paper);
  margin-bottom: 24px;
  text-wrap: pretty;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--green-200);
  max-width: 520px;
  margin-bottom: 36px;
  text-wrap: pretty;
}

.hero-figure {
  position: relative;
  min-height: 460px;
  margin: 48px 0;
  background: var(--green-950);
  overflow: hidden;
}
.hero-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  animation: crossfade 18s ease-in-out infinite;
}
.hero-figure img:nth-child(2) { animation-delay: 6s; }
.hero-figure img:nth-child(3) { animation-delay: 12s; }
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 162, 75, .55);
  pointer-events: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes crossfade {
  0%   { opacity: 0; transform: scale(1.06); }
  6%   { opacity: 1; }
  30%  { opacity: 1; }
  36%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-figure img { opacity: 0; }
  .hero-figure img:first-child { opacity: 1; }
}

/* Interior page banner */
.pagehead { background: var(--green-900); color: var(--cream-3); }
.pagehead-in { padding: 76px 0 68px; }
.pagehead .h1 { color: var(--paper); margin-bottom: 22px; }

/* Stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(130px, 100%), 1fr));
  gap: 28px 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(247, 243, 233, .15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr));
  gap: 34px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid rgba(247, 243, 233, .15);
}
.stat-num {
  font: 400 34px/1 var(--display);
  color: var(--gold);
}
.stat-label {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-250);
  margin-top: 8px;
}

/* ------------------------------------------------------------ features -- */

/* The four-up assurance strip under the hero */
.assurance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 22px;
  padding: 28px 0;
}
.assure { display: flex; gap: 12px; align-items: baseline; }
.assure::before { content: "\25C6"; color: var(--gold); font-size: 18px; line-height: 1; }
.assure-title {
  font: 600 14px/1.3 var(--body);
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--green-900);
}
.assure-note { font-size: 14px; color: var(--green-500); margin-top: 5px; }

/* Product teaser cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 28px;
}
.pcard {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color .18s ease, transform .18s ease;
}
.pcard:hover, .pcard:focus-visible { border-color: var(--gold); transform: translateY(-3px); }
.pcard img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.pcard-body { padding: 22px 22px 24px; }
.pcard-title { font: 600 24px/1.1 var(--display); color: var(--green-900); }
.pcard-note { font-size: 14px; line-height: 1.55; color: var(--green-500); margin-top: 10px; }
.pcard-more {
  margin-top: 16px;
  font: 600 11px/1 var(--body);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* Numbered process steps */
.step { padding: 34px 24px; }
.step-lg { padding: 38px 30px; }
.step-num { font: 400 32px/1 var(--display); color: var(--gold); }
.step-title {
  font: 600 15px/1.3 var(--body);
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--green-900);
  margin: 16px 0 10px;
}
.step-body { font-size: 15px; line-height: 1.7; color: var(--green-500); }
.step-body-lg { font-size: 16px; }

.section-dark .cellgrid { background: var(--line-dark); border-color: var(--line-dark); }
.section-dark .cellgrid > * { background: var(--green-900); }
.section-dark .step-title { color: var(--cream-3); }
.section-dark .step-body { color: var(--green-300); }

/* Small labelled tiles: documentation lists, market lists, logistics notes */
.tile { padding: 26px; }
.tile-sm { padding: 20px 22px; }
.tile-flush { padding: 22px; }
.tile-cream { background: var(--cream-2) !important; display: flex; align-items: center; }
.tile-lg { padding: 32px 28px; }
.tile-title-sm { font-size: 13px; letter-spacing: .14em; }
.tile-note-lg { font-size: 15px; }
.tile-title {
  font: 600 15px/1.3 var(--body);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-900);
}
.tile-note { font-size: 14px; line-height: 1.6; color: var(--green-500); margin-top: 9px; }

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 14px;
}
.doc-chip {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 20px;
  font: 600 14px/1.4 var(--body);
  letter-spacing: .06em;
  color: var(--green-900);
}

.market { padding: 30px 26px; }
.market-head {
  font: 600 13px/1 var(--body);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.market-list { font-size: 16px; line-height: 2; color: var(--green-600); }
.market-list-sm { font-size: 14px; line-height: 1.7; color: var(--green-600); }
/* Last cell of the market grid: an invitation rather than a list */
.market-cta {
  background: var(--cream-2) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.market-transit {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--green-400);
}

/* ------------------------------------------------------- product pages -- */

.product-band { padding: var(--section-y) 0; border-top: 1px solid var(--line); }
.product-band:first-of-type { border-top: 0; }
.band-light { background: var(--cream); }
.band-cream { background: var(--cream-2); }
/* Product band headings sit a step below the page h1 */
.h2-product { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; }
.h2-page    { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 22px; }
.h3-card    { font-size: 26px; margin-bottom: 14px; }
.enquire-row { margin-top: 22px; }

/* Tall portrait figure used beside prose on About */
.figure-tall {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}

/* Editorial pull quote */
.pull-quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.45;
  color: var(--green-900);
  text-wrap: pretty;
}

/* Three equal columns of prose on a dark field */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 48px;
}
.product-figure {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}
.product-intro { margin-bottom: 44px; }
.product-meta { font-size: 14px; line-height: 1.8; color: var(--green-600); }
.product-meta strong { color: var(--green-900); font-weight: 600; }

.jump-row { display: flex; flex-wrap: wrap; gap: 10px; }
.jump {
  padding: 11px 18px;
  border: 1px solid rgba(201, 162, 75, .5);
  color: var(--gold);
  font: 600 12px/1 var(--body);
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background-color .18s ease, color .18s ease;
}
.jump:hover, .jump:focus-visible { background: var(--gold); color: var(--green-950); }

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}
table.spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
  min-width: 660px;
}
table.spec caption {
  caption-side: top;
  text-align: left;
  padding: 14px 14px 0;
  font-size: 13px;
  color: var(--green-400);
}
table.spec thead th {
  background: var(--green-900);
  color: var(--cream-3);
  font: 600 11px/1.2 var(--body);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px;
  text-align: left;
  white-space: nowrap;
}
table.spec tbody td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--green-600);
  vertical-align: top;
}
table.spec tbody th {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--green-900);
  vertical-align: top;
  white-space: nowrap;
}
table.spec tbody tr:last-child td,
table.spec tbody tr:last-child th { border-bottom: 0; }

/* The scanned grade sheet shown beside a table */
.chart-figure { margin: 0; }
.chart-figure img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  background: var(--white);
}
.chart-figure figcaption {
  font-size: 13px;
  color: var(--green-400);
  margin-top: 10px;
}

/* Printed grade sheet, folded away until asked for */
.sheet { margin-top: 22px; border: 1px solid var(--line); background: var(--white); }
.sheet > summary {
  cursor: pointer;
  padding: 16px 20px;
  font: 600 12px/1 var(--body);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-900);
  list-style: none;
}
.sheet > summary::-webkit-details-marker { display: none; }
.sheet > summary::before { content: "+ "; color: var(--gold-dark); }
.sheet[open] > summary::before { content: "\2013 "; }
.sheet > summary:hover { color: var(--gold-dark); }
.sheet-body { padding: 0 20px 20px; }
.sheet-body img { display: block; width: 100%; border: 1px solid var(--line); }
.sheet-body a:hover img, .sheet-body a:focus-visible img { border-color: var(--gold); }
.sheet-hint { margin: 10px 0 0; font-size: 13px; color: var(--green-400); }

/* -------------------------------------------------------------- forms -- */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 38px 34px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 20px;
}
.field-grid + .field-grid { margin-top: 20px; }
.field-full { margin-top: 20px; }

label {
  display: block;
  font: 600 11px/1 var(--body);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 9px;
}
input, select, textarea {
  width: 100%;
  font: 400 15px/1.4 var(--body);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 0;
  padding: 13px 14px;
  outline: none;
}
textarea { resize: vertical; min-height: 110px; }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 162, 75, .25);
}
/* Flag a field only once the visitor has actually got it wrong — never on load */
input:user-invalid,
select:user-invalid,
textarea:user-invalid { border-color: #B4573F; }

/* Spam honeypot — never shown, never focusable in normal use */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note { font-size: 13px; line-height: 1.6; color: var(--green-400); margin-top: 20px; }

/* The endpoint's own bot trap — a checkbox no human can see or reach */
.hp-check { position: absolute; left: -9999px; }

/* Notice shown above the fields when the form has no endpoint configured */
.form-callout {
  margin: 0 0 26px;
  padding: 16px 18px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.7;
  color: var(--green-500);
}

/* Live region under the buttons: sending, sent, failed */
.form-status {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: var(--cream-2);
  font-size: 15px;
  line-height: 1.6;
  color: var(--green-500);
}
.form-status.is-error { border-left-color: #B4573F; }

/* Confirmation panel that replaces the form once an enquiry lands */
.form-sent { animation: rise .4s ease both; }

button[disabled] { opacity: .55; cursor: progress; }

.contact-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 34px;
}
.contact-rows { display: grid; gap: 24px; }
.contact-label {
  font: 600 11px/1 var(--body);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 9px;
}
.contact-value { font-size: 16px; line-height: 1.7; color: var(--green-600); font-style: normal; }
.contact-strong { font-size: 18px; color: var(--green-900); font-weight: 600; }
.contact-strong.is-mail { font-size: 17px; word-break: break-word; }

.map-frame { border: 1px solid var(--line); border-top: 0; background: var(--white); }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

.aside-note {
  margin-top: 26px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  padding: 26px;
}
.aside-note-head {
  font: 600 12px/1 var(--body);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.aside-note-body { font-size: 15px; line-height: 1.8; color: var(--green-500); }
.aside-note-body strong { color: var(--green-900); font-weight: 600; }

/* ----------------------------------------------------------- cta/footer -- */

.cta { background: var(--green-950); color: var(--cream-3); }
.cta-in {
  max-width: 900px;
  margin: 0 auto;
  padding: 88px var(--gutter);
  text-align: center;
}
.cta .h2 { margin-bottom: 20px; }
.cta .lede { margin-bottom: 36px; }

.site-footer {
  background: var(--green-900);
  color: var(--green-300);
  border-top: 1px solid rgba(201, 162, 75, .35);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 32px;
}
.footer-brand { font-size: 24px; color: var(--cream-3); }
.footer-brand-sub { color: var(--gold); }
.footer-blurb { font-size: 14px; line-height: 1.7; margin-top: 20px; max-width: 280px; }
.footer-head {
  font: 600 12px/1 var(--body);
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { display: grid; gap: 10px; font-size: 14px; }
.footer-links a { color: var(--green-300); }
.footer-links a:hover { color: var(--cream-3); }
.footer-address { font-size: 14px; line-height: 1.8; font-style: normal; }
.footer-strong { display: block; color: var(--cream-3); }
.footer-strong:first-of-type { margin-top: 14px; }
.footer-strong:hover { color: var(--gold); }
.footer-mail { word-break: break-word; }
.footer-base {
  padding-top: 22px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(247, 243, 233, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 13px;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transition: background-color .18s ease, transform .18s ease;
}
.wa-float:hover, .wa-float:focus-visible { background: var(--wa-dark); color: #fff; transform: scale(1.06); }

/* ------------------------------------------------------------- 404 page -- */

.notfound { text-align: center; padding: 120px 0; }
.notfound .stat-num { font-size: 64px; color: var(--gold-dark); }

/* ---------------------------------------------------------- responsive -- */

@media (max-width: 900px) {
  :root { --section-y: 64px; }
  .section-lead { padding: 64px 0 32px; }
  .section-trail { padding: 32px 0 64px; }
  .hero-in { min-height: 0; }
  .hero-copy { padding: 56px 0 0; }
  .hero-figure { min-height: 320px; margin: 32px 0 56px; }
  .split, .split-wide { gap: 40px; }
  .cta-in { padding: 64px var(--gutter); }
  .footer-grid { padding-top: 48px; }
}

@media (max-width: 600px) {
  :root { --gutter: 18px; }
  .form-card { padding: 26px 20px; }
  .contact-card { padding: 26px 22px; }
  .pagehead-in { padding: 56px 0 48px; }
  .stats { gap: 26px; margin-top: 40px; }
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ------------------------------------------------------------ tap size -- */

/* Inline links sit at their line height — around 21px — which is below the
   24px WCAG 2.5.8 minimum and well below the 44px that is comfortable with a
   thumb. On touch pointers, pad them out. Desktop is left alone so the layout
   does not loosen where a mouse is precise enough. */
@media (hover: none) and (pointer: coarse) {
  .topbar-contact a,
  .footer-links a,
  .footer-strong {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .topbar-in { padding-top: 2px; padding-bottom: 2px; }
  .footer-links { gap: 0; }

  .link-more { padding-top: 14px; padding-bottom: 12px; }

  /* The jump-row chips on the products page and the sheet toggles. */
  .jump { padding-top: 15px; padding-bottom: 15px; }
  .sheet > summary { padding-top: 20px; padding-bottom: 20px; }

  /* Footer legal row and the contact card's address links. */
  .contact-strong { display: inline-flex; align-items: center; min-height: 44px; }

  /* The small button variant and the nav CTA land at 38–40px from their own
     padding. Both are primary actions, so give them the extra few pixels. */
  .btn-sm { padding-top: 16px; padding-bottom: 16px; }
  .nav-cta { padding-top: 15px; padding-bottom: 15px; }
}

/* ---------------------------------------------------------------- print -- */

@media print {
  .topbar, .nav, .nav-toggle, .cta, .wa-float, .skip-link, .map-frame { display: none !important; }
  body { background: #fff; color: #000; }
  .site-header { position: static; }
  .table-scroll { overflow: visible; }
  table.spec { min-width: 0; font-size: 11px; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 10px; }
}
