/* Uzuri — static site styles */
:root{
  --background:#fbf6ee;
  --foreground:#3a221b;
  --card:#fffaf2;
  --muted:#f4ece0;
  --muted-foreground:#7a6356;
  --border:#ecdfce;
  --primary:#e8694a;        /* coral */
  --primary-foreground:#fff8f1;
  --plum:#4a2a4a;
  --amber:#f0c46a;
  --gradient-warm:linear-gradient(180deg,#fbf6ee 0%,#f6dbb6 100%);
  --gradient-hero:linear-gradient(135deg,#f4a06b 0%,#e85a3a 50%,#5a2b4f 100%);
  --shadow-soft:0 30px 60px -30px rgba(74,42,74,.35);
  --shadow-glow:0 20px 80px -20px rgba(232,105,74,.5);
  --radius:1rem;
}
*{box-sizing:border-box;border-color:var(--border);margin:0;padding:0}
html,body{height:100%}
body{
  background:var(--background);
  color:var(--foreground);
  font-family:"Plus Jakarta Sans",system-ui,-apple-system,sans-serif;
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{letter-spacing:-.02em;line-height:1.1;font-weight:700}
ul{list-style:none}
.font-display{font-family:"Caveat",cursive;font-weight:700}
.container{max-width:72rem;margin:0 auto;padding:0 1.5rem}
.page{min-height:100vh;display:flex;flex-direction:column;background:var(--gradient-warm)}
main{flex:1}

/* Header */
.header{position:sticky;top:0;z-index:40;backdrop-filter:blur(12px);background:rgba(251,246,238,.7);border-bottom:1px solid rgba(236,223,206,.5)}
.header-inner{height:4rem;display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:.5rem}
.brand img{height:2.25rem;width:2.25rem;object-fit:contain}
.brand-name{font-family:"Caveat",cursive;font-size:1.75rem}
.nav{display:none;gap:2rem;font-size:.875rem;color:var(--muted-foreground)}
.nav a{transition:color .2s}
.nav a:hover{color:var(--foreground)}
@media(min-width:768px){.nav{display:flex;align-items:center}}
.btn{display:inline-flex;align-items:center;justify-content:center;border-radius:9999px;padding:.625rem 1.25rem;font-weight:500;font-size:.875rem;transition:opacity .2s,background .2s;cursor:pointer;border:none}
.btn-primary{background:var(--primary);color:var(--primary-foreground);box-shadow:var(--shadow-glow)}
.btn-primary:hover{opacity:.9}
.btn-lg{padding:.875rem 1.5rem;font-size:1rem}
.btn-outline{background:var(--card);color:var(--foreground);border:1px solid var(--border)}
.btn-outline:hover{background:var(--muted)}
.btn-white{background:#fff;color:var(--foreground)}
.btn-white:hover{background:rgba(255,255,255,.9)}
.btn-ghost-white{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.4)}
.btn-ghost-white:hover{background:rgba(255,255,255,.1)}

/* Hero */
.hero{position:relative;overflow:hidden}
.hero-inner{padding:4rem 0 6rem;display:grid;gap:3rem;align-items:center}
@media(min-width:1024px){.hero-inner{grid-template-columns:1fr 1fr}}
.eyebrow{display:inline-flex;align-items:center;gap:.5rem;border:1px solid var(--border);background:rgba(255,250,242,.7);padding:.375rem 1rem;border-radius:9999px;font-size:.75rem;font-weight:500;color:var(--muted-foreground)}
.eyebrow svg{color:var(--primary)}
.hero h1{margin-top:1.5rem;font-size:3rem;letter-spacing:-.02em}
.hero h1 .vibe{font-family:"Caveat",cursive;color:var(--primary);font-size:4rem}
@media(min-width:768px){.hero h1{font-size:4.5rem}.hero h1 .vibe{font-size:6rem}}
.hero p{margin-top:1.5rem;font-size:1.125rem;color:var(--muted-foreground);max-width:36rem}
.hero-actions{margin-top:2rem;display:flex;flex-wrap:wrap;gap:.75rem}
.hero-image-wrap{position:relative}
.hero-image-wrap .glow{position:absolute;inset:-1.5rem;border-radius:1.5rem;background:var(--gradient-hero);opacity:.4;filter:blur(48px)}
.hero-image-wrap img{position:relative;border-radius:1.5rem;width:100%;aspect-ratio:4/3;object-fit:cover;box-shadow:var(--shadow-soft)}

/* Sections */
section.block{padding:5rem 0}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:1.5rem;margin-bottom:2.5rem}
.section-head h2{font-size:1.875rem}
@media(min-width:768px){.section-head h2{font-size:3rem}}
.section-head .lead{color:var(--muted-foreground);max-width:24rem;display:none}
@media(min-width:768px){.section-head .lead{display:block}}
.accent{font-family:"Caveat",cursive;color:var(--primary)}

/* Vibes grid */
.vibes{display:grid;gap:1.5rem}
@media(min-width:768px){.vibes{grid-template-columns:repeat(3,1fr)}}
.vibe-card{position:relative;overflow:hidden;border-radius:1.5rem;aspect-ratio:3/4}
.vibe-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .7s}
.vibe-card:hover img{transform:scale(1.05)}
.vibe-card .overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.7),rgba(0,0,0,.1),transparent)}
.vibe-card .label{position:absolute;left:1.25rem;right:1.25rem;bottom:1.25rem;color:#fff}
.vibe-card .tag{font-size:.75rem;text-transform:uppercase;letter-spacing:.15em;opacity:.8}
.vibe-card .name{font-family:"Caveat",cursive;font-size:1.875rem}

/* Features */
.features{margin-top:3rem;display:grid;gap:1.5rem}
@media(min-width:768px){.features{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.features{grid-template-columns:repeat(3,1fr)}}
.feature{border:1px solid var(--border);background:var(--card);border-radius:1rem;padding:1.5rem;transition:box-shadow .2s}
.feature:hover{box-shadow:var(--shadow-soft)}
.feature-icon{height:2.75rem;width:2.75rem;border-radius:.75rem;background:rgba(232,105,74,.1);color:var(--primary);display:flex;align-items:center;justify-content:center}
.feature h3{margin-top:1.25rem;font-size:1.125rem;font-weight:600}
.feature p{margin-top:.5rem;font-size:.875rem;color:var(--muted-foreground);line-height:1.6}
.features-head{font-size:1.875rem;max-width:36rem}
@media(min-width:768px){.features-head{font-size:3rem}}

/* Ratings */
.ratings{display:grid;gap:3rem;align-items:center}
@media(min-width:1024px){.ratings{grid-template-columns:1fr 1fr}}
.ratings-image{position:relative}
.ratings-image .glow{position:absolute;inset:-2rem;border-radius:1.5rem;background:var(--gradient-hero);opacity:.3;filter:blur(48px)}
.ratings-image img{position:relative;border-radius:1.5rem;width:100%;aspect-ratio:1/1;object-fit:cover;box-shadow:var(--shadow-soft)}
.ratings h2{font-size:1.875rem}
@media(min-width:768px){.ratings h2{font-size:3rem}}
.ratings .lead{margin-top:1.25rem;font-size:1.125rem;color:var(--muted-foreground)}
.checks{margin-top:2rem;display:flex;flex-direction:column;gap:1rem}
.check{display:flex;align-items:flex-start;gap:.75rem}
.check svg{flex-shrink:0;margin-top:.125rem;color:var(--primary);fill:var(--primary)}

/* CTA */
.cta{padding:6rem 0}
.cta-inner{max-width:64rem;margin:0 auto;padding:0 1.5rem}
.cta-box{position:relative;overflow:hidden;border-radius:1.5rem;padding:3rem 1.5rem;text-align:center;color:#fff;background:var(--gradient-hero)}
@media(min-width:768px){.cta-box{padding:5rem}}
.cta-box h2{font-size:2.25rem;line-height:1.1}
@media(min-width:768px){.cta-box h2{font-size:3.75rem}}
.cta-box p{margin-top:1.5rem;color:rgba(255,255,255,.9);max-width:36rem;margin-left:auto;margin-right:auto}
.cta-actions{margin-top:2rem;display:flex;flex-wrap:wrap;justify-content:center;gap:.75rem}

/* Footer */
.footer{border-top:1px solid rgba(236,223,206,.6);margin-top:6rem}
.footer-inner{padding:3rem 0;display:grid;gap:2rem}
@media(min-width:768px){.footer-inner{grid-template-columns:repeat(3,1fr)}}
.footer-brand img{height:2rem;width:2rem;object-fit:contain}
.footer-brand .row{display:flex;align-items:center;gap:.5rem}
.footer-brand p{margin-top:.75rem;font-size:.875rem;color:var(--muted-foreground);max-width:20rem}
.footer h4{font-size:.875rem;font-weight:600;margin-bottom:.75rem}
.footer ul{font-size:.875rem;color:var(--muted-foreground);display:flex;flex-direction:column;gap:.5rem}
.footer ul a:hover{color:var(--foreground)}
.footer-bottom{border-top:1px solid rgba(236,223,206,.6);padding:1.5rem 0;text-align:center;font-size:.75rem;color:var(--muted-foreground)}

/* Legal pages */
.legal{max-width:48rem;margin:0 auto;padding:4rem 1.5rem}
.legal h1{font-size:2.25rem}
@media(min-width:768px){.legal h1{font-size:3rem}}
.legal .updated{margin-top:.75rem;font-size:.875rem;color:var(--muted-foreground)}
.legal-body{margin-top:2.5rem;display:flex;flex-direction:column;gap:1.5rem;line-height:1.7;color:rgba(58,34,27,.9)}
.legal-body h2{font-size:1.5rem;font-weight:600;margin-top:2.5rem;margin-bottom:.75rem}
.legal-body h3{font-weight:600;color:var(--foreground);margin-top:1rem}
.legal-body p,.legal-body ul{color:var(--muted-foreground)}
.legal-body ul{list-style:disc;padding-left:1.5rem;display:flex;flex-direction:column;gap:.25rem}
.legal-body section>div{display:flex;flex-direction:column;gap:.75rem}
.legal-body a.link{color:var(--primary);text-decoration:underline}
.legal-body strong{color:var(--foreground)}
