
/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --bg:         #0E0D0B;
  --surface:    #131210;
  --surface-2:  #1A1815;
  --gold:       #C6A86B;
  --gold-lt:    #D9BF88;
  --gold-dim:   rgba(198,168,107,0.12);
  --text:       #EDE8DE;
  --muted:      #6A6460;
  --muted-lt:   #8A8480;
  --nav-h:      76px;
  --px:         52px;
  --max:        1440px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  transition: background .45s, backdrop-filter .45s, border-color .45s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14,13,11,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(198,168,107,.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
  flex-shrink: 0;
}
.logo img {
  height: 29px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  opacity: .55;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--bg) !important;
  opacity: 1 !important;
  padding: 10px 26px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all .3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ───────────────────────────────────────────── */
.drawer {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--bg);
  z-index: 290;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.drawer.open { transform: translateX(0); }
.drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--text);
  opacity: .65;
  transition: opacity .2s;
}
.drawer a:hover { opacity: 1; }
.drawer .d-cta {
  background: var(--gold);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 44px;
  border-radius: 2px;
  opacity: 1;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://www.indusviva.com/assets/1-BQrjR8a5.jpeg') center 20% / cover no-repeat;
  transform: scale(1.07);
  animation: bgZoom 10s cubic-bezier(.25,.46,.45,.94) forwards;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(14,13,11,.97)  0%,
    rgba(14,13,11,.80) 44%,
    rgba(14,13,11,.12) 100%
  );
}
.hero-body {
  position: relative;
  z-index: 2;
  padding: 0 84px;
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.headline {
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  flex-direction: column;
  line-height: .87;
  margin-bottom: 32px;
}
.hl-thin {
  font-size: clamp(72px, 8.8vw, 134px);
  font-weight: 300;
  font-style: italic;
  color: rgba(237,232,222,.45);
  opacity: 0;
  animation: fadeUp .8s ease-out .55s forwards;
}
.hl-bold {
  font-size: clamp(80px, 10vw, 150px);
  font-weight: 600;
  letter-spacing: -.02em;
  position: relative;
  opacity: 0;
  animation: fadeUp .8s ease-out .72s forwards;
}
.hl-bold::after {
  content: '';
  position: absolute;
  bottom: 9px; left: 0;
  height: 2px; width: 0;
  background: var(--gold);
  animation: drawLine 1s ease-out 1.7s forwards;
}

.hero-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  max-width: 320px;
  margin-bottom: 46px;
  opacity: 0;
  animation: fadeUp .8s ease-out .9s forwards;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeUp .8s ease-out 1.05s forwards;
}

.btn-fill {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  transition: background .22s, transform .22s;
}
.btn-fill:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--muted);
  opacity: .5;
  transition: opacity .22s, border-color .22s;
}
.btn-ghost:hover { opacity: 1; border-color: var(--text); }

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp .8s ease-out 1.35s forwards;
}
.scroll-bar {
  width: 1px;
  height: 52px;
  background: rgba(198,168,107,.18);
  position: relative;
  overflow: hidden;
}
.scroll-bar::after {
  content: '';
  position: absolute;
  top: -50%; left: 0; right: 0;
  height: 50%;
  background: var(--gold);
  animation: scrollDrop 2s ease-in-out 2s infinite;
}
.scroll-hint span {
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-counter {
  position: absolute;
  right: var(--px);
  bottom: var(--px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp .8s ease-out 1.5s forwards;
}
.c-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .08em;
}
.c-track {
  width: 1px;
  height: 96px;
  background: rgba(198,168,107,.14);
  position: relative;
  overflow: hidden;
}
.c-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30%;
  background: var(--gold);
  animation: cSlide 3.5s ease-in-out 2s infinite;
}

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 24s linear infinite;
}
.ticker-track span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bg);
  padding: 0 32px;
}
.ticker-track .dot {
  opacity: .35;
  padding: 0 4px;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about {
  padding: 130px var(--px);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.about-img-wrap img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.about-img-wrap:hover img { transform: scale(1.05); }
.img-label {
  position: absolute;
  bottom: 26px; left: 26px;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  margin: 16px 0 26px;
}
.about-text h2 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(237,232,222,.38);
}
.about-text p {
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 18px;
}
.rule {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 34px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.stat {
  border-left: 1px solid rgba(198,168,107,.2);
  padding-left: 18px;
}
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-l {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── products ──────────────────────────────────────────────────── */
.products-section{
    padding:110px var(--px) 130px;
    max-width:var(--max);
    margin:0 auto;
}

.sec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.sec-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.8vw, 62px);
  font-weight: 600;
  line-height: 1.0;
  margin-top: 12px;
}
.sec-header h2 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(237,232,222,.32);
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.pcard { cursor: pointer; }
.pcard-img {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  margin-bottom: 20px;
}
.pcard-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.pcard:hover .pcard-img img { transform: scale(1.06); }

.ptag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--bg);
  padding: 5px 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 1px;
}

.pwish {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(14,13,11,.65);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}
.pcard:hover .pwish { opacity: 1; transform: translateY(0); }

.pinfo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.pinfo h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4px;
}
.psub { font-size: 11px; color: var(--muted); letter-spacing: .04em; }
.pprice { text-align: right; flex-shrink: 0; }
.price-old { font-size: 11px; color: var(--muted); text-decoration: line-through; margin-bottom: 2px; }
.price-now {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  color: var(--gold);
}

.products-foot { text-align: center; margin-top: 70px; }

/* ── FEATURE SPLIT ───────────────────────────────────────────── */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  overflow: hidden;
}
.feat-body {
  background: var(--surface-2);
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feat-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 600;
  line-height: 1.06;
  margin: 16px 0 22px;
}
.feat-body h2 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(237,232,222,.32);
}
.feat-body p {
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
  max-width: 360px;
  margin-bottom: 42px;
}
.feat-img { overflow: hidden; }
.feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.feature:hover .feat-img img { transform: scale(1.04); }

/* ── BLOG ────────────────────────────────────────────────────── */
.blog {
  padding: 120px var(--px) 130px;
  max-width: var(--max);
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
.bcard { cursor: pointer; }
.bcard-img {
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 22px;
}
.bcard-img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.bcard:hover .bcard-img img { transform: scale(1.05); }
.bmeta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.bcat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.bdate { font-size: 11px; color: var(--muted); }
.bcard h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
  transition: color .2s;
}
.bcard:hover h3 { color: var(--gold-lt); }
.bcard p { font-size: 13px; line-height: 1.8; color: var(--muted); margin-bottom: 18px; }

/* ── TESTIMONIAL ─────────────────────────────────────────────── */
.testimonial {
  background: var(--surface);
  padding: 110px var(--px);
  text-align: center;
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  max-width: 840px;
  margin: 0 auto 34px;
  position: relative;
}
.testimonial blockquote::before {
  content: '\201C';
  font-size: 100px;
  line-height: 0;
  vertical-align: -.45em;
  color: var(--gold);
  margin-right: 6px;
  font-style: normal;
}
.t-author {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.t-author span { color: var(--gold); }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact {
  padding: 130px var(--px) 140px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 110px;
}
.cinfo h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 600;
  line-height: 1.06;
  margin: 16px 0 44px;
}
.cinfo h2 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(237,232,222,.32);
}
.cdetail { margin-bottom: 28px; }
.cdetail .clabel {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.cdetail .cval { font-size: 14px; color: var(--muted); line-height: 1.7; }

.cform { display: flex; flex-direction: column; gap: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.field { position: relative; margin-bottom: 32px; }
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(198,168,107,.18);
  color: var(--text);
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  resize: none;
  transition: border-color .3s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
}
.field input:focus,
.field textarea:focus { border-color: var(--gold); }
.field-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 1px; width: 0;
  background: var(--gold);
  pointer-events: none;
  transition: width .4s ease;
}
.field input:focus ~ .field-line,
.field textarea:focus ~ .field-line { width: 100%; }

.cform .btn-fill {
  width: 100%;
  padding: 17px;
  font-family: 'Inter', sans-serif;
  border: none;
  margin-top: 4px;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid rgba(198,168,107,.07);
  padding: 80px var(--px) 36px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(198,168,107,.07);
  margin-bottom: 32px;
}
.fbrand p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 240px;
  margin: 18px 0 26px;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(198,168,107,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }

.fcol h4 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 22px;
}
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.fcol ul li a { font-size: 13px; color: var(--muted); transition: color .2s; }
.fcol ul li a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 11px; color: var(--muted); }
.footer-bottom a { color: var(--muted); transition: color .2s; }
.footer-bottom a:hover { color: var(--text); }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── KEYFRAMES ───────────────────────────────────────────────── */
@keyframes bgZoom    { to { transform: scale(1); } }
@keyframes drawLine  { to { width: 80px; } }
@keyframes scrollDrop { 0% { top: -50%; } 100% { top: 150%; } }
@keyframes cSlide    { 0%,100% { top: 0; } 50% { top: 70%; } }
@keyframes ticker    { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --px: 32px; }
  .about { grid-template-columns: 1fr; gap: 52px; }
  .about-img-wrap img { height: 500px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; }
  .feat-img { min-height: 440px; }
  .contact { grid-template-columns: 1fr; gap: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  :root { --px: 22px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-body { padding: 0 28px; max-width: 100%; }
  .hero-counter { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .sec-header { flex-direction: column; align-items: flex-start; gap: 22px; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .feat-body { padding: 72px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hl-thin, .hl-bold, .hero-desc, .hero-ctas, .scroll-hint, .hero-counter { opacity: 1; transform: none; }
  .hl-bold::after { width: 80px; }
  .reveal { opacity: 1; transform: none; }
}
