:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --accent-color: #d4af37;
    /* Gold */
    --secondary-text: #888;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-speed: 0.6s;
}

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

/* Stabilize fonts across all elements */
html {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
    line-height: 1.6;
}

/* Ensure consistent font inheritance */
input, button, select, textarea {
    font-family: inherit;
}

p, span, li, div {
    font-family: var(--font-body);
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

/* Hide custom cursor on touch devices */
@media (hover: none), (pointer: coarse) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0) 100%);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

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

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.1);
    /* Initial scale for zoom effect */
    transition: transform 10s ease-out;
    /* Slow zoom */
}

.hero-section:hover .hero-image {
    transform: scale(1.0);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-content {
    text-align: center;
    z-index: 1;
}

h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    line-height: 1;
}

.subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 0 0.75rem;
}

.btn-outline {
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background-color: var(--text-color);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 4rem;
    background-color: var(--bg-color);
}

.section-header {
    margin-bottom: 6rem;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
}

/* Gallery Row - Horizontal Scrollable */
.gallery-row-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-row {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding: 1rem 0;
}

.gallery-row::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.gallery-row .gallery-item {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 280px;
    max-width: 400px;
    scroll-snap-align: start;
}

.gallery-row .gallery-item img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

/* Gallery See More */
.gallery-see-more {
    text-align: center;
    margin-top: 2rem;
}

.see-more-btn {
    display: inline-block;
    cursor: pointer;
    background: transparent;
    font-family: var(--font-body);
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .gallery-row .gallery-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Mobile gallery adjustments */
@media (max-width: 768px) {
    .gallery-row {
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .gallery-row .gallery-item {
        flex: 0 0 calc(85% - 0.5rem);
        min-width: 260px;
    }

    .gallery-row .gallery-item img {
        height: 280px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.item-image-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 500px;
    /* Fixed height for consistency */
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: grayscale(20%);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Status Badge - integrated in info section */
.item-status {
    display: none;
}

.item-status-inline {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.item-status-inline.status-available {
    color: #4ade80;
}

.item-status-inline.status-sold {
    color: #a0a0a0;
}

.item-status-inline.status-reserved {
    color: #fbbf24;
}

.item-info {
    margin-top: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.gallery-item:hover .item-info {
    opacity: 1;
}

.item-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.item-info p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--secondary-text);
}

/* About Section */
.about-section {
    padding: 10rem 4rem;
    background-color: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.large-text {
    font-family: var(--font-heading);
    font-size: 12rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
}

.visual-shape {
    width: 200px;
    height: 300px;
    border: 1px solid var(--accent-color);
    transform: rotate(15deg);
    opacity: 0.5;
    transition: transform 1s ease;
}

/* Animation triggers on hover (desktop) or when visible (mobile/scroll) */
.about-section:hover .visual-shape,
.about-container.is-visible .visual-shape {
    transform: rotate(0deg) scale(1.1);
}

.about-text h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1;
}

.about-text .lead {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: var(--font-heading);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    max-width: 500px;
}

.about-text p + p {
    margin-top: 1.2rem;
}

/* Secondary About Row */
.about-secondary {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-secondary-text {
    text-align: right;
}

.about-secondary-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.about-secondary-text p + p {
    margin-top: 1.2rem;
}

.about-secondary-text .signature {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--accent-color);
    margin-top: 1.5rem;
}

.about-secondary-visual {
    position: relative;
}

.about-image-secondary {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Contact Section */
.contact-section {
    padding: 10rem 2rem;
    background-color: var(--bg-color);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.contact-content {
    max-width: 900px;
    width: 100%;
}

.contact-content h2 {
    font-size: 3rem;
    font-family: var(--font-heading);
    letter-spacing: 0;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.contact-content > p {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 3rem;
}

/* Contact Message */
.contact-message {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: left;
}

.contact-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.contact-message .signature {
    margin-top: 2rem;
}

.contact-message .signature-text {
    font-style: italic;
    color: #888;
    display: block;
}

.contact-message .signature-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-color);
    display: block;
    text-align: right;
    margin-top: 0.5rem;
}

.contact-cta {
    padding: 1rem 3rem;
    font-size: 1rem;
    cursor: pointer;
    color: var(--bg-color);
    background: var(--text-color);
    border-color: var(--text-color);
}

/* Contact Modal */
.contact-modal-content {
    max-width: 500px;
    width: 90%;
    padding: 2.5rem;
    position: relative;
    margin: auto;
}

.contact-modal-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-modal-content .close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.contact-modal-content .close-modal:hover {
    opacity: 1;
}

.contact-modal-content .close-modal svg {
    width: 24px;
    height: 24px;
}

/* Contact Form */
.contact-form {
    text-align: left;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    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='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.08);
}

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

.contact-form .submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-color);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.contact-form .submit-btn:hover {
    filter: brightness(1.1);
}

.contact-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-status.success,
.form-status.error {
    display: block;
}

.form-status.success {
    color: #4ade80;
    background-color: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.contact-modal-content .form-status.success {
    font-size: 1.3rem;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.form-status.error {
    color: #f87171;
    background-color: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
}

@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.social-links a:hover {
    color: var(--text-color);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-visual {
        height: 300px;
        max-width: 250px;
        margin: 0 auto;
    }

    .about-text p {
        margin: 0 auto;
    }

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

    .about-secondary-text {
        text-align: center;
        order: 2;
    }

    .about-secondary-visual {
        order: 1;
    }

    .about-image-secondary {
        max-width: 100%;
    }

    .email-link {
        font-size: 2rem;
    }
}

footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--secondary-text);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-600 {
    animation-delay: 0.6s;
}

/* Scroll Reveal Class */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    .site-header {
        padding: 1.5rem;
    }

    .site-header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

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

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 100;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.4s ease forwards;
    }

    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.3s; }

    .nav-links a {
        font-size: 1.5rem;
    }

    /* Simplified for mobile */
    .gallery-section,
    .about-section,
    .contact-section {
        padding: 4rem 1.5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: absolute;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    box-sizing: border-box;
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s ease forwards;
    overflow: hidden;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: var(--text-color);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

@media (min-width: 768px) {
    .modal-body {
        flex-direction: row;
        overflow-y: visible;
    }
}

.modal-image-container {
    flex: 0 0 auto;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    height: 50vh;
    max-height: 400px;
}

@media (min-width: 768px) {
    .modal-image-container {
        flex: 1.5;
        height: auto;
        max-height: none;
        min-height: 400px;
    }
}

.carousel-track-container {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
    padding: 0 1rem;
    transition: color 0.3s;
    font-family: var(--font-heading);
}

.carousel-button:hover {
    color: var(--accent-color);
}

.carousel-button--left {
    left: 0;
}

.carousel-button--right {
    right: 0;
}

.carousel-button.is-hidden {
    display: none;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    position: absolute;
    bottom: 10px;
    width: 100%;
    z-index: 10;
}

.carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicator.current-slide {
    background: var(--accent-color);
}

/* Modal Info Section */
.modal-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.modal-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.modal-detail {
    font-size: 0.95rem;
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
}

.modal-price {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 1rem 0;
    font-weight: 500;
}

.modal-status {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.modal-inquire {
    display: inline-block;
    text-align: center;
    margin-top: auto;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-page {
    min-height: 100vh;
    padding-top: 100px;
}

.contact-page-section {
    padding: 4rem 2rem 6rem;
}

.contact-page-container {
    max-width: 500px;
    margin: 0 auto;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.contact-page-subtitle {
    color: var(--secondary-text);
    font-size: 1rem;
}

.contact-page-form-wrapper {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-page-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-page-form textarea {
    min-height: 150px;
}

/* Artwork Reference Card */
.artwork-reference {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.artwork-reference > p {
    font-size: 0.8rem;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.artwork-reference-content {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.artwork-reference-content img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.artwork-ref-details h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.artwork-ref-details p {
    font-size: 0.9rem;
    color: var(--secondary-text);
}

/* Success Message */
.contact-page-form-wrapper .form-status.success {
    background: transparent;
    border: none;
    padding: 2rem 0;
}

.success-message {
    text-align: center;
}

.success-message h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #4ade80;
    margin-bottom: 1rem;
}

.success-message p {
    color: #aaa;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-message .btn-outline {
    display: inline-block;
}

/* Contact Page Responsive */
@media (max-width: 600px) {
    .contact-page-section {
        padding: 2rem 1.5rem 4rem;
    }

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

    .contact-page-form-wrapper {
        padding: 1.5rem;
    }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1.5rem;
}

.lang-switcher a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    padding: 0.25rem 0.5rem;
    text-decoration: none;
}

.lang-switcher a:hover {
    opacity: 1;
}

.lang-switcher a.active {
    opacity: 1;
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.lang-switcher a::after {
    display: none;
}

.lang-separator {
    opacity: 0.3;
    font-size: 0.75rem;
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        gap: 0.75rem;
    }

    .lang-switcher a {
        font-size: 1.2rem;
        padding: 0.5rem 0.75rem;
    }

    .nav-links.active li:nth-child(4) {
        animation-delay: 0.4s;
    }
}