/* ==========================================================================
   DSK International — B2B rice export site
   Implemented from the Claude Design prototype "DSK International.dc.html"
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Brand */
  --ink:            #14180F; /* footer / deepest surface */
  --forest-deep:    #1B2A1E; /* hero ground, headings */
  --forest:         #24462F; /* primary green */
  --leaf:           #6E9C3E; /* accent green */
  --gold:           #F2B705; /* accent gold */

  /* Text */
  --text:           #3A4034;
  --text-muted:     #6F7468;
  --text-soft:      #7C8074;
  --text-faint:     #9A9C91;
  --text-mono:      #8E8B7A;
  --text-mono-warm: #A39270;
  --placeholder:    #A6A395;

  /* Surfaces */
  --white:          #ffffff;
  --cream:          #F8F5EE;
  --cream-hover:    #FCFAF5;
  --leaf-tint:      #F0F4E9;

  /* Lines */
  --line:           #EDE8DC;
  --line-warm:      #E7E1D2;
  --line-deep:      #E4DDCC;
  --line-strong:    #D6CFBC;
  --line-card:      #DCD5C4;

  /* Type */
  --font-display: Manrope, "Helvetica Neue", Arial, sans-serif;
  --font-body:    Mulish, system-ui, -apple-system, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --shell:      1280px;
  --gutter:     48px;
  --header-h:   88px;
  --section-y:  128px;
  --section-y-sm: 120px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--leaf); }

input, textarea, select, button { font-family: inherit; }
::placeholder { color: var(--placeholder); }

h1, h2, h3, h4 { font-family: var(--font-display); text-wrap: pretty; }

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

/* Keep jump targets clear of the sticky header */
#main, [id] { scroll-margin-top: calc(var(--header-h) + 8px); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 22px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  color: var(--white);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

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

.section { padding: var(--section-y) 0; }
.section--sm { padding: var(--section-y-sm) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.grid { display: grid; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
/* Asymmetric variants. These live in the stylesheet rather than inline
   `style` attributes so the responsive rules below can override them —
   an inline grid-template-columns wins over any media query. */
.split--right { grid-template-columns: 1fr 1.05fr; gap: 90px; }
.split--left  { grid-template-columns: 1.05fr 1fr; gap: 90px; }

/* --------------------------------------------------------------------------
   4. Type helpers
   -------------------------------------------------------------------------- */

.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leaf);
}
.eyebrow--gold  { color: var(--gold); }
.eyebrow--muted { color: var(--text-mono-warm); }
.eyebrow--lg    { font-size: 11.5px; letter-spacing: 0.24em; }

/* eyebrow preceded by a hairline rule */
.eyebrow-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow-rule::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--leaf);
  flex-shrink: 0;
}
.eyebrow-rule--gold::before { background: var(--gold); width: 44px; }
.eyebrow-rule--hero { margin-bottom: 26px; }

.h1 {
  font-size: 68px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 26px;
}
.h2 {
  font-size: 46px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}
.h2--lg { font-size: 50px; line-height: 1.1; }
.h2--md { font-size: 44px; }
.h2--sm { font-size: 42px; }

.lede {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}
.lede--lg { font-size: 17.5px; }
.lede + .lede { margin-top: 20px; }

.on-dark { color: var(--white); }
.on-dark-body { color: rgba(255, 255, 255, 0.74); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 20px 38px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: background .25s, color .25s, border-color .25s,
              transform .25s, box-shadow .25s;
}
.btn:hover { color: inherit; }

/* Green, hovers to gold, keeps white label (hero) */
.btn--leaf { background: var(--leaf); color: var(--white); }
.btn--leaf:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

/* Green, hovers to gold with dark label (products CTA) */
.btn--leaf-ink { background: var(--leaf); color: var(--white); }
.btn--leaf-ink:hover {
  background: var(--gold);
  color: var(--forest-deep);
  transform: translateY(-3px);
}

/* Gold, hovers to deep green (in-page CTAs, product cards) */
.btn--gold { background: var(--gold); color: var(--forest-deep); }
.btn--gold:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(36, 70, 47, 0.24);
}

/* Gold, hovers to white (on dark photography) */
.btn--gold-light { background: var(--gold); color: var(--forest-deep); }
.btn--gold-light:hover {
  background: var(--white);
  color: var(--forest-deep);
  transform: translateY(-3px);
}

/* Outlined, for dark backgrounds */
.btn--ghost { border-color: rgba(255, 255, 255, 0.34); color: var(--white); }
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn--ghost-soft { border-color: rgba(255, 255, 255, 0.28); color: var(--white); }
.btn--ghost-soft:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  color: var(--white);
}

/* Header CTA */
.btn--dark {
  background: var(--forest);
  color: var(--white);
  font-size: 12px;
  padding: 16px 28px;
}
.btn--dark:hover {
  background: var(--leaf);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(36, 70, 47, 0.22);
}

.btn--sm { font-size: 12px; padding: 16px 24px; }
.btn--footer { font-size: 12px; padding: 18px 32px; }
.btn--footer:hover { transform: translateY(-2px); box-shadow: none; }
.btn--block { display: block; width: 100%; }

/* Underlined text link with gold rule */
.link-rule {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  white-space: nowrap;
  transition: color .25s;
}
.link-rule:hover { color: var(--leaf); }

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  white-space: nowrap;
}
.brand:hover { color: inherit; }

/* Official logo lockup. Height is the controlled dimension and width is auto,
   so the artwork can never be stretched or squashed whatever the header does.
   The colour version is used here because the header ground is white. */
.brand__logo {
  height: 58px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.site-nav { display: flex; align-items: center; gap: 38px; }

.site-nav__link {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--leaf);
  border-bottom-color: var(--leaf);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--forest-deep);
  transition: transform .25s, opacity .25s;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. Media frames — striped placeholder ground + covering photo
   -------------------------------------------------------------------------- */

.frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: repeating-linear-gradient(135deg, #EFEAE0 0 12px, #E6E0D2 12px 24px);
}
.frame--warm  { background: repeating-linear-gradient(135deg, #E9E2D3 0 12px, #DFD7C4 12px 24px); }
.frame--deep  { background: repeating-linear-gradient(135deg, #E3DBC9 0 12px, #D9D0BA 12px 24px); }
.frame--light { background: repeating-linear-gradient(135deg, #F1ECE2 0 12px, #E8E1D3 12px 24px); }

.frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Standalone frames with a fixed editorial height */
.frame--tall   { height: 520px; }
.frame--taller { height: 560px; }

/* Full-bleed photographic section ground */
.photo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scrim { position: absolute; inset: 0; pointer-events: none; }

/* --------------------------------------------------------------------------
   8. Hero (home)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--forest-deep);
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  background: linear-gradient(90deg,
    rgba(20, 28, 17, 0.95) 0%,
    rgba(20, 28, 17, 0.72) 48%,
    rgba(20, 28, 17, 0.35) 100%);
}
.hero__inner {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}
.hero__body { max-width: 720px; }
.hero__lede {
  font-size: 18.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.74);
  margin: 0 0 40px;
  max-width: 560px;
  text-wrap: pretty;
}

/* Page banner hero (about / contact) */
.page-hero {
  background: var(--cream);
  padding: 108px 0 96px;
  text-align: center;
}
.page-hero__title {
  font-size: 62px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--forest-deep);
  margin: 20px 0 0;
  line-height: 1.08;
}
.page-hero__drop {
  width: 1px;
  height: 46px;
  background: var(--line-strong);
  margin: 30px auto 0;
}

/* Photographic hero (products) */
.hero-photo {
  position: relative;
  background: var(--forest-deep);
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-photo__ground {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, #22331F 0 14px, #1E2E1C 14px 28px);
}
.hero-photo__scrim {
  background: linear-gradient(90deg, rgba(20, 28, 17, 0.94) 0%, rgba(20, 28, 17, 0.6) 100%);
}
.hero-photo__inner {
  position: relative;
  padding: 96px var(--gutter);
}
.hero-photo__title {
  font-size: 60px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 20px 0 22px;
}

/* --------------------------------------------------------------------------
   9. Highlight strip (home)
   -------------------------------------------------------------------------- */

.highlights {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1px;
  background: var(--line);
}
.highlight {
  background: var(--white);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
}
.highlight__value {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--forest);
  line-height: 1;
}
.highlight__rule {
  width: 26px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 18px;
}
.highlight__label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 8px;
}
.highlight__note {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-soft);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   10. Home: intro collage
   -------------------------------------------------------------------------- */

.collage { position: relative; height: 560px; }
.collage__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 74%;
  height: 66%;
}
.collage__cutout {
  position: absolute;
  z-index: 2;
  bottom: -12px;
  right: -20px;
  width: 66%;
  height: auto;
  object-fit: contain;
  /* Once this becomes an in-flow grid item (below 980px) the default
     `stretch` would give it its intrinsic height and letterbox the photo. */
  align-self: center;
}
.stat-pair {
  position: absolute;
  z-index: 3;
  top: 46%;
  left: -10px;
  display: flex;
}
.stat-chip {
  background: var(--forest);
  color: var(--white);
  padding: 22px 26px;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 20px 44px rgba(27, 42, 30, 0.28);
}
.stat-chip--alt {
  background: var(--ink);
  border-radius: 0 4px 4px 0;
}
.stat-chip__value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat-chip__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  white-space: nowrap;
}

.check-list { display: grid; gap: 14px; margin: 0 0 40px; padding: 0; list-style: none; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--forest-deep);
  border-bottom: 2px solid var(--forest-deep);
  transform: rotate(-45deg);
  margin-top: -3px;
}

/* --------------------------------------------------------------------------
   11. Process (home)
   -------------------------------------------------------------------------- */

.process-head {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 84px;
}
.process-head__note {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.process-head__art {
  position: relative;
  display: flex;
  justify-content: center;
}
.process-head__disc {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #EFE9DA;
  top: 50%;
  transform: translateY(-50%);
}
.process-head__img {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  align-self: center; /* flex `stretch` would letterbox it — see .collage__cutout */
}

.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.card-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 42px 32px 38px;
  transition: transform .3s, box-shadow .3s;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(27, 42, 30, 0.12);
}
.step-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.step-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.step-card__title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin: 0 0 14px;
}
.step-card__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0;
}

/* --------------------------------------------------------------------------
   12. Section headers
   -------------------------------------------------------------------------- */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 66px;
}
.section-head__text { max-width: 620px; }
.section-head__text .h2 { margin-top: 18px; }

.section-head-center {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 70px;
}
.section-head-center .h2 { margin: 18px 0 20px; }
.section-head-center .h2:last-child { margin-bottom: 0; }

.section-head-left {
  max-width: 640px;
  margin-bottom: 66px;
}
.section-head-left .h2 { margin: 18px 0 20px; }
.section-head-left .h2:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   13. Product cards
   -------------------------------------------------------------------------- */

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(27, 42, 30, 0.14);
}
.product-card__media { position: relative; height: 260px; }
.product-card__media--tall { height: 250px; }
.product-card__tag {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  background: rgba(27, 42, 30, 0.86);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 3px;
}
.product-card__body {
  padding: 32px 30px 34px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mono-warm);
  margin-bottom: 12px;
}
.product-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin: 0 0 12px;
}
.product-card__short {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0;
}
.product-card__body .product-card__short { margin-bottom: 22px; }
.product-card--link .product-card__short { margin-bottom: 0; }

.spec-list {
  display: grid;
  gap: 9px;
  padding: 20px 0 0;
  margin: 0 0 26px;
  border-top: 1px solid var(--line);
}
.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.spec-list dt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mono-warm);
}
.spec-list dd {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  text-align: right;
  margin: 0;
}
.product-card .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   14. Feature lists / icon cards
   -------------------------------------------------------------------------- */

.feature-list { display: grid; gap: 26px; }
.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--line-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 8px;
}
.feature__body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0;
}

.proof { position: relative; height: 620px; }
.proof__frame { position: absolute; inset: 0 0 90px 60px; }
.proof__card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 62%;
  background: var(--white);
  border-radius: 6px;
  padding: 34px 32px;
  box-shadow: 0 28px 62px rgba(27, 42, 30, 0.16);
}
.proof__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.4;
  margin-bottom: 14px;
}
.proof__body {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-soft);
}

.tile {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: 6px;
  padding: 42px 34px;
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
}
.tile:hover {
  background: var(--white);
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(27, 42, 30, 0.12);
}
.tile__icon { margin-bottom: 22px; }
.tile__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 14px;
}
.tile__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0;
}

.icon-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 42px 32px;
  transition: transform .3s, box-shadow .3s;
}
.icon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(27, 42, 30, 0.12);
}
.icon-card__badge {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: var(--leaf-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.icon-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 12px;
}
.icon-card__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0;
}

/* --------------------------------------------------------------------------
   15. Certification strip
   -------------------------------------------------------------------------- */

.certs {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.certs__label { flex-shrink: 0; white-space: nowrap; }

/* Certification logo marquee.
   Drifts left-to-right: the track holds two identical groups and animates from
   -50% to 0, so content travels rightward and the seam never shows. The gap
   lives on each item as padding-right (not as flex `gap`) so one group's width
   includes its own trailing space — that is what makes -50% land exactly one
   group over. Tune the speed with --cert-speed. */
.cert-marquee {
  --cert-speed: 70s;
  position: relative;
  flex: 1 1 320px;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.cert-marquee__track {
  display: flex;
  width: max-content;
  animation: certDrift var(--cert-speed) linear infinite;
}
.cert-marquee__group {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cert-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 68px;
}
.cert-logo img {
  height: 62px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

@keyframes certDrift {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.cert-marquee:hover .cert-marquee__track,
.cert-marquee:focus-within .cert-marquee__track { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   16. Photographic CTA bands
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  background: var(--forest-deep);
  padding: 118px 0;
  overflow: hidden;
}
.cta-band__scrim {
  background: linear-gradient(100deg,
    rgba(20, 28, 17, 0.95) 0%,
    rgba(20, 28, 17, 0.86) 42%,
    rgba(20, 28, 17, 0.55) 100%);
}
.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.cta-band__text { max-width: 660px; }
.cta-band__text .h2 { margin: 18px 0 16px; }
.cta-band__lede {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.cta-center {
  position: relative;
  background: var(--forest-deep);
  padding: 128px 0;
  text-align: center;
  overflow: hidden;
}
.cta-center--tight { padding: 124px 0; }
.cta-center__scrim {
  background: linear-gradient(180deg,
    rgba(16, 24, 14, 0.9) 0%,
    rgba(16, 24, 14, 0.8) 50%,
    rgba(16, 24, 14, 0.94) 100%);
}
.cta-center__scrim--soft {
  background: linear-gradient(180deg,
    rgba(16, 24, 14, 0.88) 0%,
    rgba(16, 24, 14, 0.8) 50%,
    rgba(16, 24, 14, 0.94) 100%);
}
.cta-center__scrim--deep {
  background: linear-gradient(180deg,
    rgba(16, 24, 14, 0.9) 0%,
    rgba(16, 24, 14, 0.78) 50%,
    rgba(16, 24, 14, 0.94) 100%);
}
.cta-center__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cta-center__inner--wide  { max-width: 780px; }
.cta-center__inner--narrow { max-width: 720px; }
.cta-center__inner .h2 { margin: 18px 0 18px; }
.cta-center__lede {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 38px;
}
.cta-center__phone {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.cta-center__phone:hover { color: var(--white); }

/* --------------------------------------------------------------------------
   17. About page
   -------------------------------------------------------------------------- */

.about-collage { position: relative; height: 580px; }
.about-collage__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 62%;
}
.about-collage__front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 56%;
  box-shadow: 0 26px 60px rgba(27, 42, 30, 0.18);
}

.pillars {
  background: var(--forest);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pillar { padding: 68px 56px; }
.pillar:first-child { border-right: 1px solid rgba(255, 255, 255, 0.14); }
.pillar--alt { background: rgba(255, 255, 255, 0.04); }
.pillar__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.pillar__title {
  font-size: 32px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 20px;
}
.pillar__body {
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.value-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 42px 34px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(27, 42, 30, 0.1);
  border-color: var(--line-card);
}
.value-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 22px;
}
.value-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 12px;
}
.value-card__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0;
}

.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-deep);
  border: 1px solid var(--line-deep);
  border-radius: 6px;
  overflow: hidden;
}
.journey__step {
  background: var(--white);
  padding: 46px 38px 44px;
  transition: background .3s;
}
.journey__step:hover { background: var(--cream-hover); }
.journey__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.journey__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.journey__head::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}
.journey__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 12px;
}
.journey__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.stat {
  border-top: 2px solid var(--gold);
  padding-top: 18px;
}
.stat__value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.stat__label {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-top: 6px;
}
.stat--sm .stat__value { font-size: 22px; }
.stat--sm .stat__label { font-size: 14px; }
.stat--dark { padding-top: 16px; }
.stat--dark .stat__value { font-size: 19px; color: var(--white); }
.stat--dark .stat__label { font-size: 14px; color: rgba(255, 255, 255, 0.62); }

.standards-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 110px;
}
.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.standard {
  background: var(--white);
  border: 1px solid var(--line-deep);
  border-radius: 6px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s, border-color .3s;
}
.standard:hover { background: var(--cream-hover); border-color: var(--line-strong); }
.standard span {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  text-wrap: pretty;
}

.export-panel {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.export-panel__scrim {
  background: linear-gradient(100deg,
    rgba(16, 24, 14, 0.94) 0%,
    rgba(16, 24, 14, 0.82) 40%,
    rgba(16, 24, 14, 0.25) 100%);
}
.export-panel__body {
  position: relative;
  padding: 72px 56px;
  max-width: 620px;
}
.export-panel__body .h2 { margin: 0 0 20px; }
.export-panel__lede {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
  margin: 0 0 34px;
}
.export-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --------------------------------------------------------------------------
   18. Products page
   -------------------------------------------------------------------------- */

.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
  padding-bottom: 96px;
}
.intro-split .h2 { margin-top: 18px; }

.qa-list { display: grid; gap: 24px; }
.qa {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.qa__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  padding-top: 4px;
}
.qa__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 8px;
}
.qa__body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0;
}

.pack-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.pack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(27, 42, 30, 0.12);
}
.pack-card__media { position: relative; height: 190px; }
.pack-card__body { padding: 28px 26px 30px; }
.pack-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 10px;
}
.pack-card__body p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.offer {
  border-radius: 6px;
  padding: 56px 48px;
}
.offer--dark { background: var(--forest); }
.offer--cream { background: var(--cream); }
.offer__title {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 20px 0 18px;
}
.offer--dark .offer__title { color: var(--white); }
.offer--cream .offer__title { color: var(--forest-deep); }
.offer__body {
  font-size: 16.5px;
  line-height: 1.8;
  margin: 0 0 28px;
}
.offer--dark .offer__body { color: rgba(255, 255, 255, 0.72); }
.offer--cream .offer__body { color: var(--text-muted); }

.dot-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.dot-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.84);
}
.dot-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.mini-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px 26px;
  transition: transform .3s, box-shadow .3s;
}
.mini-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(27, 42, 30, 0.1);
}
.mini-step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
}
.mini-step__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 10px;
}
.mini-step__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
}

/* --------------------------------------------------------------------------
   19. Contact page
   -------------------------------------------------------------------------- */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-split .h2 { margin: 18px 0 22px; }
.contact-split__lede { margin-bottom: 40px; }
.contact-split__frame {
  height: 340px;
  box-shadow: 0 24px 54px rgba(27, 42, 30, 0.14);
}

.inquiry-form {
  background: var(--white);
  border-radius: 6px;
  padding: 54px 48px;
  box-shadow: 0 30px 70px rgba(27, 42, 30, 0.1);
  display: grid;
  gap: 26px;
}
.field {
  border-bottom: 1px solid var(--line-warm);
  padding-bottom: 12px;
}
/* Direct child only — the Products group uses <label> for each choice card,
   which must not inherit the mono uppercase field-label treatment. */
.field > label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mono-warm);
  margin-bottom: 10px;
}
.field input,
.field textarea {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--text);
  background: transparent;
  padding: 4px 0;
}
.field textarea { resize: vertical; }
.field:focus-within { border-bottom-color: var(--leaf); }

/* Product dropdown — styled to sit on the same underline as the text fields.
   The native chevron is replaced so the control matches at every width. */
.field select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23A39270' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 12px 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  padding: 4px 26px 4px 0;
  cursor: pointer;
  text-overflow: ellipsis;
}

/* Until a real product is chosen the control still holds the empty
   placeholder option, so it reads as placeholder text. */
.field select:required:invalid { color: var(--placeholder); }
.field select option { color: var(--text); }
.field select option[value=""] { color: var(--placeholder); }

/* Inline validation. The message sits inside .field, below its own hairline,
   so an error changes only the underline colour and adds one line of text —
   the grid gap and field rhythm are untouched. */
.field__error {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
  color: #B4472E;
  margin: 8px 0 -4px;
}
.field__error[hidden] { display: none; }
.field[data-invalid] { border-bottom-color: #B4472E; }
.field[data-invalid]:focus-within { border-bottom-color: var(--leaf); }

/* Honeypot: removed from the visual and accessibility trees without
   display:none, which some bots detect and skip. */
.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--leaf);
  text-align: center;
  margin: 0;
}
.form-note[hidden] { display: none; }
.form-note[data-tone="success"] { color: var(--forest); }
.form-note[data-tone="error"] { color: #B4472E; }

/* Sending state — the label swaps to "Sending…" and the button stops
   responding to hover so it reads as inert. */
.inquiry-form .btn[disabled] {
  opacity: 0.62;
  cursor: progress;
  pointer-events: none;
  transform: none;
}

.form-hint {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-faint);
  text-align: center;
  margin: -12px 0 0;
}
.form-hint a { color: var(--text-soft); text-decoration: underline; }
.form-hint a:hover { color: var(--leaf); }


.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}
.contact-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--leaf-tint);
  border: 1px solid #E1E8D6;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 14px;
}
.contact-card p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-soft);
  margin: 0;
}

.owner-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.owner-card__id { display: flex; align-items: center; gap: 26px; }
.owner-card__initials {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.owner-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mono-warm);
}
.owner-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  margin: 10px 0 6px;
}
.owner-card__role { font-size: 15.5px; color: var(--text-soft); }
.owner-card__contacts { display: flex; gap: 48px; flex-wrap: wrap; }
.owner-card__key {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mono-warm);
  margin-bottom: 8px;
}
.owner-card__val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.info-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 52px 44px;
}
.info-panel--dark {
  background: var(--forest);
  border-color: var(--forest);
}
.info-panel__title {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  margin: 18px 0 26px;
}
.info-panel--dark .info-panel__title { color: var(--white); margin-bottom: 22px; }
.info-panel--dark p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 26px;
}

.detail-list { display: grid; gap: 16px; margin: 0; }
.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.detail-list dt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mono-warm);
  padding-top: 3px;
}
.detail-list dd {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: right;
  margin: 0;
}

.map-block {
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, #F1EFE7 0 14px, #EAE7DC 14px 28px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-block__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.6) 100%);
}
.map-block__label { position: relative; text-align: center; }
.map-block__pin {
  width: 18px;
  height: 18px;
  border-radius: 50% 6px 50% 6px;
  background: var(--leaf);
  margin: 0 auto 16px;
}
.map-block__place {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--forest-deep);
}
.map-block__hint {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mono);
  margin-top: 10px;
}
.map-block iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */

.site-footer { background: var(--ink); }

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 88px 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* White logo — the footer ground is --ink. Height-controlled with auto width,
   so the artwork keeps its aspect ratio at every breakpoint. */
.footer-logo {
  height: 62px;
  width: auto;
  display: block;
  margin-bottom: 28px;
}

.footer-top__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-top__badge span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-top__title {
  font-size: 34px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
  max-width: 480px;
}
.footer-top__actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 72px 0;
}
.footer-col__head {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}
.footer-address {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}
.footer-contact {
  margin-top: 24px;
  display: grid;
  gap: 8px;
}
.footer-contact a {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--white);
  transition: color .25s;
}
.footer-contact a:hover { color: var(--gold); }

.footer-links {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  transition: color .25s;
}
.footer-links a:hover { color: var(--gold); }

/* Flex-wrapped rather than a 2-track grid: the certification set is an odd
   count, which left a half-empty final row. */
.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.footer-certs li {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  padding: 9px 12px;
  text-align: center;
}
.footer-owner {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-owner__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.footer-owner__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-base span { font-size: 13.5px; color: rgba(255, 255, 255, 0.38); }
.footer-base .mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   21. Reveal on scroll
   -------------------------------------------------------------------------- */

/* Content is visible by default; JS opts in to the animation so a
   no-JS or observer-less environment still shows everything. */
.js-reveal[data-reveal-pending] {
  opacity: 0;
  transform: translateY(26px);
}
.js-reveal {
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js-reveal[data-reveal-shown] {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   22. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
  :root { --gutter: 36px; --section-y: 104px; --section-y-sm: 96px; }

  .split,
  .split--right,
  .split--left,
  .process-head,
  .standards-split,
  .intro-split,
  .contact-split,
  .footer-top { gap: 56px; }

  .frame--tall   { height: 440px; }
  .frame--taller { height: 460px; }

  .h1 { font-size: 56px; }
  .h2, .h2--md { font-size: 40px; }
  .h2--lg { font-size: 44px; }
  .h2--sm { font-size: 38px; }

  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .highlights__grid { grid-template-columns: repeat(2, 1fr); row-gap: 1px; }

  /* 2x2 rather than 3+1: four columns in a 3-track grid leave an orphan row. */
  .footer-cols { grid-template-columns: 1.5fr 1fr; row-gap: 48px; }

  /* The catalogue carries a 12-row spec list per card. At three-up the mono
     spec keys wrap to two lines each and roughly double the card height. */
  .card-grid-3--dense { grid-template-columns: repeat(2, 1fr); }
  .pillar { padding: 52px 40px; }
  .offer { padding: 44px 36px; }
  .export-panel__body { padding: 56px 40px; }
}

@media (max-width: 980px) {
  .site-header__inner { height: 76px; }
  .brand__logo { height: 50px; }
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 24px;
    box-shadow: 0 24px 40px rgba(27, 42, 30, 0.12);
    display: none;
  }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav__link {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .site-nav__link:hover,
  .site-nav__link[aria-current="page"] { border-bottom-color: var(--line); }
  .site-nav .btn { margin-top: 20px; }

  .split,
  .split--right,
  .split--left,
  .process-head,
  .standards-split,
  .intro-split,
  .contact-split,
  .footer-top,
  .pillars,
  .offer-grid,
  .info-grid,
  .stat-row { grid-template-columns: 1fr; }

  .split,
  .split--right,
  .split--left { gap: 56px; }

  .frame--tall,
  .frame--taller { height: 380px; }
  .standards-split { margin-bottom: 72px; }
  .footer-top__actions { justify-content: flex-start; }
  .pillar:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .card-grid-3,
  .journey,
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { gap: 48px; }

  /* Collages become simple stacked frames on narrow screens */
  .collage { height: auto; display: grid; gap: 20px; }
  .collage__frame { position: relative; width: 100%; height: 320px; }
  .collage__cutout { position: relative; bottom: auto; right: auto; width: 78%; margin: -80px auto 0; }
  .stat-pair { position: relative; top: auto; left: auto; justify-content: flex-start; }

  .about-collage { height: auto; display: grid; gap: 20px; }
  .about-collage__back,
  .about-collage__front {
    position: relative;
    width: 100%;
    height: 300px;
    top: auto; left: auto; right: auto; bottom: auto;
  }

  .proof { height: auto; display: grid; gap: 24px; }
  .proof__frame { position: relative; inset: auto; height: 380px; }
  .proof__card { position: relative; width: 100%; bottom: auto; left: auto; }

  .process-head__disc { width: 260px; height: 260px; }

  .hero { min-height: 560px; }
  .hero__inner { padding-top: 96px; padding-bottom: 96px; }
  .h1 { font-size: 46px; }
  .hero__lede { font-size: 17px; }
  .page-hero__title { font-size: 48px; }
  .hero-photo__title { font-size: 44px; }

  .inquiry-form { padding: 40px 32px; }
  .owner-card { padding: 40px 32px; }
  .info-panel { padding: 40px 32px; }
  .certs { gap: 28px; }
  .cert-logo { padding-right: 56px; }
}

@media (max-width: 680px) {
  :root { --gutter: 22px; --section-y: 80px; --section-y-sm: 76px; }
  .brand__logo { height: 44px; }
  .footer-logo { height: 52px; margin-bottom: 22px; }

  .h1 { font-size: 36px; }
  .h2, .h2--md, .h2--lg, .h2--sm { font-size: 30px; }
  .page-hero { padding: 72px 0 64px; }
  .page-hero__title { font-size: 36px; }
  .hero-photo__title { font-size: 34px; }
  .hero-photo__inner { padding: 72px var(--gutter); }

  .card-grid-3,
  .card-grid-4,
  .card-grid-5,
  .journey,
  .contact-cards,
  .highlights__grid,
  .standards-grid,
  .footer-cols,
  .export-panel__stats { grid-template-columns: 1fr; }

  .journey { gap: 1px; }
  .highlight { padding: 40px 24px; }
  .btn { width: 100%; padding: 18px 24px; }
  .btn--dark, .btn--footer, .btn--sm { width: 100%; }
  .btn-row { width: 100%; }
  .link-rule { width: auto; }

  .certs { gap: 24px; padding: 32px 0; }
  .cert-logo img { height: 48px; }
  .cert-logo { padding-right: 48px; }

  .stat-pair { flex-direction: column; }
  .stat-chip { border-radius: 4px 4px 0 0; }
  .stat-chip--alt { border-radius: 0 0 4px 4px; }

  .collage__cutout { width: 88%; margin-top: -48px; }
  .collage__frame { height: 240px; }
  .frame--tall,
  .frame--taller,
  .contact-split__frame { height: 260px; }
  .pillar { padding: 40px 26px; }
  .offer { padding: 36px 26px; }
  .export-panel__body { padding: 44px 26px; }
  .inquiry-form { padding: 32px 22px; }
  .owner-card { padding: 32px 24px; gap: 28px; }
  .owner-card__contacts { gap: 28px; }
  .info-panel { padding: 32px 24px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 28px; }
  .map-block { height: 320px; }
  .footer-top { padding: 64px 0 48px; }
  .footer-cols { padding: 48px 0; }
}

/* --------------------------------------------------------------------------
   23. Reduced motion / print
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js-reveal[data-reveal-pending] { opacity: 1; transform: none; }

  /* The marquee becomes a static, centred, wrapping row. */
  .cert-marquee { -webkit-mask-image: none; mask-image: none; flex-basis: 100%; overflow: visible; }
  .cert-marquee__track { animation: none; transform: none; width: 100%; }
  .cert-marquee__group { flex-wrap: wrap; justify-content: center; row-gap: 24px; width: 100%; }
  .cert-marquee__group[aria-hidden="true"] { display: none; }
  .cert-logo { padding-right: 44px; }
  .btn:hover,
  .step-card:hover,
  .product-card:hover,
  .icon-card:hover,
  .tile:hover,
  .value-card:hover,
  .pack-card:hover,
  .mini-step:hover { transform: none; }
}

@media print {
  .site-header, .site-footer, .cta-band, .cta-center, .hero__video { display: none; }
  body { color: #000; }
}
