/* ============================================================
   Swami Vijay International — style.css v5
   Palette: warm cream bg · saffron orange primary · turmeric gold accent
   ============================================================ */

:root{
  --cream:        #FFF8EE;
  --cream-card:   #FFFCF5;
  --cream-alt:    #F5EDD6;
  --orange:       #D4580A;   /* saffron orange — primary */
  --orange-dark:  #9C3800;   /* used only for text, shadows */
  --orange-light: #FFF2E8;
  --gold:         #C88A14;
  --gold-light:   #E8AD38;
  --gold-pale:    #FDF0C8;
  --ink:          #2A1810;
  --ink-soft:     #5C3D2A;
  --line:         rgba(212,88,10,0.14);
  --shadow:       0 12px 36px -14px rgba(156,56,0,0.2);
  --radius:       18px;
  --container:    1180px;
  --display:      'Fraunces','Georgia',serif;
  --devnagari:    'Tiro Devanagari Marathi',serif;
  --body:         'Work Sans',-apple-system,BlinkMacSystemFont,sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; background:var(--cream); color:var(--ink);
  font-family:var(--body); font-size:16px; line-height:1.65;
  -webkit-font-smoothing:antialiased; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--display); margin:0 0 .5em; color:var(--orange-dark); font-weight:600; }
p{ margin:0 0 1em; }
.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.mr{ font-family:var(--devnagari); }

/* ---- Eyebrow ---- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:600; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold); margin-bottom:14px;
}
.eyebrow::before{ content:""; width:22px; height:2px; background:var(--orange-light); display:inline-block; }

/* ---- Buttons ---- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 28px; border-radius:100px; font-weight:600; font-size:.95rem;
  border:2px solid transparent; cursor:pointer;
  transition:transform .18s,box-shadow .18s,background .18s; white-space:nowrap; text-decoration:none;
}
.btn:hover{ transform:translateY(-2px); }
.btn-gold{ background:var(--gold); color:var(--orange-dark); box-shadow:0 10px 24px -10px rgba(200,138,20,.55); }
.btn-gold:hover{ background:var(--gold-light); }
.btn-outline-dark{ background:transparent; border-color:var(--orange); color:var(--orange); }
.btn-outline-dark:hover{ background:var(--orange-light); }
.btn-orange{ background:var(--orange); color:#fff; box-shadow:0 10px 24px -10px rgba(212,88,10,.55); }
.btn-orange:hover{ background:var(--orange-dark); }
.btn-outline{ background:transparent; border-color:rgba(255,255,255,.6); color:#fff; }
.btn-outline:hover{ background:rgba(255,255,255,.12); border-color:#fff; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,248,238,.96);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.site-header .container{
  position:relative;               /* for absolute mobile nav */
  display:flex; align-items:center; gap:20px;
  padding-top:12px; padding-bottom:12px;
}

/* Logo */
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand-logo-img{ height:46px; width:auto; mix-blend-mode:multiply; flex-shrink:0; }
.brand-text .name{
  font-family:var(--display); font-size:1.05rem; font-weight:700;
  color:var(--orange-dark); letter-spacing:.01em; display:block;
}
.brand-text .tagline{ font-family:var(--devnagari); font-size:.72rem; color:var(--ink-soft); display:block; }

/* Nav */
.main-nav{ flex:1; }
.main-nav ul{ display:flex; justify-content:center; align-items:center; gap:28px; }
.main-nav a{
  font-weight:600; font-size:.93rem; color:var(--ink);
  position:relative; padding:4px 0;
}
.main-nav a::after{
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px;
  background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .2s;
}
.main-nav a:hover::after,.main-nav a.active::after{ transform:scaleX(1); }
.main-nav a.active{ color:var(--orange); }

/* Right actions */
.header-actions{ display:flex; align-items:center; gap:10px; flex-shrink:0; }

/* Lang switcher */
.lang-switcher{
  display:inline-flex; align-items:center;
  border:1.5px solid var(--orange); border-radius:100px; overflow:hidden;
}
.lang-switcher a{
  padding:6px 12px; font-size:.76rem; font-weight:700;
  color:var(--orange); transition:background .15s,color .15s; line-height:1;
}
.lang-switcher a.active{ background:var(--orange); color:#fff; }
.lang-switcher a:not(.active):hover{ background:var(--orange-light); }

/* Hide mobile-only elements on desktop */
.nav-close{ display:none; }

/* Hamburger button */
.nav-toggle{
  display:none; flex-direction:column; gap:5px;
  background:none; border:0; cursor:pointer; padding:8px; border-radius:6px;
}
.nav-toggle span{ width:24px; height:2px; background:var(--orange-dark); border-radius:2px; transition:transform .25s,opacity .25s; }
.nav-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   MOBILE  ≤ 860px
   Slide-in panel from right + dark overlay
   ---------------------------------------------------------------- */
@media(max-width:860px){
  .main-nav{
    position:fixed;
    top:0; right:0; bottom:0;
    width:min(300px,85vw);
    background:var(--cream);
    transform:translateX(100%);
    transition:transform .3s cubic-bezier(.4,0,.2,1);
    z-index:500;
    padding:70px 28px 40px;
    overflow-y:auto;
    box-shadow:-4px 0 32px rgba(0,0,0,.18);
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; align-items:flex-start; gap:0; }
  .main-nav li{ width:100%; border-bottom:1px solid var(--line); }
  .main-nav a{ display:block; padding:16px 0; font-size:1.05rem; }
  .main-nav a::after{ bottom:-1px; }
  .mobile-wa-item{ border-bottom:0!important; }
  .mobile-wa-item a{ margin:16px 0 0; }

  /* Close ✕ button inside sliding nav */
  .nav-close{
    position:absolute; top:16px; right:16px;
    width:36px; height:36px;
    background:none; border:none; cursor:pointer;
    font-size:1.3rem; color:var(--ink); border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    transition:background .15s;
  }
  .nav-close:hover{ background:var(--orange-light); }

  .nav-toggle{ display:flex; }
}

/* Dark overlay behind mobile nav */
.nav-overlay{
  display:none;
  position:fixed; inset:0; background:rgba(0,0,0,.45); z-index:499;
  opacity:0; transition:opacity .3s;
  pointer-events:none;
}
.nav-overlay.visible{ opacity:1; pointer-events:auto; }
@media(max-width:860px){ .nav-overlay{ display:block; } }

/* ================================================================
   SCALLOPED DIVIDERS
   ================================================================ */
.scallop{ width:100%; height:22px; display:block; background-repeat:repeat-x; background-size:44px 22px; }
.scallop-orange-on-cream{
  background-image:radial-gradient(circle at 22px 22px,transparent 21px,var(--orange) 22px);
  background-color:var(--cream);
}
.scallop-cream-on-orange{
  background-image:radial-gradient(circle at 22px 0,transparent 21px,var(--cream) 22px);
  background-color:var(--orange);
}
.scallop-alt-on-cream{
  background-image:radial-gradient(circle at 22px 22px,transparent 21px,var(--cream-alt) 22px);
  background-color:var(--cream);
}
.scallop-cream-on-alt{
  background-image:radial-gradient(circle at 22px 0,transparent 21px,var(--cream) 22px);
  background-color:var(--cream-alt);
}

/* ================================================================
   HERO  — flexbox, wraps on mobile
   ================================================================ */
.hero{
  background:linear-gradient(130deg,#FFF8EE 0%,#F9F0DC 55%,#F0E6C8 100%);
  padding:80px 0 64px; overflow:hidden; position:relative;
}
.hero::before{
  content:""; position:absolute;
  width:480px; height:480px; border-radius:50%;
  border:1px solid rgba(212,88,10,.1);
  right:-140px; top:-160px; pointer-events:none;
}
.hero::after{
  content:""; position:absolute;
  width:300px; height:300px; border-radius:50%;
  border:1px solid rgba(200,138,20,.2);
  right:-40px; top:-40px; pointer-events:none;
}
.hero .container{
  position:relative; z-index:2;
  display:flex; align-items:center; gap:48px;
  justify-content:space-between;
}
.hero-copy{ flex:1; max-width:560px; }
.hero-eyebrow{
  display:inline-block; font-family:var(--devnagari);
  font-size:.98rem; color:var(--gold); margin-bottom:18px; font-style:italic;
}
.hero h1{ font-size:clamp(2.1rem,3.6vw,3.2rem); line-height:1.1; color:var(--orange-dark); margin-bottom:18px; }
.hero h1 em{ color:var(--gold); font-style:italic; }
.hero .lede{ font-size:1.05rem; color:var(--ink-soft); max-width:46ch; margin-bottom:30px; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }

/* Logo circle in hero */
.hero-art{ flex:0 0 auto; display:flex; align-items:center; justify-content:center; }
.logo-circle{
  width:clamp(240px,30vw,360px);
  height:clamp(240px,30vw,360px);
  border-radius:50%;
  background:#fff;
  padding:18px;
  border:8px solid var(--gold);
  box-shadow:
    0 0 0 4px #fff,
    0 0 0 10px var(--gold-light),
    0 24px 56px -16px rgba(200,138,20,.45);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.logo-circle img{
  width:100%; height:100%; object-fit:contain;
  /* push the logo slightly up so globe+SVI text are fully in view */
  object-position:center;
}

/* Mobile hero — single column, logo below */
@media(max-width:860px){
  .hero{ padding:52px 0 48px; }
  .hero .container{ flex-direction:column; align-items:center; gap:32px; text-align:center; }
  .hero-copy{ max-width:100%; }
  .hero-ctas{ justify-content:center; }
  .logo-circle{ width:clamp(180px,55vw,260px); height:clamp(180px,55vw,260px); }
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section{ padding:80px 0; }
.section-cream{ background:var(--cream); }
.section-alt{ background:var(--cream-alt); }

/* Why Choose Us — dark orange (v4 style) */
.section-why{ background:var(--orange-dark); color:#fff; }
.section-why h2,.section-why h3{ color:#fff; }

/* About vision section — medium orange (primary, not dark) */
.section-orange{ background:var(--orange); color:#fff; }
.section-orange h2,.section-orange h3{ color:#fff; }

.section-head{ max-width:640px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ color:var(--ink-soft); font-size:1.05rem; }

/* ================================================================
   KATORI CATEGORY CARDS
   ================================================================ */
.katori-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
@media(max-width:720px){ .katori-grid{ grid-template-columns:1fr; } }
.katori-card{
  background:var(--cream-card); border-radius:var(--radius);
  padding:32px 28px; box-shadow:var(--shadow); border:1px solid var(--line);
}
.katori-card .cat-icon{
  width:60px; height:60px; border-radius:50%;
  background:linear-gradient(150deg,var(--gold-pale),var(--gold-light));
  display:flex; align-items:center; justify-content:center; font-size:1.6rem;
  margin-bottom:18px; box-shadow:0 8px 18px -8px rgba(200,138,20,.4);
}
.katori-card h3{ font-size:1.28rem; margin-bottom:6px; }
.katori-card .cat-sub{ color:var(--ink-soft); font-size:.92rem; margin-bottom:18px; }
.item-pills{ display:flex; flex-wrap:wrap; gap:9px; }
.item-pills li{
  background:var(--orange-light); border:1px solid rgba(212,88,10,.2);
  border-radius:100px; padding:7px 15px; font-size:.87rem; font-weight:500; color:var(--orange-dark);
}

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.product-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:28px; }
.product-grid-3{ grid-template-columns:repeat(3,1fr); }
@media(max-width:900px){ .product-grid-3{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .product-grid-3{ grid-template-columns:1fr; } }

.product-card{
  background:var(--cream-card); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--line);
  display:flex; flex-direction:column;
  transition:transform .22s,box-shadow .22s;
}
.product-card:hover{ transform:translateY(-6px); box-shadow:0 22px 44px -16px rgba(156,56,0,.28); }
.product-media-photo{
  position:relative; background:#FAF6F0;
  display:flex; align-items:center; justify-content:center;
  padding:0; overflow:hidden;
}
.product-media-photo img{
  width:100%; height:340px; object-fit:cover; object-position:top center;
  transition:transform .3s;
}
.product-card:hover .product-media-photo img{ transform:scale(1.04); }
.product-media-photo .tag{
  position:absolute; top:12px; left:12px;
  background:var(--orange); color:#fff;
  font-size:.7rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  padding:5px 11px; border-radius:100px; z-index:2;
}
.product-body{ padding:22px 24px 26px; flex:1; display:flex; flex-direction:column; }
.product-body h3{ font-size:1.18rem; margin-bottom:8px; }
.product-body p{ color:var(--ink-soft); font-size:.93rem; flex:1; }
.contact-order-link{
  margin-top:14px; display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:.88rem; color:var(--orange);
}
.contact-order-link:hover{ color:var(--orange-dark); }

/* ================================================================
   WHY CHOOSE US  — white cards on light orange-tinted bg
   ================================================================ */
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media(max-width:860px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .feature-grid{ grid-template-columns:1fr; } }

.feature{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding:26px 22px;
  transition:transform .2s;
}
.feature:hover{ transform:translateY(-4px); }
.feature .check{
  width:38px; height:38px; border-radius:50%;
  background:var(--gold); color:#5A2000;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; margin-bottom:14px; font-size:1rem;
}
.feature h4{ color:#fff; font-size:1.02rem; margin-bottom:5px; }
.feature p{ color:rgba(255,255,255,.72); font-size:.9rem; margin:0; }

/* ================================================================
   VISION BAND
   ================================================================ */
.vision-band{ padding:80px 0; background:var(--cream-alt); text-align:center; }
.vision-mark{
  width:66px; height:66px; margin:0 auto 24px; border-radius:50%;
  background:linear-gradient(160deg,var(--gold-pale),var(--gold-light));
  display:flex; align-items:center; justify-content:center; font-size:1.7rem;
}
.vision-mr{
  font-size:clamp(1.25rem,2.4vw,1.8rem); color:var(--orange-dark);
  max-width:800px; margin:0 auto 10px; line-height:1.75;
}
.vision-en{ font-size:.98rem; color:var(--ink-soft); max-width:620px; margin:0 auto; font-style:italic; }

/* ================================================================
   CTA BAND  — solid orange (no dark gradient)
   ================================================================ */
.cta-band{ background:linear-gradient(120deg,var(--orange),var(--orange-dark)); color:#fff; padding:56px 0; text-align:center; }
.cta-band h2{ color:#fff; margin-bottom:10px; }
.cta-band p{ color:rgba(255,255,255,.85); margin-bottom:24px; }
.cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.story-grid{ display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:center; }
@media(max-width:860px){ .story-grid{ grid-template-columns:1fr; } }
.story-photo{ border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); }
.value-list{ display:flex; flex-direction:column; gap:16px; margin-top:22px; }
.value-list li{ display:flex; gap:14px; align-items:flex-start; }
.value-list .v-dot{
  width:10px; height:10px; border-radius:50%; background:#fff;
  margin-top:8px; flex-shrink:0; opacity:.9;
}
.value-list span{ color:rgba(255,255,255,.9); }
.value-list b{ color:#fff; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
@media(max-width:860px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-list{ display:flex; flex-direction:column; gap:20px; margin-top:26px; }
.contact-item{ display:flex; gap:14px; align-items:flex-start; }
.contact-item .ci-icon{
  width:46px; height:46px; border-radius:50%;
  background:var(--orange); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
}
.contact-item h4{ margin:0 0 3px; font-size:.98rem; color:var(--orange-dark); }
.contact-item p{ margin:0; color:var(--ink-soft); }
.contact-item a{ color:var(--ink); font-weight:600; }
.map-frame{
  border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow);
  border:1px solid var(--line); aspect-ratio:4/3;
}
.map-frame iframe{ width:100%; height:100%; border:0; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero{
  background:linear-gradient(130deg,var(--orange) 0%,#B84008 100%);
  color:#fff; padding:72px 0 60px; text-align:center;
}
.page-hero h1{ color:#fff; font-size:clamp(1.9rem,3.8vw,2.7rem); margin-bottom:10px; }
.page-hero .mr{ color:rgba(255,255,255,.82); font-size:1.02rem; }
.breadcrumb{ font-size:.84rem; color:rgba(255,255,255,.65); margin-bottom:14px; }
.breadcrumb a{ color:rgba(255,255,255,.88); font-weight:600; }

/* ================================================================
   FOOTER  — dark espresso neutral (not dark orange)
   ================================================================ */
.site-footer{ background:var(--orange-dark); color:rgba(255,255,255,.82); padding-top:52px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:40px; }
@media(max-width:760px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand .brand-text .name{ color:#fff; }
.footer-brand .brand-text .tagline{ color:rgba(255,255,255,.55); }
.footer-brand p{ color:rgba(255,255,255,.62); margin-top:12px; max-width:36ch; font-size:.91rem; }
.site-footer h5{
  font-family:var(--body); text-transform:uppercase; letter-spacing:.1em;
  font-size:.78rem; color:var(--gold-light); margin-bottom:14px;
}
.site-footer ul li{ margin-bottom:9px; }
.site-footer ul a{ color:rgba(255,255,255,.75); font-size:.92rem; }
.site-footer ul a:hover{ color:var(--gold-light); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1); padding:18px 0;
  text-align:center; font-size:.83rem; color:rgba(255,255,255,.5);
}

/* ================================================================
   POLICY
   ================================================================ */
.policy-body{ max-width:760px; }
.policy-body h2{ margin-top:40px; font-size:1.28rem; }
.policy-body h2:first-child{ margin-top:0; }
.policy-body p,.policy-body li{ color:var(--ink-soft); }
.policy-body ul{ padding-left:20px; list-style:disc; margin-bottom:1em; }

@media(prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } *{ transition:none!important; } }

/* ---- Scallop: cream-alt → dark-orange (before Why Choose Us) ---- */
.scallop-dark-on-alt{
  background-image:radial-gradient(circle at 22px 22px,transparent 21px,var(--orange-dark) 22px);
  background-color:var(--cream-alt);
}
/* ---- Scallop: dark-orange → cream-alt (after Why Choose Us) ---- */
.scallop-alt-on-dark{
  background-image:radial-gradient(circle at 22px 0,transparent 21px,var(--cream-alt) 22px);
  background-color:var(--orange-dark);
}

/* ---- Footer logo in a white pill box ---- */
.footer-logo-wrap{
  width:48px; height:48px; flex-shrink:0;
  background:#fff;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  padding:4px;
  overflow:hidden;
}
.footer-logo-wrap img{ width:100%; height:100%; object-fit:contain; }
