/* ===========================
   EliteDesires — Main Stylesheet
   Light / Clean Modern
=========================== */

:root {
    --primary:    #c9a96e;
    --primary-dk: #a8824a;
    --dark:       #2d1b69;
    --text:       #1e1240;
    --muted:      #7a72a0;
    --light:      #f7f5fb;
    --white:      #ffffff;
    --border:     #e4e0f0;
    --shadow:     0 4px 24px rgba(45,27,105,0.08);
    --shadow-lg:  0 12px 48px rgba(45,27,105,0.15);
    --radius:     12px;
    --radius-lg:  20px;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;
    --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 15px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dk); }

/* ---- Layout ---- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 52px 0; }
.section-sm { padding: 32px 0; }

.section-header {
    text-align: center;
    margin-bottom: 36px;
}
.section-header p {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 8px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    letter-spacing: 0.3px;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dk);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}
.btn-dark:hover {
    background: #2d2d4a;
    color: var(--white);
    transform: translateY(-1px);
}

.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Navbar ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
}
.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav-links a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
    padding: 60px 0 48px;
    background: linear-gradient(135deg, #f7f5fb 0%, #ede8f8 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45,27,105,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,110,0.12);
    color: var(--primary-dk);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero h1 { margin-bottom: 20px; }
.hero p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 460px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.stat-item h3 {
    font-size: 1.8rem;
    color: var(--primary);
    font-family: var(--font-serif);
}
.stat-item p {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #d8cff5, #b8a8e8);
    box-shadow: var(--shadow-lg);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}
.hero-image:hover img {
    transform: scale(1.03);
}
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(45,27,105,0.3) 100%);
    border-radius: var(--radius-lg);
    pointer-events: none;
}
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--muted);
    flex-direction: column;
    gap: 12px;
}

/* ---- Profile Cards ---- */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.profile-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}
.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.profile-card-img {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #f0ebe0, #e0d8c8);
    position: relative;
    overflow: hidden;
}
.profile-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.profile-card:hover .profile-card-img img {
    transform: scale(1.04);
}

.profile-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 3rem;
}

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

.availability-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
}
.availability-dot.available { background: #22c55e; }
.availability-dot.busy      { background: #f59e0b; }
.availability-dot.unavailable { background: #ef4444; }

.profile-card-body { padding: 14px 16px; }
.profile-card-body h3 { font-size: 1.2rem; margin-bottom: 4px; }

.profile-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.category-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--primary-dk);
    background: rgba(201,169,110,0.1);
    padding: 3px 8px;
    border-radius: 4px;
}
.profile-location {
    font-size: 0.82rem;
    color: var(--muted);
}

.profile-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-top: 1px solid var(--border);
    background: var(--light);
}
.profile-rate {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}
.profile-rate span { font-size: 0.78rem; color: var(--muted); font-weight: 400; }

/* ---- Forms ---- */
.form-page {
    min-height: calc(100vh - 68px);
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 48px;
    width: 100%;
    max-width: 480px;
}

.form-card h1 {
    font-size: 2rem;
    margin-bottom: 6px;
}
.form-card .subtitle {
    color: var(--muted);
    margin-bottom: 32px;
    font-size: 0.9rem;
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px;
    letter-spacing: 0.2px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
}

/* ---- Alerts ---- */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.alert-error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.alert-info    { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }

/* ---- Membership Cards ---- */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .membership-grid {
        grid-template-columns: 1fr !important;
        max-width: 420px !important;
    }
}

.membership-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    transition: all var(--transition);
    text-align: center;
}
.membership-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.membership-card.featured {
    border-color: var(--primary);
    background: linear-gradient(145deg, #f9f7ff, #f0ebff);
}
.membership-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 50px;
}

.membership-price {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--dark);
    margin: 10px 0 2px;
}
.membership-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.membership-period { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; }

.membership-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}
.membership-features li {
    padding: 8px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.membership-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- Browse Page ---- */
.browse-header {
    padding: 48px 0 32px;
    background: var(--light);
    border-bottom: 1px solid var(--border);
}
.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}
.filter-bar select,
.filter-bar input {
    padding: 9px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    background: var(--white);
    color: var(--text);
    outline: none;
}
.filter-bar select:focus,
.filter-bar input:focus {
    border-color: var(--primary);
}
.filter-bar input { min-width: 220px; }

/* ---- Profile Detail ---- */
.profile-detail {
    padding: 60px 0;
}
.profile-detail-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
}
.profile-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f0ebe0;
    box-shadow: var(--shadow-lg);
}
.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-info h1 { margin-bottom: 8px; }
.profile-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.profile-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
    padding: 24px;
    background: var(--light);
    border-radius: var(--radius);
}
.spec-item label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); }
.spec-item p { font-weight: 500; margin-top: 2px; }
.profile-bio { line-height: 1.8; color: var(--muted); margin-bottom: 28px; }

/* ---- How It Works ---- */
/* ---- Legacy steps (kept for safety) ---- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.step-card { text-align: center; padding: 20px 14px; }
.step-number { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,169,110,0.12); color: var(--primary); font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.step-card h3 { margin-bottom: 6px; font-size: 1.15rem; }
.step-card p { color: var(--muted); font-size: 0.87rem; }

/* ---- How It Works — Infographic Style ---- */
.hiw-section { background: #fff; }
.hiw-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 48px;
}
.hiw-divider {
    width: 1px;
    background: #e8e8e8;
    flex-shrink: 0;
    margin: 0 8px;
}
.hiw-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 24px 0;
}
.hiw-top { flex: 1; }
.hiw-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 2px dashed #f0ebe1;
    text-align: center;
}
/* Colored step numbers */
.hiw-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-serif, Georgia, serif);
}
.hiw-col--1 .hiw-num { color: #5aaa4a; }
.hiw-col--2 .hiw-num { color: #3a7bd5; }
.hiw-col--3 .hiw-num { color: #e05555; }
.hiw-col--4 .hiw-num { color: #e0883a; }

.hiw-title {
    font-size: 1.65rem;
    font-weight: 700;
    margin: 0 0 18px;
    color: #1a1a1a;
    font-family: var(--font-serif, Georgia, serif);
}
.hiw-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hiw-list li {
    font-size: 0.88rem;
    color: #555;
    padding: 4px 0;
    border-bottom: 1px solid #f3f3f3;
}
.hiw-list li:last-child { border-bottom: none; }

/* Icons */
.hiw-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
}
.hiw-icon svg { width: 100%; height: 100%; }
.hiw-col--1 .hiw-icon { color: #5aaa4a; }
.hiw-col--2 .hiw-icon { color: #3a7bd5; }
.hiw-col--3 .hiw-icon { color: #e05555; }
.hiw-col--4 .hiw-icon { color: #e0883a; }

.hiw-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    background: #f8f5ef;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #ede8de;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .hiw-grid { flex-direction: column; }
    .hiw-divider { width: 100%; height: 1px; margin: 8px 0; }
    .hiw-col { padding: 24px 0; }
    .hiw-bottom { border-top: none; border-left: none; padding-top: 16px; }
    .hiw-label { white-space: normal; text-align: center; }
}

/* ---- Booking Form ---- */
.booking-page { padding: 60px 0; background: var(--light); min-height: calc(100vh - 68px); }
.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

/* ---- Dashboard ---- */
.dashboard { padding: 48px 0; }
.dashboard-grid { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
.sidebar { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 24px; height: fit-content; }
.sidebar-nav { list-style: none; }
.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition);
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    background: rgba(201,169,110,0.1);
    color: var(--primary);
}
.dashboard-content { min-height: 400px; }

/* ---- Admin ---- */
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-sidebar { background: linear-gradient(180deg, #2d1b69 0%, #1e1145 100%); padding: 24px; }
.admin-sidebar .logo { color: white; }
.admin-sidebar .logo span { color: var(--primary); }
.admin-sidebar-nav { list-style: none; margin-top: 32px; }
.admin-sidebar-nav li a {
    display: block;
    color: rgba(255,255,255,0.7);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 4px;
    transition: all var(--transition);
}
.admin-sidebar-nav li a:hover,
.admin-sidebar-nav li a.active {
    background: rgba(201,169,110,0.2);
    color: var(--primary);
}
.admin-main { padding: 32px; background: var(--light); }
.admin-header { margin-bottom: 28px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.stat-card .stat-value { font-size: 2rem; font-family: var(--font-serif); color: var(--dark); }
.stat-card .stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

/* ---- Table ---- */
.table-wrap { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--light); }
th { padding: 13px 16px; text-align: left; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); border-bottom: 1px solid var(--border); }
td { padding: 14px 16px; font-size: 0.88rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--light); }

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}
.badge-green    { background: #dcfce7; color: #16a34a; }
.badge-yellow   { background: #fef9c3; color: #a16207; }
.badge-red      { background: #fee2e2; color: #dc2626; }
.badge-blue     { background: #dbeafe; color: #1d4ed8; }
.badge-gold     { background: rgba(201,169,110,0.15); color: var(--primary-dk); }

/* ---- Divider ---- */
.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, #2d1b69 0%, #4a2d9e 100%);
    padding: 52px 0;
    text-align: center;
}
.cta-section h2, .cta-section p { color: white; }
.cta-section p { color: rgba(255,255,255,0.65); margin: 12px auto 32px; max-width: 480px; }

/* ---- Footer ---- */
.footer {
    background: var(--light);
    border-top: 1px solid var(--border);
    padding: 40px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}
.footer-brand p { color: var(--muted); font-size: 0.85rem; margin-top: 12px; max-width: 260px; line-height: 1.7; }
.footer-links h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--dark); margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-disclaimer { font-style: italic; opacity: 0.7; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .profile-detail-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .profiles-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .stats-row { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .membership-card.featured::before { font-size:.65rem; padding:3px 12px; }
}

@media (max-width: 400px) {
    .profiles-grid { grid-template-columns: 1fr; }
}
