/* ═══════════════════════════════════════════
   SKANDA INTERNATIONAL LTD — Global Styles
   skanda-international.com
═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:   #182b1c;
  --forest2:  #223829;
  --forest3:  #1a3020;
  --gold:     #c8941a;
  --gold-lt:  #e8b84b;
  --gold-pale:#f5e4b0;
  --terra:    #c25828;
  --cream:    #faf6ef;
  --cream2:   #f3ede2;
  --sand:     #e8dcc8;
  --ink:      #141410;
  --muted:    #6b6355;
  --white:    #ffffff;
  --pad-x:    clamp(1.5rem, 6vw, 5rem);
  --pad-y:    clamp(4rem, 8vw, 7rem);
  --radius:   4px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; line-height: 1.6; }

/* ── Noise texture ── */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

/* ════════════════════════════
   NAVIGATION
════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 500;
  background: rgba(24,43,28,0.97);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--pad-x);
  border-bottom: 1px solid rgba(200,148,26,.2);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.35); }

.nav-logo { text-decoration: none; display: inline-block; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--cream); letter-spacing: .01em; line-height: 1.15;
}
.nav-logo-text strong { color: var(--gold-lt); }
.nav-logo-text span {
  display: block; font-size: .58rem; font-weight: 400;
  color: rgba(232,184,75,.55); letter-spacing: .2em;
  text-transform: uppercase; font-family: 'Source Sans 3', sans-serif;
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-links a {
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(250,246,239,.6); text-decoration: none;
  padding: .4rem .75rem; border-radius: 2px;
  transition: color .2s, background .2s; font-weight: 500;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-lt); background: rgba(200,148,26,.1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: .3rem; }
.nav-dropdown > a::after { content: '▾'; font-size: .65rem; opacity: .6; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + .5rem); left: 0;
  background: var(--forest); border: 1px solid rgba(200,148,26,.2);
  border-radius: var(--radius); min-width: 200px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.3); z-index: 600;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: .65rem 1.1rem;
  font-size: .78rem; color: rgba(250,246,239,.65);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s, color .15s;
  letter-spacing: .05em; text-transform: uppercase;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: rgba(200,148,26,.15); color: var(--gold-lt); }

.nav-cta {
  background: var(--gold); color: var(--forest);
  padding: .55rem 1.3rem; border-radius: 2px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s, transform .15s; white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .25rem; }
.hamburger span { width: 22px; height: 2px; background: var(--cream); transition: .3s; display: block; }

/* ════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════ */
.page-hero {
  padding: calc(80px + 3.5rem) var(--pad-x) 3.5rem;
  background: var(--forest);
  position: relative; overflow: hidden;
}
.page-hero-deco {
  position: absolute; right: -5%; top: -20%;
  width: 50vw; height: 140%; pointer-events: none; opacity: .06;
}
.page-hero-deco svg { width: 100%; height: 100%; }

.page-hero-media {
  position: absolute;
  right: var(--pad-x);
  bottom: 2.2rem;
  width: min(42vw, 420px);
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200,148,26,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  opacity: .22;
  pointer-events: none;
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .page-hero-media { display: none; }
}


.breadcrumb {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(250,246,239,.4); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { margin: 0 .5rem; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700; color: var(--cream);
  line-height: 1.08; letter-spacing: -.02em; margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero-sub {
  font-size: clamp(.9rem, 1.4vw, 1.05rem); color: rgba(250,246,239,.6);
  max-width: 620px; line-height: 1.8; font-weight: 300;
}
.page-hero-bar {
  height: 3px; margin-top: 2.5rem;
  background: linear-gradient(90deg, var(--terra), var(--gold), var(--gold-lt), var(--gold), transparent);
}

/* ════════════════════════════
   TYPOGRAPHY
════════════════════════════ */
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -.02em;
}
h2 em { font-style: italic; color: var(--gold); }
h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; }

.section-eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terra); display: flex; align-items: center; gap: .65rem; margin-bottom: .75rem;
}
.section-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--terra); flex-shrink: 0; }
.section-eyebrow.light { color: var(--gold-lt); }
.section-eyebrow.light::before { background: var(--gold-lt); }

/* ════════════════════════════
   BUTTONS
════════════════════════════ */
.btn-gold {
  background: var(--gold); color: var(--forest);
  padding: .9rem 2.2rem; border-radius: 2px; text-decoration: none; display: inline-block;
  font-size: .83rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  transition: background .2s, transform .2s; cursor: pointer; border: none;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-forest {
  background: var(--forest); color: var(--cream);
  padding: .9rem 2.2rem; border-radius: 2px; text-decoration: none; display: inline-block;
  font-size: .83rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  transition: background .2s, transform .2s; cursor: pointer; border: none;
}
.btn-forest:hover { background: var(--forest2); transform: translateY(-2px); }

.btn-outline-gold {
  border: 1.5px solid var(--gold); color: var(--gold);
  padding: .9rem 2.2rem; border-radius: 2px; text-decoration: none; display: inline-block;
  font-size: .83rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--forest); }

.btn-ghost-light {
  border: 1.5px solid rgba(250,246,239,.35); color: var(--cream);
  padding: .9rem 2.2rem; border-radius: 2px; text-decoration: none; display: inline-block;
  font-size: .83rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase;
  transition: border-color .2s, background .2s;
}
.btn-ghost-light:hover { border-color: var(--gold-lt); background: rgba(255,255,255,.08); }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ════════════════════════════
   PRODUCT VISUAL CARDS (CSS photography)
════════════════════════════ */
.product-visual {
  width: 100%; border-radius: var(--radius);
  overflow: hidden; position: relative;
  aspect-ratio: 16/9;
}
.product-visual svg { width: 100%; height: 100%; display: block; }
.product-visual img { width: 100%; height: 100%; display: block; object-fit: cover; }


/* ════════════════════════════
   SECTIONS
════════════════════════════ */
.section { padding: var(--pad-y) var(--pad-x); }
.section-dark { background: var(--forest); color: var(--cream); }
.section-tint { background: var(--cream2); }
.section-sand { background: var(--sand); }

.container { max-width: 1200px; margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.grid-2-center { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ════════════════════════════
   QUALITY POINTS
════════════════════════════ */
.quality-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.quality-list li {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .85rem; background: var(--cream2);
  border-left: 3px solid var(--gold); border-radius: 0 3px 3px 0;
}
.ql-icon {
  width: 26px; height: 26px; background: linear-gradient(135deg, var(--gold), var(--terra));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: white; font-size: .7rem; font-weight: 700;
}
.ql-text strong { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .1rem; }
.ql-text span { font-size: .8rem; color: var(--muted); }
.quality-list.dark li { background: rgba(255,255,255,.05); border-left-color: var(--gold); }
.quality-list.dark .ql-text strong { color: var(--cream); }
.quality-list.dark .ql-text span { color: rgba(250,246,239,.5); }

/* ════════════════════════════
   PRODUCT LIST
════════════════════════════ */
.prod-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.prod-list li {
  display: flex; align-items: center; gap: .65rem;
  font-size: .875rem; color: var(--muted); padding: .4rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.prod-list li:last-child { border-bottom: none; }
.prod-list li::before { content: '—'; color: var(--gold); font-size: .7rem; flex-shrink: 0; }
.prod-list.light li { color: rgba(250,246,239,.65); border-bottom-color: rgba(255,255,255,.07); }

/* ════════════════════════════
   CARDS
════════════════════════════ */
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--sand);
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.card-dark {
  background: var(--forest2); border-radius: var(--radius);
  padding: 2rem; border: 1px solid rgba(200,148,26,.12);
  transition: background .25s;
}
.card-dark:hover { background: var(--forest3); }
.card-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.card h3 { margin-bottom: .6rem; font-size: 1.15rem; }
.card p, .card-dark p { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.card-dark p { color: rgba(250,246,239,.55); }
.card-dark h3 { color: var(--cream); }

/* ════════════════════════════
   FAQ
════════════════════════════ */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.1); }
.faq-item.dark { border-bottom-color: rgba(255,255,255,.08); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.2rem 0; cursor: pointer; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 1rem; font-family: 'Source Sans 3', sans-serif;
}
.faq-q-text { font-size: .925rem; font-weight: 600; color: var(--ink); line-height: 1.4; }
.faq-item.dark .faq-q-text { color: var(--cream); }
.faq-icon {
  width: 22px; height: 22px; border: 1.5px solid var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .05rem; transition: background .2s;
}
.faq-icon svg { width: 10px; height: 10px; stroke: var(--gold); transition: transform .3s; }
.faq-item.open .faq-icon { background: var(--gold); }
.faq-item.open .faq-icon svg { stroke: var(--forest); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  font-size: .875rem; color: var(--muted); line-height: 1.8;
}
.faq-item.dark .faq-a { color: rgba(250,246,239,.55); }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.2rem; }

/* ════════════════════════════
   CTA BANNER
════════════════════════════ */
.cta-section {
  padding: var(--pad-y) var(--pad-x);
  background: linear-gradient(140deg, var(--terra) 0%, #9e3f15 45%, var(--forest) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='38' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.cta-section-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-section h2 { font-family: 'Cormorant Garamond', serif; color: var(--cream); margin-bottom: 1rem; font-size: clamp(1.8rem, 3.5vw, 3rem); }
.cta-section p { font-size: .975rem; color: rgba(250,246,239,.75); margin-bottom: 2.5rem; line-height: 1.8; font-weight: 300; }

/* ════════════════════════════
   CONTACT FORM
════════════════════════════ */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
input, textarea, select {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid var(--sand); border-radius: 2px;
  background: var(--white); font-family: 'Source Sans 3', sans-serif;
  font-size: .9rem; color: var(--ink); transition: border-color .2s; outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,148,26,.1); }
textarea { min-height: 130px; resize: vertical; }
.form-submit {
  background: var(--forest); color: var(--cream); padding: 1rem;
  border: none; border-radius: 2px; font-family: 'Source Sans 3', sans-serif;
  font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: background .2s, transform .15s;
}
.form-submit:hover { background: var(--forest2); transform: translateY(-1px); }

/* ════════════════════════════
   MARQUEE
════════════════════════════ */
.marquee { background: var(--gold); overflow: hidden; padding: .8rem 0; display: flex; }
.marquee-track {
  display: flex; gap: 2.5rem; white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--forest);
  display: flex; align-items: center; gap: 1.5rem;
}
.marquee-item::after { content: '◆'; font-size: .4rem; opacity: .5; }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer {
  background: var(--ink); color: var(--cream);
  padding: 4rem var(--pad-x) 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem;
}
.footer-brand p { font-size: .8rem; color: rgba(250,246,239,.38); line-height: 1.75; margin-top: 1rem; max-width: 280px; }
.footer-col-title { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 700; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .8rem; color: rgba(250,246,239,.38); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: .73rem; color: rgba(250,246,239,.22);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(250,246,239,.25); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--cream); }
.compliance-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.badge {
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(250,246,239,.4); border: 1px solid rgba(200,148,26,.25);
  padding: .25rem .7rem; border-radius: 20px;
  display: flex; align-items: center; gap: .35rem;
}
.badge::before { content: '✓'; color: var(--gold); }

/* ════════════════════════════
   TRUST BAR
════════════════════════════ */
.trust-bar {
  display: flex; gap: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.1); flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-item svg { flex-shrink: 0; }
.trust-label { font-size: .78rem; color: var(--muted); line-height: 1.3; }
.trust-label strong { display: block; color: var(--ink); font-size: .875rem; margin-bottom: .1rem; }

/* ════════════════════════════
   SCROLL REVEAL
════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ════════════════════════════
   ANIMATIONS
════════════════════════════ */
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.75); } }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .grid-2, .grid-2-center { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; gap: 1.2rem; }
}
