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

body {
    font-family: 'Garamond', 'Georgia', serif;
    line-height: 1.7;
    color: #1a1a2e;
    background-color: #fff;
}

nav {
    background: linear-gradient(135deg, #16213e 0%, #0f1419 100%);
    padding: 1.5rem 0;
    border-bottom: 2px solid #c9a961;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo {
    font-size: 2.2rem;
    font-weight: normal;
    color: #c9a961;
    font-style: italic;
    letter-spacing: 2px;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.15rem;
    font-family: sans-serif;
}

nav a:hover {
    color: #c9a961;
}

/* Hero */
.hero {
    position: relative;
    padding: 150px 3rem;
    background: linear-gradient(135deg, #16213e 0%, #0f1419 100%);
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="rgba(201,169,97,0.05)" width="800" height="600"/></svg>');
    opacity: 0.3;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 0 0 auto;
}

.hero-image img {
    max-height: 550px;
    width: auto;
    object-fit: contain;
    border: 3px solid #c9a961;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-badge {
    display: inline-block;
    border: 1px solid #c9a961;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: sans-serif;
    color: #c9a961;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 800px;
    color: #c9a961;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    opacity: 0.95;
    line-height: 1.8;
}

.btn-luxury {
    display: inline-block;
    background-color: #c9a961;
    color: #0f1419;
    padding: 1.3rem 3.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border: 2px solid #c9a961;
}

.btn-luxury:hover {
    background-color: transparent;
    color: #c9a961;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-outline {
    background-color: transparent;
    color: #c9a961;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: #c9a961;
    color: #0f1419;
}

/* Services */
.services {
    padding: 120px 3rem;
    background-color: #fafaf8;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-badge {
    display: inline-block;
    color: #c9a961;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: sans-serif;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: normal;
    color: #16213e;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-top-color: #c9a961;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c9a961 0%, #d4b873 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #16213e;
    font-weight: normal;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Testimonial */
.testimonial {
    padding: 100px 3rem;
    background: linear-gradient(135deg, #16213e 0%, #0f1419 100%);
    color: white;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial blockquote {
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    color: #c9a961;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.9;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-title {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Experience */
.experience {
    padding: 120px 3rem;
    background-color: white;
}

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

.experience-content h2 {
    font-size: 3rem;
    font-weight: normal;
    color: #16213e;
    margin-bottom: 2rem;
}

.experience-content p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.experience-list {
    list-style: none;
}

.experience-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.check-icon {
    width: 30px;
    height: 30px;
    background-color: #c9a961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

/* Contact */
.contact {
    padding: 120px 3rem;
    background-color: #fafaf8;
}

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

.contact-info h2 {
    font-size: 3rem;
    font-weight: normal;
    color: #16213e;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: grid;
    gap: 2.5rem;
}

.contact-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a961;
    margin-bottom: 0.8rem;
    font-family: sans-serif;
}

.contact-item p {
    font-size: 1.1rem;
    color: #16213e;
    margin: 0;
}

.contact-item a {
    color: #16213e;
    text-decoration: none;
    border-bottom: 1px solid #c9a961;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #c9a961;
}

.contact-map {
    margin-top: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-map iframe {
    display: block;
}

.contact-form {
    background: white;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #16213e;
    font-family: sans-serif;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #e0e0e0;
    font-family: Georgia, serif;
    transition: border-color 0.3s;
    font-size: 1rem;
}

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

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

.submit-button {
    background-color: #16213e;
    color: white;
    padding: 1.3rem 3.5rem;
    border: 2px solid #16213e;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    width: 100%;
}

.submit-button:hover {
    background-color: transparent;
    color: #16213e;
}

/* Footer */
footer {
    background-color: #0f1419;
    color: white;
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-size: 2rem;
    color: #c9a961;
    margin-bottom: 1.5rem;
    font-weight: normal;
    font-style: italic;
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section h4 {
    color: #c9a961;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: sans-serif;
}

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

.footer-section li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(201,169,97,0.3);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Hamburger button - hidden on desktop */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #c9a961;
    margin: 6px 0;
    transition: all 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero {
        padding: 100px 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

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

    .services,
    .experience,
    .contact {
        padding: 80px 2rem;
    }

    .testimonial {
        padding: 70px 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Mobile nav */
    .nav-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #16213e 0%, #0f1419 100%);
        padding: 1rem 0;
        border-bottom: 2px solid #c9a961;
        gap: 0;
        z-index: 999;
    }

    nav ul.nav-open {
        display: flex;
    }

    nav ul li {
        text-align: center;
    }

    nav ul a {
        display: block;
        padding: 1rem 2rem;
    }

    nav {
        position: relative;
    }

    .nav-content {
        padding: 0 1.5rem;
    }

    .logo {
        font-size: 1.6rem;
    }

    /* Hero */
    .hero {
        padding: 60px 1.5rem;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-height: 280px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

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

    .btn-luxury {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }

    /* Services */
    .services {
        padding: 60px 1.5rem;
    }

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

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

    .section-header p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .service-card:hover {
        transform: none;
    }

    /* Testimonial */
    .testimonial {
        padding: 60px 1.5rem;
    }

    .testimonial blockquote {
        font-size: 1.4rem;
    }

    /* Experience */
    .experience {
        padding: 60px 1.5rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .experience-content h2 {
        font-size: 2rem;
    }

    .experience-content p {
        font-size: 1rem;
    }

    /* Contact */
    .contact {
        padding: 60px 1.5rem;
    }

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

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-info > p {
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .submit-button {
        padding: 1rem 2rem;
    }

    /* Footer */
    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-about h3 {
        font-size: 1.6rem;
    }

    /* Modal */
    .modal {
        margin: 0.5rem;
        padding: 2rem 1.5rem;
        max-height: calc(100vh - 1rem);
    }

    .modal-overlay {
        padding: 0.5rem;
    }

    .modal-icon {
        font-size: 3rem;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .modal-cta {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-image img {
        max-height: 220px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-luxury {
        text-align: center;
    }

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

    .experience-content h2,
    .contact-info h2 {
        font-size: 1.7rem;
    }

    .testimonial blockquote {
        font-size: 1.2rem;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 20, 25, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #16213e;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: normal;
    color: #16213e;
    margin-bottom: 1.5rem;
}

.modal-content {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-content p {
    margin-bottom: 1.5rem;
}

.modal-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.modal-content li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.modal-content li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #c9a961;
    border-radius: 50%;
}

.modal-content li:last-child {
    border-bottom: none;
}

.modal-cta {
    display: block;
    text-align: center;
}

.service-card {
    cursor: pointer;
}

.honeypot {
    display: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: #c9a961;
    color: #0f1419;
    padding: 0.5rem 1rem;
    z-index: 9999;
    font-family: sans-serif;
}

.skip-link:focus {
    top: 0;
}

.form-alert {
    padding: 1.2rem;
    margin-bottom: 2rem;
    font-family: sans-serif;
    font-size: 0.95rem;
}

.form-alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-alert-error {
    background-color: #fbe9e7;
    color: #c62828;
    border: 1px solid #ef9a9a;
}
