:root {
  --primary: #27ae60;
  --primary-dark: #1e8449;
  --bg: #f0f9f4;
  --surface: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #d1f0dd;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(39,174,96,0.08);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:var(--font-body); background:var(--bg); color:var(--text); line-height:1.6; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }

.promo-banner { background:var(--primary); color:#fff; text-align:center; padding:10px 20px; font-size:0.85rem; display:flex; justify-content:center; align-items:center; gap:12px; }
.promo-banner button { background:none; border:none; color:#fff; font-size:1.2rem; cursor:pointer; }
.promo-banner.hidden-banner { display:none; }

.site-header { position:sticky; top:0; z-index:100; background:rgba(255,255,255,0.95); backdrop-filter:blur(12px); border-bottom:1px solid var(--border); }
.site-header.scrolled { box-shadow:var(--shadow); }
.header-inner { max-width:1200px; margin:0 auto; padding:0 24px; height:64px; display:flex; align-items:center; justify-content:space-between; }
.logo { font-family:var(--font-heading); font-size:1.5rem; font-weight:600; color:var(--primary); }
.desktop-nav { display:flex; gap:32px; font-size:0.9rem; font-weight:500; }
.desktop-nav a:hover { color:var(--primary); }
.btn-primary { background:var(--primary); color:#fff; padding:10px 24px; border-radius:var(--radius); font-weight:500; transition:background 0.2s; border:none; cursor:pointer; }
.btn-primary:hover { background:var(--primary-dark); }
.menu-btn { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; }
.menu-btn span { width:24px; height:2px; background:var(--text); }
.mobile-menu { position:absolute; top:64px; left:0; right:0; background:#fff; border-bottom:1px solid var(--border); padding:20px; display:flex; flex-direction:column; gap:16px; font-weight:500; }
.mobile-menu.hidden { display:none; }

.hero { display:grid; grid-template-columns:1fr 1fr; gap:40px; max-width:1200px; margin:0 auto; padding:80px 24px; align-items:center; }
.hero-content h1 { font-family:var(--font-heading); font-size:2.8rem; font-weight:600; line-height:1.2; margin-bottom:20px; }
.hero-content h1 em { color:var(--primary); font-style:normal; }
.hero-content p { font-size:1.1rem; color:var(--text-light); margin-bottom:32px; }
.hero-visual { position:relative; }
.hero-visual::before { content:''; position:absolute; inset:-20px; background:var(--primary); opacity:0.1; border-radius:var(--radius); z-index:-1; }
.hero-img { width:100%; aspect-ratio:4/3; border-radius:var(--radius); background:url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=800&q=80') center/cover; }

.section-header { text-align:center; padding:80px 24px 40px; }
.section-header.light { color:#fff; }
.section-label { display:inline-block; text-transform:uppercase; font-size:0.75rem; font-weight:600; letter-spacing:0.1em; color:var(--primary); margin-bottom:12px; }
.section-header h2 { font-family:var(--font-heading); font-size:2rem; font-weight:600; }

.menu-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; max-width:1200px; margin:0 auto; padding:0 24px 80px; }
.service-card { background:var(--surface); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); transition:transform 0.3s; border:1px solid var(--border); }
.service-card:hover { transform:translateY(-4px); }
.service-card img { width:100%; aspect-ratio:3/2; object-fit:cover; }
.service-card .card-body { padding:24px; }
.service-card h3 { font-family:var(--font-heading); font-size:1.2rem; font-weight:600; margin-bottom:8px; }
.service-card p { color:var(--text-light); font-size:0.9rem; margin-bottom:16px; }
.service-card .meta { display:flex; justify-content:space-between; font-weight:600; font-size:0.9rem; color:var(--primary); }

.reviews-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; max-width:1200px; margin:0 auto; padding:0 24px 80px; }
.review-card { background:var(--surface); border-radius:var(--radius); padding:28px; box-shadow:var(--shadow); border:1px solid var(--border); }
.review-card .stars { color:#f1c40f; margin-bottom:12px; }
.review-card p { font-style:italic; margin-bottom:16px; }
.review-card .author { font-weight:600; font-size:0.9rem; }
.review-card .date { font-size:0.8rem; color:var(--text-light); }

.reservation-section { background:var(--surface); }
.reservation-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; max-width:1200px; margin:0 auto; padding:80px 24px; }
.reservation-info h2 { font-family:var(--font-heading); font-size:2rem; font-weight:600; margin:12px 0 24px; }
.reservation-info p { color:var(--text-light); margin-bottom:10px; }
.reservation-info a { color:var(--primary); }
.reservation-form { display:flex; flex-direction:column; gap:16px; }
.reservation-form input, .reservation-form select, .reservation-form textarea { padding:14px 18px; border:1px solid var(--border); border-radius:var(--radius); font-family:inherit; font-size:1rem; background:var(--bg); }
.reservation-form input:focus, .reservation-form select:focus, .reservation-form textarea:focus { outline:none; border-color:var(--primary); }

.site-footer { text-align:center; padding:40px 24px; font-size:0.85rem; color:var(--text-light); border-top:1px solid var(--border); }

.demo-trigger { position:fixed; bottom:24px; right:24px; z-index:200; background:var(--primary); color:#fff; padding:12px 20px; border-radius:50px; border:none; cursor:pointer; font-weight:600; box-shadow:var(--shadow); display:flex; align-items:center; gap:8px; }
.demo-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.4); z-index:150; opacity:0; pointer-events:none; transition:opacity 0.3s; }
.demo-overlay.open { opacity:1; pointer-events:auto; }
.demo-modal { position:fixed; top:50%; left:50%; transform:translate(-50%,-50%) scale(0.95); z-index:160; background:#fff; border-radius:var(--radius); padding:24px; width:320px; box-shadow:0 20px 60px rgba(0,0,0,0.2); opacity:0; pointer-events:none; transition:all 0.3s; }
.demo-modal.open { opacity:1; pointer-events:auto; transform:translate(-50%,-50%) scale(1); }
.demo-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.demo-header button { background:none; border:none; font-size:1.5rem; cursor:pointer; }
.demo-body { display:flex; flex-direction:column; gap:14px; }
.demo-body label { font-size:0.9rem; font-weight:500; display:flex; align-items:center; gap:8px; }
.demo-body input[type="color"] { width:100%; height:40px; border:none; cursor:pointer; }
.demo-body select { padding:10px; border-radius:8px; border:1px solid var(--border); font-family:inherit; }

body.dark-theme { --bg:#0f1f14; --surface:#1a2e1f; --text:#e8f5e9; --text-light:#81c784; --border:#2e4a35; }
body.dark-theme .site-header { background:rgba(26,46,31,0.95); }
body:not(.show-prices) .service-card .meta .price { display:none; }
body.card-classic .service-card { border:2px solid var(--border); box-shadow:none; }
body.card-minimal .service-card { box-shadow:none; border-radius:0; background:transparent; border-bottom:1px solid var(--border); }

@media(max-width:768px) {
  .hero { grid-template-columns:1fr; padding:40px 24px; }
  .hero-content h1 { font-size:2rem; }
  .desktop-nav, .header-inner .btn-primary { display:none; }
  .menu-btn { display:flex; }
  .reservation-grid { grid-template-columns:1fr; }
}
