/* ============================================================
   SOUTH BEACH REJUVENATION — BASE STYLES
   Design System: Dark luxury, gold accents, emerald highlights
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #080808;
    color: #faf9f6;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* --- CSS Variables --- */
:root {
    --bg: #080808;
    --text: #faf9f6;
    --gold: #c9a96e;
    --emerald: #2e7d56;
    --text-muted: rgba(250, 249, 246, 0.55);
    --text-dim: rgba(250, 249, 246, 0.35);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(201, 169, 110, 0.15);
    --container-max: 1200px;
}

/* --- Layout --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text);
}

.logo-accent {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(250, 249, 246, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201, 169, 110, 0.4);
    padding: 0.5rem 1.25rem;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.2s;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.875rem 2rem;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: rgba(201, 169, 110, 0.4);
}

.btn-outline:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: var(--gold);
}

.btn-secondary {
    background: transparent;
    color: rgba(250, 249, 246, 0.6);
    border-color: rgba(250, 249, 246, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border-color: rgba(250, 249, 246, 0.4);
}

/* --- Hero Section --- */
.page-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    margin-top: 60px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-content {
    max-width: 680px;
    text-align: center;
    margin: 0 auto;
}

.page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.page-hero-title .highlight {
    color: var(--gold);
    font-style: italic;
}

.page-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.7);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Core System Section --- */
.core-section {
    padding: 6rem 0;
    background: var(--bg);
}

.core-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.core-stage {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gold);
    border-top: 2px solid rgba(201, 169, 110, 0.3);
    padding: 2rem 1.5rem;
    transition: border-color 0.3s;
}

.core-stage:hover {
    border-color: rgba(201, 169, 110, 0.35);
}

.core-stage-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 1rem;
}

.core-stage-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.core-stage-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.core-stage-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-muted);
}

.core-stage-focus {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.core-stage-focus span {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.3);
    display: block;
    margin-bottom: 0.35rem;
}

.core-stage-focus p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.55);
    line-height: 1.5;
}

/* --- Assessment Section --- */
.assessment-section {
    padding: 6rem 0;
    background: rgba(201, 169, 110, 0.03);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

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

.assessment-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gold);
    padding: 2.5rem 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.5);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(250, 249, 246, 0.2);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: rgba(201, 169, 110, 0.5);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a96e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select option {
    background: #1a1a1a;
    color: var(--text);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.assessment-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.assessment-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.assessment-steps {
    list-style: none;
    margin-bottom: 2rem;
}

.assessment-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.5;
}

.assessment-steps li::before {
    content: '—';
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* --- Education / Podcast Section --- */
.education-section {
    padding: 6rem 0;
    background: var(--bg);
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.podcast-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gold);
    padding: 2.5rem 2rem;
}

.podcast-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.podcast-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 0.3rem 0.75rem;
}

.podcast-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.podcast-host {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-dim);
    margin-bottom: 1.25rem;
}

.podcast-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.podcast-episodes {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.25rem;
}

.podcast-episode {
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.podcast-episode:last-child {
    border-bottom: none;
}

.episode-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.episode-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-dim);
}

.education-topics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.education-topic {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gold);
    padding: 1.75rem 1.5rem;
    transition: border-color 0.3s;
}

.education-topic:hover {
    border-color: rgba(201, 169, 110, 0.35);
}

.education-topic h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.education-topic p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- About Preview --- */
.about-preview {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.about-preview-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.about-preview-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-value {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gold);
}

.about-value h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.about-value p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0 !important;
}

.provider-card {
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.25);
    padding: 2.5rem 2rem;
    text-align: center;
}

.provider-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.1);
    border: 2px solid rgba(201, 169, 110, 0.3);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
}

.provider-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.provider-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.provider-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Contact Section --- */
.contact-section {
    padding: 6rem 0;
    background: var(--bg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.contact-info > p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-muted);
}

.contact-details li strong {
    font-weight: 500;
    color: var(--text);
    min-width: 80px;
}

.contact-details a {
    color: var(--gold);
    transition: opacity 0.2s;
}

.contact-details a:hover {
    opacity: 0.75;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gold);
    padding: 2.5rem 2rem;
}

.contact-form-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1.75rem;
}

/* --- Footer --- */
.footer {
    padding: 4rem 0 2rem;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.footer-logo .logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text);
}

.footer-logo .logo-accent {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.4);
    line-height: 1.6;
    max-width: 260px;
    margin-bottom: 1.25rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(250, 249, 246, 0.4);
    text-decoration: none;
    border: 1px solid rgba(250, 249, 246, 0.15);
    padding: 0.375rem 0.625rem;
    transition: all 0.2s;
}

.social-links a:hover {
    color: var(--gold);
    border-color: rgba(201, 169, 110, 0.4);
}

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.5);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.625rem;
}

.footer-column ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

.contact-list li a {
    color: rgba(250, 249, 246, 0.6) !important;
}

.footer-email-signup {
    margin-top: 1.5rem;
}

.footer-email-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.35);
    margin-bottom: 0.625rem;
}

.email-form {
    display: flex;
}

.email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    padding: 0.625rem 0.875rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.email-input::placeholder {
    color: rgba(250, 249, 246, 0.25);
}

.email-input:focus {
    border-color: rgba(201, 169, 110, 0.4);
}

.email-submit {
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--gold);
    padding: 0.625rem 0.875rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.email-submit:hover {
    background: rgba(201, 169, 110, 0.25);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.25);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.25);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(250, 249, 246, 0.6);
}

/* --- Compliance Note --- */
.compliance-note {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
}

.compliance-note p {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.3);
    line-height: 1.6;
    text-align: center;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .core-grid { grid-template-columns: repeat(2, 1fr); }
    .assessment-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .education-grid { grid-template-columns: 1fr; }
    .about-preview-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .core-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
