/* =========================================================
   SANSKRITI ECOMMERCE — Global Stylesheet
   Heritage-inspired, modern, animated
   ========================================================= */

:root {
  --bg: #120a14;
  --bg-2: #1c0f1f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.10);
  --text: #f6ecdf;
  --text-dim: #c9b8a8;
  --muted: #9d8a7c;

  --saffron: #ff9c2f;
  --gold: #f7c948;
  --maroon: #8c1d3f;
  --rose: #e0457b;
  --teal: #1bb5a0;
  --plum: #5b1d63;

  --grad-warm: linear-gradient(135deg, #ff9c2f 0%, #e0457b 50%, #8c1d3f 100%);
  --grad-royal: linear-gradient(135deg, #f7c948 0%, #ff9c2f 40%, #8c1d3f 100%);
  --grad-cool: linear-gradient(135deg, #1bb5a0 0%, #5b1d63 100%);

  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --radius-sm: 12px;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", system-ui, sans-serif;
}

/* ----------------------------- Reset ----------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--saffron); color: #1a0f10; }

/* Decorative animated background layer */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(40% 50% at 15% 20%, rgba(255, 156, 47, 0.20), transparent 60%),
    radial-gradient(35% 45% at 85% 15%, rgba(224, 69, 123, 0.18), transparent 60%),
    radial-gradient(45% 55% at 75% 85%, rgba(27, 181, 160, 0.16), transparent 60%),
    radial-gradient(40% 50% at 10% 90%, rgba(91, 29, 99, 0.22), transparent 60%),
    var(--bg);
  animation: auroraShift 18s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0%   { filter: hue-rotate(0deg) saturate(1); transform: scale(1); }
  100% { filter: hue-rotate(25deg) saturate(1.15); transform: scale(1.08); }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ----------------------------- Layout ----------------------------- */
.container {
  width: min(92%, var(--maxw));
  margin-inline: auto;
}

section { position: relative; padding: 110px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
}
.section-title .accent {
  background: var(--grad-royal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  max-width: 620px;
  color: var(--text-dim);
  font-size: 1.05rem;
}
.center { text-align: center; }
.center .section-sub { margin-inline: auto; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  --pad: 15px 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--pad);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--grad-warm);
  color: #fff;
  box-shadow: 0 12px 30px rgba(224, 69, 123, 0.35);
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(224, 69, 123, 0.5);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn-primary:hover::after { transform: translateX(120%); }

.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  color: var(--gold);
}

/* ----------------------------- Navbar ----------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(18, 10, 20, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.nav.scrolled .nav-inner { padding: 13px 0; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand .mark {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--grad-royal);
  color: #1a0f10;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(247, 201, 72, 0.35);
  animation: floaty 4s ease-in-out infinite;
}
.brand b { color: var(--gold); }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: var(--muted);
  font-weight: 500;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-6px) rotate(4deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--grad-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.menu-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  width: 44px; height: 44px;
  border-radius: 12px;
  cursor: pointer;
  color: var(--text);
  font-size: 1.3rem;
}

/* ----------------------------- Hero ----------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(27, 181, 160, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(27, 181, 160, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(27, 181, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 181, 160, 0); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero h1 .shine {
  background: var(--grad-royal);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}
@keyframes shine {
  to { background-position: 200% center; }
}
.hero p.lead {
  font-size: 1.12rem;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  font-family: var(--font-head);
  font-size: 2.1rem;
  display: block;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats .stat span { font-size: 0.85rem; color: var(--muted); }

/* Hero visual */
.hero-visual { position: relative; height: 520px; }
.hero-photo {
  position: absolute;
  inset: 30px 24px 30px 24px;
  width: calc(100% - 48px);
  height: calc(100% - 60px);
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  filter: saturate(1.08) contrast(1.03);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  mix-blend-mode: screen;
  z-index: 1;
}
.orb-1 {
  width: 340px; height: 340px;
  top: 40px; left: 30px;
  background: radial-gradient(circle at 30% 30%, #ff9c2f, #8c1d3f);
  animation: orbit1 14s ease-in-out infinite;
  opacity: 0.85;
}
.orb-2 {
  width: 200px; height: 200px;
  bottom: 30px; right: 10px;
  background: radial-gradient(circle at 30% 30%, #1bb5a0, #5b1d63);
  animation: orbit2 11s ease-in-out infinite;
  opacity: 0.8;
}
.orb-3 {
  width: 140px; height: 140px;
  top: 0; right: 80px;
  background: radial-gradient(circle at 30% 30%, #f7c948, #e0457b);
  animation: orbit1 9s ease-in-out infinite reverse;
  opacity: 0.8;
}
@keyframes orbit1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}
@keyframes orbit2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-26px, 22px) scale(1.12); }
}

.glass-card {
  position: absolute;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  z-index: 2;
}
.glass-card.card-a {
  top: 60px; right: 0;
  width: 230px;
  animation: floaty 6s ease-in-out infinite;
}
.glass-card.card-b {
  bottom: 70px; left: 0;
  width: 250px;
  animation: floaty 7s ease-in-out infinite reverse;
}
.glass-card .row { display: flex; align-items: center; gap: 12px; }
.glass-card .ic {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad-warm);
  font-size: 1.2rem;
}
.glass-card h4 { font-family: var(--font-body); font-size: 0.95rem; }
.glass-card small { color: var(--muted); font-size: 0.78rem; }
.glass-card .bar {
  height: 6px; border-radius: 6px; margin-top: 14px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.glass-card .bar i {
  display: block; height: 100%; width: 78%;
  background: var(--grad-royal);
  border-radius: 6px;
  animation: grow 2.4s var(--ease) forwards;
}
@keyframes grow { from { width: 0; } }

/* Marquee */
.marquee {
  padding: 26px 0;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: scrollx 26s linear infinite;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text-dim);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .star { color: var(--gold); }
@keyframes scrollx { to { transform: translateX(-50%); } }

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px 180px at var(--mx, 50%) var(--my, 0%), rgba(255, 156, 47, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: rgba(247, 201, 72, 0.4); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card .icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.96rem; }

/* Category cards */
.cat {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  border: 1px solid var(--border);
  isolation: isolate;
}
.cat .cat-bg {
  position: absolute; inset: 0; z-index: -1;
  transition: transform 0.6s var(--ease);
}
.cat .cat-img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cat:hover .cat-bg,
.cat:hover .cat-img { transform: scale(1.1); }
.cat::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(10, 5, 8, 0.85), transparent 70%);
}
.cat h3 { font-size: 1.5rem; }
.cat span { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.cat .tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 100px; font-size: 0.72rem;
}
.c-saffron { background: linear-gradient(135deg, #ff9c2f, #8c1d3f); }
.c-teal { background: linear-gradient(135deg, #1bb5a0, #16324f); }
.c-rose { background: linear-gradient(135deg, #e0457b, #5b1d63); }
.c-gold { background: linear-gradient(135deg, #f7c948, #b8651b); }
.c-plum { background: linear-gradient(135deg, #5b1d63, #1c0f1f); }
.c-indigo { background: linear-gradient(135deg, #3a4fb5, #1c0f1f); }

.product-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Steps */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 70px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 700;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--gold);
}

/* Testimonials */
.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.quote p { font-size: 1.05rem; color: var(--text); margin-bottom: 20px; }
.quote .who { display: flex; align-items: center; gap: 14px; }
.quote .av {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700;
  background: var(--grad-warm); color: #fff;
}
.quote .who small { color: var(--muted); }
.stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 3px; }

/* CTA band */
.cta-band {
  background: var(--grad-warm);
  border-radius: 28px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff' stroke-opacity='0.08'/%3E%3C/svg%3E");
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); position: relative; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 540px; margin: 14px auto 28px; position: relative; }
.cta-band .btn-ghost { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-band .btn-light { background: #fff; color: var(--maroon); }
.cta-band .actions { display: inline-flex; gap: 14px; flex-wrap: wrap; position: relative; justify-content: center; }

/* ----------------------------- Footer ----------------------------- */
.footer {
  padding: 80px 0 30px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer a { color: var(--text-dim); display: block; padding: 5px 0; transition: color 0.3s, padding-left 0.3s; }
.footer a:hover { color: var(--gold); padding-left: 6px; }
.footer .about p { color: var(--text-dim); margin: 16px 0; max-width: 320px; }
.legal-mini {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.legal-mini b { color: var(--text-dim); }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; padding: 0;
  background: var(--surface); border: 1px solid var(--border);
}
.socials a:hover { background: var(--grad-warm); color: #fff; transform: translateY(-3px); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 26px; border-top: 1px solid var(--border);
  color: var(--muted); font-size: 0.85rem;
}

/* ----------------------------- Page hero (inner pages) ----------------------------- */
.page-hero {
  padding: 180px 0 70px;
  text-align: center;
  position: relative;
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 14px; }
.page-hero h1 .accent {
  background: var(--grad-royal);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero p { color: var(--text-dim); max-width: 600px; margin-inline: auto; }
.breadcrumb {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 0.85rem; color: var(--muted); margin-top: 18px;
}
.breadcrumb a:hover { color: var(--gold); }

/* ----------------------------- Legal / doc pages ----------------------------- */
.doc-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: start;
}
.toc {
  position: sticky; top: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.toc h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.toc a { display: block; padding: 7px 10px; border-radius: 8px; font-size: 0.9rem; color: var(--text-dim); transition: all 0.25s; }
.toc a:hover, .toc a.active { background: var(--surface-2); color: var(--text); }

.doc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
}
.doc .updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 30px; }
.doc h2 { font-size: 1.6rem; margin: 38px 0 14px; scroll-margin-top: 100px; }
.doc h2:first-of-type { margin-top: 0; }
.doc h3 { font-size: 1.2rem; margin: 24px 0 10px; font-family: var(--font-body); font-weight: 700; }
.doc p { color: var(--text-dim); margin-bottom: 14px; }
.doc ul, .doc ol { color: var(--text-dim); margin: 0 0 16px 22px; }
.doc ul { list-style: disc; }
.doc ol { list-style: decimal; }
.doc li { margin-bottom: 8px; }
.doc a.inline { color: var(--gold); text-decoration: underline; }
.doc strong { color: var(--text); }
.callout {
  background: var(--surface-2);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
  color: var(--text-dim);
}

/* Company info table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 20px;
  font-size: 0.95rem;
}
.info-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.info-table tr td:first-child { color: var(--muted); width: 42%; }
.info-table tr td:last-child { color: var(--text); font-weight: 500; }
.info-table tr:last-child td { border-bottom: none; }
.mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: 0.02em; color: var(--gold) !important; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(247, 201, 72, 0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 10px; }
.form-success {
  display: none;
  background: rgba(27, 181, 160, 0.12);
  border: 1px solid rgba(27, 181, 160, 0.4);
  color: var(--teal);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 14px;
}
.form-success.show { display: block; }

.contact-cards .ct {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; margin-bottom: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.contact-cards .ct:hover { transform: translateX(6px); border-color: rgba(247,201,72,0.4); }
.contact-cards .ct .ic {
  width: 48px; height: 48px; border-radius: 13px; flex: none;
  display: grid; place-items: center; font-size: 1.3rem;
  background: var(--surface-2); border: 1px solid var(--border);
}
.contact-cards .ct h4 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 4px; }
.contact-cards .ct p { color: var(--text-dim); font-size: 0.92rem; }

/* Values / about */
.about-media {
  border-radius: var(--radius);
  min-height: 440px;
  background: var(--grad-cool);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-media .about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-media .pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(247,201,72,0.4), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(224,69,123,0.4), transparent 40%);
  animation: auroraShift 12s ease-in-out infinite alternate;
  z-index: 1;
}
.about-media .float-num {
  position: absolute; bottom: 26px; left: 26px;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 22px;
  z-index: 2;
}
.about-media .float-num strong { font-family: var(--font-head); font-size: 2rem; color: var(--gold); display: block; }

.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(var(--gold), transparent);
}
.timeline .tl { position: relative; padding-bottom: 30px; }
.timeline .tl::before {
  content: ""; position: absolute; left: -30px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--grad-warm);
  box-shadow: 0 0 0 4px rgba(255,156,47,0.15);
}
.timeline .tl span { color: var(--gold); font-weight: 600; font-size: 0.85rem; }
.timeline .tl h4 { font-family: var(--font-body); margin: 4px 0 6px; }
.timeline .tl p { color: var(--text-dim); font-size: 0.95rem; }

/* FAQ accordion */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--surface);
}
.faq-q {
  width: 100%; text-align: left; cursor: pointer;
  padding: 20px 24px; background: none; border: none; color: var(--text);
  font-size: 1.05rem; font-weight: 600; font-family: var(--font-body);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .pm { transition: transform 0.35s var(--ease); color: var(--gold); font-size: 1.4rem; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 24px 20px; color: var(--text-dim); }

/* ----------------------------- Reveal animations ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* Scroll progress bar */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad-royal); z-index: 200;
  box-shadow: 0 0 12px rgba(247,201,72,0.6);
}

/* Back to top */
.to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; cursor: pointer;
  background: var(--grad-warm); color: #fff; border: none;
  box-shadow: 0 12px 30px rgba(224,69,123,0.4);
  opacity: 0; pointer-events: none; transform: translateY(20px);
  transition: all 0.4s var(--ease);
  font-size: 1.2rem;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }

/* Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 70px; height: 70px; border-radius: 18px;
  background: var(--grad-royal); color: #1a0f10;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 900; font-size: 1.8rem;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1) rotate(0); box-shadow: 0 0 0 0 rgba(247,201,72,0.4); }
  50% { transform: scale(1.1) rotate(8deg); box-shadow: 0 0 40px 6px rgba(247,201,72,0.3); }
}

/* Custom cursor glow */
.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 300;
  width: 380px; height: 380px; border-radius: 50%;
  pointer-events: none; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,156,47,0.10), transparent 60%);
  transition: opacity 0.3s; mix-blend-mode: screen;
}

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 440px; margin-top: 20px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .doc-wrap { grid-template-columns: 1fr; }
  .toc { position: static; }
}
@media (max-width: 760px) {
  section { padding: 80px 0; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 4%; right: 4%;
    background: rgba(18,10,20,0.96); backdrop-filter: blur(18px);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 16px; gap: 4px;
  }
  .nav-links.open a { width: 100%; }
  .grid-3, .grid-4, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .doc { padding: 28px; }
  .nav-cta .btn-ghost { display: none; }
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
