@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
:root {
    --bg: #f0fdfa;
    --surface: #fff;
    --text: #134e4a;
    --muted: #5b7c7a;
    --accent: #0d9488;
    --accent-dark: #0f766e;
    --radius: 16px;
    --wrap: 680px;
    --shadow: 0 8px 40px rgba(13,148,136,0.12);
}
body.has-proto-bar { font-family: 'Manrope', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.55; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1rem; }
.card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin: 2rem 0; }
.hero-img { width: 100%; height: 200px; object-fit: cover; }
.header { padding: 1.75rem 1.5rem 1.25rem; text-align: center; margin-top: -3rem; position: relative; }
.header .avatar.person-avatar { margin: 0 auto 1rem; border: 4px solid var(--surface); box-shadow: var(--shadow); }
.header h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.header p { color: var(--muted); font-size: 0.9rem; }
.body { padding: 0 1.5rem 1.5rem; }
.quick { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.quick a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem; background: var(--bg); border-radius: 12px; text-decoration: none; color: var(--text); font-weight: 700; font-size: 0.9rem; transition: background .15s; }
.quick a:hover { background: #ccfbf1; }
.quick .primary { background: var(--accent); color: #fff; }
.quick .primary:hover { background: var(--accent-dark); }
.section { margin-bottom: 1.5rem; }
.section h2 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.75rem; font-weight: 700; }
.price-list { list-style: none; }
.price-list li { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px dashed #99f6e4; font-size: 0.9rem; }
.price-list li span:last-child { font-weight: 800; color: var(--accent); white-space: nowrap; margin-left: 1rem; }
.reviews { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.stars { color: #f59e0b; }
.map { border-radius: 12px; overflow: hidden; height: 160px; background: #ccfbf1; position: relative; }
.map img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.map-label { position: absolute; bottom: 0.75rem; left: 0.75rem; background: rgba(255,255,255,0.95); padding: 0.4rem 0.75rem; border-radius: 8px; font-size: 0.78rem; font-weight: 600; }
.hours { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.75rem; }
.footer { text-align: center; padding: 1.5rem; font-size: 0.8rem; color: var(--muted); }
