/* =========================================================
   VK HORIZON EXPORTS — Design System
   Palette sampled from the company mark: deep navy + antique
   gold on a warm paper ground. Serif headings echo the
   wordmark; a neutral sans carries body copy and spec tables.
   ========================================================= */

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

:root{
  /* Brand */
  --navy:        #173059;
  --navy-700:    #102345;
  --navy-900:    #0E1E3A;
  --navy-tint:   rgba(23,48,89,0.05);
  --gold:        #C89B3F;
  --gold-light:  #DFBE72;
  --gold-dark:   #A67F2E;
  --gold-tint:   rgba(200,155,63,0.12);

  /* Division accents — used sparingly: a tag, an underline, never a full palette shift */
  --agri:        #5C7A4A;
  --agri-tint:   rgba(92,122,74,0.10);
  --metals:      #66707C;
  --metals-tint: rgba(102,112,124,0.10);
  --granite:     #A85C3C;
  --granite-tint: rgba(168,92,60,0.10);

  /* Surfaces */
  --paper:       #FAF8F4;
  --paper-alt:   #F2ECDD;
  --white:       #FFFFFF;

  /* Text */
  --ink:         #1B2430;
  --ink-muted:   #5B6472;
  --ink-soft:    #8992A0;
  --on-navy:     #E9EDF4;
  --on-navy-muted: #A9B4C6;

  /* Borders */
  --border:      #E5DFCF;
  --border-dark: rgba(233,237,244,0.14);

  /* Type */
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(14,30,58,0.06);
  --shadow-md: 0 10px 32px rgba(14,30,58,0.10);
  --shadow-lg: 0 24px 64px rgba(14,30,58,0.18);
  --radius:    14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ===== Reset ===== */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "tnum" 1, "cv05" 1;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; }
h1,h2,h3,h4{
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 1em; color: var(--ink-muted); line-height: 1.7; }
.container{ max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.tnum{ font-variant-numeric: tabular-nums; }

/* ===== Eyebrow / labels ===== */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before{
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
}
.eyebrow-light{ color: var(--gold-light); }

.tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tag-agri{ background: var(--agri-tint); color: var(--agri); }
.tag-metals{ background: var(--metals-tint); color: var(--metals); }
.tag-granite{ background: var(--granite-tint); color: var(--granite); }
.tag-agri::before, .tag-metals::before, .tag-granite::before{
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, border-color .3s, color .3s;
  white-space: nowrap;
}
.btn svg{ width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn:hover svg{ transform: translateX(3px); }
.btn-primary{ background: var(--gold); color: var(--navy-900); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.btn-primary::before{
  content: ""; position: absolute; inset: 0; transform: translateX(-120%);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transition: transform .6s var(--ease);
}
.btn-primary:hover::before{ transform: translateX(120%); }
.btn-primary:hover{ background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline{ background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover{ background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-ghost-light{ background: transparent; border-color: var(--border-dark); color: var(--on-navy); }
.btn-ghost-light:hover{ border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.btn-sm{ padding: 10px 20px; font-size: 13px; }
.btn-block{ width: 100%; justify-content: center; }

/* ===== Navbar ===== */
.navbar{
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,244,0.98);
  border-bottom: 1px solid var(--border);
}
.navbar-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.brand{ display: flex; align-items: center; gap: 12px; }
.brand-mark{
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img{ width: 100%; height: 100%; object-fit: contain; }
.brand-word{ font-family: var(--font-head); line-height: 1.1; }
.brand-word .vk{ display: block; font-size: 11px; letter-spacing: 0.2em; color: var(--gold-dark); font-weight: 700; }
.brand-word .horizon{ display: block; font-size: 19px; font-weight: 600; color: var(--navy-900); letter-spacing: 0.01em; }

.nav-links{ display: flex; align-items: center; gap: 34px; }
.nav-links a{
  font-size: 14.5px; font-weight: 500; color: var(--ink-muted);
  position: relative; padding: 6px 0; transition: color .25s;
}
.nav-links a::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--gold); transition: right .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active{ color: var(--navy-900); }
.nav-links a:hover::after, .nav-links a.active::after{ right: 0; }

.nav-toggle{
  display: none; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: ""; display: block; width: 18px; height: 2px; background: var(--navy);
  position: relative; transition: transform .3s, opacity .3s;
}
.nav-toggle span::before{ position: absolute; top: -6px; }
.nav-toggle span::after{ position: absolute; top: 6px; }
.nav-toggle.open span{ background: transparent; }
.nav-toggle.open span::before{ transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span::after{ transform: translateY(-6px) rotate(-45deg); }

/* Nav collapses to the mobile drawer earlier than the grid breakpoints below —
   eight links plus the CTA button need more breathing room than five did. */
@media (max-width: 1120px){
  .nav-links{ position: fixed; inset: 84px 0 0 0; background: var(--paper); flex-direction: column; justify-content: flex-start; padding: 40px 28px; gap: 8px; transform: translateX(100%); transition: transform .4s var(--ease); z-index: 90; }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 16px; }
  .navbar-cta{ display: none; }
  .nav-toggle{ display: flex; }
}

/* ===== Sections ===== */
.section{ padding: 108px 0; }
.section-alt{ background: var(--paper-alt); }
.section-navy{ position: relative; background: var(--navy-900); color: var(--on-navy); overflow: hidden; }
.section-navy h2, .section-navy h3{ color: var(--white); }
.section-navy p{ color: var(--on-navy-muted); }
.section-navy::after{
  content: ""; position: absolute; right: -8%; bottom: -34%;
  width: 640px; height: 640px; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M20 600 A640 640 0 0 1 620 40' fill='none' stroke='%23C89B3F' stroke-opacity='.14' stroke-width='1'/%3E%3Ccircle cx='560' cy='120' r='3' fill='%23C89B3F' fill-opacity='.4'/%3E%3Ccircle cx='420' cy='60' r='2.5' fill='%23C89B3F' fill-opacity='.32'/%3E%3Ccircle cx='300' cy='40' r='2' fill='%23C89B3F' fill-opacity='.26'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.section-navy .container{ position: relative; z-index: 1; }
.section-head{ max-width: 640px; margin: 0 0 56px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(30px, 3.6vw, 42px); margin-top: 14px; }

/* ===== Hero ===== */
.hero{
  position: relative;
  background: radial-gradient(120% 100% at 15% -10%, #1B3866 0%, var(--navy-900) 55%, var(--navy-700) 100%);
  color: var(--on-navy);
  padding: 168px 0 128px;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(233,237,244,0.35) 0, transparent 60%),
    radial-gradient(1px 1px at 70% 65%, rgba(200,155,63,0.4) 0, transparent 60%),
    radial-gradient(1px 1px at 85% 20%, rgba(233,237,244,0.25) 0, transparent 60%);
  pointer-events: none;
}
.hero-arc{
  position: absolute; right: -10%; top: -20%;
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(200,155,63,0.18);
  pointer-events: none;
}
.hero-arc::before{
  content: "";
  position: absolute; inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(200,155,63,0.10);
}
.hero-inner{ position: relative; max-width: 720px; }

/* Hero load-in — one orchestrated entrance, not scroll-triggered */
.hero-inner > *{ animation: rise-in .9s var(--ease) both; }
.hero-inner > *:nth-child(1){ animation-delay: .05s; }
.hero-inner > *:nth-child(2){ animation-delay: .16s; }
.hero-inner > *:nth-child(3){ animation-delay: .28s; }
.hero-inner > *:nth-child(4){ animation-delay: .40s; }
.hero-inner > *:nth-child(5){ animation-delay: .52s; }
@keyframes rise-in{ from{ opacity: 0; transform: translateY(16px); } to{ opacity: 1; transform: translateY(0); } }

.hero-title{ font-size: clamp(38px, 5.2vw, 64px); color: var(--white); margin-bottom: 22px; }
.hero-title .accent{ color: var(--gold-light); font-style: italic; }
.hero-lead{ font-size: 18px; color: var(--on-navy-muted); max-width: 560px; margin-bottom: 40px; }
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats{
  display: grid; grid-template-columns: repeat(4, auto);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-dark);
}
.hero-stat b{
  display: block; font-family: var(--font-head); font-size: 30px;
  color: var(--gold-light); font-weight: 600;
}
.hero-stat span{ font-size: 13px; color: var(--on-navy-muted); }

/* ===== Origin-to-horizon route graphic (site signature) =====
   A literal reading of "from origin to horizon": one origin point,
   dashed trade routes sailing out toward destination ports, drawn
   over a faint horizon arc. Reused small on the CTA bands. */
.route-graphic{ position: absolute; pointer-events: none; }
.route-graphic svg{ width: 100%; height: 100%; overflow: visible; }
.route-graphic .route-horizon{ fill: none; stroke: var(--gold-light); stroke-width: 1; opacity: .18; }
.route-graphic .route-path{
  fill: none; stroke: var(--gold-light); stroke-width: 1.5; stroke-linecap: round;
  stroke-dasharray: 1 10; opacity: .55;
}
.route-graphic .route-origin{ fill: var(--gold-light); }
.route-graphic .route-origin-ring{
  fill: none; stroke: var(--gold-light); stroke-width: 1; opacity: .35;
  transform-box: fill-box; transform-origin: center;
}
.route-graphic .route-dest{ fill: var(--navy-900); stroke: var(--gold-light); stroke-width: 1.2; opacity: .8; }

/* Only the homepage hero graphic actually sails — every other reuse of this
   motif (page-hero echo, Global Reach card) stays still, on purpose: one
   moving element per page reads as a signature, three reads as noise. */
.hero-route .route-path{
  animation-name: route-sail; animation-timing-function: linear; animation-iteration-count: infinite; opacity: .6;
}
@keyframes route-sail{ to{ stroke-dashoffset: -220; } }
.hero-route .route-origin-ring{ animation: pulse-ring 2.6s var(--ease) infinite; }
@keyframes pulse-ring{ 0%{ transform: scale(1); opacity: .55; } 100%{ transform: scale(3.4); opacity: 0; } }
.hero-route .route-dest{ animation: pulse-dot 2.4s ease-in-out infinite; }
@keyframes pulse-dot{ 0%,100%{ opacity: .5; } 50%{ opacity: 1; } }

.hero-route{ right: 0; top: 12%; width: 420px; height: 420px; }
@media (max-width: 1180px){ .hero-route{ display: none; } }

/* ===== Division fork cards ===== */
.fork-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fork-card{
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 38px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.fork-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.fork-card-icon{
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
}
.fork-card.is-agri .fork-card-icon{ background: var(--agri-tint); color: var(--agri); }
.fork-card.is-metals .fork-card-icon{ background: var(--metals-tint); color: var(--metals); }
.fork-card.is-granite .fork-card-icon{ background: var(--granite-tint); color: var(--granite); }
.fork-card-icon svg{ width: 28px; height: 28px; }
.fork-card h3{ font-size: 24px; margin-bottom: 10px; }
.fork-card p{ margin-bottom: 22px; }
.fork-card-list{ margin-bottom: 26px; }
.fork-card-list li{
  display: flex; align-items: baseline; gap: 10px;
  font-size: 14px; color: var(--ink-muted); padding: 6px 0;
  border-top: 1px solid var(--border);
}
.fork-card-list li:first-child{ border-top: none; }
.fork-card-list li::before{ content: "―"; color: var(--gold-dark); flex-shrink: 0; }
.fork-link{
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14.5px; color: var(--navy-900);
}
.fork-link svg{ width: 16px; height: 16px; transition: transform .3s var(--ease); }
.fork-card:hover .fork-link svg{ transform: translateX(4px); }

/* ===== Trust strip ===== */
.trust-strip{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.trust-item{
  background: var(--white); padding: 30px 26px; text-align: center;
}
.trust-item b{ display: block; font-family: var(--font-head); font-size: 26px; color: var(--navy-900); margin-bottom: 4px; }
.trust-item span{ font-size: 13px; color: var(--ink-soft); }

/* ===== Category divider (groups a catalogue into labelled sub-sections) ===== */
.category-head{ display: flex; align-items: baseline; gap: 16px; margin: 64px 0 28px; }
.category-head:first-child{ margin-top: 0; }
.category-head h3{ font-size: 20px; margin: 0; white-space: nowrap; }
.category-head::after{ content: ""; flex: 1; height: 1px; background: var(--border); }
.category-head .count{ font-size: 12.5px; color: var(--ink-soft); white-space: nowrap; }

/* ===== Product grid & spec cards ===== */
.product-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-media{
  aspect-ratio: 4/3; background: var(--paper-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 13px;
  position: relative; overflow: hidden;
}
.product-media img{ width: 100%; height: 100%; object-fit: cover; }
.product-media.agri{ background: linear-gradient(155deg, #F3EFDF 0%, var(--agri-tint) 130%); }
.product-media.metals{ background: linear-gradient(155deg, #EEF0F2 0%, var(--metals-tint) 130%); }
.product-media.navy{ background: linear-gradient(155deg, #1B3866 0%, var(--navy-900) 130%); }
.product-media.navy .product-icon{ color: var(--gold-light); }

/* Granite catalogue — each stone gets its own real colourway rather than one flat tint,
   since the point of the range is the variety of finishes on offer. */
.product-media.g-black-galaxy{ background: linear-gradient(155deg, #2B2E33 0%, #14161A 130%); }
.product-media.g-black-galaxy .product-icon{ color: var(--on-navy-muted); }
.product-media.g-absolute-black{ background: linear-gradient(155deg, #1E2023 0%, #0C0D0F 130%); }
.product-media.g-absolute-black .product-icon{ color: var(--on-navy-muted); }
.product-media.g-kashmir-white{ background: linear-gradient(155deg, #F7F4EE 0%, #E9E2D3 130%); }
.product-media.g-kashmir-white .product-icon{ color: var(--ink-soft); }
.product-media.g-tan-brown{ background: linear-gradient(155deg, #E7D3B6 0%, #C9A876 130%); }
.product-media.g-tan-brown .product-icon{ color: #6B4A2A; }
.product-media.g-colonial-gold{ background: linear-gradient(155deg, #F1E4C4 0%, var(--gold-tint) 130%); }
.product-media.g-colonial-gold .product-icon{ color: var(--gold-dark); }
.product-media.g-vizag-blue{ background: linear-gradient(155deg, #DCE2EC 0%, #AEB9CC 130%); }
.product-media.g-vizag-blue .product-icon{ color: var(--navy); }
.product-media .fleck{ fill: var(--gold-light); }
.product-media.g-vizag-blue .fleck{ fill: var(--on-navy); }
.product-media.g-kashmir-white .fleck{ fill: var(--ink-soft); }

.product-media.g-steel-grey{ background: linear-gradient(155deg, #E4E7EA 0%, #B9C0C7 130%); }
.product-media.g-steel-grey .product-icon{ color: #545E68; }
.product-media.g-viscount-white{ background: linear-gradient(155deg, #F2F3F1 0%, #DDE0DC 130%); }
.product-media.g-viscount-white .product-icon{ color: var(--ink-soft); }
.product-media.g-colonial-white{ background: linear-gradient(155deg, #F5F0E6 0%, #E3D9C4 130%); }
.product-media.g-colonial-white .product-icon{ color: #8A7A5C; }
.product-media.g-alaska-white{ background: linear-gradient(155deg, #F6F7F8 0%, #DCE1E4 130%); }
.product-media.g-alaska-white .product-icon{ color: #6B7378; }
.product-media.g-river-white{ background: linear-gradient(155deg, #F1F2F0 0%, #D9DCD7 130%); }
.product-media.g-river-white .product-icon{ color: #6E756E; }
.product-media.g-moon-white{ background: linear-gradient(155deg, #F0F1F3 0%, #D3D6DA 130%); }
.product-media.g-moon-white .product-icon{ color: #6B707A; }
.product-media.g-imperial-white{ background: linear-gradient(155deg, #FAFAF9 0%, #E8E6E0 130%); }
.product-media.g-imperial-white .product-icon{ color: #93897A; }
.product-media.g-hassan-green{ background: linear-gradient(155deg, #DCE5D5 0%, #A9BC9C 130%); }
.product-media.g-hassan-green .product-icon{ color: #4C5F3E; }
.product-media.g-jhansi-red{ background: linear-gradient(155deg, #E8C9C2 0%, #B5645A 130%); }
.product-media.g-jhansi-red .product-icon{ color: #6E2E27; }
.product-media.g-lakha-red{ background: linear-gradient(155deg, #F0D8D6 0%, #CB8E8C 130%); }
.product-media.g-lakha-red .product-icon{ color: #7A3B39; }
.product-media.g-rosy-pink{ background: linear-gradient(155deg, #F3DCE0 0%, #DDA8B4 130%); }
.product-media.g-rosy-pink .product-icon{ color: #8A4A56; }
.product-media.g-indian-juparana{ background: linear-gradient(155deg, #EDD9B0 0%, #C99B5E 130%); }
.product-media.g-indian-juparana .product-icon{ color: #7A5A2E; }
.product-media.g-himalayan-blue{ background: linear-gradient(155deg, #E3EBF5 0%, #B7CBE0 130%); }
.product-media.g-himalayan-blue .product-icon{ color: #3F5A78; }
.product-media.g-fantasy-brown{ background: linear-gradient(155deg, #E5DCC8 0%, #B89B7A 130%); }
.product-media.g-fantasy-brown .product-icon{ color: #6B4F33; }
.product-media::before{
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, rgba(23,48,89,0.035) 0 1px, transparent 1px 14px);
}
.product-icon{ width: 25%; height: 25%; position: relative; z-index: 1; transition: transform .4s var(--ease); }
.product-media.agri .product-icon{ color: var(--agri); }
.product-media.metals .product-icon{ color: var(--metals); }
.product-card:hover .product-icon{ transform: scale(1.08) translateY(-3px); }
.product-media .needs-content{
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-size: 10px; padding: 3px 9px;
}
.product-media.has-photo{ background: var(--paper-alt); }
.product-media.has-photo::before{ display: none; }
.product-media.has-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.product-body{ padding: 22px 24px 26px; }
.product-body h4{ font-size: 18px; margin-bottom: 6px; }
.product-body p{ font-size: 14px; margin-bottom: 16px; }
.spec-table{ width: 100%; border-collapse: collapse; font-size: 13.5px; }
.spec-table tr{ border-top: 1px solid var(--border); }
.spec-table tr:first-child{ border-top: none; }
.spec-table td{ padding: 8px 0; color: var(--ink-muted); }
.spec-table td:first-child{ color: var(--ink-soft); width: 42%; }
.spec-table td:last-child{ color: var(--ink); font-weight: 600; text-align: right; }
.spec-toggle{ background: none; border: none; padding: 0; cursor: pointer; }
.spec-toggle svg{ transition: transform .3s var(--ease); }
.product-card.is-open .spec-toggle svg{ transform: rotate(90deg); }

/* ===== Process steps ===== */
.process-rail{ position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.process-rail::before{
  content: ""; position: absolute; top: 24px; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
}
.process-step{ position: relative; text-align: left; }
.process-num{
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 600; color: var(--gold-dark);
  margin-bottom: 20px; position: relative; z-index: 1;
}
.process-step h4{ font-size: 15.5px; margin-bottom: 6px; }
.process-step p{ font-size: 13.5px; }

/* ===== Cards (generic) ===== */
.info-card{
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 30px;
}
.info-card h3{ font-size: 19px; margin-bottom: 10px; }
.info-card .icon{
  width: 44px; height: 44px; border-radius: 12px; background: var(--gold-tint); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.info-card .icon svg{ width: 22px; height: 22px; }

.grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== Placeholder notice ===== */
.needs-content{
  border: 1px dashed var(--gold-dark);
  background: var(--gold-tint);
  color: var(--gold-dark);
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
}

/* ===== Timeline (About / Logistics) ===== */
.timeline{ position: relative; padding-left: 32px; border-left: 1px solid var(--border); }
.timeline-item{ position: relative; padding-bottom: 36px; }
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-item::before{
  content: ""; position: absolute; left: -37px; top: 4px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--gold);
}
.timeline-item h4{ font-size: 16px; margin-bottom: 6px; }

/* ===== Certification strip ===== */
.cert-strip{ display: flex; flex-wrap: wrap; gap: 16px; }
.cert-chip{
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border); border-radius: 100px;
  padding: 12px 22px 12px 16px;
}
.cert-chip .dot{ width: 34px; height: 34px; border-radius: 50%; background: var(--navy-tint); color: var(--navy); display:flex; align-items:center; justify-content:center; font-family: var(--font-head); font-weight:700; font-size: 13px; }
.cert-chip span{ font-size: 13.5px; font-weight: 600; color: var(--navy-900); }

/* ===== Ports table ===== */
.data-table{ width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.data-table th, .data-table td{ padding: 16px 20px; text-align: left; font-size: 14px; }
.data-table th{ background: var(--navy-900); color: var(--on-navy); font-weight: 600; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; }
.data-table tr:not(:last-child) td{ border-bottom: 1px solid var(--border); }
.data-table td{ color: var(--ink-muted); }
.data-table td:first-child{ color: var(--ink); font-weight: 600; }

/* ===== Contact / RFQ ===== */
.contact-grid{ display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.form-card{
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ margin-bottom: 20px; }
.field label{ display: block; font-size: 13px; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }
.field input, .field select, .field textarea{
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--paper);
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--gold-dark); box-shadow: 0 0 0 3px var(--gold-tint);
}
.field textarea{ resize: vertical; min-height: 110px; }
.hp-field{ position: absolute; left: -9999px; top: -9999px; }
.form-note{ font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; }
.form-status{ display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 18px; }
.form-status.success{ display: block; background: rgba(92,122,74,0.12); color: var(--agri); }
.form-status.error{ display: block; background: rgba(190,70,60,0.1); color: #B4453A; }

.contact-detail{ display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--border); }
.contact-detail:first-child{ border-top: none; padding-top: 0; }
.contact-detail .icon{
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy-tint); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail .icon svg{ width: 19px; height: 19px; }
.contact-detail h4{ font-size: 14.5px; margin-bottom: 4px; }
.contact-detail p{ font-size: 14.5px; margin: 0; }

/* ===== Footer ===== */
.footer{ background: var(--navy-900); color: var(--on-navy-muted); padding: 80px 0 32px; }
.footer-grid{ display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--border-dark); }
.footer-brand .brand-word .horizon{ color: var(--white); }
.footer-brand p{ font-size: 13.5px; max-width: 280px; margin-top: 18px; }
.footer-col h5{ color: var(--white); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col li{ margin-bottom: 12px; }
.footer-col a{ font-size: 14px; transition: color .25s; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-bottom{ display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 12.5px; flex-wrap: wrap; gap: 12px; }

/* ===== Reveal-on-scroll ===== */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity: 1; transform: translateY(0); }

/* Stagger reveals across a grid so items cascade instead of popping together */
.fork-grid .reveal:nth-child(1), .product-grid .reveal:nth-child(1), .grid-3 .reveal:nth-child(1), .grid-4 .reveal:nth-child(1){ transition-delay: .03s; }
.fork-grid .reveal:nth-child(2), .product-grid .reveal:nth-child(2), .grid-3 .reveal:nth-child(2), .grid-4 .reveal:nth-child(2){ transition-delay: .11s; }
.fork-grid .reveal:nth-child(3), .product-grid .reveal:nth-child(3), .grid-3 .reveal:nth-child(3), .grid-4 .reveal:nth-child(3){ transition-delay: .19s; }
.product-grid .reveal:nth-child(4), .grid-4 .reveal:nth-child(4){ transition-delay: .27s; }
.product-grid .reveal:nth-child(5), .grid-4 .reveal:nth-child(5){ transition-delay: .35s; }
.product-grid .reveal:nth-child(6), .grid-4 .reveal:nth-child(6){ transition-delay: .43s; }
.grid-4 .reveal:nth-child(7){ transition-delay: .51s; }
.grid-4 .reveal:nth-child(8){ transition-delay: .59s; }

/* Containers whose reveal wraps several children — stagger the children on parent reveal */
.trust-strip.reveal .trust-item, .cert-strip.reveal .cert-chip,
.process-rail.reveal .process-step, .timeline.reveal .timeline-item{
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.trust-strip.reveal.in .trust-item, .cert-strip.reveal.in .cert-chip,
.process-rail.reveal.in .process-step, .timeline.reveal.in .timeline-item{
  opacity: 1; transform: translateY(0);
}
.trust-strip.reveal .trust-item:nth-child(1), .cert-strip.reveal .cert-chip:nth-child(1),
.process-rail.reveal .process-step:nth-child(1), .timeline.reveal .timeline-item:nth-child(1){ transition-delay: .03s; }
.trust-strip.reveal .trust-item:nth-child(2), .cert-strip.reveal .cert-chip:nth-child(2),
.process-rail.reveal .process-step:nth-child(2), .timeline.reveal .timeline-item:nth-child(2){ transition-delay: .11s; }
.trust-strip.reveal .trust-item:nth-child(3), .cert-strip.reveal .cert-chip:nth-child(3),
.process-rail.reveal .process-step:nth-child(3), .timeline.reveal .timeline-item:nth-child(3){ transition-delay: .19s; }
.trust-strip.reveal .trust-item:nth-child(4), .cert-strip.reveal .cert-chip:nth-child(4),
.process-rail.reveal .process-step:nth-child(4), .timeline.reveal .timeline-item:nth-child(4){ transition-delay: .27s; }
.cert-strip.reveal .cert-chip:nth-child(5), .process-rail.reveal .process-step:nth-child(5){ transition-delay: .35s; }

/* ===== Page hero (inner pages) ===== */
.page-hero{
  background: var(--navy-900); color: var(--on-navy);
  padding: 150px 0 72px; position: relative; overflow: hidden;
}
.page-hero h1{ color: var(--white); font-size: clamp(32px, 4vw, 46px); }
.page-hero p{ max-width: 560px; font-size: 16.5px; }
.breadcrumb{ display: flex; gap: 8px; font-size: 13px; color: var(--on-navy-muted); margin-bottom: 18px; }
.breadcrumb a:hover{ color: var(--gold-light); }
.page-hero-route{ right: -60px; top: -40px; width: 320px; height: 320px; opacity: .85; }
@media (max-width: 900px){ .page-hero-route{ display: none; } }

/* ===== Global Reach (route graphic reused, larger) ===== */
.reach-card{
  position: relative; background: var(--navy-900); border-radius: var(--radius);
  overflow: hidden; padding: 56px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.reach-graphic{ position: relative; width: 100%; aspect-ratio: 1/1; max-width: 380px; margin: 0 auto; }
#reach-globe{ display: block; width: 100%; height: 100%; cursor: grab; touch-action: none; }
#reach-globe:active{ cursor: grabbing; }
.globe-tooltip{
  position: absolute; left: 0; top: 0; z-index: 5; pointer-events: none;
  transform: translate(-50%, -140%);
  background: var(--white); color: var(--navy-900); white-space: nowrap;
  padding: 6px 14px; border-radius: 100px; font-size: 12.5px; font-weight: 700;
  box-shadow: var(--shadow-md);
  opacity: 0; transition: opacity .2s;
}
.globe-tooltip.visible{ opacity: 1; }
.region-tags{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.region-tag{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
  color: var(--on-navy); border: 1px solid var(--border-dark);
}
.region-tag::before{ content:""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-light); }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .fork-grid, .grid-2, .grid-3, .grid-4, .contact-grid, .reach-card{ grid-template-columns: 1fr; }
  .reach-graphic{ margin: 0 auto; }
  .hero-stats{ grid-template-columns: repeat(2, 1fr); }
  .trust-strip{ grid-template-columns: repeat(2, 1fr); }
  .process-rail{ grid-template-columns: repeat(2, 1fr); }
  .process-rail::before{ display: none; }
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .section{ padding: 72px 0; }
  .hero{ padding: 140px 0 88px; }
  .reach-card{ padding: 40px 24px; }
  .hero-stats{ grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .form-row{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html{ scroll-behavior: auto; }
}
