/* The Photographers UK - Main Stylesheet */
/* Elevated visual system for a premium creative community */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6c5cfd;
    --accent-color: #ff8a65;
    --secondary-color: #00d1b2;
    --dark-color: #080a1a;
    --dark-200: #111533;
    --dark-300: #181d46;
    --light-color: #ffffff;
    --muted: #a0a6c8;
    --gray-100: #f5f6ff;
    --gray-200: #e2e6fb;
    --gray-300: #cdd3f5;
    --shadow-xl: 0 30px 70px rgba(10, 15, 43, 0.35);
    --shadow-lg: 0 22px 45px rgba(15, 18, 52, 0.28);
    --shadow: 0 15px 35px rgba(15, 18, 52, 0.2);
    --shadow-soft: 0 8px 20px rgba(15, 18, 52, 0.16);
    --border-radius-lg: 28px;
    --border-radius-md: 20px;
    --border-radius-sm: 12px;
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    color: rgba(244, 245, 255, 0.92);
    background-color: var(--dark-color);
    background-image:
        radial-gradient(120% 120% at 15% -20%, rgba(108, 92, 253, 0.32), transparent 65%),
        radial-gradient(120% 120% at 90% 0%, rgba(255, 138, 101, 0.18), transparent 60%);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

section {
    position: relative;
}

.page-wrapper {
    position: relative;
    overflow: hidden;
}

.page-wrapper::before,
.page-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.6;
    z-index: 0;
}

.page-wrapper::before {
    width: 420px;
    height: 420px;
    background: rgba(108, 92, 253, 0.28);
    top: -160px;
    left: -120px;
}

.page-wrapper::after {
    width: 480px;
    height: 480px;
    background: rgba(255, 138, 101, 0.25);
    bottom: -220px;
    right: -180px;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2.4rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: rgba(244, 245, 255, 0.76);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.75;
}

.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: center;
}

/* Header */
.header {
    background: rgba(8, 10, 26, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 1.1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo-image {
    height: 48px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    font-weight: 500;
    color: rgba(244, 245, 255, 0.78);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--light-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #8b6bff);
    color: var(--light-color);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: rgba(244, 245, 255, 0.05);
    color: var(--light-color);
    border-color: rgba(244, 245, 255, 0.22);
}

.btn-outline:hover {
    background: rgba(244, 245, 255, 0.1);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--light-color);
    color: var(--dark-color);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 0.95rem 2.4rem;
    font-size: 1.05rem;
}

.btn-small {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
}

/* Hero */
.hero {
    padding: 8rem 0 6rem;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 4rem;
    align-items: center;
}

.hero-copy {
    max-width: 560px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(108, 92, 253, 0.18);
    border: 1px solid rgba(108, 92, 253, 0.25);
    color: rgba(244, 245, 255, 0.8);
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.3rem;
    color: var(--light-color);
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(244, 245, 255, 0.72);
    margin-bottom: 2.5rem;
    line-height: 1.85;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
    margin: 2.8rem 0 2.3rem;
}

.stat-card {
    background: rgba(17, 22, 51, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 1.35rem 1.5rem;
    box-shadow: var(--shadow-soft);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(244, 245, 255, 0.64);
    margin-top: 0.4rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.badge {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: rgba(244, 245, 255, 0.08);
    border: 1px solid rgba(244, 245, 255, 0.12);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.hero-visual {
    position: relative;
}

.hero-photo-frame {
    background: linear-gradient(150deg, rgba(34, 30, 90, 0.95), rgba(36, 43, 118, 0.85));
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.hero-photo {
    position: relative;
    height: 420px;
    border-radius: calc(var(--border-radius-lg) - 8px);
    background-image:
        linear-gradient(140deg, rgba(108, 92, 253, 0.85), rgba(255, 138, 101, 0.7)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 16px);
    background-blend-mode: screen;
    overflow: hidden;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45), transparent 55%);
    mix-blend-mode: screen;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    left: 2.4rem;
    right: 2.4rem;
    bottom: 2.4rem;
    display: grid;
    gap: 1rem;
}

.overlay-card {
    background: rgba(8, 10, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 0.95rem 1.2rem;
    box-shadow: var(--shadow-soft);
}

.overlay-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(244, 245, 255, 0.6);
    margin-bottom: 0.35rem;
}

.hero-chip {
    position: absolute;
    top: 2.4rem;
    right: 2.4rem;
    background: var(--light-color);
    color: var(--dark-color);
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

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

/* Badge Bar */
.badge-bar {
    padding: 1.5rem 0 4.5rem;
}

.badge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.soft-badge {
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: rgba(244, 245, 255, 0.08);
    border: 1px solid rgba(244, 245, 255, 0.14);
    font-size: 0.85rem;
    color: rgba(244, 245, 255, 0.7);
}

/* Community Preview */
.community-preview {
    padding: 6rem 0;
    background: rgba(8, 10, 26, 0.9);
}

.community-preview .section-head {
    margin-bottom: 3rem;
}

.community-preview .section-subtitle {
    color: rgba(244, 245, 255, 0.72);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.preview-card {
    background: linear-gradient(140deg, rgba(17, 22, 51, 0.85), rgba(24, 29, 70, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-md);
    padding: 2.1rem 1.9rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.preview-card header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--light-color);
}

.preview-eyebrow {
    display: inline-flex;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244, 245, 255, 0.65);
    border: 1px solid rgba(244, 245, 255, 0.2);
}

.preview-card p {
    color: rgba(244, 245, 255, 0.75);
    line-height: 1.7;
}

.preview-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.preview-link::after {
    content: "→";
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.preview-link:hover {
    color: var(--light-color);
}

.preview-link:hover::after {
    transform: translateX(4px);
}

/* Mission */
.mission {
    padding: 6rem 0;
    background: var(--light-color);
    color: var(--dark-color);
    overflow: hidden;
}

.mission::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 92, 253, 0.06), rgba(0, 209, 178, 0.08));
    opacity: 0.8;
    z-index: 0;
}

.mission .container {
    position: relative;
    z-index: 1;
}

.mission-container {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 3rem;
    align-items: center;
}

.mission .section-title {
    color: var(--dark-color);
}

.mission .section-subtitle {
    color: rgba(14, 17, 43, 0.7);
    margin: 0;
}

.mission-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-list {
    display: grid;
    gap: 1rem;
}

.mission-list li {
    position: relative;
    padding-left: 1.7rem;
    font-size: 1rem;
    color: rgba(14, 17, 43, 0.8);
}

.mission-list li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    left: 0;
    top: 0.5rem;
}

.mission-list span {
    font-weight: 600;
    color: var(--dark-color);
}

.mission-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.mission-showcase-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 12px 25px rgba(17, 22, 51, 0.08);
}

.mission-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.mission-showcase-card p {
    font-weight: 600;
    color: var(--dark-color);
}

/* Features */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(17, 22, 51, 0.98), rgba(24, 29, 70, 0.96));
}

.features .section-subtitle {
    color: rgba(244, 245, 255, 0.68);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.feature-card {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-md);
    padding: 2.3rem 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 2.4rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light-color);
}

.feature-card p {
    color: rgba(244, 245, 255, 0.78);
}

.card-footnote {
    margin-top: auto;
    font-size: 0.82rem;
    color: rgba(213, 218, 255, 0.65);
    letter-spacing: 0.01em;
}

/* Community Experience */
.community-experience {
    padding: 6rem 0;
    background: rgba(8, 10, 26, 0.92);
}

.community-experience .section-subtitle {
    color: rgba(244, 245, 255, 0.7);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.experience-card {
    background: rgba(17, 22, 51, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-6px);
}

.experience-card .feature-icon {
    font-size: 2.2rem;
}

.experience-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.experience-card p {
    color: rgba(244, 245, 255, 0.75);
}

/* Benefits */
.benefits {
    padding: 6rem 0;
    background: var(--light-color);
    color: var(--dark-color);
}

.benefits .section-title,
.benefits .section-subtitle {
    text-align: left;
    margin: 0;
}

.benefits .section-subtitle {
    color: rgba(14, 17, 43, 0.68);
}

.benefits-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}

.benefit-intro {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.benefit-intro .btn {
    align-self: flex-start;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}

.benefit-item {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    padding: 1.6rem 1.5rem;
    box-shadow: 0 15px 30px rgba(17, 22, 51, 0.08);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-6px);
}

.benefit-item.highlight {
    background: linear-gradient(135deg, rgba(108, 92, 253, 0.15), rgba(0, 209, 178, 0.15));
    border-color: rgba(108, 92, 253, 0.3);
}

.benefit-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: rgba(14, 17, 43, 0.75);
}

/* Membership */
.membership {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(8, 10, 26, 0.94), rgba(17, 22, 51, 0.92));
}

.membership .section-subtitle {
    color: rgba(244, 245, 255, 0.72);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.tier-card {
    position: relative;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 2.3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.tier-card.highlighted {
    background: linear-gradient(160deg, rgba(108, 92, 253, 0.3), rgba(0, 209, 178, 0.2));
    border-color: rgba(108, 92, 253, 0.5);
    box-shadow: 0 30px 60px rgba(108, 92, 253, 0.25);
}

.tier-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.tier-icon {
    font-size: 2rem;
}

.tier-head h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light-color);
}

.tier-price {
    font-size: 1.1rem;
    color: rgba(244, 245, 255, 0.75);
    margin-top: 0.35rem;
}

.tier-price span {
    font-size: 0.85rem;
    color: rgba(244, 245, 255, 0.6);
    margin-left: 0.25rem;
}

.tier-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tier-lead {
    color: rgba(244, 245, 255, 0.78);
    line-height: 1.7;
}

.tier-list {
    display: grid;
    gap: 0.7rem;
    color: rgba(244, 245, 255, 0.78);
    font-size: 0.95rem;
    list-style: none;
}

.tier-list li {
    position: relative;
    padding-left: 1.4rem;
}

.tier-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(108, 92, 253, 0.9);
}

.tier-cta {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.tier-card.highlighted .tier-cta {
    align-self: stretch;
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(108, 92, 253, 0.18), rgba(255, 138, 101, 0.12));
}

.testimonials .section-subtitle {
    color: rgba(244, 245, 255, 0.78);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(8, 10, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-md);
    padding: 2.2rem 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(244, 245, 255, 0.9);
}

.testimonial-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-card .name {
    font-weight: 700;
    color: var(--light-color);
}

.testimonial-card .role {
    font-size: 0.9rem;
    color: rgba(244, 245, 255, 0.65);
}

/* CTA */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6c5cfd 0%, #4830f0 48%, #ff8a65 100%);
    text-align: center;
}

.cta-title {
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark-300);
    color: rgba(244, 245, 255, 0.8);
    padding: 4rem 0 2.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.footer-section h4 {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-section p {
    color: rgba(244, 245, 255, 0.7);
    line-height: 1.7;
}

.footer-section ul li + li {
    margin-top: 0.5rem;
}

.footer-section a {
    color: rgba(244, 245, 255, 0.7);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--light-color);
}

.footer .btn-outline {
    border-color: rgba(244, 245, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 245, 255, 0.08);
}

.footer-bottom p {
    color: rgba(244, 245, 255, 0.55);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-copy,
.hero-visual,
.community-preview,
.features,
.community-experience,
.benefits,
.membership,
.testimonials,
.cta-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 1080px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-visual {
        justify-self: center;
        width: 100%;
        max-width: 520px;
    }

.mission-container,
.benefits-wrap {
        grid-template-columns: 1fr;
    }

    .benefit-intro .btn {
        align-self: stretch;
    }
}

@media (max-width: 820px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: clamp(2.6rem, 7vw, 3.1rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-chip {
        position: static;
        margin-top: 1.2rem;
        display: inline-flex;
    }

    .hero-overlay {
        position: static;
        margin-top: 1.4rem;
    }

    .hero-photo-frame {
        padding: 1.4rem;
    }

    .hero-photo {
        height: 360px;
    }

    .mission-showcase {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

@media (max-width: 640px) {
    .header {
        position: static;
    }

    .nav {
        gap: 0.9rem;
    }

    .btn,
    .nav .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .badge-grid {
        justify-content: flex-start;
    }

    .section-head {
        margin-bottom: 2.5rem;
    }

    .benefits-grid,
    .experience-grid,
    .features-grid,
    .testimonial-grid,
    .preview-grid,
    .membership-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-photo {
        height: 300px;
    }

    .mission,
    .features,
    .community-experience,
    .benefits,
    .membership,
    .testimonials,
    .cta {
        padding: 4.5rem 0;
    }
}
