/* Tek Vanas - Architectural Design */
/* Foundation */
*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

/* Typography - Single Family, Dramatic Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    color: #1a1a1a;
}

h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 200;
    line-height: 0.85;
    letter-spacing: -0.03em;
    margin-bottom: 4rem;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 3rem;
}

h3 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    color: #4b5563;
    max-width: 50ch;
    font-weight: 400;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 45ch;
    font-weight: 300;
}

/* Architectural Spaces */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* Space containers - architectural rooms */
.space {
    position: relative;
    min-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.space + .space {
    margin-top: clamp(6rem, 15vw, 12rem);
}

/* Content zones within spaces */
.zone {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(3rem, 8vw, 6rem);
}

/* Architectural positioning */
.zone--left {
    position: absolute;
    left: clamp(2rem, 6vw, 4rem);
    top: 50%;
    transform: translateY(-50%);
    max-width: 480px;
}

.zone--right {
    position: absolute;
    right: clamp(2rem, 6vw, 4rem);
    top: 50%;
    transform: translateY(-50%);
    max-width: 480px;
}

.zone--center {
    text-align: center;
    position: relative;
    z-index: 3;
}

/* Visual elements */
.visual {
    position: absolute;
    width: clamp(400px, 50vw, 700px);
    height: clamp(500px, 70vh, 900px);
    object-fit: cover;
    z-index: 1;
}

/* Positioning variations */
.visual--top-left {
    top: clamp(2rem, 6vw, 4rem);
    left: clamp(4rem, 12vw, 8rem);
}

.visual--top-right {
    top: clamp(2rem, 6vw, 4rem);
    right: clamp(4rem, 12vw, 8rem);
}

.visual--bottom-left {
    bottom: clamp(2rem, 6vw, 4rem);
    left: clamp(4rem, 12vw, 8rem);
}

.visual--bottom-right {
    bottom: clamp(2rem, 6vw, 4rem);
    right: clamp(4rem, 12vw, 8rem);
}

.visual--center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(600px, 70vw, 900px);
    height: clamp(400px, 50vh, 600px);
    opacity: 0.08;
}

/* Architectural overlays */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Navigation - Architectural Integration */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(3rem, 8vw, 6rem);
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(4rem, 8vw, 6rem);
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a1a1a;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 1px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 1rem;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 1.5px;
    background: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hero - Unified Composition */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
}

.hero-content {
    position: relative;
    display: block;
    width: 100%;
}

.hero-text {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: clamp(4rem, 12vw, 8rem) 0 clamp(2rem, 6vw, 4rem);
    margin-left: clamp(2rem, 8vw, 6rem);
}

.hero-image {
    position: absolute;
    top: 50%;
    right: 0;
    width: clamp(400px, 45vw, 650px);
    height: clamp(500px, 70vh, 800px);
    transform: translateY(-50%);
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: clamp(300px, 35vw, 500px);
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Architectural Spaces - Content Flow */
.passage {
    position: relative;
    width: 100%;
    min-height: clamp(800px, 120vh, 1200px);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: clamp(10rem, 25vw, 20rem) 0;
}

/* Text blocks within passages */
.passage-text {
    position: absolute;
    z-index: 3;
    max-width: 420px;
    line-height: 1.6;
}

/* Positioning variations */
.passage-text--left {
    left: clamp(4rem, 10vw, 8rem);
    top: 50%;
    transform: translateY(-50%);
}

.passage-text--right {
    right: clamp(4rem, 10vw, 8rem);
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}

.passage-text--center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 600px;
}

/* Visual elements in passages */
.passage-visual {
    position: absolute;
    width: clamp(500px, 60vw, 800px);
    height: clamp(600px, 80vh, 1000px);
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.98) contrast(1.01);
}

/* Visual positioning */
.passage-visual--right {
    right: clamp(2rem, 6vw, 4rem);
    top: 50%;
    transform: translateY(-50%);
}

.passage-visual--left {
    left: clamp(2rem, 6vw, 4rem);
    top: 50%;
    transform: translateY(-50%);
}

.passage-visual--background {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

/* Architectural elements */
.space::after,
.passage::after,
.expanse::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.005) 0%, transparent 30%, rgba(0, 0, 0, 0.005) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Gallery Layout - Architectural Grid */
.gallery {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(4rem, 10vw, 8rem);
    margin: clamp(8rem, 20vw, 16rem) 0;
}

.gallery-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(500px, 70vh, 800px);
    overflow: hidden;
}

.gallery-item:nth-child(even) {
    flex-direction: row-reverse;
}

.gallery-item img {
    width: clamp(400px, 50vw, 700px);
    height: clamp(400px, 50vh, 700px);
    object-fit: cover;
    flex-shrink: 0;
}

.gallery-content {
    position: relative;
    z-index: 3;
    padding: clamp(2rem, 6vw, 4rem);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    margin: clamp(2rem, 6vw, 4rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-item:nth-child(even) .gallery-content {
    margin-left: auto;
    margin-right: clamp(4rem, 12vw, 8rem);
}

.gallery-item:nth-child(odd) .gallery-content {
    margin-right: auto;
    margin-left: clamp(4rem, 12vw, 8rem);
}

.gallery-content h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.gallery-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pricing span {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Expanse Section - Large Visual Space */
.expanse {
    position: relative;
    width: 100%;
    min-height: clamp(700px, 90vh, 1000px);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: clamp(10rem, 25vw, 20rem) 0;
}

.expanse-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: clamp(3rem, 8vw, 5rem);
    background: rgba(255, 255, 255, 0.97);
    margin-left: clamp(4rem, 12vw, 8rem);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.expanse-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
}

.service-card {
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card h4 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #4b5563;
}

.service-card .pricing {
    margin-top: 1.5rem;
}

.expanse-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(500px, 60vw, 800px);
    height: clamp(600px, 80vh, 900px);
    object-fit: cover;
    z-index: 2;
}

/* Sequence Section - Horizontal Flow */
.sequence {
    position: relative;
    width: 100%;
    display: flex;
    gap: clamp(6rem, 15vw, 12rem);
    margin: clamp(10rem, 25vw, 20rem) 0;
    padding: 0 clamp(3rem, 8vw, 6rem);
    flex-wrap: wrap;
}

.sequence-item {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.sequence-item h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.addon-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.addon-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.addon-item:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.addon-item h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.addon-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.membership-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
}

.membership-card {
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
}

.membership-card h4 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.membership-card p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #4b5563;
}

.membership-card .price {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: #1a1a1a;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-content h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section - Compact Layout */
.contact-section {
    position: relative;
    padding: clamp(6rem, 12vw, 10rem) 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(4rem, 8vw, 6rem);
    align-items: start;
}

.contact-info {
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.contact-info h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4b5563;
}

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

.contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #6b7280;
}

.contact-form {
    background: rgba(0, 0, 0, 0.02);
    padding: clamp(3rem, 6vw, 4rem);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

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

.submit-btn {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #000000;
    transform: translateY(-1px);
}

/* Footer - Architectural Minimalism */
footer {
    position: relative;
    background: #ffffff;
    color: #6b7280;
    padding: clamp(6rem, 15vw, 12rem) clamp(3rem, 8vw, 6rem) clamp(4rem, 10vw, 8rem);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(8rem, 20vw, 15rem);
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    max-width: 400px;
}

.footer-brand .logo {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #1a1a1a;
    margin-bottom: 2rem;
    display: block;
    font-weight: 500;
}

.footer-brand p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: clamp(6rem, 12vw, 8rem);
    flex-wrap: wrap;
}

.footer-section h4 {
    color: #1a1a1a;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

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

.footer-section a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2;
    transition: color 0.3s ease;
    display: block;
}

.footer-section a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    margin-top: clamp(4rem, 10vw, 8rem);
    padding-top: clamp(2rem, 5vw, 4rem);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.8rem;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Legal Pages - Clean Document Structure */
.legal-page {
    background-color: #ffffff;
}

/* Hide all decorative elements */
.legal-page .space,
.legal-page .visual,
.legal-page .hero,
.legal-page .banner,
.legal-page .passage::before,
.legal-page .passage::after,
.legal-page .passage-text::before,
.legal-page .passage-text::after,
.legal-page .overlay {
    display: none !important;
    visibility: hidden !important;
}

/* Fixed header with proper spacing */
.legal-page header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: clamp(4rem, 8vw, 5rem);
}

/* Content starts exactly below header */
.legal-page main {
    padding-top: clamp(6rem, 10vw, 7rem);
    margin: 0;
}

/* Simple content container */
.legal-page .legal-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 3rem);
}

.legal-page .legal-content h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    text-align: center;
    line-height: 1.2;
}

.legal-page .legal-text {
    text-align: left;
}

/* Legal Content Typography */
.legal-page .legal-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: #1a1a1a;
    margin: clamp(3rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem) 0;
    line-height: 1.2;
}

.legal-page .legal-text h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: #374151;
    margin: clamp(2.5rem, 5vw, 3rem) 0 clamp(1rem, 2vw, 1.5rem) 0;
    line-height: 1.3;
}

.legal-page .legal-text p {
    color: #4b5563;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.65;
    font-size: 1rem;
}

.legal-page .legal-text ul {
    margin: clamp(1rem, 2vw, 1.5rem) 0 clamp(2rem, 4vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
    padding-left: 1rem;
}

.legal-page .legal-text li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.6;
}

.legal-page .legal-text strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Responsive Design - Maintain Composition */
@media (max-width: 1024px) {
    .hero-image {
        width: clamp(300px, 35vw, 450px);
        height: clamp(400px, 50vh, 600px);
    }

    .composition {
        margin-left: clamp(2rem, 6vw, 4rem) !important;
        margin-right: clamp(2rem, 6vw, 4rem) !important;
        min-height: clamp(500px, 70vh, 700px);
    }

    .composition-text {
        max-width: 400px;
    }

    .composition-image {
        width: clamp(280px, 35vw, 400px);
        height: clamp(350px, 45vh, 500px);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        position: relative;
    }

    .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: clamp(2rem, 4vw, 3rem);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        gap: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    /* Gallery responsive - Clean vertical stacking */
    .gallery {
        gap: clamp(4rem, 8vw, 6rem) !important;
        margin: clamp(4rem, 8vw, 6rem) 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .gallery-item {
        flex-direction: column !important;
        min-height: auto !important;
        gap: clamp(1.5rem, 3vw, 2rem) !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .gallery-item img {
        width: 100% !important;
        height: clamp(200px, 35vh, 300px) !important;
        object-fit: cover !important;
        order: -1 !important;
        margin-bottom: clamp(1.5rem, 3vw, 2rem) !important;
    }

    .gallery-content {
        margin: 0 !important;
        max-width: none !important;
        text-align: center !important;
        position: static !important;
        background: rgba(255, 255, 255, 0.95) !important;
        padding: clamp(1.5rem, 3vw, 2rem) !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }

    /* Expanse responsive - Clean vertical stacking */
    .expanse {
        flex-direction: column !important;
        min-height: auto !important;
        margin: clamp(4rem, 8vw, 6rem) 0 !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .expanse-content {
        margin: 0 !important;
        max-width: none !important;
        order: 2 !important;
        position: static !important;
        background: rgba(255, 255, 255, 0.95) !important;
        padding: clamp(2rem, 4vw, 3rem) !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }

    .service-grid {
        grid-template-columns: 1fr !important;
        gap: clamp(2rem, 4vw, 3rem) !important;
    }

    .expanse-visual {
        position: static !important;
        width: 100% !important;
        height: clamp(250px, 40vh, 350px) !important;
        order: 1 !important;
        transform: none !important;
        margin-bottom: clamp(2rem, 4vw, 3rem) !important;
        object-fit: cover !important;
    }

    /* Sequence responsive - Clean vertical stacking */
    .sequence {
        flex-direction: column !important;
        gap: clamp(3rem, 6vw, 4rem) !important;
        margin: clamp(3rem, 6vw, 4rem) 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .sequence-item {
        position: static !important;
        margin-bottom: clamp(2rem, 4vw, 3rem) !important;
    }

    .membership-options {
        grid-template-columns: 1fr !important;
        gap: clamp(1.5rem, 3vw, 2rem) !important;
    }

    .membership-card {
        padding: clamp(1.5rem, 3vw, 2rem) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }

    /* General mobile fixes for overlapping */
    .passage {
        position: static !important;
        display: block !important;
        overflow: visible !important;
    }

    .passage-text {
        position: static !important;
        background: rgba(255, 255, 255, 0.95) !important;
        padding: clamp(1.5rem, 3vw, 2rem) !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        margin: clamp(1rem, 2vw, 1.5rem) 0 !important;
    }

    .passage-visual {
        position: static !important;
        width: 100% !important;
        height: clamp(200px, 35vh, 300px) !important;
        object-fit: cover !important;
        margin-bottom: clamp(1.5rem, 3vw, 2rem) !important;
        order: -1 !important;
    }

    /* Hide all pseudo-elements and overlays on mobile */
    .passage::before,
    .passage::after,
    .passage-text::before,
    .passage-text::after,
    .gallery-item::before,
    .gallery-item::after,
    .expanse::before,
    .expanse::after {
        display: none !important;
        content: none !important;
    }

    /* Ensure all text has proper contrast */
    .gallery-content,
    .expanse-content,
    .passage-text,
    .sequence-item {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: none !important;
    }

    /* Legal Pages Responsive */
    .legal-page main {
        padding-top: clamp(5rem, 8vw, 6rem);
    }

    .legal-page .legal-content {
        padding: 0 clamp(1.5rem, 3vw, 2rem);
    }

    .legal-page .legal-content h1 {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }

    .legal-page .legal-text h3 {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
        margin: clamp(2.5rem, 5vw, 3rem) 0 clamp(1rem, 2vw, 1.5rem) 0;
    }

    .legal-page .legal-text h4 {
        font-size: clamp(1.125rem, 2.25vw, 1.375rem);
    }

    /* Contact Section Responsive */
    .legal-page main {
        padding-top: clamp(5rem, 8vw, 6rem);
    }

    .legal-page .passage {
        margin: clamp(2rem, 4vw, 3rem) 0 !important;
    }

    .legal-page h1 {
        font-size: clamp(2rem, 4vw, 2.75rem);
        margin-bottom: clamp(2rem, 4vw, 3rem);
        padding-bottom: clamp(1rem, 2vw, 1.5rem);
    }

    .legal-page .passage-text h3 {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
        margin: clamp(2.5rem, 5vw, 3rem) 0 clamp(1rem, 2vw, 1.5rem) 0;
        padding-left: 0.75rem;
    }

    .legal-page .passage-text h4 {
        font-size: clamp(1.125rem, 2.25vw, 1.375rem);
    }

    .legal-page .passage-text {
        max-width: none !important;
        padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 2rem) !important;
    }

    /* Contact Section Responsive */
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: clamp(3rem, 6vw, 4rem) !important;
    }

    .contact-form {
        padding: clamp(2rem, 4vw, 3rem) !important;
    }

    .hero {
        min-height: auto;
        padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
    }

    .hero-content {
        display: block;
    }

    .hero-text {
        margin-left: 0 !important;
        padding: 0 0 clamp(3rem, 6vw, 4rem);
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: clamp(300px, 50vh, 450px);
        transform: none;
        margin: clamp(2rem, 4vw, 3rem) 0;
        top: auto;
        right: auto;
    }

    .hero::after {
        display: none;
    }

    .composition {
        margin: clamp(6rem, 12vw, 10rem) 0 !important;
        min-height: auto;
    }

    .composition:nth-child(even),
    .composition:nth-child(odd) {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .composition-text {
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .composition-image {
        position: relative;
        width: 100%;
        height: clamp(250px, 40vh, 350px);
        margin: clamp(3rem, 6vw, 4rem) 0;
        transform: none;
    }

    .composition::before {
        display: none;
    }

    .footer-primary {
        flex-direction: column;
        gap: clamp(4rem, 8vw, 6rem);
        text-align: center;
        margin-bottom: clamp(4rem, 8vw, 6rem);
    }

    .footer-navigation {
        justify-content: center;
        gap: clamp(4rem, 8vw, 6rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 clamp(1.5rem, 5vw, 2rem);
    }

    .section {
        padding: clamp(6rem, 12vw, 10rem) 0;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .composition {
        margin: clamp(4rem, 8vw, 6rem) 0 !important;
    }

    .footer-navigation {
        flex-direction: column;
        gap: 3rem;
    }
}

/* Animations - Subtle and Professional */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.delay-1 { animation-delay: 0.1s; }
.fade-in-up.delay-2 { animation-delay: 0.2s; }
.fade-in-up.delay-3 { animation-delay: 0.3s; }

/* Focus States */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #b8860b;
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: rgba(184, 134, 11, 0.2);
    color: #0f0f0f;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #b8860b;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9a7a0a;
}
