/* ========== CSS VARIABLES ========== */
:root {
  --accent: #ff9500;
  --accent-2: #ffb300;
  --bg: #fffaf4;
  --bg-2: #fff;
  --text: #333;
  --text-light: #555;
  --radius: 16px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.05);
  --shadow-md: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --max-width: 1200px;
  --trans: 0.3s ease;
}

/* Global resets */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{max-width:100%;display:block;height:auto;}
ul{list-style:disc;margin-left:1.25rem;}
a{text-decoration:none;color:var(--accent);}
a:hover{text-decoration:underline;}

/* Accessibility */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:1rem;
  top:1rem;
  width:auto;
  height:auto;
  padding:.5rem 1rem;
  background:var(--accent);
  color:#fff;
  z-index:1000;
}

/* Containers */
.container{
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 1.5rem;
}
.narrow{max-width:800px;}

/* Header */
.site-header{
  position:sticky;
  top:0;
  width:100%;
  background:var(--bg-2);
  box-shadow:var(--shadow-sm);
  z-index:999;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:80px;
}
.logo-frame{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.25rem .75rem;
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
}
.brand-logo{
  height:clamp(48px,8vw,90px);
  width:auto;
  object-fit:contain;
}

/* Nav */
.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:.5rem;
}
.nav-toggle-bar{
  display:block;
  width:22px;
  height:2px;
  margin:4px 0;
  background:var(--text);
  transition:var(--trans);
}
.nav-menu{
  display:flex;
  gap:2rem;
  list-style:none;
}
.nav-menu a{
  font-weight:500;
  color:var(--text);
  transition:color var(--trans);
}
.nav-menu a:hover{
  color:var(--accent);
}

/* Hero */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:8rem 1.5rem 4rem;
  background:linear-gradient(135deg,#fff6e5 0%,#ffe6c5 100%);
  overflow:hidden;
}
.hero-bg-accent{
  position:absolute;
  inset:auto auto 0 50%;
  width:800px;
  height:800px;
  transform:translateX(-50%);
  background:radial-gradient(circle at center,rgba(255,149,0,.25),rgba(255,149,0,0) 70%);
  pointer-events:none;
}
.hero-logo{
  width:min(280px,60vw);
  margin:0 auto 2rem;
  filter:drop-shadow(0 4px 12px rgba(0,0,0,.15));
}
.hero-title{
  font-size:clamp(2.5rem,5vw,4rem);
  font-weight:700;
  line-height:1.2;
  margin-bottom:1rem;
}
.accent-gradient{
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  color:transparent;
}
.hero-tagline{
  font-size:1.25rem;
  max-width:700px;
  margin:0 auto 2.5rem;
  color:var(--text-light);
}
.hero-cta-wrap{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:1rem;
}

/* Buttons */
.btn{
  display:inline-block;
  padding:.9rem 2rem;
  font-weight:600;
  font-size:1rem;
  border-radius:999px;
  border:2px solid transparent;
  transition:var(--trans);
}
.btn-accent{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}
.btn-accent:hover{
  background:var(--accent-2);
  border-color:var(--accent-2);
  text-decoration:none;
}
.btn-ghost{
  background:transparent;
  color:var(--accent);
  border-color:var(--accent);
}
.btn-ghost:hover{
  background:var(--accent);
  color:#fff;
}

/* Sections */
.section{
  padding:6rem 0;
}
.section-title{
  text-align:center;
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:3rem;
}

/* Cards grid */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
}
.card{
  background:var(--bg-2);
  border-radius:var(--radius);
  padding:2.25rem;
  box-shadow:var(--shadow-md);
  transition:transform var(--trans),box-shadow var(--trans);
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}
.card h3{
  margin-bottom:1rem;
  color:var(--accent);
  font-size:1.35rem;
}
.card ul{
  list-style:none;
  margin-left:0;
}
.card li{
  margin-bottom:.5rem;
  padding-left:1.25rem;
  position:relative;
  font-size:1rem;
  color:var(--text-light);
}
.card li:before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent);
}

/* Promo */
.promo-block{
  margin-top:4rem;
  text-align:center;
}
.promo-figure{
  margin:0 auto 1.5rem;
  max-width:600px;
}
.promo-figure img{
  border-radius:var(--radius);
  box-shadow:var(--shadow-md);
}
.promo-figure figcaption{
  font-size:.95rem;
  margin-top:.75rem;
  color:var(--text-light);
  line-height:1.4;
}
.promo-btn{
  margin-top:1rem;
}

/* About */
.section-about p{
  font-size:1.15rem;
  color:var(--text-light);
  text-align:center;
  margin-bottom:2rem;
}
.hindi-quote{
  font-size:1.35rem;
  font-weight:600;
  text-align:center;
  color:var(--accent);
  line-height:1.4;
}

/* Contact */
.section-contact .contact-tagline{
  font-size:1.25rem;
  color:var(--text-light);
  margin-bottom:2.5rem;
  text-align:center;
}
.contact-cta{text-align:center;}

/* Footer */
.site-footer{
  background:var(--text);
  color:#fff;
  padding:3rem 0;
  text-align:center;
}
.footer-inner{display:flex;flex-direction:column;align-items:center;gap:1rem;}
.footer-logo-frame{
  display:inline-flex;
  padding:.25rem .75rem;
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
}
.footer-logo{height:56px;width:auto;object-fit:contain;}

/* Scroll reveal animation */
[data-animate]{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .8s ease,transform .8s ease;
}
[data-animate].in-view{
  opacity:1;
  transform:translateY(0);
}
.reduce-motion [data-animate],
.reduce-motion [data-animate].in-view{
  opacity:1!important;
  transform:none!important;
  transition:none!important;
}

/* Responsive nav */
@media (max-width:720px){
  .nav-toggle{display:block;}
  .nav-menu{
    position:absolute;
    right:1.5rem;
    top:80px;
    flex-direction:column;
    gap:1.5rem;
    background:var(--bg-2);
    padding:2rem;
    border-radius:var(--radius);
    box-shadow:var(--shadow-md);
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:max-height var(--trans),opacity var(--trans);
  }
  .nav-menu.is-open{
    max-height:300px;
    opacity:1;
  }
}

/* Fine tune typography on very small screens */
@media (max-width:420px){
  .hero-tagline{font-size:1.05rem;}
  .hero-cta-wrap{gap:.75rem;}
  .btn{padding:.8rem 1.5rem;font-size:.95rem;}
  .section{padding:4rem 0;}
}
