@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --charcoal: #111111;
    --white: #FFFFFF;
    --gold: #C0A27A;
    --beige: #E5D3B3;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--charcoal);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10002;
    position: relative;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: var(--charcoal);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width: 100px;
    height: 2px;
    background-color: var(--gold);
    margin: 2rem auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--gold);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn:hover {
    background-color: var(--gold);
    color: var(--black);
    box-shadow: 0 5px 15px rgba(192, 162, 122, 0.3);
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.highlight-text {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background-color: var(--charcoal);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(192, 162, 122, 0.2);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.card:hover img {
    filter: grayscale(0%);
}

.testimonial {
    text-align: center;
    padding: 2.5rem;
    background-color: var(--charcoal);
    margin: 2rem 0;
    border: 1px solid rgba(192, 162, 122, 0.2);
    transition: all 0.3s ease;
}

.testimonial:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(192, 162, 122, 0.1);
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--beige);
    line-height: 1.8;
}

.testimonial cite {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--charcoal);
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
}

form input,
form textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--black);
    border: 1px solid var(--charcoal);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    text-transform: none;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
    filter: grayscale(20%);
}

footer {
    background-color: var(--charcoal);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: var(--beige);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(192, 162, 122, 0.2);
    color: var(--beige);
    font-size: 0.85rem;
}

.copyright a {
    color: var(--gold);
    margin: 0 0.5rem;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background-color: var(--charcoal);
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--gold);
    z-index: 10000;
    display: none;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.privacy-popup .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    margin-right: 1rem;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--beige);
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--beige);
}

.content-section li {
    margin-bottom: 0.75rem;
}

.journey-map {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
}

.journey-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.journey-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.journey-step:hover .journey-marker {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(192, 162, 122, 0.5);
    background-color: var(--charcoal);
}

.marker-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.journey-content {
    flex: 1;
    padding-top: 1rem;
}

.journey-content h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey-content p {
    color: var(--beige);
    line-height: 1.8;
    font-size: 1.05rem;
}

.journey-connector {
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), rgba(192, 162, 122, 0.3));
    margin-left: 38.5px;
    margin-bottom: 1rem;
    position: relative;
}

.journey-connector::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 13px;
    height: 13px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background-color: var(--charcoal);
}

.journey-connector::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 13px;
    height: 13px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background-color: var(--charcoal);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card {
    background-color: var(--black);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(192, 162, 122, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(192, 162, 122, 0.2);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 4px;
    height: 40px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    position: relative;
    transition: all 0.3s ease;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background-color: var(--black);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.contact-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background-color: var(--black);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--beige), transparent);
}

.contact-info-card:hover .contact-icon::before,
.contact-info-card:hover .contact-icon::after {
    border-color: var(--beige);
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
}

.contact-info-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--beige);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.philosophy-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.philosophy-item h3 {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    color: var(--white);
}

.philosophy-item p {
    position: relative;
    z-index: 1;
    color: var(--beige);
    line-height: 1.8;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    padding: 2rem;
    border-left: 3px solid var(--gold);
    background-color: var(--black);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-left-width: 5px;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(192, 162, 122, 0.2);
}

.service-item h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-item p {
    color: var(--beige);
    line-height: 1.8;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    padding: 2.5rem;
    background-color: var(--charcoal);
    border-left: 4px solid var(--gold);
    position: relative;
    transition: all 0.3s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    border-left-width: 6px;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(192, 162, 122, 0.15);
    background-color: rgba(17, 17, 17, 0.8);
}

.faq-item:hover::before {
    opacity: 0.6;
}

.faq-item h3 {
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    font-weight: 600;
    padding-right: 3rem;
    line-height: 1.4;
    position: relative;
}

.faq-item h3::after {
    content: '?';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--gold);
    opacity: 0.4;
    font-size: 1.5rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--beige);
    line-height: 1.9;
    font-size: 1.05rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(192, 162, 122, 0.2);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.commitment-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.commitment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.commitment-item h3 {
    color: var(--gold);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.commitment-item p {
    color: var(--beige);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--charcoal);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 10001;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 10000;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(192, 162, 122, 0.2);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .hero {
        min-height: 400px;
    }

    section {
        padding: 3rem 0;
    }

    form {
        padding: 2rem 1.5rem;
    }

    .privacy-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .philosophy-number {
        font-size: 3rem;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .faq-item {
        padding: 2rem;
    }

    .faq-item h3 {
        padding-right: 2rem;
        font-size: 1.15rem;
    }

    .faq-item p {
        padding-left: 0.75rem;
        font-size: 1rem;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .journey-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .journey-marker {
        width: 70px;
        height: 70px;
    }

    .marker-number {
        font-size: 1.3rem;
    }

    .journey-content {
        padding-top: 0;
    }

    .journey-connector {
        margin-left: 0;
        margin: 0 auto 1rem;
    }
}

@media (max-width: 480px) {
    nav {
        position: relative;
    }

    .nav-links {
        top: 65px;
    }

    .logo {
        font-size: 1.25rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }

    .journey-marker {
        width: 60px;
        height: 60px;
    }

    .marker-number {
        font-size: 1.1rem;
    }

    .journey-content h3 {
        font-size: 1.2rem;
    }

    .journey-content p {
        font-size: 0.95rem;
    }

    .journey-connector {
        height: 50px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-icon {
        height: 35px;
        margin-bottom: 1rem;
    }

    .contact-icon::before,
    .contact-icon::after {
        width: 15px;
        height: 15px;
    }

    .philosophy-item {
        padding: 1.5rem;
    }

    .philosophy-number {
        font-size: 2.5rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1.75rem;
    }

    .faq-item h3 {
        padding-right: 1.5rem;
        font-size: 1.1rem;
    }

    .faq-item h3::after {
        font-size: 1.3rem;
    }

    .faq-item p {
        padding-left: 0.5rem;
        font-size: 0.95rem;
    }

    .commitment-item {
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    form {
        padding: 1.5rem 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 250px;
    }
}

