:root{
  --brand:#1e7b6f;
  --brand-600:#1e7b6f;
  --brand-700:#0f5549;
  --brand-100:#e6f2ef;
  --accent:#c9a227;
  --text:#1b1b1b;
  --muted:#4b4b4b;
  --bg:#faf6f0;
  --surface:#ffffff;
  --surface-alt:#f3eee6;
  --card:#ffffff;
  --border:#e4ded6;
  --shadow:0 22px 50px rgba(31, 22, 11, .08);
  --font-body:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display:"Playfair Display", "Times New Roman", serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1{
  font-family:var(--font-display);
  font-size:clamp(30px,4vw,42px);
  margin:0 0 12px;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  background:radial-gradient(circle at 12% 15%, rgba(201,162,39,.1) 0, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(30,123,111,.08) 0, transparent 45%);
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-3;
  background-image:url('../img/pattern-ishvara.svg');
  background-repeat:repeat;
  background-size:320px 320px;
  opacity:.2;
  pointer-events:none;
  mix-blend-mode:multiply;
}

.container{width:min(1120px,92%);margin-inline:auto}

a{color:var(--brand);text-decoration:none}
a:hover,a:focus-visible{color:var(--text);text-decoration:underline}

.skip{
  position:absolute;
  top:12px;
  left:12px;
  background:var(--brand);
  color:#fff;
  padding:.6rem 1rem;
  border-radius:999px;
  transform:translateY(-200%);
  transition:transform .2s ease;
  z-index:1000;
}
.skip:focus{transform:translateY(0)}

/* Header */
.site-header{position:sticky;top:0;z-index:10;background:rgba(250,246,240,.9);backdrop-filter:saturate(160%) blur(10px);border-bottom:1px solid var(--border)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:1rem}
.brand{display:flex;align-items:center;gap:.8rem;color:var(--text);text-decoration:none;font-weight:600}
.brand__logo{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:12px;background:rgba(255,255,255,.08);border:1px solid rgba(0,0,0,.06);overflow:hidden}
.brand__logo img{display:block;width:100%;height:100%;object-fit:contain}
.brand__text{display:flex;flex-direction:column;line-height:1.1}
.brand__tag{font-size:.78rem;color:var(--muted);font-weight:500;letter-spacing:.08rem;text-transform:uppercase}
.nav{display:flex;gap:1rem;align-items:center}
.nav__link{color:var(--muted);text-decoration:none;padding:.4rem .6rem;border-radius:999px}
.nav__link:hover{color:var(--text);background:var(--surface)}
.nav__cta{color:#fff;background:var(--brand);text-decoration:none;padding:.55rem 1rem;border-radius:999px;font-weight:600}
.nav__cta:hover{filter:brightness(.95)}
.header-cta{display:flex}

/* Hero */
.hero{padding:86px 0 70px;background:linear-gradient(180deg,rgba(230,242,239,.8),rgba(250,246,240,.95))}
.hero__inner{display:grid;grid-template-columns:1.05fr .95fr;gap:32px;align-items:center}
.hero__title{font-family:var(--font-display);font-size:clamp(30px,4vw,46px);line-height:1.15;margin:0 0 12px}
.hero__subtitle{color:var(--muted);margin:0 0 20px;max-width:60ch}
.hero__actions{display:flex;gap:.8rem;flex-wrap:wrap}
.hero__note{color:var(--muted);margin-top:14px}
.hero__visual{position:relative}
.hero__visual img{width:100%;border-radius:20px;box-shadow:var(--shadow);border:1px solid rgba(255,255,255,.6)}
.hero__badge{position:absolute;top:-14px;left:14px;background:#fff;padding:.4rem .8rem;border-radius:999px;font-weight:600;border:1px solid var(--border);box-shadow:0 10px 24px rgba(27,27,27,.08)}

.eyebrow{display:inline-flex;align-items:center;gap:.4rem;font-size:.8rem;letter-spacing:.2rem;text-transform:uppercase;color:var(--muted);margin-bottom:12px}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:.45rem;border-radius:999px;padding:.85rem 1.2rem;font-weight:600;text-decoration:none;border:1px solid transparent}
.btn--primary{background:var(--brand);color:#fff}
.btn--primary:hover{filter:brightness(.96)}
.btn--ghost{background:transparent;color:var(--brand);border:1px solid var(--brand-600)}
.btn--ghost:hover{background:var(--brand-100)}
.btn--secondary{background:#fff;color:var(--brand-700);border:1px solid var(--border)}
.btn--secondary:hover{background:var(--surface-alt)}

/* Button icons */
.btn .icon{display:inline-flex;width:1em;height:1em;line-height:0}
.btn .icon svg{width:1em;height:1em;display:block;fill:currentColor}

/* Sections */
.section{padding:64px 0}
.section h2{font-family:var(--font-display);font-size:clamp(24px,3vw,34px);margin:0 0 12px}
.section p{margin:0 0 8px}
.section--alt{background:var(--surface)}
.section--promise{background:#fff;position:relative}
.section--promise::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 10% 15%, rgba(201,162,39,.25) 0, transparent 50%);
  pointer-events:none;
}
.section__intro{max-width:70ch;margin-bottom:18px}
.section__cta{margin-top:16px}

/* CTA finale */
.cta-final{padding:76px 0;text-align:center;background:linear-gradient(135deg,#f4ede4,#e4efe8)}
.cta-final h2{margin-bottom:12px}
.cta-final p{margin-bottom:14px}
.cta-final .hero__actions{gap:1rem;margin-top:16px;justify-content:center}

/* Ecommerce */
.ecommerce{ 
  background:
    radial-gradient(circle at 12% 18%, rgba(30,123,111,.12) 0, transparent 52%),
    radial-gradient(circle at 88% 12%, rgba(201,162,39,.22) 0, transparent 58%),
    radial-gradient(circle at 6% 85%, rgba(201,162,39,.18) 0, transparent 48%),
    linear-gradient(135deg, #f7e7c6 0%, #f2d7a1 48%, #f9e9cc 100%);
  color:#3b2a1e;
  padding:84px 0;
}
.ecommerce .container{ text-align:center }
.ecommerce h2{ color:#3b2a1e }
.ecommerce p{ color:#5c4632 }
.ecommerce .cards{ margin-top:18px }
.ecommerce .card{ 
  background: rgba(255,255,255,.7);
  border:1px solid rgba(91,68,50,.18);
}
.ecommerce .card h3{ color:#3b2a1e }
.ecommerce .card p{ color:#5c4632 }
.ecommerce .hero__actions{ justify-content:center; margin-top:18px }
.ecommerce .section__note{ color:#5c4632 }
.ecommerce .section__note a{ color:#3b2a1e; text-decoration:underline }

/* Pills / points */
.pills{display:flex;flex-wrap:wrap;gap:.5rem;padding:0;margin:12px 0 0;list-style:none}
.pills li{background:#fff;border:1px solid var(--border);padding:.45rem .7rem;border-radius:999px;font-size:.95rem}

/* About */
.about__grid{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:center}
.about__points{padding-left:18px;color:var(--muted)}
.about__visual{height:280px;border-radius:20px;background: url('../img/foto-header-ishvara.webp') center/cover no-repeat;border:1px solid var(--border);box-shadow:var(--shadow)}

@media (max-width: 860px){
  .about__grid{grid-template-columns:1fr}
}

/* Cards */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:16px;align-items:stretch}
.card{background:var(--card);border:1px solid var(--border);border-radius:18px;padding:20px;display:flex;flex-direction:column;gap:10px;box-shadow:0 16px 30px rgba(27,27,27,.04)}
.card h3{margin:0;font-size:20px;font-family:var(--font-display)}
.card p{color:var(--muted);margin:0}
.card .btn{margin-top:auto;align-self:flex-start}

@media (max-width: 960px){
  .cards{grid-template-columns:1fr 1fr}
}
@media (max-width: 640px){
  .cards{grid-template-columns:1fr}
}

/* Method */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:8px}
.step{display:flex;gap:.8rem;align-items:flex-start;background:var(--card);border:1px solid var(--border);border-radius:18px;padding:16px}
.step__num{width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,var(--brand-600),var(--brand-700));color:#fff;font-weight:700}
.method__cta{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:18px}
@media (max-width: 900px){.steps{grid-template-columns:1fr}}

/* Testimonials */
.quotes{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:12px}
.quote{background:var(--card);border:1px solid var(--border);border-radius:18px;padding:18px;box-shadow:0 16px 28px rgba(27,27,27,.04)}
.quote blockquote{margin:0 0 8px;font-style:italic;color:var(--muted)}
.quote figcaption{color:var(--text);font-size:.95rem;font-weight:600}
@media (max-width: 900px){.quotes{grid-template-columns:1fr}}

/* FAQ */
.faq details{background:var(--card);border:1px solid var(--border);border-radius:14px;padding:12px 16px;margin:10px 0}
.faq summary{cursor:pointer;font-weight:600;list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq details[open]{background:#fff}
.faq details div{color:var(--muted);margin-top:6px}

/* Contact */
.contact__inner{display:grid;grid-template-columns:1.1fr .9fr;gap:20px;align-items:start}
.contact__actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:10px}
.contact__card{border:1px solid var(--border);border-radius:18px;padding:16px;background:var(--surface);box-shadow:0 16px 30px rgba(27,27,27,.05)}
.contact__row{display:flex;justify-content:space-between;gap:12px;padding:8px 6px;border-bottom:1px dashed var(--border)}
.contact__row:last-child{border-bottom:0}
.contact__label{color:var(--muted)}
@media (max-width: 860px){
  .contact__inner{grid-template-columns:1fr}
}

/* Footer */
.site-footer{border-top:1px solid rgba(255,255,255,.18);padding:28px 0;background:linear-gradient(135deg,#2f2320,#6b4a3a);color:rgba(255,255,255,.88)}
.footer-inner{display:flex;align-items:flex-start;justify-content:space-between;gap:24px;flex-wrap:wrap}
.footer__brand{display:flex;align-items:center;gap:.8rem}
.footer__links{display:flex;flex-direction:column;gap:.4rem}
.footer__links a{text-decoration:none;color:rgba(255,255,255,.8)}
.footer__links a:hover{color:#fff}
.footer__legal{display:flex;flex-direction:column;gap:.4rem;color:rgba(255,255,255,.75)}
.footer__tag{display:block;color:rgba(255,255,255,.75);font-size:.9rem;margin-top:.2rem}
.footer__credit{padding-top:16px;border-top:1px solid rgba(255,255,255,.18);margin-top:20px;text-align:center;color:rgba(255,255,255,.7)}
.footer__credit a{color:inherit}
.footer__made{display:flex;justify-content:center;align-items:center;gap:.5rem;font-size:.85rem;letter-spacing:.12em}
.footer__made span{text-transform:uppercase}
.footer__made a{font-weight:600;letter-spacing:.04em;text-transform:none}
.site-footer .btn--ghost{
  color:#fff;
  border-color:rgba(255,255,255,.45);
}
.site-footer .btn--ghost:hover{
  background:rgba(255,255,255,.12);
}
.site-footer .btn--secondary{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.25);
}
.site-footer .btn--secondary:hover{
  background:rgba(255,255,255,.2);
}

.link-button{
  background:none;
  border:none;
  padding:0;
  color:var(--brand);
  font:inherit;
  cursor:pointer;
  text-align:left;
}
.link-button:hover{text-decoration:underline;color:var(--text)}
.site-footer .link-button{
  color:rgba(255,255,255,.85);
}
.site-footer .link-button:hover{
  color:#fff;
  text-decoration:underline;
}

/* Reveal animations */
[data-reveal]{
  opacity:0;
  transform:translateY(12px);
  transition:opacity .6s ease, transform .6s ease;
  transition-delay:var(--reveal-delay, 0s);
}
[data-reveal].is-visible{opacity:1;transform:none}

/* Note sotto sezioni */
.section__note{margin-top:14px;color:var(--muted)}
.section__note p{margin:0}
.section__note .btn{margin-left:6px}

/* Cookie banner */
.cookie-banner{
  position:fixed;
  bottom:16px;
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  z-index:100;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
}
.cookie-banner.is-visible{opacity:1;pointer-events:auto}
.cookie-banner__inner{
  width:min(980px,92%);
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px 20px;
  display:flex;
  align-items:center;
  gap:16px;
  box-shadow:var(--shadow);
}
.cookie-banner p{margin:0;color:var(--muted)}
.cookie-banner__actions{display:flex;gap:.6rem;flex-wrap:wrap;justify-content:flex-end}

@media (max-width: 820px){
  .cookie-banner__inner{flex-direction:column;align-items:flex-start}
}

.cookie-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:120;
}
.cookie-modal.is-visible{display:flex}
.cookie-modal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.35)}
.cookie-modal__panel{
  position:relative;
  background:#fff;
  border-radius:20px;
  padding:24px;
  width:min(720px,92%);
  box-shadow:var(--shadow);
  border:1px solid var(--border);
}
.cookie-modal__header h2{margin:0 0 8px;font-family:var(--font-display)}
.cookie-modal__header p{margin:0;color:var(--muted)}
.cookie-modal__content{margin:18px 0;display:flex;flex-direction:column;gap:16px}
.cookie-option{display:flex;justify-content:space-between;gap:12px;align-items:center;padding:12px 14px;border-radius:14px;border:1px solid var(--border);background:var(--surface-alt)}
.cookie-option h3{margin:0 0 4px;font-size:1rem}
.cookie-option p{margin:0;color:var(--muted);font-size:.95rem}
.cookie-toggle{position:relative;display:inline-flex;align-items:center}
.cookie-toggle input{opacity:0;position:absolute}
.cookie-toggle span{
  width:44px;height:24px;border-radius:999px;background:#d0c8bf;display:inline-block;position:relative;transition:background .2s ease;
}
.cookie-toggle span::after{
  content:"";position:absolute;top:3px;left:3px;width:18px;height:18px;border-radius:50%;background:#fff;transition:transform .2s ease;box-shadow:0 2px 6px rgba(0,0,0,.2);
}
.cookie-toggle input:checked + span{background:var(--brand)}
.cookie-toggle input:checked + span::after{transform:translateX(20px)}
.cookie-toggle--disabled span{background:#e6e0d9}
.cookie-modal__actions{display:flex;gap:.6rem;flex-wrap:wrap;justify-content:flex-end}

/* Responsive */
@media (max-width: 960px){
  .hero__inner{grid-template-columns:1fr}
  .hero__visual{order:-1}
}
@media (max-width: 720px){
  .nav{display:none}
  .header-cta{display:none}
}
