/* ==========================================================================
   Samriddhi Origins — premium dark editorial theme.
   Palette from the brand: deep maroon, saffron gold, espresso, warm cream.
   ========================================================================== */

:root {
  --bg: #14100d;
  --bg-soft: #1d1712;
  --panel: #241c15;
  --maroon: #8c2434;
  --gold: #d9a441;
  --gold-soft: #b8863a;
  --cream: #f3e9d6;
  --cream-dim: #cbbba0;
  --line: rgba(217, 164, 65, 0.25);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Jost", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); }

.container { width: min(1200px, 92%); margin: 0 auto; }

.script {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.4rem 0;
  transition: background 0.35s, box-shadow 0.35s;
}

.site-header.scrolled {
  background: rgba(20, 16, 13, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-emblem { height: 52px; width: auto; }

.brand-word { display: flex; flex-direction: column; line-height: 1; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.22em;
  color: var(--cream);
}

.brand-script {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--gold);
  margin-top: 0.1rem;
}

.site-nav { display: flex; align-items: center; gap: 2rem; }

.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--gold); }

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s;
}

.nav-cta:hover { background: var(--gold); color: var(--bg) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span { width: 26px; height: 2px; background: var(--cream); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(20, 16, 13, 0.55) 0%, rgba(20, 16, 13, 0.82) 60%, var(--bg) 100%),
    url("../assets/hero.jpg") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  padding: 8rem 0 6rem;
  max-width: 860px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 1.08;
  color: var(--cream);
}

.hero-title .script { font-size: 1.15em; }

.gold-rule {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}

.gold-rule span {
  display: block;
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--cream-dim);
  max-width: 560px;
  margin-bottom: 2.8rem;
}

.hero-actions { display: flex; gap: 1.1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--gold), transparent);
  animation: drip 2.2s ease-in-out infinite;
}

@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.9rem 2.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.18s, background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: var(--bg); }

.btn-gold:hover { background: var(--cream); }

.btn-outline {
  border: 1px solid rgba(243, 233, 214, 0.45);
  color: var(--cream);
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-small { padding: 0.65rem 1.5rem; font-size: 0.78rem; }

/* ---------- Catalogue download link ---------- */

.link-download {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  padding: 0.85rem 1.9rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  background: rgba(217, 164, 65, 0.08);
  transition: background 0.25s, color 0.25s, transform 0.18s;
}

.link-download span { color: inherit; }

.link-download:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

.contact-card .link-download { margin-top: 1.1rem; }

/* ---------- Marquee ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-dim);
  white-space: nowrap;
}

.marquee-track i { color: var(--gold); font-style: normal; font-size: 0.8rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ---------- Sections ---------- */

.section { padding: 7rem 0; }

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.45em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.6rem;
}

.section-title .script { font-size: 1.15em; }

.centered { text-align: center; }

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.about-figure { position: relative; }

.about-figure img {
  border-radius: 4px;
  box-shadow: 18px 18px 0 -1px rgba(217, 164, 65, 0.16);
}

.about-figure figcaption {
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.about-copy p { color: var(--cream-dim); margin-bottom: 1.3rem; }

.about-copy strong { color: var(--gold); font-weight: 500; }

.feature-list { list-style: none; margin-top: 0.6rem; }

.feature-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.9rem;
  color: var(--cream-dim);
}

.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 0.65rem;
}

.feature-list b { color: var(--cream); font-weight: 500; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 5.5rem;
}

.stat {
  background: var(--bg);
  text-align: center;
  padding: 2.2rem 1rem;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ---------- Products ---------- */

.section-products { padding-bottom: 4rem; }

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-top: 5rem;
}

.showcase-media { position: relative; min-height: 460px; overflow: hidden; }

.showcase-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.showcase:hover .showcase-media img { transform: scale(1.045); }

.showcase-body {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: none;
  padding: 3.2rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase.flip .showcase-media { order: 2; }
.showcase.flip .showcase-body { order: 1; border-left: 1px solid var(--line); border-right: none; }

.showcase-index {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.showcase-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--cream);
  line-height: 1.1;
}

.botanical {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--cream-dim);
  margin: 0.4rem 0 1.1rem;
}

.showcase-desc { color: var(--cream-dim); margin-bottom: 1.4rem; max-width: 46ch; }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.7rem; }

.chips span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
}

.chips.gold span { color: var(--gold); border-color: var(--gold-soft); font-weight: 500; }

.trade-strip {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0.8rem 2.4rem;
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
}

.trade-strip span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.trade-strip b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--cream);
}

.varieties {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.spec-grid dt {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.spec-grid dd {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
}

.products-cta {
  text-align: center;
  margin-top: 5rem;
}

.products-cta p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream-dim);
  margin-bottom: 1.4rem;
}

/* ---------- Quality ---------- */

.quality { position: relative; padding: 7rem 0; overflow: hidden; }

.quality-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 16, 13, 0.9), rgba(20, 16, 13, 0.94)),
    url("../assets/flatlay.jpg") center / cover no-repeat fixed;
}

.quality-inner { position: relative; text-align: center; }

.quality-lede {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  color: var(--cream-dim);
}

.medallions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
}

.medallion {
  width: 150px;
  height: 150px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background: rgba(20, 16, 13, 0.55);
}

.medallion b {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.medallion span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  max-width: 110px;
}

.quality-note {
  margin-top: 3rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
}

/* ---------- Logistics ---------- */

.logistics-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.logistics-copy p { color: var(--cream-dim); margin-bottom: 1.3rem; }

.incoterms-label {
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 0.8rem;
}

.logistics-figure img {
  border-radius: 4px;
  box-shadow: -18px 18px 0 -1px rgba(140, 36, 52, 0.35);
}

.logistics-figure figcaption {
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-align: right;
}

/* ---------- FAQ ---------- */

.faq-section { padding-top: 5rem; }

.faq-container { max-width: 780px; }

.faq {
  border-bottom: 1px solid var(--line);
}

.faq:first-of-type { border-top: 1px solid var(--line); margin-top: 2.5rem; }

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0.2rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.2s;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq[open] summary::after { transform: rotate(45deg); }

.faq summary:hover { color: var(--gold); }

.faq p {
  padding: 0 0.2rem 1.5rem;
  color: var(--cream-dim);
  max-width: 64ch;
}

/* ---------- Contact ---------- */

.contact {
  padding: 7rem 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(140, 36, 52, 0.25), transparent 60%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
}

.contact-lede {
  text-align: center;
  color: var(--cream-dim);
  max-width: 520px;
  margin: 0 auto 3.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.4rem 2.2rem;
  text-align: center;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-card p { color: var(--cream-dim); margin-bottom: 1rem; }

.contact-card a { color: var(--cream); text-decoration: none; }

.contact-card a:hover { color: var(--gold); }

.contact-card .btn { margin-top: 0.4rem; }

.break-word { word-break: break-all; }

/* ---------- Footer ---------- */

.site-footer {
  padding: 4rem 0 3rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-emblem { height: 74px; margin: 0 auto 1rem; }

.footer-brand .brand-name { font-size: 1.5rem; }

.footer-brand .brand-script { font-size: 1.6rem; margin-left: 0.4rem; }

.footer-tagline {
  margin-top: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.72rem;
  color: var(--gold);
}

.footer-copy { margin-top: 1.6rem; font-size: 0.8rem; color: var(--cream-dim); }

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero-scroll-line { animation: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .about-grid, .logistics-grid { grid-template-columns: 1fr; gap: 3rem; }

  .showcase { grid-template-columns: 1fr; }

  .showcase-media { min-height: 320px; }

  .showcase.flip .showcase-media { order: 1; }
  .showcase.flip .showcase-body { order: 2; border-left: none; }

  .showcase-body { border-left: 1px solid var(--line); padding: 2.4rem 1.8rem; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }

  .logistics-figure { order: -1; }
  .logistics-figure figcaption { text-align: left; }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(20, 16, 13, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 4% 1.2rem;
  }

  .site-nav.open { display: flex; }

  .site-nav a { padding: 0.8rem 0; width: 100%; }

  .nav-cta { border: none; padding: 0.8rem 0; }
  .nav-cta:hover { background: none; color: var(--gold) !important; }

  .hero-inner { padding-top: 7rem; }

  .quality-bg { background-attachment: scroll; }

  .medallion { width: 124px; height: 124px; }

  .trade-strip { grid-template-columns: 1fr; gap: 0.9rem; }

  .faq summary { font-size: 1.15rem; }
}
