:root {
  --saffron: #d86f17;
  --marigold: #f5b642;
  --deep: #24130c;
  --leaf: #276a4b;
  --cream: #fffaf1;
  --paper: #fffdf8;
  --line: #ead9c0;
  --muted: #705e50;
  --shadow: 0 20px 50px rgba(61, 35, 17, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--deep);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 52px);
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--saffron);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: clamp(16px, 2vw, 21px);
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav a.active,
.nav a:hover {
  color: #fff;
  background: var(--leaf);
}

.hero,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 8vw, 96px) clamp(16px, 5vw, 72px) clamp(28px, 6vw, 70px);
  background:
    linear-gradient(120deg, rgba(216, 111, 23, 0.18), rgba(39, 106, 75, 0.08)),
    var(--cream);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("https://c.ndtvimg.com/2023-12/na2ncado_ram-mandir-3d_625x300_27_December_23.jpg?downsize=773%3A435");
  background-position: center;
  background-size: cover;
  opacity: 0.48;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 250, 241, 0.76), rgba(255, 250, 241, 0.34));
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.contact-hero {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 44vh;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--leaf);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: clamp(38px, 7vw, 86px);
}

h2 {
  font-size: clamp(25px, 4vw, 42px);
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: #594637;
  font-size: clamp(17px, 2.1vw, 22px);
}

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

.button,
.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary,
.whatsapp-float {
  color: #fff;
  background: var(--leaf);
}

.button.ghost {
  color: var(--deep);
  background: #fff;
  border-color: var(--line);
}

.hero-visual {
  position: relative;
  min-height: min(72vw, 520px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.72), transparent 42%),
    linear-gradient(135deg, #f4b23d, #d86f17 48%, #276a4b);
}

.mandala {
  position: absolute;
  inset: 8%;
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
}

.mandala::before,
.mandala::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 2px dashed rgba(255, 255, 255, 0.58);
  border-radius: 50%;
}

.mandala::after {
  inset: 27%;
  border-style: solid;
}

.product-stack {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: grid;
  gap: 10px;
}

.product-stack span {
  padding: 14px 16px;
  color: #fff;
  background: rgba(36, 19, 12, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900;
}

.intro,
.details-band,
.gallery-section,
.contact-grid,
.newsletter-band {
  padding: clamp(34px, 6vw, 72px) clamp(16px, 5vw, 72px);
}

.intro {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.intro p {
  margin: 10px 0 0;
  color: var(--muted);
}

.quick-info {
  min-width: min(100%, 260px);
  padding: 18px;
  color: #fff;
  background: var(--deep);
  border-radius: 8px;
}

.quick-info span,
.quick-info strong {
  display: block;
}

.quick-info span {
  color: #f3d7b4;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.details-band,
.newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 22px;
  align-items: center;
  background: #fff;
}

.details-band p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
}

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

.info-list span {
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.section-heading {
  margin-bottom: 22px;
}

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

.gallery-controls {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.product-card {
  display: block;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(61, 35, 17, 0.08);
}

.product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: 22px;
}

.contact-panel,
.map-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: clamp(20px, 4vw, 34px);
}

.enquiry-form {
  display: grid;
  align-content: start;
  gap: 14px;
}

.enquiry-form label,
.newsletter-band form {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--deep);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

address {
  margin: 16px 0 22px;
  color: var(--muted);
  font-style: normal;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-list div {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.map-panel {
  min-height: 440px;
  overflow: hidden;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(16px, 5vw, 72px);
  color: #fff;
  background: var(--deep);
}

.site-footer p {
  margin: 0;
}

.site-footer small {
  display: block;
  margin-top: 5px;
  color: #e9caa2;
}

.site-footer a {
  color: #f5b642;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 760px) {
  .site-header,
  .intro,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
  }

  .nav a {
    flex: 1;
    text-align: center;
  }

  .hero,
  .contact-hero,
  .contact-grid,
  .details-band,
  .newsletter-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 340px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-inline: 6px;
  }

  .product-card {
    max-width: 100%;
    margin-inline: auto;
  }

  .whatsapp-float {
    width: 100%;
  }
}
