/* =========================================================
   ₹ STYLE BY KHUUSHALI — Coming Soon
   Luxury Indian fashion house landing page
   ========================================================= */

:root {
  --black:        #060504;
  --black-deep:   #030302;
  --panel:        #0d0b09;
  --ivory:        #f4ecdb;
  --ivory-dim:    #cfc6b4;
  --gold-1:       #7a5a2a;
  --gold-2:       #d9ab5c;
  --gold-3:       #f4dfa8;
  --gold-line:    rgba(214, 175, 108, 0.35);
  --gold-line-soft: rgba(214, 175, 108, 0.16);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-caps:    "Cinzel", "Times New Roman", serif;
  --font-body:    "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection {
  background: var(--gold-2);
  color: var(--black-deep);
}

/* ---------------------------------------------------------
   Ambient background: vignette, grain, sweeping sheen
--------------------------------------------------------- */

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-vignette {
  background:
    radial-gradient(ellipse 90% 60% at 50% 8%, rgba(122, 90, 42, 0.16), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(90, 66, 30, 0.12), transparent 65%),
    var(--black);
}

.bg-grain {
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.bg-sweep {
  position: fixed;
  top: -20%;
  left: -30%;
  width: 60%;
  height: 140%;
  background: linear-gradient(
    100deg,
    transparent 40%,
    rgba(233, 197, 128, 0.05) 48%,
    rgba(244, 223, 168, 0.09) 50%,
    rgba(233, 197, 128, 0.05) 52%,
    transparent 60%
  );
  animation: sweep 14s ease-in-out infinite;
  will-change: transform;
}

@keyframes sweep {
  0%   { transform: translateX(-10%); }
  50%  { transform: translateX(160%); }
  100% { transform: translateX(160%); }
}

/* floating gold motes */
.motes span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-3);
  box-shadow: 0 0 6px 1px rgba(244, 223, 168, 0.6);
  opacity: 0;
  animation: rise linear infinite;
}

@keyframes rise {
  0%   { opacity: 0; transform: translateY(0) translateX(0); }
  10%  { opacity: 0.55; }
  90%  { opacity: 0.25; }
  100% { opacity: 0; transform: translateY(-90vh) translateX(var(--drift, 20px)); }
}

/* ---------------------------------------------------------
   Layout shell
--------------------------------------------------------- */

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section {
  width: 100%;
  max-width: var(--maxw);
  padding: 0 24px;
  margin: 0 auto;
}

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

.hero {
  padding-top: clamp(56px, 10vh, 110px);
  padding-bottom: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: min(78vw, 460px);
  height: auto;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  animation: reveal 1.4s cubic-bezier(.19,1,.22,1) 0.2s forwards;
  filter: drop-shadow(0 0 26px rgba(214, 175, 108, 0.12));
}

@keyframes reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__rule {
  width: 0;
  height: 1px;
  margin: 26px auto 22px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  animation: draw-line 1.4s cubic-bezier(.19,1,.22,1) 1.1s forwards;
}

@keyframes draw-line {
  to { width: 220px; }
}

.eyebrow {
  font-family: var(--font-caps);
  font-size: clamp(12px, 1.6vw, 15px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-2);
  opacity: 0;
  animation: fade-up 1s ease 1.5s forwards;
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2.6vw, 26px);
  color: var(--ivory-dim);
  margin: 18px 0 0;
  opacity: 0;
  animation: fade-up 1s ease 1.75s forwards;
}

.hero__tagline em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-1), var(--gold-3) 45%, var(--gold-1) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------
   Main message
--------------------------------------------------------- */

.statement {
  text-align: center;
  padding: clamp(56px, 9vh, 96px) 24px clamp(40px, 6vh, 64px);
  opacity: 0;
  animation: fade-up 1.1s ease 2s forwards;
}

.statement__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 7vw, 64px);
  line-height: 1.1;
  margin: 0 auto;
  max-width: 26ch;
  background: linear-gradient(115deg, var(--gold-1) 0%, var(--gold-3) 30%, var(--gold-2) 55%, var(--gold-3) 78%, var(--gold-1) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 9s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

.statement__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: var(--ivory-dim);
  max-width: 58ch;
  margin: 22px auto 0;
}

/* ---------------------------------------------------------
   Categories
--------------------------------------------------------- */

.categories {
  padding: clamp(24px, 5vh, 40px) 24px clamp(56px, 8vh, 88px);
}

.categories__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid var(--gold-line-soft);
  border-bottom: 1px solid var(--gold-line-soft);
}

.category {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 30px 18px;
  border-left: 1px solid var(--gold-line-soft);
  opacity: 0;
  animation: fade-up 0.9s ease forwards;
}

.category:first-child { border-left: none; }
.category:nth-child(1) { animation-delay: 2.2s; }
.category:nth-child(2) { animation-delay: 2.35s; }
.category:nth-child(3) { animation-delay: 2.5s; }
.category:nth-child(4) { animation-delay: 2.65s; }

.category__icon {
  width: 34px;
  height: 34px;
  stroke: var(--gold-2);
  fill: none;
  stroke-width: 1.1;
  opacity: 0.9;
}

.category__label {
  font-family: var(--font-caps);
  font-size: clamp(11px, 1.3vw, 12.5px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-align: center;
}

/* ---------------------------------------------------------
   Follow / contact
--------------------------------------------------------- */

.follow {
  text-align: center;
  padding: 0 24px clamp(60px, 9vh, 96px);
  opacity: 0;
  animation: fade-up 1s ease 2.8s forwards;
}

.follow__label {
  font-family: var(--font-caps);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 14px;
}

.follow__handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--ivory-dim);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 10px 26px;
}

.follow__handle svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-2);
  fill: none;
  stroke-width: 1.4;
}

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

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 26px 24px 32px;
  border-top: 1px solid var(--gold-line-soft);
}

.footer__brand {
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ivory-dim);
  opacity: 0.85;
}

.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-1);
  margin-top: 6px;
  opacity: 0.9;
}

/* ---------------------------------------------------------
   Utility / a11y
--------------------------------------------------------- */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__logo, .eyebrow, .hero__tagline, .statement, .category, .follow {
    opacity: 1 !important;
    transform: none !important;
  }
  .bg-sweep, .motes { display: none; }
}

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

@media (max-width: 640px) {
  .categories__row {
    flex-wrap: wrap;
  }
  .category {
    flex: 1 1 42%;
    border-left: none;
    border-top: 1px solid var(--gold-line-soft);
  }
  .category:nth-child(1),
  .category:nth-child(2) {
    border-top: none;
  }
  .category:nth-child(odd) {
    border-right: 1px solid var(--gold-line-soft);
  }
}
