:root {
  --green-950: #071b3a;
  --green-900: #0b2f66;
  --green-850: #11458d;
  --green-800: #155eb8;
  --green-700: #d9233f;
  --gold: #d9233f;
  --gold-light: #f0445d;
  --gold-dark: #a9162c;
  --ivory: #f8fbff;
  --muted: #667085;
  --ink: #101828;
  --line: rgba(21, 94, 184, 0.18);
  --glass: rgba(255, 255, 255, 0.76);
  --shadow: 0 20px 55px rgba(7, 27, 58, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(217, 35, 63, 0.11), transparent 27rem),
    radial-gradient(circle at 84% 20%, rgba(21, 94, 184, 0.1), transparent 30rem),
    linear-gradient(180deg, #ffffff, #f4f8ff 54%, #ffffff);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 0;
  border-top: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(7, 27, 58, 0.1);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark,
.mini-logo {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(217, 35, 63, 0.2)),
    var(--green-800);
  box-shadow: none;
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  overflow: hidden;
}

.brand-mark img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  background: white;
}

.brand-mark img:not([src]),
.brand-mark img[src=""] {
  display: none;
}

.brand-mark span {
  position: relative;
  z-index: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy span {
  color: var(--green-900);
  font-family: "Cinzel", serif;
  font-size: 1.34rem;
  font-weight: 700;
}

.brand-copy small {
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--green-900);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover {
  color: white;
  background: var(--green-800);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: white;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-800);
}

.section {
  position: relative;
  padding: 72px 0;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: start;
  padding: 34px 0 46px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(239, 245, 255, 0.88)),
    radial-gradient(circle at 74% 38%, rgba(217, 35, 63, 0.16), transparent 22rem),
    repeating-linear-gradient(45deg, rgba(21, 94, 184, 0.045) 0 1px, transparent 1px 18px);
}

.hero-bg::after {
  content: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 34px;
}

.brand-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 0.84rem;
}

.mini-logo {
  width: 34px;
  height: 34px;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cinzel", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0 0 10px;
  color: var(--green-700);
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.95;
  text-shadow: 0 10px 34px rgba(7, 27, 58, 0.12);
}

.hero-subtitle {
  margin-bottom: 16px;
  color: var(--green-800);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--green-700), var(--green-800), var(--green-900));
  box-shadow: 0 15px 32px rgba(217, 35, 63, 0.22);
}

.btn-secondary {
  color: var(--green-800);
  background: white;
}

.hero-showcase {
  min-height: 0;
  display: grid;
  place-items: start center;
}

.hero-products-slider {
  position: relative;
  width: min(720px, 100%);
  height: clamp(560px, 74vh, 760px);
  border-radius: 10px;
  filter: drop-shadow(0 26px 36px rgba(7, 27, 58, 0.16));
}

.hero-products-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-products-image.active {
  opacity: 1;
}

.luxury-plinth {
  position: relative;
  width: min(500px, 100%);
  height: 520px;
}

.luxury-plinth::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 48px;
  width: 86%;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(21, 94, 184, 0.24), rgba(21, 94, 184, 0.02) 68%, transparent);
  transform: translateX(-50%);
  filter: blur(3px);
}

.packshot {
  position: absolute;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(21, 94, 184, 0.26);
  color: white;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #155eb8, #0b2f66 66%, #071b3a);
  box-shadow: var(--shadow), inset 0 0 30px rgba(255, 255, 255, 0.13);
  overflow: hidden;
}

.packshot::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.packshot span {
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.packshot strong {
  font-size: 1.05rem;
}

.packshot small {
  color: #def8e8;
  font-weight: 700;
}

.packshot-tall {
  right: 64px;
  bottom: 92px;
  width: 190px;
  height: 320px;
}

.packshot-small {
  left: 56px;
  bottom: 112px;
  width: 156px;
  height: 210px;
}

.packshot-wide {
  left: 142px;
  bottom: 46px;
  width: 250px;
  height: 110px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p,
.section-copy p,
.about-panel p,
.feature-item p,
.contact-info p,
.footer p {
  color: var(--muted);
}

.about-panel,
.contact-panel,
.review-card,
.product-card,
.feature-item,
.why-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff, #f5f8ff);
  box-shadow: var(--shadow);
}

.about-panel {
  min-height: 280px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 32px;
}

.seal {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--green-800);
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: inset 0 0 34px rgba(21, 94, 184, 0.1), 0 16px 34px rgba(7, 27, 58, 0.12);
}

.product-grid,
.why-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  padding: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 94, 184, 0.42);
  box-shadow: 0 30px 80px rgba(7, 27, 58, 0.16), 0 0 34px rgba(217, 35, 63, 0.1);
}

.product-image,
.feature-visual,
.gallery-tile {
  border-radius: var(--radius);
  border: 1px solid rgba(21, 94, 184, 0.18);
  background-color: #eef4ff;
  background-size: cover;
  background-position: center;
}

.product-image {
  height: 210px;
  margin-bottom: 18px;
}

.product-photo {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
  padding: 10px;
  border: 1px solid rgba(21, 94, 184, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
}

.product-card h3,
.feature-item h3,
.why-card h3,
.review-card strong,
.contact-info h3,
.footer h3 {
  color: var(--green-900);
}

.product-card h3 {
  min-height: 52px;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.22;
}

.product-card p,
.review-card p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: white;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  font-weight: 800;
}

.agarbatti {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.22)),
    radial-gradient(circle at 55% 20%, rgba(217, 35, 63, 0.22), transparent 22%),
    linear-gradient(125deg, #eef4ff, #fff8fa);
}

.agarbatti::after,
.kitchen::after,
.home::after,
.ayurveda::after,
.tea::after,
.laundry::after {
  content: "";
  display: block;
  width: 92px;
  height: 146px;
  margin: 34px auto 0;
  border: 1px solid rgba(21, 94, 184, 0.32);
  border-radius: 7px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.7), transparent 26%), linear-gradient(#155eb8, #d9233f);
  box-shadow: 0 22px 45px rgba(7, 27, 58, 0.16), inset 0 0 22px rgba(255, 255, 255, 0.18);
}

.kitchen {
  background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.76), transparent 20%), linear-gradient(135deg, #eaf2ff, #fff8fa);
}

.home {
  background-image: radial-gradient(circle at 65% 20%, rgba(217, 35, 63, 0.18), transparent 24%), linear-gradient(135deg, #edf4ff, #ffffff);
}

.ayurveda {
  background-image: radial-gradient(circle at 50% 18%, rgba(21, 94, 184, 0.2), transparent 25%), linear-gradient(135deg, #eaf2ff, #ffffff);
}

.tea {
  background-image: radial-gradient(circle at 50% 22%, rgba(217, 35, 63, 0.16), transparent 23%), linear-gradient(135deg, #fff3f5, #ffffff);
}

.laundry {
  background-image: radial-gradient(circle at 35% 24%, rgba(133, 178, 255, 0.26), transparent 23%), linear-gradient(135deg, #eaf2ff, #ffffff);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-item {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
}

.feature-visual {
  aspect-ratio: 1;
}

.detail-product-image {
  width: 148px;
  height: 148px;
  object-fit: contain;
  padding: 8px;
  background: white;
}

.why-card {
  min-height: 150px;
  padding: 26px;
  display: grid;
  align-content: center;
  gap: 14px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  background: #f1f6ff;
}

.why-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green-800);
  font-weight: 900;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 16px;
}

.gallery-tile {
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
}

.gallery-tile span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: white;
  background: rgba(7, 27, 58, 0.88);
  font-weight: 800;
}

.review-card {
  padding: 28px;
}

.stars {
  margin-bottom: 16px;
  color: var(--green-700);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-list article {
  padding: 18px;
  border: 1px solid rgba(21, 94, 184, 0.16);
  border-radius: var(--radius);
  background: #f7faff;
}

.info-list a {
  color: var(--green-800);
  font-weight: 800;
}

.contact-panel {
  padding: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 94, 184, 0.2);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: white;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(21, 94, 184, 0.12);
}

.map-frame {
  min-height: 270px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(21, 94, 184, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 35, 63, 0.14), transparent 12rem),
    radial-gradient(circle at 82% 72%, rgba(21, 94, 184, 0.15), transparent 13rem),
    linear-gradient(135deg, #ffffff, #edf4ff);
}

.map-card {
  min-height: 270px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 26px;
}

.map-pin {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  font-size: 1.8rem;
  font-weight: 900;
}

.map-card h3 {
  margin-bottom: 6px;
  color: var(--green-900);
}

.map-card p {
  margin-bottom: 16px;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #edf4ff);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  padding: 54px 0 36px;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.footer a:hover {
  color: var(--green-800);
}

.footer-brand {
  margin-bottom: 16px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-800);
  background: white;
}

.whatsapp-icon {
  width: 31px;
  height: 31px;
  display: block;
  fill: currentColor;
}

.whatsapp-icon.small {
  width: 21px;
  height: 21px;
}

.copyright {
  padding: 18px;
  border-top: 1px solid rgba(21, 94, 184, 0.13);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, #32e375, #14b94d);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32), 0 0 0 8px rgba(37, 211, 102, 0.12);
  transition: transform 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-inner,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 30px 0 42px;
  }

  .hero-showcase {
    min-height: 0;
  }

  .hero-products-slider {
    width: min(620px, 100%);
    height: clamp(500px, 72vh, 690px);
  }

  .luxury-plinth {
    height: 420px;
  }

  .product-grid,
  .why-grid,
  .review-grid,
  .featured-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    border: 0;
    box-shadow: 0 10px 24px rgba(7, 27, 58, 0.08);
  }

  .navbar {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    display: grid;
    padding: 18px;
    border: 0;
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
    box-shadow: 0 18px 28px rgba(7, 27, 58, 0.08);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .section {
    padding: 54px 0;
  }

  .hero {
    padding: 26px 0 34px;
  }

  .hero-inner {
    gap: 10px;
  }

  .hero-showcase {
    min-height: 0;
    margin-top: -8px;
  }

  .hero-products-slider {
    width: min(100%, 430px);
    height: clamp(430px, 66vh, 560px);
  }

  .luxury-plinth {
    height: 350px;
  }

  .packshot-tall {
    right: 28px;
    bottom: 74px;
    width: 148px;
    height: 250px;
  }

  .packshot-small {
    left: 18px;
    bottom: 92px;
    width: 126px;
    height: 174px;
  }

  .packshot-wide {
    left: 75px;
    bottom: 42px;
    width: 210px;
  }

  .product-grid,
  .why-grid,
  .review-grid,
  .featured-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-photo {
    height: 250px;
  }

  .feature-item,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .feature-visual {
    width: 150px;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-tile {
    min-height: 210px;
  }

  .hero-actions .btn,
  .contact-buttons .btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
