/* Desire Solutions - Shared Styles */

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

:root {
    --gold: #c9a962;
    --gold-light: #e8d5a3;
    --gold-dark: #a08339;
    --black: #0a0a0a;
    --black-soft: #111115;
    --white: #f5f5f5;
    --white-muted: rgba(245, 245, 245, 0.6);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(201, 169, 98, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(201, 169, 98, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.9) 100%);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
}

.logo-letters {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--gold);
    line-height: 1;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--white-muted);
    font-weight: 300;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

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

/* Club lock icon */
nav a.club-lock {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

nav a.club-lock:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.1);
    box-shadow: 0 0 15px rgba(201, 169, 98, 0.2);
}

nav a.club-lock svg {
    stroke: var(--gold);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

nav a.club-lock:hover svg {
    opacity: 1;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.lang-switch a {
    color: var(--white-muted);
    text-decoration: none;
    opacity: 0.5;
    transition: all 0.3s;
}

.lang-switch a.active,
.lang-switch a:hover {
    opacity: 1;
    color: var(--gold);
}

/* Inner Page Content */
.inner-page main.page-content {
    padding: 140px 3rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.lead {
    font-size: 1.2rem;
    color: var(--white-muted);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.8) 0%, rgba(15, 15, 25, 0.9) 100%);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
}

.image-placeholder span {
    color: var(--white-muted);
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.6;
    z-index: 1;
}

.image-placeholder.hero {
    height: 400px;
}

.image-placeholder.small {
    height: 200px;
}

/* About Page */
.about-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold-light);
    margin: 3rem 0 1.5rem;
}

.about-story p {
    color: var(--white-muted);
    margin-bottom: 1rem;
    max-width: 700px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.value-card h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.value-card p {
    color: var(--white-muted);
    font-size: 0.9rem;
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-card p {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Projects Page */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.project-card:hover {
    border-color: rgba(201, 169, 98, 0.4);
    transform: translateY(-4px);
}

.project-card.coming-soon {
    opacity: 0.7;
}

.project-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.8) 0%, rgba(15, 15, 25, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
}

.project-image span {
    color: var(--white-muted);
    font-size: 0.8rem;
    opacity: 0.5;
    z-index: 1;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.project-info p {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-link {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
}

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

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--white-muted);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--gold-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item span {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--white-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(201, 169, 98, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.submit-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}

.success-message {
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.success-message h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--white-muted);
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--white-muted);
    opacity: 0.5;
}

/* About Page Article */
.about-article {
    max-width: 900px;
}

.article-header {
    margin-bottom: 3rem;
}

.article-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.subheadline {
    font-size: 1.3rem;
    color: var(--white-muted);
    font-weight: 300;
    font-style: italic;
}

.intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

.content-section h3 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.content-section p {
    color: var(--white-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.styled-list li {
    color: var(--white-muted);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.project-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.project-block:hover {
    border-color: rgba(201, 169, 98, 0.25);
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.direction-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.direction-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-2px);
}

.approach-section .approach-intro {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    color: var(--white-muted);
    padding: 1rem 1.5rem;
    background: rgba(201, 169, 98, 0.03);
    border-left: 2px solid var(--gold);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.location-section {
    background: rgba(201, 169, 98, 0.05);
    border-radius: 8px;
    padding: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
}

.why-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* Page CTA */
.page-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(201, 169, 98, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    text-align: center;
}

.page-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.page-cta p {
    color: var(--white-muted);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.85rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.btn-primary:hover {
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.3);
    color: var(--gold);
}

.btn-secondary:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: var(--gold);
}

/* Placeholder content */
.placeholder-content {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.03);
    border: 1px dashed rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.placeholder-content p {
    color: var(--white-muted);
    font-style: italic;
    font-size: 1.1rem;
}

/* Club Page */
.club-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.club-lock-icon {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

.club-lock-icon svg {
    stroke: var(--gold);
    width: 36px;
    height: 36px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 169, 98, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(201, 169, 98, 0.25);
    }
}

.club-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.club-subtitle {
    color: var(--white-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.club-form {
    width: 100%;
    max-width: 400px;
}

.club-input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.club-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.club-input:focus {
    outline: none;
    border-color: rgba(201, 169, 98, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.club-input::placeholder {
    color: var(--white-muted);
}

.club-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.club-btn:hover {
    box-shadow: 0 4px 30px rgba(201, 169, 98, 0.4);
    transform: translateY(-2px);
}

.club-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.club-contact p {
    color: var(--white-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.club-contact a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
}

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

/* Services Page Extended */
.services-intro {
    margin-bottom: 3rem;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-image {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features li {
    color: var(--white-muted);
    font-size: 0.85rem;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.services-process {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.services-process h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.5;
    display: block;
    margin-bottom: 1rem;
}

.process-step h4 {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.process-step p {
    color: var(--white-muted);
    font-size: 0.85rem;
}

/* Projects Page Extended */
.projects-intro {
    margin-bottom: 3rem;
}

.project-card.featured {
    grid-column: span 1;
}

.project-card.featured .project-image {
    height: 220px;
}

.project-tag {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.projects-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(201, 169, 98, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 12px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-label {
    color: var(--white-muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
}

/* Tech Page Extended */
.tech-intro {
    margin-bottom: 3rem;
}

.tech-areas {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
}

.tech-card.highlight {
    grid-template-columns: 1fr;
}

.tech-card.highlight .tech-image {
    height: 300px;
}

.tech-image {
    height: 100%;
    min-height: 200px;
}

.tech-content {
    padding: 2rem;
}

.tech-badge {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.75rem;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 4px;
}

.tech-content h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.tech-content p {
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tech-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tech-detail strong {
    display: block;
    color: var(--gold-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.tech-detail span {
    color: var(--white-muted);
    font-size: 0.9rem;
}

.tech-features {
    list-style: none;
    padding: 0;
}

.tech-features li {
    color: var(--white-muted);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.tech-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.tech-vision {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(201, 169, 98, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 12px;
}

.tech-vision h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.vision-text {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vision-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.principle h4 {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.principle p {
    color: var(--white-muted);
    font-size: 0.9rem;
}

/* Concierge Page Extended */
.concierge-intro {
    margin-bottom: 3rem;
}

.concierge-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.concierge-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.concierge-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-4px);
}

.concierge-card.premium {
    background: rgba(201, 169, 98, 0.03);
    border-color: rgba(201, 169, 98, 0.2);
}

.concierge-icon {
    margin-bottom: 1.5rem;
}

.concierge-icon svg {
    stroke: var(--gold);
    opacity: 0.7;
}

.concierge-card h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.concierge-card p {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.concierge-how {
    margin-top: 4rem;
}

.concierge-how h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.how-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.step-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--white-muted);
    font-size: 0.9rem;
}

.concierge-trust {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(201, 169, 98, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 12px;
}

.trust-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.trust-content p {
    color: var(--white-muted);
    line-height: 1.8;
    max-width: 800px;
}

/* Ecosystem Page Extended */
.ecosystem-intro {
    margin-bottom: 3rem;
}

.ecosystem-map h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

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

.eco-node {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.eco-node:hover {
    border-color: rgba(201, 169, 98, 0.3);
}

.eco-node.core {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(201, 169, 98, 0.05);
    border-color: rgba(201, 169, 98, 0.2);
    padding: 2rem;
}

.node-visual {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.node-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
}

.node-image {
    margin-bottom: 1rem;
}

.eco-node h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.eco-node p {
    color: var(--white-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.node-tag {
    display: inline-block;
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.75rem;
    opacity: 0.7;
}

.ecosystem-synergy {
    margin-top: 4rem;
}

.ecosystem-synergy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.synergy-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.synergy-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.synergy-item h4 {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.synergy-item p {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.ecosystem-future {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(201, 169, 98, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    text-align: center;
}

.future-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.future-content > p {
    color: var(--white-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.future-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.future-stat {
    text-align: center;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-text {
    color: var(--white-muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
}

/* Contact Page Extended */
.contact-section {
    margin-bottom: 3rem;
}

.contact-alternative {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.contact-alternative p {
    color: var(--white-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-map {
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-card {
        grid-template-columns: 1fr;
    }
    
    .tech-image {
        height: 200px;
    }
    
    .concierge-services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .eco-node.core {
        grid-column: span 2;
    }
    
    .vision-principles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    nav {
        display: none;
    }

    .inner-page main.page-content {
        padding: 120px 1.5rem 3rem;
    }

    .page-title {
        font-size: 2rem;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .club-title {
        font-size: 2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .projects-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .concierge-services {
        grid-template-columns: 1fr;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .eco-node.core {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }

    .synergy-content {
        grid-template-columns: 1fr;
    }

    .future-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .how-step {
        flex-direction: column;
        text-align: center;
    }
}
