/* ══════════════════════════════════════════
   Cambridge Cricket Club — Main Styles
   Nostalgic · Local · Community
══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=Caveat:wght@400;600&display=swap');

/* ── Variables ── */
:root {
    --cream:        #F7F3EA;
    --parchment:    #EDE0C8;
    --parchment-dk: #D8C9A8;
    --green-deep:   #1B3A2D;
    --green:        #2D5A3D;
    --green-mid:    #3D7A52;
    --green-light:  #E8F0EB;
    --gold:         #BF8A14;
    --gold-light:   #D4A533;
    --gold-pale:    #F5E9C8;
    --gold-dark:    #8A5F00;
    --brown-dark:   #2C1400;
    --text-dark:    #1A120A;
    --text-mid:     #4A3828;
    --text-light:   #7A6858;
    --white:        #FDFAF5;
    --shadow-sm:    0 2px 8px rgba(44,20,0,0.08);
    --shadow-md:    0 6px 24px rgba(44,20,0,0.13);
    --shadow-lg:    0 16px 48px rgba(44,20,0,0.18);
    --font-head:    'Playfair Display', Georgia, serif;
    --font-body:    'Lato', 'Helvetica Neue', sans-serif;
    --font-hand:    'Caveat', cursive;
    --transition:   all 0.3s ease;
    --radius:       4px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-mid);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Subtle paper texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* ── Layout ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Backgrounds ── */
.bg-cream    { background-color: var(--cream); }
.bg-parchment { background-color: var(--parchment); }
.bg-green    { background-color: var(--green-deep); color: var(--cream); }
.bg-green h1, .bg-green h2, .bg-green h3 { color: var(--cream); }

/* ── Typography utilities ── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

.eyebrow {
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── Dividers ── */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0 2rem;
}
.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--parchment-dk);
}
.divider-icon {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}
.divider-center { justify-content: center; }
.divider-center::before, .divider-center::after { max-width: 60px; }

.rule {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border: none;
    margin: 1rem 0 1.75rem;
    border-radius: 2px;
}
.rule-center { margin: 1rem auto 1.75rem; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--green);
    color: var(--cream);
    border-color: var(--green);
}
.btn-primary:hover {
    background-color: var(--green-deep);
    border-color: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--brown-dark);
    border-color: var(--gold);
}
.btn-gold:hover {
    background-color: var(--gold-dark);
    color: var(--cream);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: rgba(247,243,234,0.6);
}
.btn-outline:hover {
    background: var(--cream);
    color: var(--green-deep);
    border-color: var(--cream);
}

.btn-outline-green {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-outline-green:hover {
    background: var(--green);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(24,58,49,0.98);
    backdrop-filter: blur(12px);
    padding: 0.875rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--cream);
    text-decoration: none;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
    transition: var(--transition);
}
.navbar.scrolled .nav-logo-img { height: 38px; }

.nav-logo-text {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}
.nav-logo-text small {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(247,243,234,0.9);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: color 0.2s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    bottom: -4px;
    left: 0;
    transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
    border-radius: 2px;
}

/* ── Hero ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    color: var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/hero-bg.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: -2;
    background-color: var(--green-deep);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(27,58,45,0.82) 0%,
        rgba(27,58,45,0.55) 20%,
        rgba(27,58,45,0.1) 40%,
        rgba(27,58,45,0.1) 65%,
        rgba(27,58,45,0.88) 100%
    );
    z-index: -1;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Stamp + title — bottom edge touches the top of the fence (~35% from top) */
.hero-top {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 65%;
    text-align: center;
    padding: 0 2rem;
}

/* Subtitle + buttons — anchored in the dark lower band */
.hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4rem;
    text-align: center;
    padding: 0 2rem;
}

.hero-stamp {
    display: block;
    width: fit-content;
    margin: 0 auto 1rem;
    border: 2px solid var(--gold);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius);
}

.hero-content h1 {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    color: var(--cream);
    line-height: 1.15;
    white-space: nowrap;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin: 0;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(247,243,234,0.9);
    max-width: 520px;
    margin: 0 auto 1.75rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(247,243,234,0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
}
.hero-scroll svg { opacity: 0.6; }

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Stats Bar ── */
.stats-bar {
    background: var(--green-deep);
    padding: 2.25rem 0;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.stats-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    color: var(--cream);
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(247,243,234,0.65);
    margin-top: 0.35rem;
    display: block;
}

.stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(247,243,234,0.15);
}

/* ── About Snippet ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-frame {
    position: relative;
    padding: 10px;
    background: var(--parchment);
    box-shadow: var(--shadow-lg);
}
.about-img-frame::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid var(--parchment-dk);
    pointer-events: none;
    z-index: 1;
}

.about-img-frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: sepia(15%) contrast(1.05);
}

.about-caption {
    font-family: var(--font-hand);
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.75rem;
}

.about-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.about-text p { margin-bottom: 1.25rem; font-size: 1.05rem; line-height: 1.85; }

/* ── Section Headers ── */
.section-header {
    margin-bottom: 3rem;
}
.section-header h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.section-header p { margin-top: 0.75rem; }

/* ── Junior Cricket Feature ── */
.junior-feature {
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
}

.junior-feature::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(191,138,20,0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.junior-text { color: var(--cream); }
.junior-text h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 2.8rem); }
.junior-text p { color: rgba(247,243,234,0.82); margin-bottom: 1.25rem; font-size: 1.05rem; }

.junior-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 2rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(191,138,20,0.15);
    border: 1px solid rgba(191,138,20,0.35);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
}

.junior-img-stack {
    position: relative;
    height: 440px;
}

.junior-img-main,
.junior-img-secondary {
    position: absolute;
    background: var(--parchment);
    padding: 8px;
    box-shadow: var(--shadow-lg);
}

.junior-img-main {
    width: 75%;
    top: 0;
    left: 0;
    z-index: 2;
}
.junior-img-main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: sepia(10%);
}

.junior-img-secondary {
    width: 55%;
    bottom: 0;
    right: 0;
    z-index: 3;
    transform: rotate(2deg);
}
.junior-img-secondary img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: sepia(10%);
}

/* ── Gallery Preview ── */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
    height: 480px;
}

.preview-item {
    overflow: hidden;
    position: relative;
    background: var(--parchment);
    cursor: pointer;
}

.preview-item:first-child {
    grid-row: 1 / 3;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: sepia(8%);
}

.preview-item:hover img { transform: scale(1.06); }

.preview-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,58,45,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.preview-item:hover::after { opacity: 1; }

.preview-placeholder {
    background: var(--parchment-dk);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.8rem;
    text-align: center;
}
.preview-placeholder .ph-icon { font-size: 2rem; opacity: 0.4; }

/* ── Pat Solomon Memorial ── */
.memorial-section {
    background: var(--parchment);
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
    position: relative;
}

.memorial-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.memorial-year-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.memorial-year {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: var(--cream);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.memorial-year-num {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1;
}

.memorial-year-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.memorial-quote {
    position: relative;
    padding: 0 0 0 2rem;
}

.memorial-quote::before {
    content: '\201C';
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    font-family: var(--font-head);
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
}

.memorial-quote blockquote {
    font-family: var(--font-head);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.memorial-quote p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(255,255,255,0.015) 40px,
            rgba(255,255,255,0.015) 80px
        );
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--cream);
    margin-bottom: 1rem;
}
.cta-section p {
    color: rgba(247,243,234,0.8);
    max-width: 560px;
    margin: 0 auto 2.25rem;
    font-size: 1.1rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
    background: var(--brown-dark);
    color: rgba(247,243,234,0.75);
    padding: 3.5rem 0 2rem;
}

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

.footer-brand img {
    height: 56px;
    margin-bottom: 1rem;
    filter: brightness(0.85) sepia(0.2);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.75;
    max-width: 300px;
}

.footer-brand .footer-tagline {
    font-family: var(--font-hand);
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 0.75rem;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    color: rgba(247,243,234,0.65);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(247,243,234,0.25);
    color: rgba(247,243,234,0.65);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,163,88,0.1);
}
.footer-social svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

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

/* ── Subpage Hero ── */
.subhero {
    background: var(--green-deep);
    padding: 9rem 0 4rem;
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subhero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.subhero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.subhero p {
    color: rgba(247,243,234,0.75);
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ── Utility ── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .junior-grid,
    .about-grid,
    .memorial-inner { grid-template-columns: 1fr; gap: 2.5rem; }

    .junior-img-stack { height: 340px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .preview-item:first-child { grid-row: auto; }
    .preview-item { height: 220px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: var(--green-deep);
        width: 280px;
        height: 100vh;
        padding: 5rem 2rem 2rem;
        transition: right 0.35s ease;
        box-shadow: -4px 0 30px rgba(0,0,0,0.25);
        gap: 1.5rem;
    }
    .nav-links.open { right: 0; }
    .menu-toggle { display: flex; }

    .stats-inner { gap: 1rem; }
    .stat-sep { display: none; }

    .hero-content h1 { font-size: 2.8rem; }

    .gallery-preview-grid { grid-template-columns: 1fr; }
    .preview-item { height: 240px; }

    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .junior-img-stack { height: auto; position: relative; }
    .junior-img-main { position: relative; width: 100%; }
    .junior-img-secondary { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .section { padding: 3.5rem 0; }
    .hero-content h1 { white-space: normal; font-size: clamp(1.4rem, 6vw, 2.2rem); }
    .hero-top { bottom: 60%; }
    .hero-actions { flex-direction: column; align-items: center; justify-content: center; }
    .btn { width: 100%; max-width: 280px; }
}
