:root {
  --ivory:      #f6f4f0;
  --ivory-mid:  #edeae3;
  --ivory-deep: #e0dcd2;
  --charcoal:   #0d1b3e;
  --charcoal-2: #162248;
  --charcoal-3: #1e2d5a;
  --blue:       #1e4d9b;
  --blue-dark:  #163a7a;
  --blue-light: #2d7dd2;
  --gold:       #c9961a;
  --gold-light: #dba830;
  --gold-pale:  rgba(201,150,26,0.10);
  --text:       #0d1b3e;
  --text-mid:   #3a4460;
  --text-dim:   #6a7490;
  --white:      #ffffff;
  --border:     rgba(13,27,62,0.10);
  --border-mid: rgba(13,27,62,0.18);
  --border-str: rgba(13,27,62,0.28);
  --shadow-sm:  0 2px 12px rgba(13,27,62,0.08);
  --shadow-md:  0 8px 32px rgba(13,27,62,0.12);
  --shadow-lg:  0 20px 60px rgba(13,27,62,0.14);
  --img-bg:     #dde0e8;
  --img-border: rgba(13,27,62,0.14);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ivory);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.12; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; }

/* ─── IMAGE PLACEHOLDER ─── */
.img-ph {
  background: var(--img-bg);
  border: 2px dashed var(--img-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
  overflow: hidden;
}
.img-ph:hover { border-color: var(--charcoal); background: #d4cfc6; }
.img-ph::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25) 0%, transparent 55%);
  pointer-events: none;
}
.img-ph-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 1; padding: 12px; text-align: center; }
.img-ph-icon { font-size: 1.8rem; opacity: .45; }
.img-ph-title { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--charcoal); opacity: .45; }
.img-ph-hint { font-size: .62rem; color: var(--text-mid); opacity: .45; line-height: 1.4; max-width: 180px; }
/* To use real images: replace .img-ph with <img src="your-image.jpg" alt="description"> */

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: #ffffff;
  padding: 14px 24px;
  text-align: center;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,119,182,0.25);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,119,182,0.35); }
.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--border-str);
  color: var(--text);
  padding: 14px 24px;
  text-align: center;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, border-color .2s;
}
.btn-secondary:hover { background: var(--ivory-mid); border-color: var(--charcoal); }
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ─── SECTION LABEL ─── */
.sec-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.sec-label::before { content: ''; width: 28px; height: 1.5px; background: var(--gold); flex-shrink: 0; }
.sec-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--text); margin-bottom: 16px; }
.sec-sub { font-size: .95rem; color: var(--text-mid); max-width: 580px; line-height: 1.8; font-weight: 400; }
.gold-rule { width: 48px; height: 1.5px; background: var(--gold); margin: 18px 0; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 20px 5%;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-mid);
  transition: padding .3s, box-shadow .3s;
}
nav.scrolled { padding: 14px 5%; box-shadow: var(--shadow-sm); }
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--charcoal); letter-spacing: .04em;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem; font-weight: 800;
  color: #ffffff; letter-spacing: .05em;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-dim);
  transition: color .2s;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-cta-link {
  background: var(--blue) !important;
  color: #ffffff !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: .07em !important;
}
.nav-cta-link:hover { background: var(--blue-dark) !important; color: #ffffff !important; }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { width: 24px; height: 1.5px; background: var(--charcoal); display: block; transition: all .3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 100px 5% 60px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: var(--ivory-mid);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
  animation: fadeUp .7s ease both;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1.5px; background: var(--gold); }
.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  color: var(--charcoal);
  margin-bottom: 24px;
  font-weight: 700;
  animation: fadeUp .7s .1s ease both;
}
.hero h1 em { font-style: italic; color: var(--charcoal-3); display: block; }
.hero-sub {
  font-size: .95rem; color: var(--text-mid);
  max-width: 460px; margin-bottom: 38px;
  line-height: 1.85; font-weight: 400;
  animation: fadeUp .7s .2s ease both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; animation: fadeUp .7s .3s ease both; }
.hero-actions a { flex: 1; min-width: 160px; max-width: 220px; text-align: center; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid var(--border-mid);
  animation: fadeUp .7s .4s ease both;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; color: var(--charcoal); font-weight: 700; display: block; line-height: 1;
}
.hero-stat-label { font-size: .72rem; color: var(--text-dim); letter-spacing: .07em; font-weight: 500; margin-top: 4px; }

/* Hero image block */
.hero-visual {
  position: relative; z-index: 1;
  animation: fadeUp .7s .15s ease both;
  width: calc(100% + 5vw);
}
.hero-img-main { width: 100%; height: 520px; border-radius: 6px 0 0 6px; overflow: hidden; }
.hero-img-float {
  position: absolute; bottom: -28px; left: -28px;
  width: 200px; height: 150px;
  border-radius: 6px; overflow: hidden;
  border: 4px solid var(--ivory);
  box-shadow: var(--shadow-lg);
}
.hero-img-tag {
  position: absolute; top: 24px; right: -6px;
  background: var(--charcoal); color: var(--ivory);
  font-family: 'DM Sans', sans-serif;
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 3px;
  box-shadow: var(--shadow-md);
}
.hero-img-badge {
  position: absolute; top: 24px; left: 24px;
  background: rgba(245,240,232,.96);
  border: 1px solid var(--border-mid);
  border-radius: 6px; padding: 14px 18px;
  box-shadow: var(--shadow-md);
}
.badge-big { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold); font-weight: 700; display: block; line-height: 1; }
.badge-small { font-size: .68rem; color: var(--text-dim); line-height: 1.4; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--charcoal);
  padding: 20px 5%;
  display: flex; justify-content: center; gap: 44px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: rgba(245,240,232,.75);
}
.trust-icon { color: var(--gold); font-size: 1rem; }

/* ─── CONTAINER ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* ─── SECTIONS ─── */
section { padding: 96px 5%; position: relative; }
section > *:not(.section-full) { max-width: 1100px; margin-left: auto; margin-right: auto; }
.section-alt { background: var(--ivory-mid); }

/* hero container */
.hero { max-width: 100%; padding: 120px max(5%, calc((100% - 1100px)/2)) 80px; }
nav { padding: 20px max(5%, calc((100% - 1100px)/2 + 20px)); }
nav.scrolled { padding: 14px max(5%, calc((100% - 1100px)/2 + 20px)); }
.trust-bar { padding: 20px max(5%, calc((100% - 1100px)/2)); }

/* ─── ABOUT ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-grid .about-text { order: 1; }
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 180px;
  gap: 10px;
}
.about-img-a { grid-column: 1 / -1; }
.about-text { padding: 8px 0; }
.about-checklist { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 32px; }
.about-check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-mark {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px;
  background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; color: #ffffff;
}
.about-check-item p { font-size: .9rem; color: var(--text-mid); line-height: 1.75; }

/* ─── PRODUCTS ─── */
.products-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end; margin-bottom: 48px;
}
.product-categories { display: flex; flex-direction: column; gap: 20px; }

/* Each category is now a side-by-side card: left = info, right = image */
.cat-block {
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 10px; overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  display: grid;
  grid-template-columns: 1fr 280px;
}
.cat-block:hover { border-color: var(--charcoal); box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Left side: header + items */
.cat-left { display: flex; flex-direction: column; border-right: 1px solid var(--border); }
.cat-header {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border);
}
.cat-title-row { display: flex; align-items: center; gap: 14px; }
.cat-icon-box {
  width: 40px; height: 40px;
  background: var(--ivory-mid); border: 1px solid var(--border-mid);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.cat-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--text); }
.cat-sub { font-size: .72rem; color: var(--text-dim); margin-top: 2px; font-family: 'DM Sans', sans-serif; }
.cat-arrow { color: var(--text-dim); font-size: 1rem; transition: transform .2s; }
.cat-block:hover .cat-arrow { transform: translateX(4px); }
.cat-items {
  padding: 14px 24px 18px; flex: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7px; align-content: start;
}
.cat-item {
  font-size: .8rem; color: var(--text-dim);
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 7px 12px; border-radius: 4px;
  display: flex; align-items: center; gap: 6px;
  font-family: 'DM Sans', sans-serif;
}
.cat-item::before { content: '—'; color: var(--gold); font-size: .65rem; }

/* Right side: image */
.cat-img {
  width: 100%; height: 100%; min-height: 200px;
  overflow: hidden; flex-shrink: 0;
}
.cat-img .img-ph { height: 100%; border-radius: 0; border: none; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; }

.custom-note {
  margin-top: 32px;
  padding: 18px 22px;
  background: var(--ivory-deep);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.custom-note p { font-size: .9rem; color: var(--text-mid); line-height: 1.75; }
.custom-note strong { color: var(--charcoal); }

/* ─── PRODUCT ITEM CARDS ─── */
.prod-category-block { margin-bottom: 52px; }
.prod-category-block:last-of-type { margin-bottom: 0; }
.prod-cat-header {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 0 16px;
  border-bottom: 2px solid var(--border-mid);
  margin-bottom: 20px;
}
.prod-cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--text); font-weight: 600;
}
.prod-cat-sub { font-size: .75rem; color: var(--text-dim); margin-top: 3px; font-family: 'DM Sans', sans-serif; }
.prod-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.prod-item-card {
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 10px; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.prod-item-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.prod-item-img { width: 100%; height: 180px; overflow: hidden; }
.prod-item-img .img-ph { height: 100%; border-radius: 0; border: none; border-bottom: 1px dashed var(--img-border); }
.prod-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.prod-item-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.prod-item-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--text); font-weight: 600; margin-bottom: 6px;
}
.prod-item-body p { font-size: .85rem; color: var(--text-dim); line-height: 1.75; margin-bottom: auto; padding-bottom: 10px; }
.prod-item-tag {
  display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 20px;
  background: var(--ivory-mid); color: var(--gold);
  border: 1px solid rgba(184,150,46,.25); font-family: 'DM Sans', sans-serif;
}

/* ─── PRODUCT IMAGES GRID — removed, images now sit inside each category card ─── */

/* ─── WHY US ─── */
/* ─── WHY US — NEW DESIGN ─── */
.why-new-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: stretch;
  max-width: 1100px; margin: 0 auto;
}
.why-left p { font-size: .9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 40px; }
.why-icon-list { display: flex; flex-direction: column; gap: 28px; }
.why-icon-item { display: flex; align-items: flex-start; gap: 16px; }
.why-icon-box {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--charcoal); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.why-icon-item h4 {
  font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 5px;
}
.why-icon-item p { font-size: .85rem; color: var(--text-mid); line-height: 1.7; }
.why-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  align-self: stretch;
}
.why-card {
  background: var(--ivory-mid); border-radius: 10px;
  padding: 28px 24px; transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-card.why-card-dark { background: var(--charcoal); }
.why-card.why-card-wide { grid-column: 1 / -1; }
.why-card-icon { font-size: 1.4rem; margin-bottom: 16px; display: block; }
.why-card h4 {
  font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text); margin-bottom: 10px;
}
.why-card.why-card-dark h4 { color: rgba(245,240,232,.9); }
.why-card p { font-size: .85rem; color: var(--text-mid); line-height: 1.75; }
.why-card.why-card-dark p { color: rgba(245,240,232,.55); font-weight: 500; }

/* ─── PARTNERS / PROCESS ─── */
.process-section { background: var(--charcoal); }
.process-section .sec-label { color: var(--gold-light); }
.process-section .sec-label::before { background: var(--gold-light); }
.process-section .sec-title { color: var(--ivory); }
.process-section .sec-sub { color: rgba(245,240,232,.6); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 52px;
  border: 1px solid rgba(245,240,232,.1);
  border-radius: 10px; overflow: hidden;
}
.process-step {
  padding: 32px 24px;
  border-right: 1px solid rgba(245,240,232,.08);
  position: relative;
  transition: background .25s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(245,240,232,.04); }
.step-num-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; color: rgba(184,150,46,.2);
  font-weight: 700; line-height: 1; margin-bottom: 16px;
}
.process-step h3 { font-family: 'DM Sans', sans-serif; font-size: .92rem; font-weight: 600; color: var(--ivory); margin-bottom: 8px; }
.process-step p { font-size: .84rem; color: rgba(245,240,232,.5); line-height: 1.65; }
.process-connector {
  position: absolute; top: 32px; right: -14px;
  width: 28px; height: 1px; background: var(--gold);
  z-index: 2;
}
.process-step:last-child .process-connector { display: none; }

/* ─── MARKETS ─── */
.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 48px; }
.market-card {
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 8px; padding: 24px 18px; text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.market-card:hover { border-color: var(--charcoal); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.market-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.market-card h4 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .95rem; color: var(--text); margin-bottom: 6px; }
.market-card p { font-size: .85rem; color: var(--text-dim); line-height: 1.75; }

/* ─── GLOBAL ─── */
.global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.global-img-block { position: relative; }
.global-img-main { width: 100%; height: 380px; border-radius: 6px; overflow: hidden; }
.global-img-overlay {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--charcoal); color: var(--ivory);
  padding: 20px 24px; border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.global-img-overlay .num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold); font-weight: 700; display: block; line-height: 1; }
.global-img-overlay .lbl { font-size: .68rem; color: rgba(245,240,232,.55); letter-spacing: .08em; }
.global-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.gl-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: var(--ivory-mid); border: 1px solid var(--border-mid);
  border-radius: 6px;
}
.gl-flag { font-size: 1.3rem; flex-shrink: 0; }
.gl-name { font-size: .9rem; font-weight: 500; }
.gl-badge {
  margin-left: auto; font-size: .62rem; font-weight: 700; letter-spacing: .06em;
  padding: 3px 10px; border-radius: 20px;
}
.gl-active { background: rgba(30,30,30,.08); color: var(--charcoal); border: 1px solid var(--border-str); }
.gl-expand { background: rgba(184,150,46,.1); color: var(--gold); border: 1px solid rgba(184,150,46,.25); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--text); margin-bottom: 14px; }
.contact-text > p { font-size: .95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.cd-item { display: flex; gap: 14px; align-items: flex-start; }
.cd-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--ivory-mid); border: 1px solid var(--border-mid);
  border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.cd-item h4 { font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 700; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 3px; }
.cd-item p { font-size: .9rem; color: var(--text-dim); line-height: 1.75; }
.sample-box {
  background: var(--charcoal); color: var(--ivory);
  border-radius: 8px; padding: 22px 24px;
}
.sample-box h4 { font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 700; color: var(--gold-light); margin-bottom: 7px; }
.sample-box p { font-size: .85rem; color: rgba(245,240,232,.6); line-height: 1.65; }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 10px; padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { font-size: 1.5rem; color: var(--text); margin-bottom: 6px; }
.contact-form-card > p { font-size: .85rem; color: var(--text-dim); margin-bottom: 24px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.fg label { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }
.fg input, .fg select, .fg textarea {
  background: var(--ivory);
  border: 1px solid var(--border-mid);
  border-radius: 4px; padding: 10px 13px;
  color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: .88rem; outline: none;
  transition: border-color .2s; width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--charcoal); }
.fg textarea { resize: vertical; min-height: 80px; }
.fg select option { background: var(--ivory); }
.cb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 14px; }
.cb-item { display: flex; align-items: center; gap: 7px; font-size: .8rem; color: var(--text-mid); cursor: pointer; font-family: 'DM Sans', sans-serif; }
.cb-item input { accent-color: var(--charcoal); cursor: pointer; width: auto; }
.form-submit {
  width: 100%; background: var(--blue); color: #ffffff;
  border: none; cursor: pointer; padding: 14px;
  border-radius: 4px; font-weight: 700; font-size: .88rem;
  letter-spacing: .07em; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(0,119,182,0.25);
}
.form-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  padding: 0;
  font-family: 'DM Sans', sans-serif;
}

/* Top strip */
.footer-top-strip {
  background: var(--charcoal-2);
  padding: 32px max(5%, calc((100% - 1100px)/2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: .02em;
}
.footer-brand-tagline {
  font-size: .82rem;
  color: rgba(245,240,232,.4);
  margin-top: 4px;
  letter-spacing: .05em;
}
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,.5);
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* Main footer body */
.footer-body {
  padding: 48px max(5%, calc((100% - 1100px)/2)) 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-about p {
  font-size: .85rem;
  color: rgba(245,240,232,.38);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-contact-chip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-chip .chip-icon {
  font-size: .85rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-chip p {
  font-size: .85rem;
  color: rgba(245,240,232,.38);
  line-height: 1.5;
  margin: 0;
}
.footer-contact-chip a {
  color: rgba(245,240,232,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-contact-chip a:hover { color: var(--gold-light); }

.footer-col-title {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,150,26,.2);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li a {
  font-size: .85rem;
  color: rgba(245,240,232,.45);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: block;
}
.footer-col li a:hover {
  color: rgba(245,240,232,.9);
  padding-left: 4px;
}

/* Footer bottom bar */
.footer-bottom {
  padding: 18px max(5%, calc((100% - 1100px)/2));
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom-left {
  font-size: .72rem;
  color: rgba(245,240,232,.2);
  line-height: 1.6;
}
.footer-bottom-right {
  font-size: .72rem;
  color: rgba(245,240,232,.2);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .7s ease both; }
.fade-up-2 { animation: fadeUp .7s .12s ease both; }
.fade-up-3 { animation: fadeUp .7s .24s ease both; }
.fade-up-4 { animation: fadeUp .7s .36s ease both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero, .about-grid, .why-new-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-cards-grid { grid-template-columns: 1fr 1fr; }
  .hero::before { display: none; }
  .hero-visual { display: none; }
  .products-header { grid-template-columns: 1fr; gap: 24px; }
  .prod-items-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-body { grid-template-columns: 1fr 1fr; }
  .footer-top-strip { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 64px 5%; }
  .trust-bar { gap: 18px; }
  .footer-body { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .prod-items-grid { grid-template-columns: 1fr; }
}