:root {
  --orange: #ED4923;
  --orange-deep: #C93C1D;
  --green: #0D8443;
  --green-deep: #0A5E33;
  --ink: #393939;
  --muted: #706C65;
  --cream: #FFF8F1;
  --cream-2: #F6EADF;
  --paper: #FFFCF8;
  --line: rgba(57,57,57,.13);
  --white: #FFFFFF;
  --shadow: 0 28px 70px rgba(77, 44, 24, .14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(237,73,35,.08), transparent 30%),
    radial-gradient(circle at 8% 48%, rgba(13,132,67,.07), transparent 25%),
    var(--paper);
  font-family: "Noto Sans Devanagari", "Noto Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 110px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,252,248,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(57,57,57,.08);
}
.nav-wrap { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 160px; height: 66px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 650; }
.nav-links > a:not(.nav-cta) { position: relative; }
.nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--orange); transition: .25s ease; }
.nav-links > a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--green); color: white; box-shadow: 0 8px 20px rgba(13,132,67,.18); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 9px; }
.menu-toggle span { display:block; width:24px; height:2px; margin:5px; background:var(--ink); }

.hero { min-height: calc(100vh - 84px); display: flex; align-items: center; padding-top: 74px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; color: var(--green); }
.eyebrow.light { color: #FDE2D7; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(237,73,35,.1); }
.hero h1, h2 { margin: 18px 0 22px; letter-spacing: -.045em; line-height: 1.08; }
.hero h1 { font-size: clamp(48px, 6vw, 84px); font-weight: 820; }
.hero h1 em { font-family: Georgia, serif; font-weight: 400; color: var(--orange); }
.hero h1 span, h2 span { color: var(--green); }
.lead { max-width: 610px; margin: 0; font-size: clamp(18px, 2vw, 22px); color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 800; font-size: 14px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: white; box-shadow: 0 12px 26px rgba(237,73,35,.24); }
.btn-primary:hover { background: var(--orange-deep); }
.btn-secondary { background: transparent; border: 1px solid var(--line); }
.btn-secondary:hover { background: var(--cream); }
.btn-light { background: white; color: var(--green-deep); }
.promise-row { margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 610px; }
.promise-row strong { display:block; font-size:16px; color:var(--ink); }
.promise-row span { display:block; font-size:12px; color:var(--muted); margin-top:3px; }

.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.image-shell { position: relative; width: min(100%, 560px); aspect-ratio: .88; border-radius: 48% 48% 28px 28px; overflow: hidden; background: var(--cream-2); box-shadow: var(--shadow); z-index: 2; }
.image-shell img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; transform: scale(1.02); }
.image-shell::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(15,62,36,.2), transparent 36%); pointer-events:none; }
.floating-label { position:absolute; z-index:3; left:24px; bottom:24px; right:24px; padding:18px 20px; border-radius:18px; background:rgba(255,252,248,.9); backdrop-filter: blur(12px); border:1px solid rgba(255,255,255,.65); }
.floating-label span { display:block; color:var(--orange); text-transform:uppercase; letter-spacing:.16em; font-size:10px; font-weight:800; }
.floating-label strong { display:block; font-family:Georgia,serif; font-size:24px; margin-top:3px; }
.shape { position:absolute; border-radius:50%; z-index:1; }
.shape-one { width:180px; height:180px; background:rgba(13,132,67,.11); left:-45px; top:48px; }
.shape-two { width:120px; height:120px; border:24px solid rgba(237,73,35,.11); right:-30px; bottom:85px; }

.marquee { overflow:hidden; border-block:1px solid rgba(237,73,35,.16); background:#FFF0E8; padding:16px 0; }
.marquee-track { width:max-content; display:flex; gap:28px; align-items:center; animation:marquee 25s linear infinite; color:var(--orange-deep); font-size:14px; font-weight:800; letter-spacing:.04em; }
.marquee-track i { color:var(--green); font-style:normal; }
@keyframes marquee { to { transform:translateX(-50%); } }

.product { background: linear-gradient(180deg, rgba(246,234,223,.56), rgba(255,252,248,0)); }
.product-grid { display:grid; grid-template-columns: .96fr 1.04fr; gap:80px; align-items:center; }
.product-card { position:relative; }
.product-image-wrap { position:relative; border-radius: var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); background:var(--cream); }
.product-image-wrap img { width:100%; aspect-ratio:1.08; object-fit:cover; }
.product-index { position:absolute; top:20px; left:20px; width:54px; height:54px; display:grid; place-items:center; border-radius:50%; background:rgba(255,255,255,.9); font-family:Georgia,serif; color:var(--orange); font-weight:700; }
.product-copy h2, .section-head h2, .about-copy h2, .contact-panel h2 { font-size:clamp(40px,5vw,66px); font-weight:820; }
.product-copy > p { color:var(--muted); max-width:560px; font-size:18px; }
.feature-list { margin:32px 0 34px; display:grid; gap:14px; }
.feature-item { display:flex; align-items:center; gap:14px; padding:14px 0; border-bottom:1px solid var(--line); }
.feature-icon { width:38px; height:38px; border-radius:50%; display:grid; place-items:center; background:rgba(13,132,67,.1); color:var(--green); }
.feature-item strong { display:block; }
.feature-item small { display:block; color:var(--muted); margin-top:1px; }
.text-link { display:inline-flex; gap:8px; align-items:center; font-weight:800; color:var(--orange-deep); border-bottom:1px solid currentColor; padding-bottom:4px; }

.why { background: var(--green-deep); color:white; }
.section-head { max-width:780px; margin-bottom:48px; }
.why .section-head .eyebrow { color:#BAE3C9; }
.why .section-head h2 { color:white; }
.why .section-head h2 span { color:#FFD5C8; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.value-card { position:relative; padding:34px; min-height:310px; border:1px solid rgba(255,255,255,.15); border-radius:var(--radius-md); background:rgba(255,255,255,.055); }
.value-no { position:absolute; top:20px; right:22px; font-family:Georgia,serif; color:rgba(255,255,255,.45); }
.value-mark { width:62px; height:62px; display:grid; place-items:center; border-radius:50%; background:#FCE7D9; color:var(--orange-deep); font-size:26px; margin-bottom:48px; }
.value-card h3 { font-size:30px; margin:0 0 10px; }
.value-card p { margin:0; color:rgba(255,255,255,.72); }

.about-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:85px; align-items:center; }
.about-art { position:relative; width:min(100%,470px); }
.about-art img { width:100%; border-radius:36px; box-shadow:var(--shadow); }
.stamp { position:absolute; right:-38px; bottom:42px; width:118px; height:118px; border-radius:50%; display:grid; place-items:center; text-align:center; background:var(--orange); color:white; font-weight:900; letter-spacing:.06em; line-height:1.2; transform:rotate(8deg); box-shadow:0 16px 35px rgba(237,73,35,.22); }
.about-copy p { color:var(--muted); font-size:17px; max-width:650px; }
.about-copy blockquote { margin:34px 0; padding:24px 26px; border-left:4px solid var(--green); background:#F4F8F4; border-radius:0 18px 18px 0; font-family:Georgia,"Noto Serif Devanagari",serif; font-size:26px; color:var(--green-deep); }
.about-copy .muted { font-size:14px; }

.contact { padding-top:70px; }
.contact-panel { display:flex; align-items:center; justify-content:space-between; gap:40px; padding:64px; border-radius:36px; background:linear-gradient(135deg, var(--orange) 0%, #D94020 58%, #B9341A 100%); color:white; box-shadow:0 28px 70px rgba(178,60,28,.24); }
.contact-panel h2 { margin-bottom:0; }
.contact-panel h2 span { color:#FFE1D6; }
.contact-actions { display:flex; flex-direction:column; align-items:flex-end; gap:14px; min-width:280px; }
.contact-note { font-size:13px; color:rgba(255,255,255,.72); letter-spacing:.08em; }

.site-footer { padding:34px 0 44px; }
.footer-grid { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:24px; border-top:1px solid var(--line); padding-top:30px; }
.footer-brand img { width:135px; height:58px; object-fit:contain; }
.footer-grid > p { margin:0; font-size:13px; color:var(--muted); }
.copyright { text-align:right; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }

@media (max-width: 920px) {
  .section-pad { padding:82px 0; }
  .menu-toggle { display:block; }
  .nav-links { position:absolute; top:84px; left:20px; right:20px; display:none; flex-direction:column; align-items:stretch; gap:4px; background:var(--paper); border:1px solid var(--line); padding:14px; border-radius:20px; box-shadow:var(--shadow); }
  .nav-links.open { display:flex; }
  .nav-links a { padding:12px 14px; }
  .nav-cta { text-align:center; }
  .hero-grid, .product-grid, .about-grid { grid-template-columns:1fr; gap:48px; }
  .hero { min-height:auto; }
  .hero-copy { order:1; }
  .hero-visual { order:2; min-height:520px; }
  .image-shell { width:min(90vw,560px); aspect-ratio:1; border-radius:38px; }
  .product-copy { order:1; }
  .product-card { order:2; }
  .values-grid { grid-template-columns:1fr; }
  .value-card { min-height:230px; }
  .about-art { width:min(80vw,470px); margin-inline:auto; }
  .contact-panel { padding:48px 34px; flex-direction:column; align-items:flex-start; }
  .contact-actions { align-items:flex-start; min-width:0; }
  .footer-grid { grid-template-columns:1fr; text-align:center; }
  .footer-brand { justify-self:center; }
  .copyright { text-align:center; }
}

@media (max-width: 560px) {
  .container { width:min(100% - 28px, var(--container)); }
  .nav-wrap { height:74px; }
  .brand img { width:132px; height:54px; }
  .nav-links { top:74px; left:14px; right:14px; }
  .hero { padding-top:54px; }
  .hero h1 { font-size:46px; }
  .lead { font-size:17px; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .btn { width:100%; }
  .promise-row { gap:10px; }
  .promise-row strong { font-size:14px; }
  .promise-row span { font-size:10px; }
  .hero-visual { min-height:auto; }
  .image-shell { width:100%; aspect-ratio:.92; border-radius:28px; }
  .floating-label { left:14px; right:14px; bottom:14px; }
  .shape { display:none; }
  .product-copy h2, .section-head h2, .about-copy h2, .contact-panel h2 { font-size:40px; }
  .about-art { width:100%; }
  .stamp { right:-6px; bottom:26px; width:100px; height:100px; font-size:13px; }
  .contact-panel { padding:38px 24px; border-radius:26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}
