/* =============================================
   Off-Season Landing Page (frontend/off-season.html)
   Single-page scroll layout. Reuses base.css tokens.
   ============================================= */

.off-season-page {
    min-height: 100vh;
    padding-top: 80px;
}

.os-section {
    padding: 70px 20px;
}

.os-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.os-section .container.os-narrow {
    max-width: 740px;
}

.os-section-alt {
    background: rgba(var(--primary-rgb), 0.04);
}

.os-section-highlight {
    background: linear-gradient(180deg, var(--bg-gradient-3) 0%, var(--bg-gradient-1) 100%);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.os-lead {
    font-size: 1.15rem;
    line-height: var(--line-height-relaxed);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.os-note {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.os-center { text-align: center; }

/* ===== HERO ===== */
.os-hero {
    padding: 100px 20px 70px;
    background: linear-gradient(180deg, var(--bg-gradient-3) 0%, var(--bg-gradient-1) 100%);
}

.os-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.os-hero-text {
    text-align: left;
}

.os-hero-badge {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary-dark);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.02em;
    margin-bottom: 22px;
}

.os-hero h1 {
    font-size: 2.6rem;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 18px;
}

.os-subtitle {
    font-size: 1.15rem;
    color: var(--text-dark);
    opacity: 0.85;
    max-width: 640px;
    margin: 0 0 30px;
    line-height: var(--line-height-relaxed);
}

.os-hero-cta {
    display: inline-block;
    margin-top: 4px;
}

.os-hero-note {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.os-hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* ===== SLIDESHOW ===== */
.os-slideshow {
    position: relative;
    overflow: hidden;
}

.os-slideshow .os-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.os-slideshow .os-slide.active {
    opacity: 1;
}

.os-slideshow .os-slide:first-child {
    position: relative;
}

.os-hero-image.os-slideshow .os-slide {
    border-radius: var(--radius-xl);
}

.mobile-hero-img.os-slideshow .os-slide {
    border-radius: 0;
}

/* ===== STATS STRIP ===== */
.os-stats-strip {
    background: var(--primary);
    color: var(--white, #fff);
    padding: 36px 20px;
}

.os-stats-strip .container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}

.os-stat-num {
    font-size: 2.4rem;
    font-weight: var(--font-weight-bold);
    color: #fff;
    line-height: 1;
}

.os-stat-label {
    margin-top: 6px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

/* ===== PHOTO GRID (2026 RECAP) ===== */
.os-photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 10px;
}

.os-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.os-photo:hover {
    transform: scale(1.03);
}

.os-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.os-lightbox.active {
    display: flex;
}

.os-lightbox img {
    max-width: 85vw;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    object-fit: contain;
}

.lb-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.4rem;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
    opacity: 0.8;
}

.lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 2.6rem;
    cursor: pointer;
    z-index: 2;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    line-height: 1;
    opacity: 0.8;
}

.lb-prev:hover, .lb-next:hover, .lb-close:hover {
    opacity: 1;
}

.lb-prev { left: 12px; }
.lb-next { right: 12px; }

.lb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* ===== PITCH CARDS (WHAT'S COMING) ===== */
.os-pitch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-bottom: 36px;
}

.os-pitch-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.os-pitch-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.os-pitch-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: var(--radius-full);
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.os-pitch-icon svg {
    width: 28px;
    height: 28px;
}

.os-pitch-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.os-pitch-card p {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 0.97rem;
    line-height: var(--line-height-relaxed);
}

.os-pitch-cta {
    text-align: center;
    margin-top: 12px;
}

.os-pitch-cta p {
    max-width: 640px;
    margin: 0 auto 18px;
    color: var(--text-dark);
    opacity: 0.85;
}

/* ===== SERVICES WE'LL OFFER (sub-block of What's Coming) ===== */
.os-subhead {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 50px 0 24px;
}

.os-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 30px;
}

.os-service-card {
    background: rgba(var(--white-rgb, 255, 255, 255), 0.65);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 0;
    text-align: center;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.os-service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.os-service-card .os-service-icon,
.os-service-card h4,
.os-service-card p {
    padding-left: 20px;
    padding-right: 20px;
}

.os-service-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 10px;
    padding-top: 16px;
}

.os-service-card h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.os-service-card p {
    font-size: 0.92rem;
    color: var(--text-dark);
    opacity: 0.78;
    line-height: 1.5;
    margin: 0;
    padding-bottom: 20px;
}

/* ===== BUNDLE DEAL CALLOUT ===== */
.os-deal-callout {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 26px 28px;
    text-align: center;
    margin: 8px auto 32px;
    max-width: 720px;
    box-shadow: var(--shadow-md);
}

.os-deal-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.os-deal-headline {
    font-size: 1.2rem;
    margin: 0 0 6px;
    color: #fff;
    line-height: 1.4;
}

.os-deal-headline strong {
    color: #fff;
    font-weight: var(--font-weight-bold);
}

.os-deal-sub {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== 15% OFF DISCOUNT BADGE (notify section) ===== */
.os-discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.08em;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
    text-align: center;
}

#about,
#whats-coming,
#whats-coming-mobile,
#faq,
#notify {
    scroll-margin-top: 80px;
}

#notify .container {
    text-align: center;
}

#notify .os-form {
    text-align: left;
}

/* ===== INCLUDED LIST (2-col) ===== */
.os-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.os-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-dark);
    opacity: 0.9;
}

.os-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.os-list-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 24px;
}

/* ===== PRICING GRID ===== */
.os-pricing-heading {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 32px 0 4px;
    letter-spacing: 0.02em;
}

.os-pricing-heading:first-of-type {
    margin-top: 18px;
}

.os-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.os-price-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 26px 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.os-price-card h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.os-price-card .price {
    font-size: 1.9rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary);
}

.os-price-card-combo {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(249, 115, 22, 0.08));
    border-color: rgba(245, 158, 11, 0.35);
}

.os-price-card-combo h3 {
    color: #1a1a1a;
    font-weight: var(--font-weight-bold);
}

.os-price-card-combo .price {
    color: #b45309;
}

.os-price-save {
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    color: #b45309;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== NOTIFY FORM ===== */
.os-form {
    max-width: 540px;
    margin: 24px auto 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.os-form-row {
    margin-bottom: 18px;
}

.os-form-row label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

.os-form-row input[type="text"],
.os-form-row input[type="email"],
.os-form-row input[type="tel"],
.os-form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--white, #fff);
    color: var(--text-dark);
    font-family: inherit;
    box-sizing: border-box;
}

.os-form-row textarea {
    resize: vertical;
    min-height: 80px;
}

.os-form-row input:focus,
.os-form-row textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.required {
    color: var(--danger, #e53935);
}

.optional {
    opacity: 0.6;
    font-weight: normal;
    font-size: 0.9rem;
}

.os-form-checks {
    margin: 18px 0 22px;
}

.os-form-checks-label {
    margin: 0 0 8px;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

.os-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1.4;
}

.os-check input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.os-form-submit {
    width: 100%;
    margin-top: 6px;
}

.os-form-status {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    text-align: center;
    min-height: 1.2em;
}

.os-form-status.success {
    background: rgba(76, 175, 80, 0.12);
    color: var(--success, #2e7d32);
}

.os-form-status.error {
    background: rgba(229, 57, 53, 0.12);
    color: var(--danger, #c62828);
}

/* ===== FAQ ===== */
.os-faq {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    padding: 0;
    overflow: hidden;
}

.os-faq summary {
    padding: 16px 20px;
    cursor: pointer;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    list-style: none;
    position: relative;
    padding-right: 44px;
}

.os-faq summary::-webkit-details-marker { display: none; }

.os-faq summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--primary);
    line-height: 1;
    transition: transform 0.2s ease;
}

.os-faq[open] summary::after {
    content: '−';
}

.os-faq-thumb {
    width: 156px;
    height: 120px;
    border-radius: 0;
    object-fit: cover;
    flex-shrink: 0;
}

.os-faq-has-thumb {
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.os-faq-has-thumb summary {
    display: flex;
    align-items: center;
    padding: 0 !important;
    font-size: 1.1rem;
    font-weight: 600;
    min-height: 120px;
}

/* Left thumb: [img] [text ........... +] */
.os-faq-has-thumb:not(.os-faq-thumb-right) .os-faq-thumb {
    margin-right: 12px;
}

.os-faq-has-thumb:not(.os-faq-thumb-right) summary::after {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

/* Right thumb: [+] ........... [text] [img] */
.os-faq-thumb-right summary {
    justify-content: flex-end;
    padding-left: 48px !important;
}

.os-faq-thumb-right .os-faq-thumb {
    margin-left: 12px;
}

.os-faq-thumb-right summary::after {
    position: absolute;
    left: 18px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
}


.os-faq-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
}

.os-faq p {
    padding: 0 20px 18px;
    margin: 0;
    color: var(--text-dark);
    opacity: 0.85;
    line-height: var(--line-height-relaxed);
}

.os-faq code {
    background: rgba(var(--primary-rgb), 0.1);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.os-footer {
    padding: 36px 20px 60px;
    text-align: center;
    color: var(--text-dark);
    background: rgba(var(--primary-rgb), 0.04);
}

.os-footer-brand {
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.os-footer-contact {
    margin: 8px 0;
}

.os-footer-contact a {
    color: var(--primary);
    text-decoration: none;
}

.os-footer-contact a:hover {
    text-decoration: underline;
}

.os-footer-sep {
    margin: 0 8px;
    color: var(--text-muted);
}

.os-footer-tag {
    margin-top: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ===== STICKY MOBILE CTA ===== */
.os-sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

@media (max-width: 768px) {
    .os-sticky-cta {
        display: block;
    }
}

.os-sticky-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

/* ===== NAV CTA ===== */
.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: background 0.2s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

/* ===== DESKTOP/MOBILE VISIBILITY ===== */
.mobile-hero,
.mobile-stats,
.mobile-photos,
.mobile-pricing,
.mobile-whats-coming {
    display: none;
}

/* ===== MOBILE HERO ===== */
.mobile-hero {
    padding: 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-gradient-3) 0%, var(--bg-gradient-1) 100%);
    flex-direction: column;
    height: calc(100svh - 80px);
}

.mobile-hero.os-hero {
    padding: 0;
}

.mobile-hero-img {
    padding: 0;
    margin-top: 16px;
    margin-bottom: 34px;
}

.mobile-hero-img.os-slideshow {
    height: 30%;
    flex-shrink: 0;
}

.mobile-hero-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    cursor: pointer;
}

.mobile-hero-content {
    padding: 0 24px;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 70px;
}

.mobile-hero .os-hero-badge {
    font-size: 0.94rem;
    padding: 9px 19px;
    margin-bottom: 19px;
}

.mobile-hero h1 {
    font-size: 4.7rem;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 22px;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

.mobile-hero .os-subtitle {
    font-size: 1.25rem;
    margin: 0 auto 25px;
    text-align: center;
    line-height: 1.5;
    color: var(--text-dark);
    opacity: 0.8;
}

.mobile-hero .os-hero-cta {
    position: absolute;
    bottom: 5px;
    left: 24px;
    right: 24px;
    width: auto;
    text-align: center;
    padding: 17px 20px;
    font-size: 1.22rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.01em;
    box-shadow: var(--shadow-md);
}

/* ===== MOBILE PITCH SUMMARY ===== */
.os-mobile-pitch {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 24px;
}

/* ===== MOBILE PRICING ===== */
.mobile-price-list {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 10px;
    box-shadow: var(--shadow-sm);
}

.mobile-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1rem;
    color: var(--text-dark);
}

.mobile-price-row:last-child {
    border-bottom: none;
}

.mobile-price-row .price {
    font-weight: var(--font-weight-bold);
    color: var(--primary);
    font-size: 1.15rem;
}

.mobile-price-combo {
    background: rgba(245, 158, 11, 0.06);
}

.mobile-price-combo .price {
    color: #b45309;
}

.mobile-price-combo .price small {
    display: block;
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

/* ===== MOBILE STATS ===== */
.mobile-stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
}

.mobile-stats .os-stat-num {
    font-size: 2rem;
}

.mobile-stats .os-stat-label {
    font-size: 0.8rem;
}

/* ===== MOBILE PHOTOS ===== */
.mobile-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.mobile-photo-wide {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9 !important;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .desktop-hero,
    .desktop-stats,
    .desktop-photos,
    .desktop-pricing,
    .desktop-whats-coming {
        display: none;
    }
    .mobile-hero {
        display: flex;
    }
    .mobile-stats,
    .mobile-photos,
    .mobile-pricing,
    .mobile-whats-coming {
        display: block;
    }
    .os-section {
        padding: 40px 16px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    .mobile-stats {
        padding: 24px 16px;
    }
    .os-pitch-card {
        padding: 20px 16px;
    }
    .os-pitch-card:hover {
        transform: none;
    }
    .os-pitch-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }
    .os-pitch-icon svg {
        width: 22px;
        height: 22px;
    }
    .os-pitch-card h3 {
        font-size: 1.05rem;
    }
    .os-pitch-card p {
        font-size: 0.9rem;
    }
    .os-service-card {
        padding: 16px 14px;
    }
    .os-deal-callout {
        padding: 20px 18px;
        margin: 8px 0 24px;
    }
    .os-form {
        padding: 20px 16px;
        border-radius: var(--radius-lg);
    }
    .os-form-row input[type="text"],
    .os-form-row input[type="email"],
    .os-form-row input[type="tel"],
    .os-form-row textarea {
        padding: 14px;
        font-size: 16px; /* prevents iOS zoom */
    }
    .os-check {
        padding: 10px 0;
    }
    .os-check input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
    .os-form-submit {
        padding: 14px 20px;
        font-size: 1.05rem;
    }
    .os-faq summary {
        padding: 14px 40px 14px 16px;
        font-size: 0.95rem;
    }
    .os-faq p {
        padding: 0 16px 14px;
        font-size: 0.9rem;
    }
    .os-footer {
        padding: 28px 16px 90px;
    }
    .os-footer-contact {
        font-size: 0.9rem;
    }
    .os-list-2col {
        grid-template-columns: 1fr;
    }
    .off-season-page {
        padding-bottom: 0;
    }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 480px) {
    .mobile-hero h1 {
        font-size: 2rem;
    }
    .mobile-stats .os-stat-num {
        font-size: 1.8rem;
    }
    .mobile-stats .os-stat-label {
        font-size: 0.75rem;
    }
    .mobile-photo-grid {
        gap: 8px;
    }
    .os-subhead {
        font-size: 1.2rem;
        margin: 30px 0 16px;
    }
    .os-footer-sep {
        display: none;
    }
    .os-footer-contact a {
        display: block;
        margin: 6px 0;
    }
}
