The Music Teacher's Parent Handbook
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --teal: #368ea6; --teal-dark: #2a7189; --teal-light: #e8f4f8; --teal-pale: #f3fafc; --charcoal: #4 d4b47; --warm-dark: #2c2a27; --mid: #888885; --light: #c9cccc; --cream: #faf9f7; --white: #ffffff; } body { font-family: 'DM Sans', sans-serif; color: var(--charcoal); background: var(--white); line-height: 1.6; } /* ── HERO ─────────────────────────────────────── */ .hero { background: var(--warm-dark); padding: 80px 24px 72px; text-align: center; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 0%, rgba(54,142,166,0.18) 0%, transparent 70%); pointer-events: none; } .hero-eyebrow { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; } .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 52px); font-weight: 600; color: var(--white); line-height: 1.18; max-width: 760px; margin: 0 auto 20px; } .hero h1 em { font-style: italic; color: #a8d8e8; } .hero-sub { font-size: 17px; color: #b0aeaa; max-width: 520px; margin: 0 auto 40px; font-weight: 300; line-height: 1.65; } .hero-price-block { display: inline-flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; padding: 10px 24px 10px 16px; margin-bottom: 28px; } .price-tag { background: var(--teal); color: white; font-size: 20px; font-weight: 700; padding: 6px 16px; border-radius: 100px; } .price-label { color: #d0ceca; font-size: 14px; font-weight: 400; } .btn-primary { display: inline-block; background: var(--teal); color: white; font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; padding: 16px 36px; border-radius: 4px; text-decoration: none; letter-spacing: 0.2px; transition: background 0.2s; } .btn-primary:hover { background: var(--teal-dark); } .hero-meta { margin-top: 18px; font-size: 13px; color: #7a7874; } /* ── TRUST BAR ───────────────────────────────── */ .trust-bar { background: var(--teal-light); border-top: 1px solid #cde5ef; border-bottom: 1px solid #cde5ef; padding: 18px 24px; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; } .trust-item { font-size: 13px; color: var(--teal-dark); font-weight: 500; display: flex; align-items: center; gap: 7px; } .trust-item::before { content: '✓'; font-weight: 700; color: var(--teal); } /* ── SHARED LAYOUT ───────────────────────────── */ .section { padding: 72px 24px; } .section-inner { max-width: 760px; margin: 0 auto; } .section-inner-wide { max-width: 900px; margin: 0 auto; } .section-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; } h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 38px); font-weight: 600; color: var(--warm-dark); line-height: 1.22; margin-bottom: 20px; } .lead { font-size: 17px; color: var(--charcoal); line-height: 1.7; font-weight: 300; margin-bottom: 20px; } /* ── PROBLEM SECTION ─────────────────────────── */ .problem { background: var(--cream); } .problem-quote { border-left: 3px solid var(--teal); padding: 20px 28px; margin: 32px 0; background: white; border-radius: 0 4px 4px 0; } .problem-quote p { font-family: 'Playfair Display', serif; font-size: 18px; font-style: italic; color: var(--warm-dark); line-height: 1.6; } .problem-quote cite { display: block; margin-top: 12px; font-size: 13px; color: var(--mid); font-style: normal; } /* ── WHAT'S INSIDE ───────────────────────────── */ .inside { background: white; } .pages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin-top: 36px; } .page-card { border: 1px solid #e8e8e6; border-radius: 6px; padding: 24px; background: var(--cream); transition: border-color 0.2s, transform 0.2s; } .page-card:hover { border-color: var(--teal); transform: translateY(-2px); } .page-num { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--teal); text-transform: uppercase; margin-bottom: 8px; } .page-card h3 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--warm-dark); margin-bottom: 8px; font-weight: 600; } .page-card p { font-size: 14px; color: var(--mid); line-height: 1.6; } /* ── WHO IT'S FOR ────────────────────────────── */ .who { background: var(--teal-pale); } .who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; } @media (max-width: 600px) { .who-grid { grid-template-columns: 1fr; } } .who-col h3 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; } .who-col.yes h3 { color: var(--teal); } .who-col.no h3 { color: var(--mid); } .who-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 15px; line-height: 1.5; } .who-item .icon { flex-shrink: 0; margin-top: 2px; font-size: 15px; } /* ── ORIGIN ──────────────────────────────────── */ .origin { background: var(--warm-dark); } .origin-inner { max-width: 680px; margin: 0 auto; text-align: center; } .origin h2 { color: white; } .origin .lead { color: #c0beba; } .origin-sig { margin-top: 32px; font-size: 14px; color: #7a7874; } .origin-sig strong { color: #b0aeaa; } /* ── ANCHOR / VALUE ──────────────────────────── */ .anchor { background: white; } .anchor-box { background: var(--teal-light); border: 1px solid #cde5ef; border-radius: 8px; padding: 36px 40px; margin-top: 36px; } .anchor-box h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--warm-dark); margin-bottom: 16px; } .anchor-list { list-style: none; } .anchor-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--charcoal); margin-bottom: 12px; line-height: 1.55; } .anchor-list li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; } /* ── CTA ─────────────────────────────────────── */ .cta-section { background: var(--cream); padding: 80px 24px; text-align: center; } .cta-box { max-width: 560px; margin: 0 auto; } .cta-box h2 { margin-bottom: 16px; } .cta-box .lead { margin-bottom: 32px; } .cta-price-display { font-family: 'DM Sans', sans-serif; font-size: 42px; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 8px; } .cta-price-label { font-size: 14px; color: var(--mid); margin-bottom: 28px; } .cta-guarantee { margin-top: 20px; font-size: 13px; color: var(--mid); line-height: 1.6; } /* ── FAQ ─────────────────────────────────────── */ .faq { background: white; } .faq-list { margin-top: 36px; } .faq-item { border-bottom: 1px solid #ebebea; padding: 24px 0; } .faq-item:first-child { border-top: 1px solid #ebebea; } .faq-q { font-size: 16px; font-weight: 600; color: var(--warm-dark); margin-bottom: 10px; } .faq-a { font-size: 15px; color: var(--charcoal); line-height: 1.65; font-weight: 300; } /* ── FOOTER ──────────────────────────────────── */ .footer { background: var(--warm-dark); padding: 40px 24px; text-align: center; } .footer p { font-size: 13px; color: #6a6864; line-height: 1.8; } .footer a { color: var(--teal); text-decoration: none; } For Private Music Teachers Clear expectations.Fewer hard conversations.Families who actually stay. The Parent Handbook Template gives new families everything they need to know — before the questions, the confusion, and the "we didn't know that was the policy" moments begin. $19 Instant download · Fully editable · Use forever Works in Google Docs, Microsoft Word, and Pages 8 fully editable pages Instant digital download Works in Google Docs, Word & Pages Use with unlimited students The problem it solves Most studios hand new families an invoice. Then wonder why things feel transactional. Parents come to that first lesson nervous and hopeful. They have questions they don't know how to ask. They're not sure what to expect, what the policies are, or whether they made the right choice. When nothing is written down, misunderstandings happen. Expectations go unset. And "we didn't know" becomes a familiar phrase you wish you never had to hear. "I honestly think teachers give families too much credit for knowing how to support lessons. Most parents desperately want to do a good job — they just need the tools and framework." — Aubrey, Collaborative Endeavor (and music mom of two) A handbook doesn't replace your warmth as a teacher. It backs it up. It says: I've thought about you. I want this to go well. Here's everything you need. What's inside 8 pages. Everything new families need to know. Fully written, fully editable. Swap in your studio name, policies, and details. Most teachers have it customized and ready to send in under 20 minutes. Page 1 Welcome Letter Sets a warm, professional tone from the very first line. Written to make families feel genuinely welcomed — not just processed. Pages 2–3 Lesson Policies Tuition, cancellations, illness, makeups, and withdrawals — all clearly stated. No more "we didn't know" conversations. Page 4 Studio Policies Waiting area, instrument care, weather closures — the details that prevent friction before it starts. Page 5 Frequently Asked Questions Answers the questions parents are already thinking but haven't asked yet. Builds confidence in their decision. Page 6 Recital & Performance Info Expectations, preparation, what to anticipate. Parents feel prepared — not blindsided. Pages 7–8 Safety, Emergency & Contact Info Emergency procedures and your contact details — professional, thorough, reassuring. Is this right for you? You already know how to teach. This is everything that comes before. This is for you if ✅You've ever had a parent say "we didn't know that was the policy" ✅You're tired of answering the same questions over and over ✅You want to look as professional as the big music schools ✅You don't have time to create something from scratch ✅You believe a great experience starts before lesson one Skip it if ❌You only have 1–2 students and aren't planning to grow ❌You already have a comprehensive written handbook you love ❌You prefer to handle expectations verbally and informally The real cost of skipping it $19 versus the cost of one uncomfortable conversation. Unclear expectations don't just cause friction — they quietly erode trust. The parent who asks for a refund because "they didn't know." The family that stops showing up after six weeks. The student who was never really committed. What a handbook quietly prevents: The "we didn't know you charge for missed lessons" conversation Parents showing up expecting a recital their child isn't ready for Families who pull out because expectations weren't clear from the start The awkward back-and-forth over cancellation policies mid-semester New families who feel uncertain — and quietly start shopping around Why this exists Built by a music mom who wished she'd had it. I have two kids in music lessons. When they started, I had no idea what to expect — what the policies were, what "normal" progress looked like, or how to support practice at home. Nothing was written down. I built the tools I wished we'd been given. The handbook was first. Because when families know what to expect from the start, everyone wins — teachers included. — Aubrey, Collaborative Endeavor · Cary, NC Get started today Your next new family deserves more than an invoice. Download the template, customize it in under 20 minutes, and send it to every new family from here forward. One purchase. Unlimited students. Yours forever. $19 Instant download · Fully editable · Works in Google Docs, Word & Pages href="mailto:[email protected]">[email protected] — I'm happy to help you decide if it's right for your studio. Questions A few things teachers ask. What format is it in? You receive a Word document (.docx) that works in Google Docs, Microsoft Word, and Apple Pages. Edit directly in whatever you already use. How much can I customize it? Everything. The template is fully editable — swap in your studio name, policies, contact info, and anything else. It's written as a starting point, not a prescription. How long does setup take? Most teachers have it customized and ready to send in under 20 minutes. The content is already written — you're just making it yours. Can I use it for all instruments? Yes — the handbook covers general studio policies that apply across instruments. It's not instrument-specific, so it works whether you teach piano, guitar, voice, violin, or anything else. Is there a limit on how many students I can use it with? No limits, ever. One purchase, unlimited students, yours to use forever. What's the refund policy? Because this is an instant-download digital file, all sales are final. If you have questions before purchasing, I'm happy to answer them — just email [email protected].
More you might like
Related
TEACHER TOOLKIT for Musical Theatre Teachers delivering the
Related
TEACHER TOOLKIT for Musical Theatre Teachers delivering the
Related
TEACHER TOOLKIT for Musical Theatre Teachers delivering the
Related