/* =========================================================
   SUFY GLOBAL PRIVATE LIMITED — Design System
   Tokens derived from brand mark: ink black, roasted olive,
   antique gold, warm cream. A trade-heritage light theme —
   ledger precision meets export-grade warmth.
   ========================================================= */

:root{
  --ink:        #14110C;
  --ink-soft:   #3A342A;
  --olive:      #5B4B2A;
  --olive-deep: #443A22;
  --gold:       #D8AF5B;
  --gold-soft:  #E7C97F;
  --cream:      #F6F1E4;
  --cream-deep: #EEE6D2;
  --paper:      #FFFDF9;
  --white:      #FFFFFF;
  --line:       #E4DBC5;
  --line-soft:  rgba(20,17,12,0.08);

  --shadow-sm:  0 1px 2px rgba(20,17,12,0.05), 0 1px 1px rgba(20,17,12,0.04);
  --shadow-md:  0 12px 28px -12px rgba(20,17,12,0.16);
  --shadow-lg:  0 30px 60px -20px rgba(20,17,12,0.22);
  --shadow-gold:0 10px 30px -8px rgba(216,175,91,0.45);

  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  22px;

  --font-display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

  --ease: cubic-bezier(.16,.84,.24,1);
}

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

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.wrap{ max-width:1240px; margin:0 auto; padding:0 32px; }
@media (max-width:640px){ .wrap{ padding:0 20px; } }

section{ position:relative; }

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  letter-spacing:-0.01em;
  color:var(--ink);
  margin:0;
}

.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--olive);
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:var(--gold);
}

.lede{
  font-size:19px;
  line-height:1.65;
  color:var(--ink-soft);
  max-width:60ch;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 26px;
  border-radius:100px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:14.5px;
  letter-spacing:0.01em;
  border:1px solid transparent;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg, var(--ink) 0%, var(--olive-deep) 100%);
  color:var(--cream);
  box-shadow:var(--shadow-md);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:var(--shadow-lg); }
.btn-gold{
  background:linear-gradient(135deg, var(--gold-soft), var(--gold));
  color:var(--ink);
  box-shadow:var(--shadow-gold);
}
.btn-gold:hover{ transform:translateY(-2px); filter:brightness(1.04); }
.btn-outline{
  background:transparent;
  border-color:rgba(20,17,12,0.18);
  color:var(--ink);
}
.btn-outline:hover{ border-color:var(--ink); background:rgba(20,17,12,0.04); }
.btn-ghost-light{
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.35);
  color:var(--white);
  backdrop-filter:blur(6px);
}
.btn-ghost-light:hover{ background:rgba(255,255,255,0.2); }
.btn-sm{ padding:10px 18px; font-size:13px; }

/* ---------- Nav ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px 0;
  transition:all .45s var(--ease);
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
  padding:10px 20px;
  border-radius:100px;
  background:rgba(255,253,249,0.55);
  border:1px solid rgba(20,17,12,0.06);
  backdrop-filter:blur(0px);
  transition:all .45s var(--ease);
  max-width:1240px;
}
.site-header.scrolled .wrap{
  background:rgba(255,253,249,0.86);
  border-color:rgba(20,17,12,0.08);
  box-shadow:var(--shadow-md);
  backdrop-filter:blur(16px);
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:46px; width:auto; }
.nav-links{ display:flex; align-items:center; gap:2px; }
.nav-links a{
  padding:10px 15px;
  border-radius:100px;
  font-size:14px; font-weight:500;
  color:var(--ink-soft);
  transition:background .3s var(--ease), color .3s var(--ease);
}
.nav-links a:hover{ background:rgba(20,17,12,0.05); color:var(--ink); }
.nav-links a.active{ color:var(--ink); background:var(--cream-deep); }
.nav-actions{ display:flex; align-items:center; gap:10px; }
.nav-toggle{
  display:none; background:none; border:none; padding:8px;
}
.nav-toggle svg{ width:22px; height:22px; }

@media (max-width:980px){
  .nav-links{ display:none; }
  .nav-actions .btn-outline{ display:none; }
  .nav-toggle{ display:block; }
}

.mobile-menu{
  position:fixed; inset:0; z-index:99;
  background:var(--paper);
  padding:110px 28px 40px;
  display:none;
  flex-direction:column;
  gap:4px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  height:100vh;
  height:100dvh;
}
.mobile-menu.open{ display:flex; }
.mobile-menu a{
  font-family:var(--font-display);
  font-size:26px;
  padding:14px 4px;
  border-bottom:1px solid var(--line);
}
.mobile-menu .btn{ margin-top:24px; align-self:flex-start; }

/* ---------- Scroll progress ---------- */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px;
  background:linear-gradient(90deg, var(--gold), var(--olive));
  z-index:101; width:0%;
  transition:width .1s linear;
}

/* ---------- Hero ---------- */
.hero{
  padding:168px 0 110px;
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(216,175,91,0.16), transparent 60%),
    radial-gradient(900px 460px at 10% 10%, rgba(91,75,42,0.08), transparent 55%),
    var(--paper);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
}
@media (max-width:980px){ .hero-grid{ grid-template-columns:1fr; } }

.hero h1{
  font-size:clamp(38px, 5vw, 64px);
  line-height:1.06;
  letter-spacing:-0.02em;
}
.hero h1 em{
  font-style:italic;
  color:var(--olive);
  background:linear-gradient(90deg, var(--olive), var(--gold));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero .lede{ margin-top:22px; }
.hero-cta{ display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; }

.hero-stats{
  display:flex; gap:34px; margin-top:56px; flex-wrap:wrap;
}
.hero-stat b{
  display:block; font-family:var(--font-display); font-size:26px; color:var(--ink);
}
.hero-stat span{ font-size:12.5px; color:var(--ink-soft); font-family:var(--font-mono); letter-spacing:0.04em; }

/* Trade route visual */
.route-card{
  position:relative;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:30px 26px 26px;
  box-shadow:var(--shadow-lg);
}
.route-card .route-label{
  display:flex; justify-content:space-between; font-family:var(--font-mono);
  font-size:11.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-soft);
  margin-bottom:18px;
}
.route-card svg{ width:100%; height:auto; display:block; }
.route-dash{
  stroke-dasharray:6 7;
  animation:dashmove 2.4s linear infinite;
}
@keyframes dashmove{ to{ stroke-dashoffset:-52; } }
.route-dot{
  animation:sail 6s var(--ease) infinite;
  offset-rotate:0deg;
}
@keyframes floatY{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-4px);} }
.port{ animation:floatY 3.4s ease-in-out infinite; }
.port.b{ animation-delay:.6s; }

.route-meta{
  display:flex; justify-content:space-between; margin-top:18px;
  padding-top:16px; border-top:1px dashed var(--line);
}
.route-meta div{ text-align:center; flex:1; }
.route-meta b{ display:block; font-family:var(--font-display); font-size:18px; }
.route-meta span{ font-size:11px; color:var(--ink-soft); font-family:var(--font-mono); }

/* ---------- Marquee strip ---------- */
.strip{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background:var(--cream);
  padding:16px 0;
  overflow:hidden;
}
.strip-track{
  display:flex; gap:56px; white-space:nowrap;
  animation:marquee 28s linear infinite;
  width:max-content;
}
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
.strip-item{
  font-family:var(--font-mono); font-size:13px; letter-spacing:0.05em;
  color:var(--olive); display:flex; align-items:center; gap:10px;
}
.strip-item .dot{ width:4px; height:4px; border-radius:50%; background:var(--gold); }

/* ---------- Section basics ---------- */
.section{ padding:120px 0; }
.section-sm{ padding:80px 0; }
.section-head{ max-width:680px; margin-bottom:56px; }
.section-cream{ background:var(--cream); }
.section-ink{ background:linear-gradient(160deg, var(--ink) 0%, #24201A 100%); color:var(--cream); }
.section-ink .eyebrow{ color:var(--gold-soft); }
.section-ink h2, .section-ink h3{ color:var(--white); }
.section-ink .lede{ color:rgba(246,241,228,0.72); }

/* Reveal on scroll */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-scale{ opacity:0; transform:scale(.96); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.in{ opacity:1; transform:scale(1); }
.stagger > *{ transition-delay:calc(var(--i,0) * 80ms); }

/* ---------- Cards: What We Do ---------- */
.process-grid{
  display:grid; grid-template-columns:repeat(5,1fr); gap:1px;
  background:var(--line); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden;
}
@media (max-width:980px){ .process-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .process-grid{ grid-template-columns:1fr; } }
.process-cell{
  background:var(--paper); padding:30px 24px; min-height:200px;
  display:flex; flex-direction:column; gap:14px;
  transition:background .35s var(--ease);
}
.process-cell:hover{ background:var(--cream); }
.process-num{ font-family:var(--font-mono); font-size:12px; color:var(--gold); }
.process-cell h4{ font-size:18px; }
.process-cell p{ font-size:14px; color:var(--ink-soft); margin:0; }
.icon-box{
  width:42px; height:42px; border-radius:12px;
  background:linear-gradient(135deg, var(--olive), var(--olive-deep));
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-sm);
}
.icon-box svg{ width:20px; height:20px; stroke:var(--cream); }

/* ---------- Product cards ---------- */
.product-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
}
@media (max-width:980px){ .product-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .product-grid{ grid-template-columns:1fr; } }

.product-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:28px;
  position:relative;
  overflow:hidden;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.product-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  border-color:transparent;
}
.product-card .tag{
  font-family:var(--font-mono); font-size:11px; letter-spacing:0.08em;
  color:var(--olive); text-transform:uppercase;
}
.product-card h3{ font-size:22px; margin:10px 0 10px; }
.product-card p{ font-size:14.5px; color:var(--ink-soft); margin:0 0 18px; }
.product-card .chips{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:18px; }
.product-card .chip{
  font-size:12px; padding:5px 11px; border-radius:100px;
  background:var(--cream-deep); color:var(--ink-soft);
}
.product-card .go{
  display:inline-flex; align-items:center; gap:6px;
  font-size:13.5px; font-weight:600; color:var(--ink);
}
.product-card .go svg{ width:14px; height:14px; transition:transform .3s var(--ease); }
.product-card:hover .go svg{ transform:translateX(4px); }
.card-index{
  position:absolute; top:22px; right:26px;
  font-family:var(--font-display); font-style:italic; font-size:34px;
  color:var(--cream-deep);
}

/* ---------- Values ---------- */
.value-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--line-soft); border-radius:var(--radius-lg); overflow:hidden; }
@media (max-width:900px){ .value-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .value-grid{ grid-template-columns:1fr; } }
.value-cell{ background:var(--paper); padding:32px 26px; }
.value-cell h4{ font-size:18px; margin-bottom:10px; display:flex; align-items:center; gap:10px; }
.value-cell h4::before{ content:""; width:8px; height:8px; border-radius:50%; background:var(--gold); flex-shrink:0; }
.value-cell p{ font-size:14px; color:var(--ink-soft); margin:0; }

/* ---------- Stats band ---------- */
.stats-band{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,0.1); border-radius:var(--radius-lg); overflow:hidden; }
@media (max-width:768px){ .stats-band{ grid-template-columns:1fr 1fr; } }
.stat-cell{ background:rgba(255,255,255,0.03); padding:34px 24px; text-align:center; }
.stat-cell b{ font-family:var(--font-display); font-size:40px; display:block; color:var(--gold-soft); }
.stat-cell span{ font-size:13px; color:rgba(246,241,228,0.65); }
.stat-value{
  font-family:var(--font-display) !important;
  font-weight:600;
  font-style:normal;
  font-size:40px !important;
  line-height:1.2;
  display:block;
  color:var(--gold-soft) !important;
  letter-spacing:0;
  white-space:nowrap;
}
.stat-label{ font-size:13px; color:rgba(246,241,228,0.65); font-family:var(--font-body); line-height:1.4; }

/* ---------- Certifications ---------- */
.cert-row{ display:flex; gap:16px; flex-wrap:wrap; }
.cert-pill{
  display:flex; align-items:center; gap:12px;
  padding:16px 20px; border-radius:var(--radius-md);
  background:var(--paper); border:1px solid var(--line);
  flex:1 1 220px;
}
.cert-pill .icon-box{ background:linear-gradient(135deg,var(--gold-soft),var(--gold)); }
.cert-pill .icon-box svg{ stroke:var(--ink); }
.cert-pill b{ display:block; font-size:14.5px; }
.cert-pill span{ font-size:12.5px; color:var(--ink-soft); }

/* ---------- Timeline (process) ---------- */
.flow{ display:flex; gap:0; overflow-x:auto; padding-bottom:8px; scrollbar-width:none; }
.flow::-webkit-scrollbar{ display:none; }
.flow-step{ min-width:220px; padding:0 26px 0 0; position:relative; flex-shrink:0; }
.flow-step::after{
  content:""; position:absolute; top:19px; left:38px; right:0; height:1px;
  background:repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
}
.flow-step:last-child::after{ display:none; }
.flow-num{
  width:38px; height:38px; border-radius:50%;
  background:var(--paper); border:1.5px solid var(--olive); color:var(--olive);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:13px; margin-bottom:16px;
}
.flow-step h4{ font-size:15.5px; margin-bottom:6px; }
.flow-step p{ font-size:13px; color:var(--ink-soft); margin:0; }

/* ---------- FAQ accordion ---------- */
.faq-list{ display:flex; flex-direction:column; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden; }
.faq-item{ background:var(--paper); }
.faq-q{
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding:22px 24px; background:none; border:none; text-align:left;
  font-family:var(--font-display); font-size:17px; color:var(--ink);
}
.faq-q .plus{ flex-shrink:0; width:22px; height:22px; position:relative; }
.faq-q .plus::before, .faq-q .plus::after{
  content:""; position:absolute; background:var(--olive);
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.faq-q .plus::before{ width:14px; height:1.6px; }
.faq-q .plus::after{ width:1.6px; height:14px; transition:transform .35s var(--ease); }
.faq-item.open .plus::after{ transform:translate(-50%,-50%) rotate(90deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .45s var(--ease); }
.faq-a p{ padding:0 24px 22px; font-size:14.5px; color:var(--ink-soft); margin:0; max-width:70ch; }
.faq-item.open .faq-a{ max-height:400px; }
.faq-cat{ font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--olive); margin:38px 0 14px; }
.faq-cat:first-child{ margin-top:0; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:34px; box-shadow:var(--shadow-md);
}
.contact-line{ display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--line); }
.contact-line:last-child{ border-bottom:none; }
.contact-line b{ display:block; font-size:14px; }
.contact-line span, .contact-line a{ font-size:14.5px; color:var(--ink-soft); }
.contact-line a:hover{ color:var(--olive); }

.field{ margin-bottom:18px; }
.field label{ display:block; font-size:12.5px; font-family:var(--font-mono); text-transform:uppercase; letter-spacing:0.06em; color:var(--ink-soft); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; border-radius:10px; border:1px solid var(--line);
  background:var(--white); font-family:var(--font-body); font-size:14.5px; color:var(--ink);
  transition:border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--olive); box-shadow:0 0 0 4px rgba(91,75,42,0.08);
}
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:520px){ .field-row{ grid-template-columns:1fr; } }
.field-hint{ font-family:var(--font-body); text-transform:none; letter-spacing:0; color:var(--ink-soft); font-weight:400; }
.checkbox-group{
  display:grid; grid-template-columns:1fr 1fr; gap:4px 12px;
  border:1px solid var(--line); border-radius:10px; padding:12px 14px; background:var(--white);
}
@media (max-width:480px){ .checkbox-group{ grid-template-columns:1fr; } }
.checkbox-item{
  display:flex; align-items:center; gap:9px; padding:7px 4px;
  font-size:13.5px; color:var(--ink); cursor:pointer;
}
.checkbox-item input[type="checkbox"]{
  width:16px; height:16px; accent-color:var(--olive); cursor:pointer; flex-shrink:0;
}
.field-error{
  display:none; color:#B3261E; font-size:12.5px; margin-top:8px;
}
.field-error.show{ display:block; }
.checkbox-group.error{ border-color:#B3261E; }
.toast{
  display:none; align-items:center; gap:10px; margin-top:16px;
  padding:14px 18px; border-radius:12px; background:var(--cream-deep);
  font-size:13.5px; color:var(--olive-deep);
}
.toast.show{ display:flex; }

/* ---------- Footer ---------- */
footer{ background:var(--ink); color:rgba(246,241,228,0.72); padding:76px 0 30px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.08); }
@media (max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h5{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold-soft); margin-bottom:18px; }
.footer-grid a, .footer-grid span{ display:block; font-size:14px; color:rgba(246,241,228,0.68); padding:6px 0; }
.footer-grid a:hover{ color:var(--gold-soft); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; flex-wrap:wrap; gap:14px; font-size:12.5px; color:rgba(246,241,228,0.5); }
.footer-bottom a{ color:rgba(246,241,228,0.5); }
.footer-bottom a:hover{ color:var(--gold-soft); }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-brand img{ height:44px; }
.footer-tag{ font-size:13.5px; max-width:32ch; color:rgba(246,241,228,0.55); }
.social-row{ display:flex; gap:16px; margin-top:20px; align-items:center; }
.social-icon{
  display:flex; align-items:center; justify-content:center;
  transition:transform .3s var(--ease), opacity .3s var(--ease);
  opacity:0.9;
}
.social-icon:hover{ transform:translateY(-2px); opacity:1; }
.social-icon svg{ width:22px; height:22px; display:block; }

/* ---------- Scroll to top ---------- */
.to-top{
  position:fixed; bottom:26px; right:26px; z-index:90;
  width:46px; height:46px; border-radius:50%;
  background:var(--ink); color:var(--gold-soft);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transform:translateY(10px);
  transition:all .35s var(--ease);
  box-shadow:var(--shadow-md); border:none;
}
.to-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
.to-top svg{ width:18px; height:18px; }

/* ---------- Misc utility ---------- */
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
@media (max-width:900px){ .grid-2{ grid-template-columns:1fr; gap:36px; } }
.badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:20px; }
.badge{ font-size:12.5px; padding:7px 14px; border-radius:100px; background:var(--cream-deep); color:var(--olive-deep); font-family:var(--font-mono); }
.divider{ height:1px; background:var(--line); margin:70px 0; }
.center{ text-align:center; margin-left:auto; margin-right:auto; }
.mono{ font-family:var(--font-mono); }

/* ---------- Dropdown nav (Products) ---------- */
.has-dropdown{ position:relative; }
.dropdown-panel{
  /* This outer element sits flush against the trigger link (top:100%, no
     gap) and its top padding acts as an invisible "bridge" the mouse can
     cross without ever leaving a hoverable box - this is what keeps the
     dropdown open while moving the cursor down into it. The visible card
     styling lives on .dropdown-panel-inner instead. */
  position:absolute; top:100%; left:50%; transform:translateX(-50%);
  width:560px; padding-top:14px;
  opacity:0; pointer-events:none; transition:opacity .25s var(--ease), transform .25s var(--ease);
  z-index:50;
}
.dropdown-panel-inner{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg); padding:16px; display:grid; grid-template-columns:1fr 1fr; gap:4px;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel{
  opacity:1; pointer-events:auto;
}
.dropdown-item{
  display:flex; align-items:center; gap:12px; padding:10px 12px; border-radius:10px;
  transition:background .25s var(--ease);
}
.dropdown-item:hover{ background:var(--cream); }
.dropdown-item img{ width:44px; height:44px; object-fit:cover; border-radius:8px; flex-shrink:0; }
.dropdown-item b{ display:block; font-size:13.5px; color:var(--ink); }
.dropdown-item span{ display:block; font-size:11.5px; color:var(--ink-soft); }
.mobile-submenu{ padding-left:14px; display:flex; flex-direction:column; }
.mobile-submenu a{ font-size:16px; padding:10px 4px; border-bottom:1px solid var(--line); font-family:var(--font-body); color:var(--ink-soft); }


/* ---------- Image hero banner (category / home pages) ---------- */
.img-hero{
  position:relative; min-height:64vh; display:flex; align-items:flex-end;
  overflow:hidden; margin-top:0;
}
.img-hero img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transform:scale(1.03);
}
.img-hero::after{
  content:""; position:absolute; inset:0;
  background:rgba(20,17,12,0.15);
}
.img-hero-content{
  position:relative; z-index:2; width:100%; color:var(--white);
  padding:168px 0 56px; /* clears the fixed header so the heading is never covered by the nav bar */
}
.img-hero .breadcrumb{ color:rgba(246,241,228,0.95); text-shadow:0 1px 3px rgba(0,0,0,0.9), 0 2px 10px rgba(0,0,0,0.7); }
.img-hero .breadcrumb a{ color:var(--gold-soft); }
.img-hero .eyebrow{ color:var(--white); text-shadow:0 1px 3px rgba(0,0,0,0.9), 0 2px 10px rgba(0,0,0,0.7); }
.img-hero .eyebrow::before{ background:var(--gold-soft); }
.img-hero h1{ color:var(--white); font-size:clamp(34px,4.6vw,56px); max-width:18ch; text-shadow:0 1px 4px rgba(0,0,0,0.9), 0 4px 20px rgba(0,0,0,0.6); }
.img-hero p{ color:rgba(255,255,255,0.96); max-width:58ch; margin-top:16px; font-size:17px; text-shadow:0 1px 4px rgba(0,0,0,0.85), 0 2px 14px rgba(0,0,0,0.6); }

@media (max-width:640px){
  .img-hero-content{ padding-top:150px; }
}

/* ---------- Image gallery ---------- */
.gallery{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
@media (max-width:900px){ .gallery{ grid-template-columns:repeat(2,1fr); } }
.gallery-item{
  position:relative; border-radius:var(--radius-md); overflow:hidden; aspect-ratio:4/3;
  box-shadow:var(--shadow-sm);
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.gallery-item:hover img{ transform:scale(1.07); }
.gallery-item .cap{
  position:absolute; left:0; right:0; bottom:0; padding:12px 14px;
  background:linear-gradient(180deg, transparent, rgba(20,17,12,0.75));
  color:var(--white); font-size:12.5px; font-family:var(--font-mono);
}
.gallery-feature{ grid-column:span 2; grid-row:span 2; aspect-ratio:auto; }
@media (max-width:900px){ .gallery-feature{ grid-column:span 2; grid-row:span 1; aspect-ratio:4/3; } }

/* ---------- Split content + image block ---------- */
.split-media{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
@media (max-width:900px){ .split-media{ grid-template-columns:1fr; gap:32px; } }
.split-media img{ border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); width:100%; height:100%; object-fit:cover; aspect-ratio:4/3; }
.split-media.reverse{ direction:rtl; }
.split-media.reverse > *{ direction:ltr; }

/* ---------- Category nav pills (product line pages) ---------- */
.cat-pills{ display:flex; gap:10px; flex-wrap:wrap; margin-top:28px; }
.cat-pill{
  display:flex; align-items:center; gap:8px; padding:8px 16px 8px 8px;
  border-radius:100px; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.25);
  color:var(--white); font-size:13px; font-family:var(--font-mono);
}
.cat-pill img{ width:26px; height:26px; border-radius:50%; object-fit:cover; }
.cat-pill.current{ background:var(--gold); color:var(--ink); border-color:var(--gold); }

/* ---------- Related products strip ---------- */
.related-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:860px){ .related-grid{ grid-template-columns:1fr; } }
.related-card{
  position:relative; border-radius:var(--radius-md); overflow:hidden; aspect-ratio:5/4;
  box-shadow:var(--shadow-sm); transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.related-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.related-card img{ width:100%; height:100%; object-fit:cover; }
.related-card .overlay{
  position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; padding:20px;
  background:linear-gradient(180deg, transparent 40%, rgba(20,17,12,0.85));
}
.related-card .overlay .tag{ font-family:var(--font-mono); font-size:11px; color:var(--gold-soft); text-transform:uppercase; letter-spacing:.06em; }
.related-card .overlay h4{ color:var(--white); font-size:19px; margin-top:6px; }
.related-card .overlay .go{ color:var(--gold-soft); font-size:12.5px; margin-top:8px; display:inline-flex; align-items:center; gap:4px; }
.related-card:not(:has(img)){
  background:linear-gradient(150deg, var(--olive) 0%, var(--olive-deep) 55%, var(--ink) 100%);
}
.ph-icon{ position:absolute; top:24px; right:24px; opacity:0.35; }
.ph-icon svg{ width:64px; height:64px; stroke:var(--gold-soft); }

/* Legal page */
.legal-body{ max-width:760px; margin:0 auto; }
.legal-body h2{ font-size:26px; margin:48px 0 16px; }
.legal-body h2:first-child{ margin-top:0; }
.legal-body p, .legal-body li{ color:var(--ink-soft); font-size:15.5px; line-height:1.75; }
.legal-body ul{ padding-left:20px; list-style:disc; margin:12px 0; }
.legal-body li{ margin-bottom:6px; }
.legal-toc{ background:var(--cream); border-radius:var(--radius-md); padding:22px 26px; margin-bottom:50px; }
.legal-toc a{ display:block; padding:5px 0; font-size:14px; color:var(--olive-deep); }
.legal-updated{ font-family:var(--font-mono); font-size:12.5px; color:var(--ink-soft); }

/* Page hero (inner pages) */
.page-hero{ padding:158px 0 70px; background:linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%); }
.page-hero h1{ font-size:clamp(32px,4.4vw,52px); }
.breadcrumb{ font-family:var(--font-mono); font-size:12px; color:var(--ink-soft); margin-bottom:18px; letter-spacing:0.04em; }
.breadcrumb a{ color:var(--olive); }
