/* ============================================================
Cincinnati School of Music: Teacher Recruiting Site
cincinnatimusicteacher.com
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

:root {
--accent: #B96A63;
--accent-dk: #A85A54;
--slate: #6B7F8D;
--slate-lt: #8BAABC;
--charcoal: #3D3D3D;
--mid: #747474;
--light: #9A9A9A;
--offwhite: #F0EFEE;
--offwb: #E6E4E1;
--white: #FFFFFF;
--dark-band: #2b2b2b;
--f: 'Jost', 'Avenir Next', Avenir, system-ui, sans-serif;
--radius: 5px;
--shadow: 0 2px 14px rgba(0,0,0,0.07);
--shadow-md: 0 4px 24px rgba(0,0,0,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
font-family: var(--f);
background: var(--offwhite);
color: var(--charcoal);
font-size: 1.0625rem;
line-height: 1.7;
-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--slate); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent); }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { line-height: 1.2; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.container {
max-width: 1060px;
margin: 0 auto;
padding: 0 1.5rem;
}
.container-sm {
max-width: 740px;
margin: 0 auto;
padding: 0 1.5rem;
}

section { padding: 4.5rem 0; }
section.tight { padding: 3rem 0; }

/* ── HEADER ── */
.site-header {
background: var(--white);
border-bottom: 1px solid var(--offwb);
position: sticky;
top: 0;
z-index: 200;
box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 1.5rem;
height: 64px;
max-width: 1060px;
margin: 0 auto;
gap: 1rem;
}

.site-logo img { height: 42px; width: auto; }

/* ── NAV ── */
.site-nav {
display: flex;
align-items: center;
gap: 0;
list-style: none;
}

.site-nav > li { position: relative; }

.site-nav > li > a {
display: block;
color: var(--charcoal);
font-size: 0.875rem;
font-weight: 600;
padding: 0.5rem 0.75rem;
border-radius: var(--radius);
white-space: nowrap;
transition: color 0.15s, background 0.15s;
}

.site-nav > li > a:hover,
.site-nav > li.active > a { color: var(--accent); }

.site-nav > li > a.has-dropdown::after {
content: ' ▾';
font-size: 0.7rem;
opacity: 0.6;
}

/* Dropdown */
.dropdown-menu {
position: absolute;
top: calc(100% + 4px);
left: 0;
background: var(--white);
border: 1px solid var(--offwb);
border-radius: var(--radius);
box-shadow: var(--shadow-md);
min-width: 220px;
list-style: none;
opacity: 0;
visibility: hidden;
transform: translateY(-6px);
transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
z-index: 300;
}

.site-nav > li:hover .dropdown-menu,
.site-nav > li.open .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.dropdown-menu li a {
display: block;
color: var(--charcoal);
font-size: 0.875rem;
font-weight: 500;
padding: 0.6rem 1rem;
transition: background 0.12s, color 0.12s;
}

.dropdown-menu li a:hover { background: var(--offwhite); color: var(--accent); }
.dropdown-menu li:first-child a { border-radius: var(--radius) var(--radius) 0 0; }
.dropdown-menu li:last-child a { border-radius: 0 0 var(--radius) var(--radius); }

/* Apply CTA in nav */
.nav-cta > a {
background: var(--accent) !important;
color: var(--white) !important;
padding: 0.45rem 1.1rem !important;
border-radius: var(--radius) !important;
margin-left: 0.5rem;
}
.nav-cta > a:hover { background: var(--accent-dk) !important; color: var(--white) !important; }

/* Mobile hamburger */
.nav-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.4rem;
flex-direction: column;
gap: 5px;
}
.nav-toggle span {
display: block;
width: 24px;
height: 2px;
background: var(--charcoal);
border-radius: 2px;
transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
background: var(--dark-band);
color: var(--white);
padding: 5.5rem 1.5rem;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(160deg, rgba(185,106,99,0.07) 0%, rgba(107,127,141,0.05) 100%);
pointer-events: none;
}

.hero .container { position: relative; }

.hero-eyebrow {
display: inline-block;
background: var(--accent);
color: var(--white);
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
padding: 0.28rem 0.85rem;
border-radius: 2rem;
margin-bottom: 1.1rem;
}

.hero h1 { color: var(--white); margin-bottom: 1rem; max-width: 700px; }

.hero-sub {
font-size: 1.1rem;
color: rgba(255,255,255,0.78);
max-width: 600px;
margin-bottom: 2rem;
line-height: 1.65;
}

.hero-split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.hero-image-side {
border-radius: var(--radius);
overflow: hidden;
min-height: 360px;
align-self: stretch;
}

.hero-image-side img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
filter: brightness(0.9);
}

/* ── BUTTONS ── */
.btn {
display: inline-block;
padding: 0.75rem 1.75rem;
border-radius: var(--radius);
font-family: var(--f);
font-size: 0.95rem;
font-weight: 700;
cursor: pointer;
transition: background 0.15s, transform 0.1s, box-shadow 0.15s, border-color 0.15s;
text-align: center;
border: 2px solid transparent;
line-height: 1.3;
letter-spacing: 0.01em;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.13); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dk); border-color: var(--accent-dk); color: var(--white); }

.btn-slate { background: var(--slate); color: var(--white); border-color: var(--slate); }
.btn-slate:hover { background: #2ea3b3; border-color: #2ea3b3; color: var(--white); }

.btn-outline-white {
background: transparent;
color: var(--white);
border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }

.btn-outline {
background: transparent;
color: var(--accent);
border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

.btn-lg { padding: 0.9rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }

.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── SECTION HEADERS ── */
.section-label {
display: inline-block;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--slate);
margin-bottom: 0.6rem;
}

.section-header { margin-bottom: 2.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { max-width: 580px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 0.6rem; }
.section-header p { color: var(--mid); font-size: 1.05rem; margin-bottom: 0; }

.divider {
width: 40px;
height: 3px;
background: var(--accent);
border-radius: 2px;
margin: 0.8rem 0 1.5rem;
}
.section-header.centered .divider { margin-left: auto; margin-right: auto; }
.divider.slate { background: var(--slate); }

/* ── PROOF STRIP ── */
.proof-strip {
background: var(--white);
border-top: 1px solid var(--offwb);
border-bottom: 1px solid var(--offwb);
padding: 2.5rem 1.5rem;
}

.proof-strip-inner {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
max-width: 1060px;
margin: 0 auto;
text-align: center;
}

.proof-item {}
.proof-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.proof-item h4 { color: var(--charcoal); margin-bottom: 0.25rem; font-size: 1rem; }
.proof-item p { color: var(--mid); font-size: 0.875rem; line-height: 1.5; margin: 0; }

/* ── CONTENT SECTIONS ── */
.bg-white { background: var(--white); }
.bg-offwhite { background: var(--offwhite); }
.bg-dark { background: var(--dark-band); color: var(--white); }
.bg-dark h2 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.75); }

/* ── TWO COLUMN ── */
.two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
}

.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* ── CHECKLIST ── */
.checklist { list-style: none; margin: 0.75rem 0 0; }
.checklist li {
padding: 0.55rem 0 0.55rem 1.85rem;
position: relative;
border-bottom: 1px solid var(--offwb);
font-size: 0.97rem;
color: var(--charcoal);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
content: '✓';
position: absolute;
left: 0;
top: 0.55rem;
color: var(--slate);
font-weight: 700;
}

.bg-dark .checklist li { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.bg-dark .checklist li::before { color: var(--slate-lt); }

/* ── NOT FOR SECTION ── */
.not-for-list { list-style: none; margin: 0.75rem 0 0; }
.not-for-list li {
padding: 0.5rem 0 0.5rem 1.85rem;
position: relative;
font-size: 0.95rem;
color: var(--mid);
border-bottom: 1px solid var(--offwb);
}
.not-for-list li:last-child { border-bottom: none; }
.not-for-list li::before {
content: '–';
position: absolute;
left: 0.25rem;
font-weight: 700;
color: var(--light);
}

/* ── INSTRUMENT CARDS ── */
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
gap: 1.25rem;
margin-top: 2rem;
}

.instr-card {
background: var(--white);
border-radius: var(--radius);
box-shadow: var(--shadow);
overflow: hidden;
display: flex;
flex-direction: column;
transition: transform 0.2s, box-shadow 0.2s;
text-decoration: none;
color: inherit;
}

.instr-card:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
color: inherit;
}

.card-top {
height: 5px;
background: var(--accent);
}
.card-top.slate { background: var(--slate); }

.card-body {
padding: 1.6rem 1.6rem 1rem;
flex: 1;
}

.card-emoji { font-size: 2rem; margin-bottom: 0.6rem; }
.instr-card h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.instr-card p { color: var(--mid); font-size: 0.9rem; line-height: 1.55; }

.card-footer-link {
padding: 1rem 1.6rem;
border-top: 1px solid var(--offwb);
font-size: 0.85rem;
font-weight: 600;
color: var(--accent);
display: flex;
align-items: center;
gap: 0.4rem;
}

.card-footer-link::after { content: '→'; transition: transform 0.15s; }
.instr-card:hover .card-footer-link::after { transform: translateX(3px); }

/* ── APPLY CARDS ── */
.apply-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }

.apply-item {
background: var(--white);
border-radius: var(--radius);
box-shadow: var(--shadow);
padding: 1.1rem 1.5rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
border-left: 4px solid var(--accent);
transition: transform 0.15s, box-shadow 0.15s;
}
.apply-item:hover { transform: translateX(3px); box-shadow: var(--shadow-md); }
.apply-item-left { display: flex; align-items: center; gap: 1rem; }
.apply-item-emoji { font-size: 1.5rem; }
.apply-item h4 { margin: 0; font-size: 0.97rem; }
.apply-item p { margin: 0; font-size: 0.83rem; color: var(--mid); }

/* ── LOCATIONS ── */
.location-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
margin-top: 1.5rem;
}

.location-card {
background: var(--white);
border-radius: var(--radius);
border: 1.5px solid var(--offwb);
padding: 1.25rem 1.25rem 1rem;
}

.location-card h4 { margin-bottom: 0.3rem; font-size: 0.97rem; }
.location-card p { font-size: 0.85rem; color: var(--mid); margin: 0; line-height: 1.5; }

.location-badge {
display: inline-block;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
padding: 0.2rem 0.6rem;
border-radius: 2rem;
margin-bottom: 0.6rem;
background: var(--offwhite);
color: var(--mid);
}
.location-badge.flagship { background: rgba(60,181,198,0.12); color: var(--slate); }

/* ── GUARANTEE BOX ── */
.guarantee-box {
background: var(--white);
border: 2px solid var(--slate-lt);
border-radius: var(--radius);
padding: 2rem 2rem 1.75rem;
margin-top: 1.5rem;
}

.guarantee-box h3 {
color: var(--slate);
margin-bottom: 0.75rem;
font-size: 1.15rem;
}

/* ── CTA BAND ── */
.cta-band {
background: var(--dark-band);
color: var(--white);
text-align: center;
padding: 5rem 1.5rem;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p {
color: rgba(255,255,255,0.72);
margin-bottom: 2rem;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}

/* ── PROCESS STEPS ── */
.steps { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }

.step {
display: flex;
gap: 1.25rem;
align-items: flex-start;
}

.step-num {
width: 36px;
height: 36px;
border-radius: 50%;
background: var(--slate);
color: var(--white);
font-weight: 700;
font-size: 0.9rem;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 0.1rem;
}

.step-body h4 { margin-bottom: 0.2rem; }
.step-body p { font-size: 0.9rem; color: var(--mid); margin: 0; }

/* ── CONTENT BODY (long-form pages) ── */
.content-body { max-width: 740px; margin: 0 auto; }
.content-body h2 { margin: 2.5rem 0 0.75rem; }
.content-body h3 { margin: 2rem 0 0.5rem; color: var(--charcoal); }
.content-body p { margin-bottom: 1rem; }
.content-body ul,
.content-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-body li { margin-bottom: 0.35rem; font-size: 0.97rem; }
.content-body a { color: var(--accent); text-decoration: underline; }

/* ── BREADCRUMB ── */
.breadcrumb {
font-size: 0.82rem;
color: var(--light);
padding: 0.75rem 0;
border-bottom: 1px solid var(--offwb);
}
.breadcrumb a { color: var(--mid); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 0.4rem; }

/* ── FEATURE CARDS ── */
.feature-card-grid {
display: grid;
gap: 1.5rem;
}

.feature-card-grid.two { grid-template-columns: repeat(2, 1fr); }
.feature-card-grid.three { grid-template-columns: repeat(3, 1fr); }

.feature-card {
background: var(--white);
border-radius: var(--radius);
box-shadow: var(--shadow);
padding: 2rem 2rem 1.75rem;
border-top: 3px solid var(--offwb);
}

.feature-card .section-label { display: block; margin-bottom: 0.5rem; }
.feature-card h3 { margin-bottom: 0.6rem; }
.feature-card p { color: var(--mid); font-size: 0.95rem; line-height: 1.65; }
.feature-card p:last-child { margin-bottom: 0; }

.feature-card.accent-card {
border-top-color: var(--accent);
background: rgba(185,106,99,0.04);
}

/* ── PHOTO BANNER ── */
.photo-banner {
display: grid;
grid-template-columns: repeat(3, 1fr);
height: 260px;
overflow: hidden;
}

.photo-banner img {
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(0.88);
}

/* ── STARTING STRONG GRID ── */
.starting-strong-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
}

/* ── W2 BOX ── */
.w2-box {
background: var(--white);
border-radius: var(--radius);
border: 2px solid var(--slate-lt);
padding: 2.5rem;
max-width: 820px;
}

.w2-box h3 { color: var(--slate); margin-bottom: 1rem; font-size: 1.1rem; }

/* ── OWNER PHOTO CARD ── */
.owner-photo-card {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.owner-duo {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}

.owner-duo img {
border-radius: var(--radius);
width: 100%;
height: 280px;
object-fit: cover;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
margin-top: 1rem;
}

.testimonial-card {
background: var(--offwhite);
border-radius: var(--radius);
padding: 2rem;
border-left: 3px solid var(--accent);
}

.testimonial-card blockquote {
font-size: 0.95rem;
line-height: 1.7;
color: var(--charcoal);
font-style: italic;
margin-bottom: 1rem;
}

.testimonial-card cite {
font-size: 0.85rem;
font-weight: 600;
color: var(--slate);
font-style: normal;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
padding: 1.5rem 0;
border-bottom: 1px solid var(--offwb);
}

.faq-item:first-child { border-top: 1px solid var(--offwb); }

.faq-item h4 { margin-bottom: 0.4rem; font-size: 1rem; color: var(--charcoal); }
.faq-item p { color: var(--mid); font-size: 0.95rem; margin: 0; }

/* ── GUARANTEE WIDE ── */
.guarantee-wide {
margin-top: 2rem;
}

/* ── PHOTO GRID ── */
.photo-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
margin-top: 2rem;
}

.photo-grid img {
border-radius: var(--radius);
height: 220px;
width: 100%;
object-fit: cover;
}

/* ── FOOTER ── */
.site-footer {
background: var(--charcoal);
color: rgba(255,255,255,0.6);
padding: 3.5rem 1.5rem 2rem;
font-size: 0.875rem;
}

.footer-inner {
max-width: 1060px;
margin: 0 auto;
}

.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 2.5rem;
padding-bottom: 2.5rem;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
height: 34px;
opacity: 0.75;
margin-bottom: 0.85rem;
}

.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 240px; }

.footer-col h5 {
color: var(--white);
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 0.85rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 0.75rem;
padding-top: 1.75rem;
font-size: 0.8rem;
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-mid { color: var(--mid); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
.hero-split { grid-template-columns: 1fr; }
.hero-image-side { display: none; }
.two-col { grid-template-columns: 1fr; gap: 2.5rem; }
.two-col.flip { direction: ltr; }
.proof-strip-inner { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
.feature-card-grid.three { grid-template-columns: repeat(2, 1fr); }
.starting-strong-grid { grid-template-columns: 1fr; gap: 2.5rem; }
.owner-photo-card { grid-template-columns: 1fr; gap: 2.5rem; }
.testimonials-grid { grid-template-columns: 1fr; }
.photo-banner { height: 180px; }
}

@media (max-width: 880px) {
.site-nav {
display: none;
position: absolute;
top: 64px;
left: 0;
right: 0;
background: var(--white);
border-bottom: 2px solid var(--offwb);
flex-direction: column;
align-items: stretch;
padding: 0.5rem 0 1rem;
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
gap: 0;
}
.site-nav.open { display: flex; }
.site-nav > li > a { padding: 0.65rem 1.5rem; border-radius: 0; }
.site-nav > li > a.has-dropdown::after { float: right; }
.nav-cta { padding: 0.5rem 1.5rem; }
.nav-cta > a { margin-left: 0; display: block; text-align: center; }
.dropdown-menu {
position: static;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
border: none;
border-top: 1px solid var(--offwb);
border-radius: 0;
display: none;
}
.site-nav > li.open .dropdown-menu { display: block; }
.dropdown-menu li a { padding: 0.55rem 2rem; font-size: 0.85rem; }
.nav-toggle { display: flex; }
.proof-strip-inner { grid-template-columns: 1fr 1fr; }
.footer-grid { grid-template-columns: 1fr; }
section { padding: 3rem 0; }
.hero { padding: 4rem 1.5rem; }
.apply-item { flex-direction: column; align-items: flex-start; }
.feature-card-grid.two { grid-template-columns: 1fr; }
.feature-card-grid.three { grid-template-columns: 1fr; }
.photo-grid { grid-template-columns: 1fr; }
.photo-banner { display: none; }
}

@media (max-width: 640px) {
/* HERO: center, dark overlay, drop first sub paragraph */
.hero { text-align: center; }
.hero h1 { max-width: 100%; }
.hero-sub { max-width: 100%; }
.hero .hero-text p:first-of-type { display: none; }
.hero::before { background: rgba(0,0,0,0.52); }
.hero .btn-group { justify-content: center; }

/* PROOF STRIP: icon + heading only */
.proof-item p { display: none; }
.proof-strip-inner { gap: 1rem; }

/* STARTING STRONG: hide body copy, keep h2 + guarantee box */
.starting-copy p { display: none; }

/* HIDE sections that require reading, not scanning */
.section-csm-diff { display: none; }
.section-fit-check { display: none; }
.section-w2 { display: none; }
.section-owners { display: none; }
.section-faq { display: none; }

/* TESTIMONIALS: one card only */
.section-testimonials .testimonial-card:nth-child(n+2) { display: none; }

/* Tighten vertical rhythm */
section { padding: 2.5rem 0; }
section.tight { padding: 2rem 0; }
}
