:root {
  --green-950: #102218;
  --green-900: #183722;
  --green-700: #2f6b3f;
  --green-500: #5fa64b;
  --saffron: #f2a31b;
  --gold: #d9a441;
  --cream: #fff8ec;
  --paper: #fffdf8;
  --ink: #172117;
  --muted: #68726a;
  --line: #e6dfcf;
  --shadow: 0 18px 45px rgba(16, 34, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 70px);
  color: #fff;
  background: rgba(16, 34, 24, 0.95);
  border-bottom: 1px solid rgba(217, 164, 65, 0.35);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green-950);
  font-weight: 900;
  background: linear-gradient(135deg, var(--saffron), #ffe7a4);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(242, 163, 27, 0.12);
}

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

.brand strong {
  font-size: 16px;
  line-height: 1.15;
  white-space: nowrap;
}

.brand small {
  margin-top: 2px;
  color: #d7e4d6;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 10px 12px;
  color: #edf5eb;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--saffron);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.section-anchor {
  scroll-margin-top: 86px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  min-height: 100vh;
  padding: 130px clamp(18px, 5vw, 70px) 72px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(16, 34, 24, 0.96) 0%, rgba(24, 55, 34, 0.92) 48%, rgba(47, 107, 63, 0.84) 100%),
    radial-gradient(circle at top right, rgba(242, 163, 27, 0.26), transparent 34%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -36% -12%;
  height: 45%;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(-3deg);
}

.hero-content,
.hero-product {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--saffron);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.98;
}

.tagline {
  max-width: 650px;
  margin: 22px 0 0;
  color: #f5fff1;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 800;
}

.hero-text {
  max-width: 620px;
  margin: 20px 0 0;
  color: #dceadc;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-primary {
  color: var(--green-950);
  background: var(--saffron);
}

.btn-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-product {
  justify-self: center;
  width: min(430px, 100%);
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-product img {
  width: 100%;
  height: min(62vh, 560px);
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.section {
  padding: 84px clamp(18px, 5vw, 70px);
}

.intro-section,
.why-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: stretch;
}

.section-copy h2,
.section-head h2,
.why-card h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
}

.section-copy p,
.section-head p,
.why-card p,
.note-card p,
.contact-panel p {
  color: var(--muted);
  font-size: 16px;
}

.section-head {
  max-width: 850px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head.compact {
  margin-bottom: 26px;
}

.promise-card,
.note-card,
.why-card {
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(16, 34, 24, 0.08);
}

.promise-card {
  color: #fff;
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
  border-color: rgba(217, 164, 65, 0.35);
}

.promise-card span {
  color: var(--saffron);
  font-weight: 900;
  text-transform: uppercase;
}

.promise-card strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.promise-card p {
  color: #e4f0e1;
}

.products-section {
  background: var(--cream);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 34, 24, 0.08);
}

.product-card.featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

.product-card.featured img {
  width: 48%;
  min-height: 320px;
}

.product-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-card span,
.wellness-grid article::before,
.contact-person span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card h3,
.wellness-grid h3 {
  margin: 10px 0 8px;
  font-size: 21px;
  line-height: 1.18;
}

.product-card p,
.wellness-grid p {
  margin: 0;
  color: var(--muted);
}

.product-card a {
  width: fit-content;
  margin-top: 18px;
  padding: 10px 14px;
  color: var(--green-950);
  background: var(--saffron);
  border-radius: 4px;
  font-weight: 900;
}

.wellness-section {
  background: #fff;
}

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.wellness-grid article {
  position: relative;
  padding: 18px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.wellness-grid article::before {
  content: "Jeevan Shree Range";
  display: block;
  margin-bottom: 10px;
}

.wellness-grid img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 6px;
}

.why-section {
  color: #fff;
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
}

.why-card,
.note-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.why-card p,
.note-card p {
  color: #dbe7d9;
}

.note-card strong {
  color: var(--saffron);
  font-size: 24px;
}

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

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.contact-section {
  background:
    linear-gradient(rgba(255, 248, 236, 0.94), rgba(255, 248, 236, 0.94)),
    radial-gradient(circle at top left, rgba(95, 166, 75, 0.24), transparent 42%);
}

.contact-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 54px);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-person {
  display: grid;
  gap: 4px;
  width: fit-content;
  margin: 28px auto 18px;
}

.contact-person strong {
  font-size: 26px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  color: var(--green-950);
  background: var(--saffron);
  border-radius: 4px;
  font-size: 24px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 70px);
  color: #eaf4e7;
  background: var(--green-950);
  border-top: 1px solid rgba(217, 164, 65, 0.35);
}

.site-footer span {
  color: var(--saffron);
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
  }

  .brand strong {
    font-size: 14px;
    white-space: normal;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 42px;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 18px 18px;
    background: var(--green-950);
    border-bottom: 1px solid rgba(217, 164, 65, 0.35);
  }

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

  .nav-menu a {
    padding: 12px 0;
  }

  .hero,
  .intro-section,
  .why-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-product {
    width: min(360px, 100%);
  }

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

  .product-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .product-grid,
  .wellness-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: auto;
    flex-direction: column;
  }

  .product-card.featured img {
    width: 100%;
    min-height: 0;
  }

  .gallery-grid img {
    height: 310px;
  }

  .phone-link {
    width: 100%;
    font-size: 22px;
  }
}
