/* ============================================================================
   About + Franchise pages — builds on the .oh4 design tokens (cream + accents).
   ============================================================================ */
.lab-page { overflow: hidden; }
.lab-center { text-align: center; }

/* soft brand-color washes alternating between sections */
.lab-about-hero  { background: #FFF7E8; padding-top: calc(var(--oh4-head-h) + 30px); }
.lab-story       { background: var(--c-cream); }
.lab-additions   { background: #F4FBEF; }
.lab-cta         { background: #FFF0F3; text-align: center; }
.lab-fr-hero     { background: #FFF7E8; padding-top: calc(var(--oh4-head-h) + 30px); }
.lab-why         { background: var(--c-cream); }
.lab-how         { background: #FFF0F3; }
.lab-inquiry     { background: var(--c-cream-2); }

/* About hero */
.lab-about-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px,5vw,60px); align-items: center; }
.lab-about-hero-media { position: relative; display: flex; align-items: center; justify-content: center; min-height: 280px; }
.lab-mascot { position: relative; z-index: 1; width: min(260px, 70%); filter: drop-shadow(0 22px 30px rgba(42,32,24,.22)); }

/* Story prose */
.lab-prose { max-width: 760px; margin: 0 auto; }
.lab-prose p { color: var(--c-ink-soft); font-size: 1.12rem; line-height: 1.75; margin: 0 0 18px; }
.lab-prose p strong { color: var(--c-ink); }
.lab-prose .oh4-h2 { margin: 0 0 14px; }
.lab-allergy { background: #fff; border-left: 4px solid var(--a-strawberry); border-radius: 12px; padding: 16px 18px; font-size: 1.02rem !important; }

/* Why La Bocca — 3 columns */
.lab-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,34px); }
.lab-why-card { background: #fff; border-radius: 22px; padding: 34px 26px; text-align: center; box-shadow: 0 14px 34px rgba(42,32,24,.08); }
.lab-why-ic { font-size: 2.6rem; display: block; margin-bottom: 14px; }
.lab-why-card .oh4-h3 { margin: 0 0 8px; }
.lab-why-card p { color: var(--c-ink-soft); margin: 0; }

/* How it works — 4 steps */
.lab-how-head { margin-bottom: clamp(30px,5vw,48px); }
.lab-how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px,2.5vw,28px); }
.lab-how-step { text-align: center; }
.lab-how-num { width: 56px; height: 56px; border-radius: 50%; background: var(--a-mango); color: var(--c-ink); font-family: var(--f-display); font-weight: 900; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.lab-how-step .oh4-h3 { margin: 0 0 6px; }
.lab-how-step p { color: var(--c-ink-soft); margin: 0; }

/* Inquiry form */
.lab-form-wrap { background: #fff; border-radius: 24px; padding: clamp(24px,4vw,40px); box-shadow: 0 18px 44px rgba(42,32,24,.1); }
.lab-form-disclaimer { font-size: .82rem; color: var(--c-ink-soft); margin: 0 0 22px; line-height: 1.5; }
.lab-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.lab-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: .92rem; color: var(--c-ink); }
.lab-form-full { margin-bottom: 20px; }
.lab-form input, .lab-form select, .lab-form textarea {
	font: inherit; font-weight: 400; padding: 12px 14px; border: 1.5px solid var(--c-line);
	border-radius: 12px; background: #fdfaf3; color: var(--c-ink); width: 100%;
}
.lab-form input:focus, .lab-form select:focus, .lab-form textarea:focus { outline: none; border-color: var(--a-strawberry); }
.lab-form-submit { width: 100%; margin-top: 6px; }
.lab-form-note { padding: 14px 16px; border-radius: 12px; margin: 0 0 20px; font-weight: 600; }
.lab-form-note--ok { background: #E7F6E9; color: #1e7a3a; }
.lab-form-note--err { background: #FDE7EB; color: #b3203a; }
.lab-inquiry-contact { text-align: center; color: var(--c-ink-soft); margin: 22px 0 0; }
.lab-inquiry-contact a { color: var(--a-strawberry); font-weight: 600; }

@media (max-width: 900px) {
	.lab-about-hero-grid { grid-template-columns: 1fr; }
	.lab-about-hero-media { order: -1; }
	.lab-why-grid { grid-template-columns: 1fr; }
	.lab-how-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.lab-form-row { grid-template-columns: 1fr; }
	.lab-how-grid { grid-template-columns: 1fr; }
}
