:root {
  --ink: #3a3a3a;
  --ink-soft: #5a5a5a;
  --cream: #ffffff;
  --paper: #ffffff;
  --gold: #ffa320;
  --gold-bright: #ffd54f;
  --leaf: #1f7a4c;
  --leaf-deep: #145c38;
  --sand: #eeeeee;
  --white: #ffffff;
  --radius: 1.25rem;
  --nav-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
h1, h2, h3, h4, .display-font {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}

::selection { background: var(--gold); color: var(--ink); }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 10000;
  background: var(--gold); color: var(--ink); padding: .6rem 1rem; border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

/* Preloader */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--gold);
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.loader-mark {
  text-align: center; color: #1a1a1a;
}
.loader-mark .word {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  letter-spacing: .14em;
  font-weight: 600;
}
.loader-bar {
  width: 140px; height: 2px; margin: 1.1rem auto 0;
  background: rgba(255,255,255,.45); overflow: hidden; border-radius: 99px;
}
.loader-bar span {
  display: block; height: 100%; width: 40%;
  background: #1a1a1a;
  animation: loadSlide 1.1s ease-in-out infinite;
}
@keyframes loadSlide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

/* Navbar */
.navbar {
  --bs-navbar-padding-y: 1.1rem;
  background: rgba(255, 163, 32, .96);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background .35s ease, padding .35s ease, backdrop-filter .35s ease;
}
.navbar.scrolled {
  background: rgba(255, 163, 32, .98);
  padding-top: .7rem; padding-bottom: .7rem;
}
.navbar-brand {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: .12em; color: #1a1a1a !important;
  display: flex; align-items: center; gap: .55rem;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid #1a1a1a;
  display: grid; place-items: center;
  font-size: .85rem; color: #1a1a1a;
}
.nav-link {
  color: rgba(26,26,26,.82) !important;
  font-weight: 500; font-size: .92rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .45rem .85rem !important;
  position: relative;
}
.nav-link::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .2rem;
  height: 1.5px; background: #fff;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.nav-link:hover, .nav-link.active { color: #1a1a1a !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--ink) !important; border: 0; font-weight: 600;
  letter-spacing: .06em; border-radius: 999px;
  padding: .7rem 1.45rem;
  transition: transform .25s ease;
}
.btn-gold:hover { transform: translateY(-2px); color: var(--ink) !important; }
.btn-outline-cream {
  border: 1px solid rgba(255,255,255,.45); color: #fff !important;
  border-radius: 999px; padding: .7rem 1.4rem; font-weight: 500;
  background: transparent;
  transition: background .25s ease, border-color .25s ease;
}
.btn-outline-cream:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.navbar-toggler { border: 0; padding: .25rem; }
.navbar-toggler:focus { box-shadow: none; }
.hamburger { width: 24px; height: 16px; position: relative; display: block; }
.hamburger span {
  position: absolute; left: 0; right: 0; height: 2px; background: #1a1a1a;
  transition: .3s ease; border-radius: 2px;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7px; }
.hamburger span:nth-child(3) { top: 14px; }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  padding-top: var(--nav-h);
  background: #fff;
  overflow: hidden;
}
.hero-picture { display: block; width: 100%; line-height: 0; font-size: 0; }
.hero-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  animation: heroFade .65s ease both;
}
@media (max-width: 767.98px) {
  :root { --nav-h: 64px; }
  .hero {
    padding-top: var(--nav-h);
    background: var(--gold);
  }
}
@media (min-width: 768px) {
  .hero {
    box-sizing: border-box;
    height: 100vh;
    height: 100dvh;
    padding: calc(var(--nav-h) + .4rem) .65rem .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .hero-img {
    max-height: calc(100vh - var(--nav-h) - .9rem);
    max-height: calc(100dvh - var(--nav-h) - .9rem);
    object-position: center center;
    margin: 0 auto;
    border-radius: 1.15rem;
  }
}
@keyframes heroFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Sections */
section { position: relative; }
.section-pad { padding: 6.5rem 0; }
.section-kicker {
  color: var(--leaf); letter-spacing: .2em; text-transform: uppercase;
  font-size: .72rem; font-weight: 600;
}
.section-title {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  font-weight: 600; margin: .35rem 0 1rem;
}
.gold-rule {
  width: 64px; height: 2px; background: var(--gold); margin: 0 0 1.4rem;
}

/* About */
.about { background: var(--cream); }
.about-copy {
  font-family: "Noto Sans Devanagari", "Outfit", sans-serif;
  font-size: 1.02rem;
  line-height: 1.9;
}
.about-copy .section-title {
  font-family: "Tiro Devanagari Marathi", "Noto Sans Devanagari", serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.35;
}
.about-copy p { margin-bottom: 1rem; }
.about-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.about-frame {
  position: relative; border-radius: calc(var(--radius) + .4rem);
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
}
.about-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 1.2s ease;
}
.about-frame:hover img { transform: scale(1.05); }
.about-badge {
  position: absolute; bottom: 1.4rem; left: 1.4rem;
  background: rgba(255,163,32,.92); color: #1a1a1a; backdrop-filter: blur(10px);
  border-radius: 1rem; padding: 1rem 1.15rem; max-width: 220px;
}
.about-badge strong { display: block; font-family: "Tiro Devanagari Marathi", "Noto Sans Devanagari", serif; font-size: 1.35rem; color: #1a1a1a; }
.pill-list { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.2rem; }
.pill {
  background: rgba(31,122,76,.1); color: var(--leaf-deep);
  border-radius: 999px; padding: .35rem .8rem; font-size: .82rem; font-weight: 500;
  font-family: "Noto Sans Devanagari", sans-serif;
}

/* Products */
.products {
  background:
    radial-gradient(720px 280px at 8% 12%, rgba(255,163,32,.16), transparent 60%),
    radial-gradient(640px 240px at 96% 88%, rgba(31,122,76,.12), transparent 55%),
    var(--paper);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border: 1px solid #ececec;
  transform-style: preserve-3d;
  transition: transform .45s ease, border-color .45s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,163,32,.55);
}
.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f4f4f4;
}
.product-media img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  transition: transform .8s ease;
}
.product-card:hover .product-media img { transform: scale(1.04); }
.product-info {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .95rem 1rem 1.1rem;
  border-top: 1px solid #f0f0f0;
  background: #fff;
}
.product-sku {
  display: inline-block;
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #8a5a00;
  background: #fff3d6;
  border: 1px solid #ffd54f;
  border-radius: 999px;
  padding: .18rem .55rem;
  margin-bottom: .25rem;
}
.product-info h3 {
  font-size: 1.28rem;
  margin: 0;
  line-height: 1.2;
  color: var(--ink);
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .2rem .7rem;
  margin: .15rem 0 .35rem;
  padding: 0;
  font-size: .82rem;
  color: var(--ink-soft);
}
.product-meta span { white-space: nowrap; }
.price {
  margin: 0;
  font-weight: 700;
  color: #e88900;
  font-size: 1.05rem;
  letter-spacing: .02em;
}

/* Why us */
.why { background: #fff; }
.why-head { text-align: center; max-width: 38rem; margin: 0 auto 2rem; }
.why-head .gold-rule { margin-left: auto; margin-right: auto; }
.why-points {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2.2rem;
}
.why-point {
  text-align: center;
  padding: 1.25rem .85rem 1.15rem;
  border: 1px solid var(--sand);
  border-radius: 1rem;
  background: #fff;
}
.why-point i { font-size: 1.55rem; color: var(--gold); }
.why-point h3 {
  font-family: "Noto Sans Devanagari", "Outfit", sans-serif;
  font-size: 1.02rem;
  margin: .65rem 0 .3rem;
  line-height: 1.35;
}
.why-point p { font-size: .8rem; color: var(--ink-soft); margin: 0; line-height: 1.45; }
.why-posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
  justify-items: center;
}
.why-poster {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 0;
  border: 1px solid var(--sand);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
}
.why-poster img { width: 100%; height: auto; display: block; }
.why-poster:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Gallery */
.gallery { background: var(--cream); }
.gallery-grid {
  column-count: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 1rem;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  transition: transform .55s ease;
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(255,163,32,.45) 100%);
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-zoom {
  position: absolute; right: .85rem; bottom: .85rem; z-index: 1;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--ink);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(8px);
  transition: .35s ease;
  pointer-events: none;
}
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.05); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:hover .gallery-zoom, .gallery-item:focus-visible .gallery-zoom {
  opacity: 1; transform: none;
}
.gallery-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.lightbox {
  position: fixed; inset: 0; z-index: 1080;
  background: rgba(0, 0, 0, .92);
  display: flex; align-items: center; justify-content: center;
  padding: 4.5rem 4.2rem 4rem;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
body.lightbox-open { overflow: hidden; }
.lightbox-stage {
  max-width: min(1080px, 100%);
  max-height: 100%;
  text-align: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: calc(100dvh - 9.5rem);
  width: auto; height: auto;
  border-radius: .75rem;
  object-fit: contain;
}
.lightbox-meta {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; margin-top: .85rem; color: rgba(255,255,255,.82);
  font-size: .9rem;
}
.lightbox-count { color: var(--gold); letter-spacing: .08em; font-size: .78rem; }
.lb-btn {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08); color: #fff;
  display: grid; place-items: center; font-size: 1.2rem;
  transition: background .2s ease;
}
.lb-btn:hover { background: rgba(255,255,255,.18); }
.lb-close { top: 1.1rem; right: 1.1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* Contact */
.contact {
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(255,163,32,.12), transparent 60%),
    var(--cream);
}
.contact-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: calc(var(--radius) + .2rem);
  padding: 2rem 2.1rem 1.85rem;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  position: relative;
}
.contact-card h3 {
  font-size: 1.55rem;
  margin: 0 0 .25rem;
}
.contact-lead { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.35rem; }
.field { position: relative; }
.field-ico {
  position: absolute; left: .95rem; top: 2.55rem;
  color: var(--ink-soft); pointer-events: none; font-size: 1rem;
}
.form-control, .form-select {
  border: 1px solid var(--sand); border-radius: .8rem;
  padding: .85rem 1rem; background: var(--white);
  min-height: 48px;
}
.form-control.has-ico { padding-left: 2.55rem; }
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  box-shadow: none;
  background: #fff;
}
.form-control.is-invalid, .form-select.is-invalid {
  border-color: #d64545;
  outline: 2px solid #d64545;
  outline-offset: 1px;
  box-shadow: none;
}
.form-label { font-size: .82rem; font-weight: 500; letter-spacing: .04em; margin-bottom: .35rem; }
.req { color: #d64545; }
.form-hint { font-size: .75rem; color: var(--ink-soft); margin-top: .3rem; }
.form-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
}
.btn-wa {
  display: inline-flex; align-items: center; gap: .45rem;
  border-radius: 999px; padding: .7rem 1.2rem;
  background: #128c4a; color: #fff !important; font-weight: 600; border: 0;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}
.btn-wa:hover { filter: brightness(1.08); transform: translateY(-1px); color: #fff !important; }
.btn-gold[disabled] { opacity: .7; pointer-events: none; }
.form-success {
  display: none; text-align: center; padding: 1.4rem .5rem .4rem;
}
.form-success.show { display: block; }
.form-success .ok {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  border-radius: 50%; background: rgba(31,122,76,.12); color: var(--leaf-deep);
  display: grid; place-items: center; font-size: 1.5rem;
}
.contact-card.sent .contact-fields { display: none; }
.info-tile {
  display: flex; gap: 1rem; padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,163,32,.08);
}
.info-tile:last-child { border-bottom: 0; }
.info-ico {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(31,122,76,.12); color: var(--leaf-deep);
  display: grid; place-items: center; font-size: 1.15rem;
}

/* Footer */
footer {
  background: #ff8f00;
  color: rgba(26,26,26,.82);
  padding: 4.2rem 0 1.4rem;
}
footer a { color: inherit; text-decoration: none; }
footer a:hover { color: #fff; }
footer h3 { color: #1a1a1a; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .78rem; }
.foot-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.foot-contact p { margin: 0 0 .35rem; }
.foot-contact a { font-weight: 600; }
.foot-brand {
  font-family: "Cormorant Garamond", serif; font-size: 1.8rem;
  letter-spacing: .12em; color: #1a1a1a; font-weight: 700;
}
.social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(26,26,26,.2);
  display: grid; place-items: center;
  transition: .25s ease;
}
.social a:hover { background: #fff; color: #1a1a1a; border-color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(26,26,26,.12);
  margin-top: 2.4rem; padding-top: 1.2rem;
  font-size: .85rem; color: rgba(26,26,26,.55);
}

#toTop {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 40;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: #1a1a1a; border: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: .3s ease;
}
#toTop.show { opacity: 1; visibility: visible; transform: none; }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: none; }

.toast-like {
  position: fixed; bottom: 1.4rem; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--gold); color: #1a1a1a; padding: .85rem 1.3rem;
  border-radius: 999px; z-index: 50; opacity: 0; pointer-events: none;
  transition: .35s ease; font-size: .92rem;
}
.toast-like.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 1199.98px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .why-points { grid-template-columns: repeat(3, 1fr); }
  .why-posters { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991.98px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .navbar-collapse {
    background: rgba(255,163,32,.96);
    margin-top: .8rem; padding: 1rem; border-radius: 1rem;
  }
  .about-frame { max-width: 380px; }
  .gallery-grid { column-count: 2; }
}
@media (max-width: 767.98px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-points { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .section-pad { padding: 4.4rem 0; }
  .contact-card { padding: 1.4rem; }
  .gallery-grid { column-count: 1; }
  .why-posters { grid-template-columns: 1fr; }
  .lightbox { padding: 4.2rem 1rem 3.4rem; }
  .lb-prev { left: .4rem; }
  .lb-next { right: .4rem; }
  .product-info { padding: .8rem .85rem 1rem; }
  .product-info h3 { font-size: 1.1rem; }
}
@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-img { animation: none; }
  .product-card:hover { transform: none; }
  .product-card:hover .product-media img { transform: none; }
}