:root {
  --bg: #fff9f3;
  --ink: #2d3142;
  --accent: #ff6b6b;
  --accent-2: #4ecdc4;
  --accent-3: #ffe66d;
  --card: #ffffff;
  --muted: #6b7280;
  --radius: 20px;
  --font: "Nunito", system-ui, sans-serif;
  --display: "Fredoka", "Nunito", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,249,243,.92); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; flex-wrap: wrap; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.logo-mark { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--accent), #ff9f43); color: #fff; display: grid; place-items: center; font-family: var(--display); font-size: 1.1rem; }
.logo-text { font-family: var(--display); font-size: .95rem; line-height: 1.15; color: var(--ink); }
.nav { display: flex; align-items: center; gap: 20px; font-weight: 600; font-size: .95rem; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 22px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 700; border: none; cursor: pointer; transition: transform .15s, box-shadow .15s; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,107,107,.35); }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn-ghost { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-block { width: 100%; text-align: center; }
.hero { padding: 64px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 700; color: var(--accent-2); margin-bottom: 12px; }
.hero h1 { font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; margin-bottom: 16px; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 34rem; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-art { position: relative; display: grid; grid-template-columns: 1fr; align-items: end; min-height: 400px; }
.blob { position: absolute; border-radius: 50%; opacity: .75; z-index: 0; pointer-events: none; }
.blob-a { width: 180px; height: 180px; background: var(--accent-3); top: 0; right: 24px; }
.blob-b { width: 140px; height: 140px; background: var(--accent-2); bottom: 80px; left: 0; }
.hero-photo { position: relative; z-index: 1; width: 100%; display: block; border-radius: var(--radius); box-shadow: 0 24px 56px rgba(45,49,66,.18); aspect-ratio: 4/3; object-fit: cover; }
.hero-card { position: absolute; z-index: 2; right: 12px; bottom: 12px; background: var(--card); border-radius: 16px; box-shadow: 0 20px 50px rgba(45,49,66,.15); max-width: 200px; overflow: hidden; }
.hero-card-img { display: block; width: 100%; height: 110px; object-fit: cover; }
.hero-card strong, .hero-card span { display: block; padding: 0 14px; }
.hero-card strong { padding-top: 10px; font-family: var(--display); font-size: .95rem; }
.hero-card span { padding-bottom: 12px; font-size: .8rem; color: var(--muted); }
.card { overflow: hidden; }
.card-img { width: calc(100% + 56px); max-width: none; margin: -28px -28px 16px; height: 180px; object-fit: cover; display: block; border-radius: 0; }
.approach-media { position: relative; padding-bottom: 32px; }
.approach-media > img:first-child { width: 100%; border-radius: var(--radius); box-shadow: 0 16px 40px rgba(0,0,0,.1); aspect-ratio: 4/3; object-fit: cover; display: block; }
.approach-media-sm { position: absolute; right: 8px; bottom: 0; width: 42%; max-width: 220px; border-radius: 14px; border: 4px solid var(--bg); box-shadow: 0 12px 32px rgba(0,0,0,.15); aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 768px) { .hero-card { position: static; margin-top: 12px; max-width: none; } .approach-media-sm { position: static; width: 55%; margin: 16px 0 0 auto; } }
.section { padding: 72px 0; }
.section h2 { font-family: var(--display); font-size: 2rem; margin-bottom: 8px; }
.section-lead { color: var(--muted); margin-bottom: 32px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .cards { grid-template-columns: 1fr; } }
.card { background: var(--card); padding: 28px; border-radius: var(--radius); border: 1px solid rgba(0,0,0,.06); }
.card-featured { border-color: var(--accent-2); box-shadow: 0 12px 40px rgba(78,205,196,.2); transform: translateY(-4px); }
.card h3 { font-family: var(--display); margin-bottom: 4px; }
.card .meta { font-size: .8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.approach { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 768px) { .split { grid-template-columns: 1fr; } }
.approach-side { display: flex; flex-direction: column; gap: 28px; justify-content: center; }
.checklist { list-style: none; margin-top: 20px; }
.checklist li { padding: 10px 0 10px 28px; position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-2); font-weight: 800; }
.quote { background: var(--ink); color: #fff; padding: 32px; border-radius: var(--radius); font-size: 1.05rem; }
.quote cite { display: block; margin-top: 16px; font-style: normal; opacity: .7; font-size: .9rem; }
.visit-box { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; background: var(--card); padding: 40px; border-radius: calc(var(--radius) + 4px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
@media (max-width: 768px) { .visit-box { grid-template-columns: 1fr; } }
.mini-form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 12px; }
.mini-form input { width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid #e5e7eb; border-radius: 12px; font: inherit; }
.nav a.is-active { color: var(--accent); }
.page-hero { padding: 56px 0 32px; }
.page-hero h1 { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero .lead { margin-bottom: 0; }
.page-body { padding-bottom: 72px; }
.page-body h2 { font-family: var(--display); font-size: 1.5rem; margin: 32px 0 12px; }
.page-body p, .page-body li { color: var(--muted); margin-bottom: 14px; }
.page-body ul { margin: 0 0 20px 1.2rem; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 768px) { .content-grid { grid-template-columns: 1fr; } }
.content-img { width: 100%; border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.price-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.06); }
.price-table th, .price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #eee; }
.price-table th { background: var(--ink); color: #fff; font-family: var(--display); }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--accent); }
.site-footer { padding: 28px 0 40px; border-top: 1px solid rgba(0,0,0,.08); font-size: .85rem; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-footer a { color: var(--accent); }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
