/* ==========================================================================
   Shoreline Oilfield Trading FZE — Design System
   ========================================================================== */

:root {
  /* Brand palette: deep offshore navy + a flare/amber accent (rig lights, gas flares) */
  --color-ink:        #070f1a;
  --color-navy-900:   #0a1c30;
  --color-navy-800:   #0f2946;
  --color-navy-700:   #163b62;
  --color-navy-600:   #1f5182;
  /* Amber "flare" accent — energy, drilling-rig lights, keeps it lit */
  --color-copper:     #f2a13a;
  --color-copper-dk:  #cc7f1e;
  --color-copper-lt:  #ffd085;
  --color-sand:       #eef3f7;
  --color-white:      #ffffff;
  --color-ink-70:     rgba(7, 15, 26, 0.7);
  --color-ink-50:     rgba(7, 15, 26, 0.5);
  --color-line:       #dfe6ec;

  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Soft rounded edges — matches the rounded droplet brand mark */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(7,15,26,0.1);
  --shadow-md: 0 12px 32px rgba(7,15,26,0.14);
  --shadow-lg: 0 24px 60px rgba(7,15,26,0.22);

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--color-navy-900);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4vw + 1rem, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 2.4vw + 1rem, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--color-ink-70); }

a { color: inherit; text-decoration: none; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-copper-dk);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-copper);
  display: inline-block;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--dark {
  background: var(--color-navy-900);
  color: var(--color-white);
}
.section--dark h2, .section--dark h3 { color: var(--color-white); }
.section--dark p { color: rgba(255,255,255,0.72); }
.section--sand { background: var(--color-sand); }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
}
.btn-primary {
  background: var(--color-copper);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(242,161,58,0.4);
}
.btn-primary:hover { background: var(--color-copper-dk); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(242,161,58,0.45); }
.btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: var(--color-white);
}
.btn-outline:hover { border-color: var(--color-white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-dark {
  border-color: var(--color-navy-900);
  color: var(--color-navy-900);
}
.btn-dark:hover { background: var(--color-navy-900); color: var(--color-white); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.topbar {
  background: var(--color-sand);
  color: var(--color-navy-800);
  font-size: 0.83rem;
  border-bottom: 1px solid var(--color-line);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--color-navy-800); }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; margin-right: 20px; }
.topbar-item svg { width: 14px; height: 14px; color: var(--color-copper-dk); flex-shrink: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(7,15,26,0.06);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,0.96); box-shadow: var(--shadow-sm); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-logo { display: block; height: 44px; width: auto; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-navy-900);
  line-height: 1.15;
}
.brand-name span { display: block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; color: var(--color-copper-dk); text-transform: uppercase; }

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  color: var(--color-navy-800);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav a:hover, .nav a[aria-current="page"] { background: rgba(242,161,58,0.12); color: var(--color-navy-900); }
.nav a[aria-current="page"] { color: var(--color-copper-dk); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  color: var(--color-navy-900);
  cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero (light, split layout) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-sand) 0%, var(--color-white) 60%);
  padding: 60px 0 0;
}
.hero-blob {
  position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; filter: blur(6px);
}
.hero-blob--amber {
  width: 46vw; aspect-ratio: 1; top: -14%; right: -10%;
  background: radial-gradient(circle, rgba(242,161,58,0.22), transparent 70%);
}
.hero-blob--navy {
  width: 30vw; aspect-ratio: 1; bottom: -18%; left: -8%;
  background: radial-gradient(circle, rgba(31,81,130,0.16), transparent 70%);
}
.hero-fill {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 70px 0 80px;
}
.hero-content { max-width: 560px; }
.hero-content h1 { color: var(--color-navy-900); }
.hero-content .eyebrow { color: var(--color-copper-dk); }
.hero-content .eyebrow::before { background: var(--color-copper-dk); }
.hero-content p.lead { font-size: 1.1rem; color: var(--color-ink-70); max-width: 540px; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-actions .btn-outline { border-color: var(--color-line); color: var(--color-navy-900); }
.hero-actions .btn-outline:hover { border-color: var(--color-navy-900); background: rgba(10,28,48,0.04); }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4/3.1; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
}
.hero-media .badge-float { z-index: 2; }

.hero-stats {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-line);
  background: var(--color-white);
}
.hero-stat { padding: 26px 20px; text-align: center; border-right: 1px solid var(--color-line); }
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-navy-900);
}
.hero-stat span { font-size: 0.8rem; color: var(--color-ink-50); text-transform: uppercase; letter-spacing: 0.06em; }

/* Page (inner) header banner, non-home pages — light, compact */
.page-hero {
  position: relative;
  padding: 132px 0 56px;
  background: linear-gradient(180deg, var(--color-sand) 0%, var(--color-white) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; filter: blur(6px);
  width: 34vw; aspect-ratio: 1; top: -22%; right: -8%;
  background: radial-gradient(circle, rgba(242,161,58,0.2), transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: 0.85rem; color: var(--color-ink-50); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--color-copper-dk); }
.page-hero h1 { color: var(--color-navy-900); margin-bottom: 6px; }
.page-hero p.lead { color: var(--color-ink-70); max-width: 640px; font-size: 1.05rem; }

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

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-line);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-media img { transform: scale(1.08); }
.card-body { padding: 26px; }
.card-num {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--color-copper);
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: block;
}
.card-body h3 { margin-bottom: 10px; }
.card-body p { margin-bottom: 0; font-size: 0.95rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
  color: var(--color-navy-800);
}
.card-link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* Feature list */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-family: var(--font-head); font-weight: 500; color: var(--color-navy-900);
}
.feature-list .tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(242,161,58,0.14); color: var(--color-copper);
  display: flex; align-items: center; justify-content: center;
}
.feature-list .tick svg { width: 14px; height: 14px; }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split-media.stack { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; align-items: end; }
.split-media.stack img:first-child { aspect-ratio: 4/5; object-fit: cover; }
.split-media.stack img:last-child { aspect-ratio: 3/4; object-fit: cover; margin-top: 40px; }
.badge-float {
  position: absolute; bottom: -22px; left: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
}
.badge-float strong { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--color-copper); line-height: 1; }
.badge-float span { font-size: 0.78rem; color: var(--color-ink-70); }

/* Stats strip */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; text-align: center;
}
.stats-strip strong { display: block; font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--color-navy-900); }
.stats-strip span { font-size: 0.85rem; color: var(--color-ink-70); text-transform: uppercase; letter-spacing: 0.05em; }
.section--dark .stats-strip strong { color: var(--color-white); }

/* Materials chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 500;
  padding: 9px 18px; border-radius: 999px;
  background: var(--color-sand); color: var(--color-navy-800);
  border: 1px solid var(--color-line);
}
.section--dark .chip { background: rgba(255,255,255,0.08); color: var(--color-white); border-color: rgba(255,255,255,0.14); }

/* Why choose us */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  padding: 30px 26px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.why-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-copper), var(--color-copper-dk));
  display: flex; align-items: center; justify-content: center; color: white; margin-bottom: 18px;
}
.why-icon svg { width: 26px; height: 26px; }

/* why-card keeps a light card face even inside a dark section — restore dark text */
.section--dark .why-card h3 { color: var(--color-navy-900); }
.section--dark .why-card p { color: var(--color-ink-70); }

/* CTA band — the one warm, saturated moment on an otherwise light page */
.cta-band {
  background: linear-gradient(120deg, var(--color-copper), var(--color-copper-dk));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  color: var(--color-white);
  flex-wrap: wrap;
  box-shadow: 0 20px 48px rgba(242,161,58,0.3);
}
.cta-band h2 { color: var(--color-white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 0; }
.cta-band .btn-primary { background: var(--color-navy-900); box-shadow: 0 10px 24px rgba(10,28,48,0.35); }
.cta-band .btn-primary:hover { background: var(--color-ink); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,18,32,0.7), transparent 55%);
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gallery-zoom {
  position: absolute; right: 14px; bottom: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-copper); color: white;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px); transition: all .3s ease;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translateY(0); }
.gallery-item .gallery-zoom svg { width: 18px; height: 18px; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(11,18,32,0.94);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(900px, 90vw); max-height: 84vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 26px; right: 32px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close svg { width: 20px; height: 20px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 18px;
}
.contact-card .why-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-card > div { min-width: 0; }
.contact-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.contact-card p { margin-bottom: 2px; font-size: 0.95rem; }
.contact-card a { color: var(--color-navy-800); font-weight: 600; overflow-wrap: break-word; word-break: break-word; }
.contact-card a:hover { color: var(--color-copper); }

.form-card {
  background: var(--color-sand);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; color: var(--color-navy-900); }
.field input, .field textarea {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-white);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-copper); outline-offset: 1px; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
  margin-top: 28px;
}
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }
.field-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-ink); color: rgba(255,255,255,0.65); padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.4fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h4 { color: white; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; font-size: 0.92rem; }
.footer-grid ul a:hover { color: var(--color-copper-lt); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 300px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.92rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--color-copper-lt); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.82rem; color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--color-copper-lt); }

/* ---------- Product cards & lists ---------- */
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--color-copper);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-card-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.product-card-head h3 { margin: 0; }
.product-card .chip-row { margin: 20px 0 22px; }
.chip--more { background: transparent; border: 1px dashed var(--color-copper); color: var(--color-copper-dk); }

.product-grid {
  list-style: none; margin: 24px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 24px;
}
.product-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.product-item svg { width: 15px; height: 15px; color: var(--color-copper); flex-shrink: 0; margin-top: 6px; }
.product-item--note { grid-column: 1 / -1; color: var(--color-ink-50); font-style: italic; }
.section--sand .product-item svg { color: var(--color-copper-dk); }

/* ---------- World map / global reach ---------- */
.map-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.map-offices { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; }
.map-office { display: flex; gap: 16px; align-items: flex-start; }
.map-office-idx {
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  color: var(--color-copper); padding-top: 4px; flex-shrink: 0;
  border-left: 2px solid var(--color-copper); padding-left: 12px;
}
.map-office h3 { margin: 0 0 2px; font-size: 1.08rem; }
.map-office-country {
  display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-copper-lt); margin-bottom: 8px; font-family: var(--font-head); font-weight: 600;
}
.map-office p { font-size: 0.9rem; margin: 0; }
.section--dark .map-office p { color: rgba(255,255,255,0.6); }
.map-figure img { width: 100%; height: auto; }

/* ---------- Icon panel (used where no photograph is appropriate) ---------- */
.icon-panel {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--color-navy-700), var(--color-navy-900) 70%);
  overflow: hidden;
}
.icon-panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.icon-panel::after {
  content: "";
  position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,208,133,0.4), transparent 70%);
  filter: blur(4px);
}
.icon-panel svg {
  position: relative; z-index: 1;
  width: 30%; height: 30%; min-width: 64px; min-height: 64px;
  color: var(--color-copper-lt);
}
.icon-panel--split { aspect-ratio: 10/7; box-shadow: var(--shadow-md); }

/* ---------- Dynamic office map (contact page) ---------- */
.map-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; }
.map-tab {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  padding: 10px 18px; cursor: pointer;
  background: var(--color-sand); color: var(--color-navy-800);
  border: 1px solid var(--color-line);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.map-tab:hover { border-color: var(--color-copper); }
.map-tab.is-active { background: var(--color-navy-900); color: var(--color-white); border-color: var(--color-navy-900); }
.map-frame { margin-top: 14px; }

/* ---------- Sourcing process flow ---------- */
.process-flow {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}
.process-step { background: var(--color-sand); padding: 26px 22px; position: relative; }
.process-num {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 1.6rem; color: var(--color-copper); line-height: 1; margin-bottom: 12px;
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.86rem; margin: 0; }

/* Light variant of the why/feature grid (used on white sections) */
.why-grid--light .why-card { border-color: var(--color-line); }
.why-grid--light .why-card h3 { color: var(--color-navy-900); }
.why-grid--light .why-card p { color: var(--color-ink-70); }

.feature-list--two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; }

/* Reveal animation (progressive enhancement only — see .js .reveal below) */
.reveal { transition: opacity .7s ease, transform .7s ease; }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
/* If JS never runs (blocked/slow network, disabled JS, crawler), .reveal has no opacity/transform above, so content is visible by default */

/* WhatsApp float */
.whatsapp-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  transition: transform .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ---------- Responsive ---------- */
/* Collapse the nav to a hamburger early — 7 nav items need the room */
@media (max-width: 1080px) {
  .nav {
    position: fixed; top: 66px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column; align-items: stretch;
    padding: 12px; gap: 4px;
    transform: translateY(-160%);
    transition: transform .3s ease;
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 66px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 12px 16px; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .contact-grid, .hero-fill { grid-template-columns: minmax(0, 1fr); }
  .hero-fill { padding: 40px 0 48px; gap: 40px; }
  .hero-content { max-width: none; }
  .hero-media { order: -1; }
  .split-media.stack { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .map-layout { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .map-offices { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .process-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .header-cta .btn-primary span { display: none; }
  .header-cta { gap: 8px; }
  .brand { gap: 8px; min-width: 0; }
  .brand-logo { height: 32px; width: auto; }
  .brand-name { font-size: 0.92rem; }
  .brand-name span { display: none; }
  .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-stat { padding: 18px 8px; }
  .hero-stat strong { font-size: 1.4rem; }
  .hero-stat span { font-size: 0.66rem; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .why-grid { grid-template-columns: minmax(0, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .map-offices { grid-template-columns: minmax(0, 1fr); }
  .process-flow { grid-template-columns: minmax(0, 1fr); }
  .product-grid { grid-template-columns: minmax(0, 1fr); }
  .feature-list--two { grid-template-columns: minmax(0, 1fr); }
  .product-card { padding: 26px; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; }
  .topbar .container { justify-content: center; text-align: center; }
  .section { padding: 64px 0; }
}
