/* ===================== ESTETICA SOLE ===================== */
:root{
  --sun:#f6a623;
  --sun-deep:#e8890b;
  --sun-glow:#ffce4d;
  --cream:#fff9f0;
  --cream-2:#fef3e2;
  --rose:#f6d9c9;
  --rose-deep:#e7a58b;
  --ink:#3a2a1a;
  --ink-soft:#6b5741;
  --line:#f0e0cb;
  --white:#ffffff;
  --radius:20px;
  --radius-sm:13px;
  --shadow:0 18px 40px -22px rgba(126,84,20,.45);
  --shadow-soft:0 8px 24px -16px rgba(126,84,20,.5);
  --max:1140px;
  --font:"Poppins","Segoe UI",system-ui,-apple-system,sans-serif;
  --serif:"Georgia","Times New Roman",serif;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{overflow-x:hidden;scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font);
  color:var(--ink);
  background:var(--cream);
  line-height:1.62;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}
body.intro-lock{overflow:hidden;height:100vh}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3{line-height:1.12;letter-spacing:-.02em;font-weight:700}
section{scroll-margin-top:72px}

/* system font fallback keeps zero CDN; approximate a soft geometric feel */
@supports (font-variation-settings:normal){body{font-family:var(--font)}}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.72rem;
  font-weight:600;
  color:var(--sun-deep);
  margin-bottom:.7rem;
}

/* ===================== BUTTONS ===================== */
.btn{
  display:inline-flex;align-items:center;gap:.55rem;justify-content:center;
  font-weight:600;font-size:.98rem;
  padding:.85rem 1.5rem;border-radius:999px;
  cursor:pointer;border:none;transition:transform .18s ease,box-shadow .2s ease,background .2s ease;
  white-space:nowrap;
}
.btn svg{flex:none}
.btn-primary{
  background:linear-gradient(135deg,var(--sun-glow),var(--sun) 60%,var(--sun-deep));
  color:#3a2405;box-shadow:var(--shadow-soft);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 30px -14px rgba(230,137,11,.7)}
.btn-ghost{background:transparent;color:var(--ink);border:1.6px solid var(--line)}
.btn-ghost:hover{border-color:var(--sun);color:var(--sun-deep);transform:translateY(-2px)}
.btn-light{background:var(--white);color:var(--sun-deep);box-shadow:0 14px 34px -18px rgba(0,0,0,.4)}
.btn-light:hover{transform:translateY(-2px)}
.btn-block{display:flex;width:100%;margin-top:1.2rem}

/* ===================== INTRO ===================== */
#intro{
  position:fixed;inset:0;z-index:9999;
  display:flex;align-items:center;justify-content:center;
  background:radial-gradient(circle at 50% 38%,#fff6e2 0%,#fde6c8 45%,#f7d3ad 100%);
  transition:opacity .6s ease,visibility .6s ease;
}
#intro.intro-hide{opacity:0;visibility:hidden;pointer-events:none}
.intro-inner{text-align:center;padding:1.5rem}
.intro-sun{width:118px;height:118px;margin:0 auto .4rem;display:block;filter:drop-shadow(0 8px 20px rgba(230,137,11,.35))}
.intro-rays{transform-origin:60px 60px;animation:rays-spin 9s linear infinite,rays-in .9s ease both}
.intro-disc{transform-origin:60px 60px;animation:disc-pop .8s cubic-bezier(.2,.9,.3,1.2) both}
.intro-word{
  font-family:var(--serif);
  font-size:clamp(1.9rem,7vw,2.7rem);
  font-weight:700;letter-spacing:-.01em;color:var(--ink);
  opacity:0;animation:word-in .7s ease .35s both;
}
.intro-sub{
  margin-top:.45rem;font-size:.82rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--sun-deep);font-weight:600;
  opacity:0;animation:word-in .7s ease .6s both;
}
#introSkip{
  position:absolute;bottom:26px;left:50%;transform:translateX(-50%);
  background:rgba(255,255,255,.75);color:var(--ink-soft);
  border:1px solid rgba(230,137,11,.3);border-radius:999px;
  padding:.45rem 1.15rem;font-size:.8rem;font-weight:600;cursor:pointer;font-family:inherit;
  opacity:0;animation:word-in .6s ease 1s both;transition:background .2s;
}
#introSkip:hover{background:#fff}

@keyframes rays-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes rays-in{from{opacity:0;transform:scale(.6) rotate(0deg)}to{opacity:1;transform:scale(1) rotate(0deg)}}
@keyframes disc-pop{
  0%{opacity:0;transform:scale(.2)}
  70%{opacity:1;transform:scale(1.08)}
  100%{opacity:1;transform:scale(1)}
}
@keyframes word-in{
  from{opacity:0;transform:translateY(12px)}
  to{opacity:1;transform:translateY(0)}
}

/* ===================== HEADER ===================== */
.site-header{
  position:sticky;top:0;z-index:900;
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;padding:.7rem clamp(1rem,4vw,2.2rem);
  background:rgba(255,249,240,.86);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.brand{display:inline-flex;align-items:center;gap:.55rem}
.brand-sun{width:38px;height:38px;flex:none}
.brand-sun g{animation:brand-spin 22s linear infinite}
@keyframes brand-spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}
.brand-sun{transform-origin:center}
.brand-name{font-family:var(--serif);font-weight:700;font-size:1.24rem;color:var(--ink)}
.site-nav{display:flex;align-items:center;gap:.35rem}
.site-nav a{
  font-size:.92rem;font-weight:500;color:var(--ink-soft);
  padding:.5rem .8rem;border-radius:999px;transition:color .2s,background .2s;
}
.site-nav a:hover{color:var(--sun-deep)}
.nav-cta{
  background:linear-gradient(135deg,var(--sun-glow),var(--sun));
  color:#3a2405 !important;font-weight:600 !important;
  box-shadow:var(--shadow-soft);
}
.nav-cta:hover{transform:translateY(-1px)}

/* ===================== HERO ===================== */
.hero{
  position:relative;overflow:hidden;
  padding:clamp(3.5rem,9vw,6rem) clamp(1.1rem,4vw,2.2rem) clamp(3rem,7vw,5rem);
  background:
    radial-gradient(1100px 500px at 82% -10%,rgba(255,206,77,.5),transparent 60%),
    radial-gradient(700px 500px at 8% 110%,rgba(246,217,201,.6),transparent 60%),
    linear-gradient(180deg,var(--cream),var(--cream-2));
}
.hero-glow{
  position:absolute;top:-140px;right:-100px;width:420px;height:420px;
  background:radial-gradient(circle,rgba(255,206,77,.55),transparent 68%);
  border-radius:50%;filter:blur(6px);
  animation:glow-float 8s ease-in-out infinite;pointer-events:none;
}
@keyframes glow-float{
  0%{transform:translateY(0) scale(1);opacity:.9}
  50%{transform:translateY(22px) scale(1.06);opacity:1}
  100%{transform:translateY(0) scale(1);opacity:.9}
}
.hero-content{position:relative;max-width:760px;margin:0 auto;text-align:center}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(2.5rem,9vw,4.3rem);
  color:var(--ink);margin:.2rem 0 1.1rem;
}
.hero-lead{
  font-size:clamp(1.02rem,2.5vw,1.2rem);
  color:var(--ink-soft);max-width:600px;margin:0 auto 1.8rem;
}
.hero-actions{display:flex;gap:.8rem;justify-content:center;flex-wrap:wrap;margin-bottom:1.8rem}
.hero-badges{
  list-style:none;display:flex;gap:.6rem;justify-content:center;flex-wrap:wrap;
}
.hero-badges li{
  font-size:.82rem;font-weight:600;color:var(--sun-deep);
  background:rgba(255,255,255,.7);border:1px solid var(--line);
  padding:.38rem .85rem;border-radius:999px;
}

/* ===================== SECTIONS ===================== */
.section{padding:clamp(3rem,7vw,5rem) clamp(1.1rem,4vw,2.2rem);max-width:var(--max);margin:0 auto}
.section-head{text-align:center;max-width:660px;margin:0 auto 2.6rem}
.section-head h2,.info-copy h2,.final-cta h2{
  font-family:var(--serif);font-size:clamp(1.9rem,5vw,2.7rem);color:var(--ink);margin-bottom:.7rem;
}
.section-intro{color:var(--ink-soft);font-size:1.02rem}

/* ===================== CARDS ===================== */
.cards{
  display:grid;gap:1.3rem;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}
.card{
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--radius);padding:1.6rem 1.5rem;
  box-shadow:var(--shadow-soft);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
  display:flex;flex-direction:column;
}
.card:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:var(--rose)}
.card-icon{
  width:52px;height:52px;border-radius:15px;display:grid;place-items:center;
  background:linear-gradient(135deg,#fff2d6,#ffe0b0);
  color:var(--sun-deep);margin-bottom:1rem;
}
.card-icon svg{width:27px;height:27px}
.card h3{font-family:var(--serif);font-size:1.32rem;margin-bottom:.4rem;color:var(--ink)}
.card-desc{font-size:.94rem;color:var(--ink-soft);margin-bottom:1.1rem}
.price-list{list-style:none;margin-top:auto;display:flex;flex-direction:column;gap:.1rem}
.price-list li{
  display:flex;justify-content:space-between;align-items:baseline;gap:.8rem;
  padding:.55rem 0;border-bottom:1px dashed var(--line);font-size:.94rem;
}
.price-list li:last-child{border-bottom:none}
.price-list span:first-child{color:var(--ink-soft)}
.price{font-weight:700;color:var(--sun-deep);white-space:nowrap}
.listino-note{
  text-align:center;margin-top:2rem;font-size:.9rem;color:var(--ink-soft);
}
.listino-note a{color:var(--sun-deep);font-weight:600;text-decoration:underline}

/* ===================== INFO ===================== */
.section-info{}
.info-grid{
  display:grid;gap:1.8rem;align-items:start;
  grid-template-columns:1.1fr .9fr;
}
.info-list{list-style:none;margin-top:1.6rem;display:flex;flex-direction:column;gap:1.1rem}
.info-list li{display:flex;gap:.9rem;align-items:flex-start}
.info-ico{
  width:42px;height:42px;border-radius:12px;flex:none;display:grid;place-items:center;
  background:linear-gradient(135deg,#fff2d6,#ffe0b0);color:var(--sun-deep);
}
.info-ico svg{width:22px;height:22px}
.info-list strong{color:var(--ink)}
.info-list a{color:var(--sun-deep);font-weight:600}
.info-list a:hover{text-decoration:underline}

.hours-card{
  background:linear-gradient(160deg,#fff8ec,#fdeccf);
  border:1px solid var(--line);border-radius:var(--radius);
  padding:1.7rem 1.6rem;box-shadow:var(--shadow-soft);
}
.hours-card h3{font-family:var(--serif);font-size:1.4rem;margin-bottom:1rem;color:var(--ink)}
.hours-list{list-style:none;display:flex;flex-direction:column}
.hours-list li{
  display:flex;justify-content:space-between;padding:.55rem 0;
  border-bottom:1px solid rgba(230,137,11,.14);font-size:.96rem;color:var(--ink-soft);
}
.hours-list li span:last-child{font-weight:600;color:var(--ink)}
.hours-list li.closed span:last-child{color:var(--rose-deep)}

/* ===================== MAP ===================== */
.section-map{}
.map-frame{
  border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);
  box-shadow:var(--shadow-soft);line-height:0;background:#eae0d0;
}
.map-frame iframe{width:100%;height:400px;border:0;display:block}
.map-link{
  display:inline-block;margin-top:1rem;font-weight:600;color:var(--sun-deep);
}
.map-link:hover{text-decoration:underline}

/* ===================== FINAL CTA ===================== */
.final-cta{
  padding:clamp(3rem,7vw,4.5rem) 1.1rem;
  background:
    radial-gradient(700px 300px at 50% -20%,rgba(255,255,255,.35),transparent 60%),
    linear-gradient(135deg,var(--sun),var(--sun-deep));
  text-align:center;
}
.final-cta-inner{max-width:640px;margin:0 auto}
.final-cta h2{color:#fff;font-family:var(--serif)}
.final-cta p{color:rgba(255,255,255,.92);margin:.6rem 0 1.6rem;font-size:1.05rem}

/* ===================== FOOTER ===================== */
.site-footer{background:var(--ink);color:#e9dcc9;padding:2.8rem clamp(1.1rem,4vw,2.2rem) 1.5rem}
.footer-grid{
  max-width:var(--max);margin:0 auto;display:grid;gap:1.8rem;
  grid-template-columns:1.4fr 1fr 1fr;
}
.brand-footer .brand-name{color:#fff}
.footer-tag{margin-top:.7rem;color:#c9b79c;font-size:.92rem;max-width:280px}
.footer-col{display:flex;flex-direction:column;gap:.4rem}
.footer-col strong{color:#fff;margin-bottom:.3rem;font-size:.95rem}
.footer-col a,.footer-col span{color:#c9b79c;font-size:.92rem}
.footer-col a:hover{color:var(--sun-glow)}
.footer-base{
  max-width:var(--max);margin:2rem auto 0;padding-top:1.2rem;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  font-size:.82rem;color:#9c8a72;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:860px){
  .info-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .site-nav a:not(.nav-cta){display:none}
  .footer-grid{grid-template-columns:1fr}
  .footer-base{flex-direction:column;gap:.4rem}
  .map-frame iframe{height:320px}
  .hero-badges{gap:.4rem}
}
@media (max-width:380px){
  .brand-name{font-size:1.1rem}
  .btn{padding:.8rem 1.2rem;font-size:.92rem}
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important}
  .intro-rays,.brand-sun g,.hero-glow{animation:none !important}
  .intro-word,.intro-sub,#introSkip,.intro-disc{opacity:1 !important;transform:none !important}
}
