/* ============================================================
   ADINATH TRADERS — Light Theme CSS
   Fonts: DM Serif Display + Plus Jakarta Sans
   Colors: White base, Amber accent, Charcoal text
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --amber:      #F07B00;
  --amber-lt:   #FF9A2E;
  --amber-pale: #FFF3E0;
  --amber-bg:   #FEF9F2;
  --charcoal:   #1A1A1A;
  --ink:        #2D2D2D;
  --slate:      #555555;
  --muted:      #888888;
  --border:     #E8E0D5;
  --border-lt:  #F0EAE2;
  --white:      #FFFFFF;
  --surface:    #FAFAF8;
  --surface2:   #F5F0E8;
  --success:    #2A9D5A;
}

/* ── RESET ──────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Plus Jakarta Sans', sans-serif;
  background:var(--white);
  color:var(--ink);
  line-height:1.6;
  overflow-x:hidden;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
button { font-family:inherit; }

/* ── CURSOR ─────────────────── */
.c-dot, .c-ring {
  position:fixed; border-radius:50%;
  pointer-events:none; z-index:9999;
  transform:translate(-50%,-50%);
}
.c-dot { width:7px; height:7px; background:var(--amber); transition:transform .1s; }
.c-ring {
  width:32px; height:32px;
  border:1.5px solid rgba(240,123,0,.5);
  transition:width .18s, height .18s, border-color .18s;
}
@media(max-width:768px){ .c-dot,.c-ring{display:none} }

/* ── UTILS ──────────────────── */
.container { max-width:1280px; margin:0 auto; padding:0 4rem; }
.container-full { max-width:1280px; margin:0 auto; padding:0 4rem; }
section { padding:6rem 0; }

.sec-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-size:.75rem; font-weight:700;
  letter-spacing:3px; text-transform:uppercase; color:var(--amber);
  margin-bottom:.8rem;
}
.sec-eyebrow::before { content:''; width:28px; height:2px; background:var(--amber); }

.sec-title {
  font-family:'DM Serif Display', serif;
  font-size:clamp(2.2rem, 4vw, 3.8rem);
  color:var(--charcoal); line-height:1.1; letter-spacing:-.5px;
}

.sec-sub {
  font-size:1.05rem; font-weight:400; color:var(--slate);
  max-width:540px; line-height:1.75; margin-top:.8rem;
}

/* ── BUTTONS ────────────────── */
.btn-fill {
  display:inline-flex; align-items:center; gap:8px;
  padding:.85rem 2.2rem;
  background:var(--amber); color:var(--white);
  font-size:.9rem; font-weight:700; letter-spacing:.5px;
  border:none; cursor:pointer; border-radius:4px;
  transition:background .25s, transform .25s, box-shadow .25s;
  box-shadow:0 4px 20px rgba(240,123,0,.25);
}
.btn-fill:hover { background:var(--amber-lt); transform:translateY(-2px); box-shadow:0 8px 30px rgba(240,123,0,.35); }

.btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  padding:.85rem 2.2rem;
  background:transparent; color:var(--amber);
  font-size:.9rem; font-weight:700; letter-spacing:.5px;
  border:2px solid var(--amber); cursor:pointer; border-radius:4px;
  transition:background .25s, color .25s, transform .25s;
}
.btn-outline:hover { background:var(--amber); color:var(--white); transform:translateY(-2px); }

.btn-light {
  display:inline-flex; align-items:center; gap:8px;
  padding:.85rem 2.2rem;
  background:var(--white); color:var(--amber);
  font-size:.9rem; font-weight:700; letter-spacing:.5px;
  border:2px solid var(--white); cursor:pointer; border-radius:4px;
  transition:background .25s, color .25s, transform .25s;
}
.btn-light:hover { background:var(--amber-pale); border-color:var(--amber-pale); transform:translateY(-2px); }

/* ── NAVBAR ─────────────────── */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:800;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border-lt);
  transition:box-shadow .3s, padding .3s;
}
.navbar.scrolled { box-shadow:0 4px 30px rgba(0,0,0,.08); }

.nav-inner {
  max-width:1280px; margin:0 auto; padding:.8rem 4rem;
  display:flex; align-items:center; justify-content:space-between;
}
.logo-wrap { display:flex; align-items:center; gap:8px; }
.logo-wrap img { height:44px; width:auto; object-fit:contain; }
.logo-wrap img + img { height:38px; }
.logo-name {
  font-family:'DM Serif Display', serif;
  font-size:1.4rem; color:var(--charcoal);
  letter-spacing:-.2px; white-space:nowrap;
}
.logo-name span { color:var(--amber); }

.nav-links { display:flex; list-style:none; gap:2.5rem; align-items:center; }
.nav-links a {
  font-size:.85rem; font-weight:600; letter-spacing:.5px;
  text-transform:uppercase; color:var(--slate);
  transition:color .25s; position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0;
  height:2px; background:var(--amber);
  transform:scaleX(0); transform-origin:center;
  transition:transform .25s;
}
.nav-links a:hover, .nav-links a.active { color:var(--amber); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }
.nav-cta {
  padding:.6rem 1.6rem; background:var(--amber); color:var(--white)!important;
  border-radius:4px; font-size:.82rem!important; font-weight:700!important;
  letter-spacing:.5px; box-shadow:0 4px 15px rgba(240,123,0,.3);
  transition:background .25s, transform .25s, box-shadow .25s!important;
}
.nav-cta::after { display:none!important; }
.nav-cta:hover { background:var(--amber-lt)!important; transform:translateY(-1px); box-shadow:0 6px 20px rgba(240,123,0,.4)!important; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.hamburger span { width:24px; height:2px; background:var(--charcoal); border-radius:2px; transition:all .3s; display:block; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mob-nav {
  display:none; position:fixed; inset:0; background:var(--white);
  flex-direction:column; align-items:center; justify-content:center;
  gap:2rem; z-index:790;
}
.mob-nav.open { display:flex; }
.mob-nav a {
  font-family:'DM Serif Display', serif; font-size:2.5rem;
  color:var(--charcoal); transition:color .25s;
}
.mob-nav a:hover { color:var(--amber); }

/* ── HERO ───────────────────── */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center; overflow:hidden;
  background:var(--surface);
}
.hero-pattern {
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(240,123,0,.12) 1px, transparent 0);
  background-size:40px 40px;
}
.hero-blob {
  position:absolute; right:-5%; top:8%; width:58%; height:90%;
  background:var(--amber-pale);
  clip-path:polygon(10% 0%, 100% 0%, 100% 100%, 0% 90%);
  overflow:hidden;
}
.hero-blob img {
  width:100%; height:100%; object-fit:cover; opacity:.9;
  mix-blend-mode:multiply;
}

.hero-inner {
  position:relative; z-index:2;
  padding:0 4rem; padding-top:7rem; padding-bottom:4rem;
  max-width:640px; margin-left:6vw;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(240,123,0,.1); border:1px solid rgba(240,123,0,.25);
  padding:.4rem 1rem; border-radius:50px;
  font-size:.75rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--amber);
  margin-bottom:1.8rem;
  opacity:0; animation:fadeUp .7s .2s forwards;
}
.hero-badge .dot { width:6px; height:6px; border-radius:50%; background:var(--amber); animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero-h1 {
  font-family:'DM Serif Display', serif;
  font-size:clamp(3.2rem, 7vw, 6.5rem);
  line-height:1; color:var(--charcoal); letter-spacing:-1px;
  opacity:0; animation:fadeUp .8s .35s forwards;
}
.hero-h1 em { font-style:italic; color:var(--amber); }
.hero-h1 .outline-txt {
  -webkit-text-stroke:2px var(--charcoal); color:transparent;
}
.hero-p {
  margin-top:1.5rem; font-size:1.1rem; font-weight:400;
  color:var(--slate); max-width:460px; line-height:1.75;
  opacity:0; animation:fadeUp .8s .5s forwards;
}
.hero-btns {
  display:flex; gap:1rem; margin-top:2.2rem; flex-wrap:wrap;
  opacity:0; animation:fadeUp .8s .65s forwards;
}
.hero-trust {
  display:flex; align-items:center; gap:1.5rem; margin-top:2.5rem; flex-wrap:wrap;
  opacity:0; animation:fadeUp .8s .8s forwards;
}
.trust-item {
  display:flex; align-items:center; gap:.5rem;
  font-size:.82rem; font-weight:600; color:var(--slate);
}
.trust-check {
  width:18px; height:18px; border-radius:50%; background:var(--amber);
  display:flex; align-items:center; justify-content:center;
  font-size:.6rem; color:white; flex-shrink:0;
}

/* Scroll indicator */
.hero-scroll {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:6px;
  font-size:.7rem; font-weight:600; letter-spacing:3px; text-transform:uppercase;
  color:var(--muted); opacity:0; animation:fadeUp .8s 1.1s forwards;
}
.scroll-bar { width:1px; height:48px; background:linear-gradient(var(--amber),transparent); animation:scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ── TICKER ─────────────────── */
.ticker { background:var(--amber); overflow:hidden; padding:.5rem 0; }
.ticker-track { display:flex; width:max-content; animation:ticker 35s linear infinite; }
.ticker-track:hover { animation-play-state:paused; }
.ticker-item {
  display:flex; align-items:center; gap:.8rem;
  padding:.35rem 2.5rem;
  font-size:.82rem; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:var(--white); white-space:nowrap;
  border-right:1px solid rgba(255,255,255,.25);
}
.ticker-sep { width:4px; height:4px; border-radius:50%; background:rgba(255,255,255,.5); flex-shrink:0; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── STATS ──────────────────── */
.stats-row {
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.stat-box {
  padding:3rem 2rem; text-align:center;
  border-right:1px solid var(--border);
  position:relative; transition:background .3s;
}
.stat-box:last-child { border-right:none; }
.stat-box:hover { background:var(--amber-pale); }
.stat-num {
  font-family:'DM Serif Display', serif;
  font-size:3.5rem; color:var(--amber); line-height:1;
}
.stat-suffix { font-size:2rem; color:var(--amber-lt); }
.stat-label {
  font-size:.78rem; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:var(--muted); margin-top:.5rem;
}
.stat-icon { font-size:1.6rem; margin-bottom:.8rem; display:block; }

/* ── ABOUT ──────────────────── */
.about-section { background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; }
.about-visual { position:relative; }
.about-img-wrap {
  position:relative; border-radius:4px; overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.1);
}
.about-img-wrap img {
  width:100%; height:520px; object-fit:cover; display:block;
  transition:transform .6s ease;
}
.about-img-wrap:hover img { transform:scale(1.03); }

.about-accent {
  position:absolute; bottom:-1.5rem; right:-1.5rem;
  background:var(--amber); color:var(--white);
  padding:1.4rem 2rem; border-radius:4px;
  box-shadow:0 10px 30px rgba(240,123,0,.35);
}
.about-accent .n { font-family:'DM Serif Display', serif; font-size:3rem; line-height:1; }
.about-accent .l { font-size:.72rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; opacity:.85; margin-top:.2rem; }

.about-img-second {
  position:absolute; top:-2rem; left:-2rem;
  width:160px; height:120px;
  border:4px solid var(--white);
  border-radius:4px; overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}
.about-img-second img { width:100%; height:100%; object-fit:cover; }

.about-text { display:flex; flex-direction:column; gap:1.2rem; }
.about-text p { font-size:1rem; color:var(--slate); line-height:1.8; }
.about-divider { width:60px; height:3px; background:var(--amber); border-radius:2px; margin:.5rem 0; }

.check-list { list-style:none; display:flex; flex-direction:column; gap:.7rem; }
.check-list li {
  display:flex; align-items:flex-start; gap:10px;
  font-size:.95rem; font-weight:500; color:var(--ink);
}
.check-list li::before {
  content:'✓'; flex-shrink:0;
  width:20px; height:20px; background:var(--amber); color:white;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:.65rem; font-weight:800; line-height:20px; text-align:center;
  margin-top:1px;
}

/* ── BRANDS MARQUEE ─────────── */
.brands-section { background:var(--surface2); padding:3rem 0; overflow:hidden; }
.brands-label {
  text-align:center;
  font-size:.72rem; font-weight:700; letter-spacing:3px; text-transform:uppercase;
  color:var(--muted); margin-bottom:1.8rem;
}
.brand-track { display:flex; gap:0; width:max-content; animation:ticker 20s linear infinite; }
.brand-item {
  display:flex; align-items:center; gap:10px; padding:.6rem 2.5rem;
  border-right:1px solid var(--border);
  font-size:.9rem; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  color:var(--slate); white-space:nowrap; transition:color .3s;
}
.brand-item:hover { color:var(--amber); }
.brand-dot { width:8px; height:8px; border-radius:50%; background:var(--amber); opacity:.6; flex-shrink:0; }

/* ── PRODUCTS ───────────────── */
.products-section { background:var(--surface); }
.products-header { text-align:center; margin-bottom:4rem; }
.products-header .sec-sub { margin:0.8rem auto 0; }

/* Filter tabs */
.prod-filters {
  display:flex; justify-content:center; gap:.6rem; flex-wrap:wrap; margin-bottom:3rem;
}
.pf-btn {
  padding:.5rem 1.4rem;
  background:var(--white); border:1.5px solid var(--border);
  border-radius:50px; font-size:.8rem; font-weight:700; letter-spacing:1px;
  text-transform:uppercase; color:var(--slate); cursor:pointer;
  transition:background .25s, color .25s, border-color .25s;
}
.pf-btn:hover, .pf-btn.active {
  background:var(--amber); border-color:var(--amber); color:var(--white);
}

.prod-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(250px, 1fr));
  gap:1.5rem;
}
.prod-card {
  background:var(--white); border-radius:12px;
  border:1px solid var(--border-lt);
  overflow:hidden; cursor:pointer;
  transition:transform .35s, box-shadow .35s;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
}
.prod-card:hover { transform:translateY(-6px); box-shadow:0 16px 40px rgba(240,123,0,.14); }
.prod-img-wrap {
  position:relative; height:220px;
  background:var(--amber-pale); overflow:hidden;
}
.prod-img-wrap img {
  width:100%; height:100%; object-fit:contain; padding:1.5rem;
  transition:transform .5s ease;
}
.prod-card:hover .prod-img-wrap img { transform:scale(1.08); }
.prod-tag {
  position:absolute; top:.8rem; right:.8rem;
  padding:.2rem .7rem; background:var(--amber); color:var(--white);
  font-size:.68rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; border-radius:50px;
}
.prod-info { padding:1.2rem 1.4rem 1.4rem; }
.prod-cat {
  font-size:.7rem; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:var(--amber); margin-bottom:.3rem;
}
.prod-name {
  font-family:'DM Serif Display', serif; font-size:1.2rem; color:var(--charcoal);
}
.prod-desc { font-size:.82rem; color:var(--muted); margin-top:.3rem; line-height:1.5; }

/* ── SERVICES ───────────────── */
.services-section { background:var(--white); }
.services-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:5rem; align-items:start; }
.services-sticky { position:sticky; top:7rem; }

.svc-list { display:flex; flex-direction:column; gap:0; margin-top:3rem; }
.svc-row {
  display:grid; grid-template-columns:56px 1fr;
  gap:1.2rem; align-items:start;
  padding:1.4rem 1rem;
  border-bottom:1px solid var(--border-lt);
  cursor:default; border-radius:6px;
  transition:background .25s, padding .25s;
}
.svc-row:hover { background:var(--amber-pale); padding-left:1.5rem; }
.svc-n {
  font-family:'DM Serif Display', serif; font-size:2rem;
  color:var(--border); line-height:1; padding-top:.1rem;
  transition:color .25s;
}
.svc-row:hover .svc-n { color:var(--amber); }
.svc-nm {
  font-size:1rem; font-weight:700; color:var(--charcoal); margin-bottom:.25rem;
}
.svc-d { font-size:.88rem; color:var(--slate); line-height:1.6; }

/* ── WHY US ─────────────────── */
.why-section { background:var(--charcoal); }
.why-section .sec-title { color:var(--white); }
.why-section .sec-sub { color:rgba(255,255,255,.6); }
.why-section .sec-eyebrow { color:var(--amber-lt); }
.why-section .sec-eyebrow::before { background:var(--amber-lt); }
.why-header { text-align:center; margin-bottom:4rem; }
.why-header .sec-sub { margin:0.8rem auto 0; }

.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.why-card {
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08);
  border-radius:12px; padding:2rem 1.8rem;
  transition:background .3s, border-color .3s, transform .3s;
}
.why-card:hover {
  background:rgba(240,123,0,.1); border-color:rgba(240,123,0,.3);
  transform:translateY(-4px);
}
.why-icon {
  width:48px; height:48px; border-radius:10px;
  background:rgba(240,123,0,.15); border:1px solid rgba(240,123,0,.25);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; margin-bottom:1.2rem;
}
.why-title { font-size:1rem; font-weight:700; color:var(--white); margin-bottom:.5rem; }
.why-desc { font-size:.88rem; color:rgba(255,255,255,.55); line-height:1.65; }

/* ── TESTIMONIALS ───────────── */
.testi-section { background:var(--surface); }
.testi-header { text-align:center; margin-bottom:4rem; }
.testi-header .sec-sub { margin:.8rem auto 0; }

.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.testi-card {
  background:var(--white); border:1px solid var(--border-lt);
  border-radius:12px; padding:2rem;
  box-shadow:0 2px 16px rgba(0,0,0,.04);
  transition:box-shadow .3s, transform .3s;
}
.testi-card:hover { box-shadow:0 12px 40px rgba(240,123,0,.1); transform:translateY(-4px); }
.testi-stars { color:var(--amber); font-size:1rem; letter-spacing:2px; margin-bottom:1rem; }
.testi-text { font-size:.95rem; color:var(--slate); line-height:1.75; font-style:italic; margin-bottom:1.2rem; }
.testi-author { display:flex; align-items:center; gap:.8rem; }
.testi-av {
  width:42px; height:42px; border-radius:50%;
  background:var(--amber); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.9rem; flex-shrink:0;
}
.testi-name { font-weight:700; font-size:.9rem; color:var(--charcoal); }
.testi-role { font-size:.78rem; color:var(--muted); }

/* ── CONTACT ────────────────── */
.contact-section { background:var(--white); }
.contact-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:5rem; align-items:start; }

.cinfo-list { display:flex; flex-direction:column; gap:1rem; margin-top:2rem; }
.cinfo-item {
  display:flex; align-items:flex-start; gap:1rem;
  padding:1.2rem; border-radius:10px;
  background:var(--surface); border:1px solid var(--border-lt);
  transition:border-color .25s, box-shadow .25s;
}
.cinfo-item:hover { border-color:rgba(240,123,0,.3); box-shadow:0 4px 20px rgba(240,123,0,.08); }
.cinfo-ico {
  width:40px; height:40px; border-radius:8px;
  background:var(--amber-pale); color:var(--amber);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
}
.cinfo-item h4 { font-size:.78rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--amber); margin-bottom:.25rem; }
.cinfo-item p, .cinfo-item a { font-size:.9rem; color:var(--slate); line-height:1.5; }
.cinfo-item a:hover { color:var(--amber); }

.contact-form-box {
  background:var(--surface); border:1px solid var(--border);
  border-radius:16px; padding:2.5rem;
  box-shadow:0 8px 40px rgba(0,0,0,.06);
}
.form-grid2 { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.fg-full { grid-column:1/-1; }
.fg { display:flex; flex-direction:column; gap:.4rem; }
.fg label {
  font-size:.72rem; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:var(--muted);
}
.fg input, .fg select, .fg textarea {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:8px; padding:.75rem 1rem;
  font-family:inherit; font-size:.9rem; color:var(--ink);
  transition:border-color .25s, box-shadow .25s; outline:none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color:var(--amber); box-shadow:0 0 0 3px rgba(240,123,0,.1);
}
.fg textarea { resize:vertical; min-height:120px; }
.form-submit {
  width:100%; padding:1rem; margin-top:1rem;
  background:var(--amber); color:var(--white);
  font-family:inherit; font-size:1rem; font-weight:700; letter-spacing:.5px;
  border:none; border-radius:8px; cursor:pointer;
  display:flex; align-items:center; justify-content:center; gap:8px;
  box-shadow:0 4px 20px rgba(240,123,0,.3);
  transition:background .25s, transform .25s, box-shadow .25s;
}
.form-submit:hover { background:var(--amber-lt); transform:translateY(-2px); box-shadow:0 8px 30px rgba(240,123,0,.4); }

/* ── CTA BANNER ─────────────── */
.cta-banner {
  background:var(--amber); padding:5rem 4rem;
  text-align:center; position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0);
  background-size:30px 30px;
}
.cta-banner h2 {
  font-family:'DM Serif Display', serif;
  font-size:clamp(2rem, 4vw, 3.2rem); color:var(--white); position:relative;
}
.cta-banner p { font-size:1.1rem; color:rgba(255,255,255,.85); max-width:540px; margin:.8rem auto 2rem; position:relative; }

/* ── FOOTER ─────────────────── */
footer {
  background:var(--charcoal); color:rgba(255,255,255,.7);
  padding:5rem 0 2rem;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr; gap:3.5rem; margin-bottom:3.5rem; }
.footer-about .logo-name { color:var(--white); }
.footer-about p { font-size:.9rem; line-height:1.75; margin-top:1rem; max-width:280px; color:rgba(255,255,255,.55); }
.footer-socials { display:flex; gap:.6rem; margin-top:1.5rem; flex-wrap:wrap; }
.fsoc {
  padding:.4rem .9rem; border:1px solid rgba(255,255,255,.15);
  border-radius:4px; font-size:.72rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  color:rgba(255,255,255,.55); transition:border-color .25s, color .25s;
}
.fsoc:hover { border-color:var(--amber); color:var(--amber); }
.footer-col h5 {
  font-size:.72rem; font-weight:700; letter-spacing:3px; text-transform:uppercase;
  color:var(--amber); margin-bottom:1.2rem; padding-bottom:.8rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.6rem; }
.footer-col ul li a { font-size:.88rem; color:rgba(255,255,255,.5); transition:color .25s; }
.footer-col ul li a:hover { color:var(--amber); }
.footer-col p { font-size:.88rem; color:rgba(255,255,255,.5); line-height:1.7; }
.footer-col a { color:rgba(255,255,255,.5); transition:color .25s; }
.footer-col a:hover { color:var(--amber); }

.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:2rem; border-top:1px solid rgba(255,255,255,.08);
  font-size:.78rem; color:rgba(255,255,255,.3);
  flex-wrap:wrap; gap:1rem;
}
.footer-legal { display:flex; gap:2rem; }
.footer-legal a { color:rgba(255,255,255,.3); transition:color .25s; }
.footer-legal a:hover { color:var(--amber); }

/* ── PRODUCT PAGE ───────────── */
.page-hero {
  padding:9rem 4rem 5rem;
  background:var(--surface);
  text-align:center;
  border-bottom:1px solid var(--border);
}
.page-hero h1 { font-family:'DM Serif Display', serif; font-size:clamp(2.5rem, 5vw, 4rem); color:var(--charcoal); }
.page-hero p { font-size:1.05rem; color:var(--slate); max-width:540px; margin:.8rem auto 0; }
.page-hero-bc { display:flex; align-items:center; justify-content:center; gap:.5rem; margin-bottom:1rem; font-size:.82rem; color:var(--muted); }
.page-hero-bc a { color:var(--amber); }
.page-hero-bc::before { content:''; }

.prod-cat-section { padding:4rem 0; }
.prod-cat-header {
  display:flex; align-items:center; gap:1.2rem;
  margin-bottom:2rem; padding-bottom:1rem;
  border-bottom:2px solid var(--amber);
}
.prod-cat-header h2 { font-family:'DM Serif Display', serif; font-size:1.8rem; color:var(--charcoal); }
.prod-cat-badge {
  padding:.2rem .8rem; background:var(--amber-pale); color:var(--amber);
  border-radius:50px; font-size:.72rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
}

/* ── ABOUT PAGE ─────────────── */
.about-page-section { padding:4rem 0; }
.mission-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-top:3rem; }
.mission-card {
  padding:2rem 1.8rem; border-radius:12px;
  border:1px solid var(--border-lt); background:var(--surface);
  transition:box-shadow .3s, transform .3s;
}
.mission-card:hover { box-shadow:0 12px 40px rgba(240,123,0,.1); transform:translateY(-4px); }
.mission-icon { font-size:2rem; margin-bottom:1rem; }
.mission-title { font-family:'DM Serif Display', serif; font-size:1.4rem; color:var(--charcoal); margin-bottom:.5rem; }
.mission-text { font-size:.9rem; color:var(--slate); line-height:1.7; }

/* ── CONTACT PAGE ───────────── */
.map-wrap { border-radius:12px; overflow:hidden; margin-top:3rem; box-shadow:0 8px 30px rgba(0,0,0,.1); }

/* ── ANIMATIONS ─────────────── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform:none; }
.reveal-l { opacity:0; transform:translateX(-28px); transition:opacity .6s ease, transform .6s ease; }
.reveal-l.in { opacity:1; transform:none; }
.reveal-r { opacity:0; transform:translateX(28px); transition:opacity .6s ease, transform .6s ease; }
.reveal-r.in { opacity:1; transform:none; }

/* ── RESPONSIVE ─────────────── */
@media(max-width:1100px) {
  .container, .container-full { padding:0 2.5rem; }
  .hero-blob { display:none; }
  .hero-inner { max-width:100%; padding:7rem 2.5rem 4rem; margin:0; }
  .about-grid, .services-grid, .contact-grid { grid-template-columns:1fr; }
  .services-sticky { position:static; margin-bottom:2rem; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2.5rem; }
  .stats-row { grid-template-columns:repeat(2,1fr); }
  .stat-box:nth-child(2) { border-right:none; }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .testi-grid { grid-template-columns:1fr 1fr; }
  .mission-grid { grid-template-columns:1fr 1fr; }
  .nav-inner { padding:.8rem 2.5rem; }
}
@media(max-width:768px) {
  .nav-inner { padding:.7rem 1.5rem; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  section { padding:4rem 0; }
  .container, .container-full { padding:0 1.5rem; }
  .hero-inner { padding:6rem 1.5rem 3rem; }
  .hero-h1 { font-size:3rem; }
  .stats-row { grid-template-columns:1fr 1fr; }
  .stat-box { padding:2rem 1rem; }
  .why-grid { grid-template-columns:1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .mission-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .footer-legal { justify-content:center; }
  .hero-btns { flex-direction:column; }
  .form-grid2 { grid-template-columns:1fr; }
  .about-accent { bottom:-.5rem; right:-.5rem; }
  .about-img-second { display:none; }
}
@media(max-width:480px) {
  .hero-h1 { font-size:2.4rem; }
  .sec-title { font-size:2rem; }
  .stat-num { font-size:2.8rem; }
  .prod-grid { grid-template-columns:1fr; }
}