:root{
  /* Warm minimal palette */
  --bg: #FBF7F1;
  --paper: #FFFFFF;
  --ink: #1F2937;
  --muted: #5B6472;
  --border: #E8DFD4;

  --accent: #FF6B4A;
  --accentSoft: #FFF1EA;

  --tint1: #FFF7EF;
  --tint2: #F6FBF8;
  --tint3: #F4F1FF;

  --shadow: 0 18px 55px rgba(31,41,55,.10);
  --shadowSoft: 0 10px 26px rgba(31,41,55,.08);
  --r: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--ink);
}

a{color:inherit}
.container{max-width:1120px;margin:0 auto;padding:0 18px}

/* NAV */
.nav{
  position:sticky;top:0;z-index:50;
  background: rgba(251,247,241,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 0}
.brand img{height:32px;width:auto;display:block}
.menu{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.menu a{
  text-decoration:none;color:var(--muted);
  font-size:14px;padding:8px 10px;border-radius:999px;
}
.menu a:hover{background: rgba(31,41,55,.06); color: var(--ink);}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;padding:10px 14px;border-radius:999px;
  border:1px solid var(--border);
  background: var(--paper);
  box-shadow: 0 6px 18px rgba(31,41,55,.06);
  font-weight:800;font-size:14px;text-decoration:none;cursor:pointer;
}
.btn.primary{
  background: var(--accent);
  border-color: rgba(255,107,74,.35);
  color:#fff;
  box-shadow: 0 12px 24px rgba(255,107,74,.22);
}
.btn.ghost{background:transparent}
.btn:hover{filter:brightness(.99)}

/* BANDS */
.band{padding:64px 0}
.band--hero{
  padding:72px 0 36px;
  position:relative;
  overflow:hidden;
}
.band--hero::before{
  content:"";
  position:absolute;inset:-200px -200px auto auto;
  width:520px;height:520px;border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,107,74,.22), transparent 60%);
  pointer-events:none;
}
.band--hero::after{
  content:"";
  position:absolute;inset:auto auto -220px -220px;
  width:520px;height:520px;border-radius:50%;
  background: radial-gradient(circle at 60% 40%, rgba(91,100,114,.10), transparent 60%);
  pointer-events:none;
}
.band--tint1{background: linear-gradient(180deg, var(--tint1), rgba(255,255,255,0));}
.band--tint2{background: linear-gradient(180deg, var(--tint2), rgba(255,255,255,0));}
.band--tint3{background: linear-gradient(180deg, var(--tint3), rgba(255,255,255,0));}

.section-head{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:14px;margin-bottom:18px;flex-wrap:wrap
}
.section-head h2{margin:0;font-size:22px}
.section-head p{margin:0;color:var(--muted);font-size:14px}

/* HERO */
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 10px;border-radius:999px;
  background: var(--accentSoft);
  border:1px solid rgba(255,107,74,.22);
  color:#7a2b1b;font-weight:900;font-size:12px;
}
h1{font-size:48px;line-height:1.05;margin:14px 0 12px;max-width:920px}
.lead{color:var(--muted);font-size:16px;line-height:1.75;margin:0 0 18px;max-width:760px}
@media (max-width:640px){h1{font-size:36px}.band{padding:52px 0}.band--hero{padding:60px 0 28px}}
.chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
.chip{
  font-size:12px;padding:7px 10px;border-radius:999px;
  border:1px solid var(--border);
  background: var(--paper);
  color: var(--muted);
}

/* CARDS */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media (max-width:920px){.grid-3{grid-template-columns:1fr}}
.card{
  background: var(--paper);
  border:1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.box{padding:18px}
.box h3{margin:0 0 8px;font-size:16px}
.box p{margin:0;color:var(--muted);line-height:1.65;font-size:14px}
.list{margin:12px 0 0;padding-left:18px;color:var(--muted);line-height:1.75}

/* CLIENT CARDS */
.client-card{overflow:hidden}
.client-img{
  width:100%;height:180px;object-fit:cover;display:block;
  background:#f1efe9;border-bottom:1px solid var(--border);
}
.client-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

/* PRICING */
.pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media (max-width:920px){.pricing{grid-template-columns:1fr}}
.price{padding:20px;position:relative}
.price .tag{
  position:absolute;top:14px;right:14px;
  font-size:12px;font-weight:900;
  background: var(--accentSoft);
  border:1px solid rgba(255,107,74,.22);
  color:#7a2b1b;
  padding:6px 10px;border-radius:999px;
}
.money{font-size:28px;font-weight:950;margin:10px 0 0}
.submoney{color:var(--muted);font-size:13px;margin-top:6px}

/* STATS */
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media (max-width:920px){.stats{grid-template-columns:1fr}}
.stat{padding:18px;box-shadow: var(--shadowSoft)}
.stat .num{font-size:30px;font-weight:950;margin:0 0 6px}
.stat .lbl{color:var(--muted);font-size:13px;margin:0}

/* BOOKING — FULL WIDTH (brenda container-it) */
.booking-wrap{
  width: 100%;
  max-width: none;
  margin: 0;
}

.booking-wrap .card.form{
  width: 100%;
}

.form{
  width: 100%;
  padding: 22px;
}

.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width:640px){.row{grid-template-columns:1fr}}
label{display:block;font-size:13px;color:var(--muted);margin:12px 0 6px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid var(--border);
  background:#fff;
  color: var(--ink);
  outline:none;
}
textarea{min-height:120px;resize:vertical}

.notice{
  margin:16px 0 0;padding:12px 14px;border-radius:14px;
  border:1px solid var(--border);background:#fff;color:var(--muted)
}
.notice.success{border-color: rgba(45,212,191,.35); background: rgba(45,212,191,.10); color:#0f5f55;}
.notice.error{border-color: rgba(255,107,74,.35); background: rgba(255,107,74,.10); color:#7a2b1b;}

.slots{
  border:1px solid var(--border);
  border-radius: 14px;
  padding:12px;
  background:#fff;
  max-height: 280px;
  overflow:auto;
}
.date-title{font-size:12px;font-weight:950;color:var(--ink);margin:12px 0 8px}
.slot-grid{display:flex;flex-wrap:wrap;gap:8px}
.slot-pill{
  position:relative;
  display:inline-flex;align-items:center;justify-content:center;
  padding:8px 10px;border-radius:999px;
  border:1px solid var(--border);background:#fff;
  cursor:pointer;font-size:13px;color:var(--ink);
  user-select:none;
}
.slot-pill input{position:absolute;inset:0;opacity:0;cursor:pointer}
.slot-pill:has(input:checked){
  border-color: rgba(255,107,74,.40);
  background: var(--accentSoft);
  color:#7a2b1b;
  font-weight:950;
}

.contact-inline{
  display:flex;flex-direction:column;gap:8px;margin-top:18px;
  font-size:15px;
}
.contact-inline a{
  color: var(--ink);
  font-weight:900;
  text-decoration:none;
}
.contact-inline a span{color:var(--muted);font-weight:800}
.contact-inline a:hover{text-decoration:underline}

/* MAP */
iframe{width:100%;border:0;border-radius:var(--r);min-height:320px}

/* FOOTER */
footer{padding:28px 0 44px;border-top:1px solid var(--border);color:var(--muted)}
.foot{display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap}
