/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Palatino', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c9a05d;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.nav-left .logo {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-right a.active {
    color: #c9a05d;
}

/* Hero Split Screen */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    min-height: 500px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-submit {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #c9a05d;
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-submit {
    background-color: #c9a05d;
    color: #ffffff;
    width: 100%;
}

.btn-submit:hover {
    background-color: #b08f4d;
}

/* Intro Alternate Section */
.intro-alternate {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    min-height: 450px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f5f5f5;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Values Split */
.values-split {
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.value-text {
    flex: 1;
    padding: 4rem 5%;
}

.value-image {
    flex: 1;
    min-height: 450px;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process Alternate */
.process-alternate {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
}

.process-image {
    flex: 1;
    min-height: 450px;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-content {
    flex: 1;
    padding: 4rem 5%;
}

/* Services Grid */
.services-grid {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    position: relative;
}

.service-card.featured {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .price {
    color: #ffffff;
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #c9a05d;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #c9a05d;
    margin: 1.5rem 0;
}

.btn-select {
    display: block;
    width: 100%;
    padding: 0.8rem;
    margin-top: 1rem;
    background-color: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.service-card.featured .btn-select {
    border-color: #ffffff;
    color: #ffffff;
}

.service-card.featured .btn-select:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Testimonial Alternate */
.testimonial-alternate {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.testimonial-content {
    flex: 1;
    padding: 2rem 5%;
}

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    border-left: 4px solid #c9a05d;
}

cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 600;
    margin-top: 1rem;
    color: #666;
}

.testimonial-image {
    flex: 1;
    min-height: 400px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Section */
.form-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.form-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-family: Georgia, serif;
    font-size: 1rem;
    border: 1px solid #ddd;
    background-color: #fafafa;
}

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

/* CTA Final */
.cta-final {
    padding: 5rem 5%;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-final h2,
.cta-final p {
    color: #ffffff;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 5% 1.5rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.95rem;
    color: #aaa;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #c9a05d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #c9a05d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.7rem 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #c9a05d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #b08f4d;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* About Page Styles */
.about-hero {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.about-hero-content {
    flex: 1;
    padding: 4rem 5%;
}

.about-hero-image {
    flex: 1;
    min-height: 500px;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-alternate {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.story-image {
    flex: 1;
    min-height: 450px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
    padding: 3rem 5%;
}

.team-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #f9f9f9;
}

.member-info h3 {
    margin-bottom: 0.5rem;
}

.role {
    font-size: 0.9rem;
    color: #c9a05d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.philosophy-alternate {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.philosophy-content {
    flex: 1;
    padding: 3rem 5%;
}

.philosophy-image {
    flex: 1;
    min-height: 450px;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-detail {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 4rem 0;
}

.process-image {
    flex: 1;
    min-height: 400px;
}

.process-text {
    flex: 1;
    padding: 3rem 5%;
}

.cta-about {
    padding: 4rem 5%;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-about h2,
.cta-about p {
    color: #ffffff;
}

/* Services Page Styles */
.services-hero {
    padding: 5rem 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.services-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background-color: #ffffff;
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background-color: #f9f9f9;
}

.service-detail-image {
    flex: 1;
    min-height: 450px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 3rem 5%;
}

.price-large {
    font-size: 3rem;
    font-weight: 700;
    color: #c9a05d;
    margin: 1rem 0 1.5rem;
}

.badge-inline {
    display: inline-block;
    background-color: #c9a05d;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a05d;
    font-weight: bold;
}

.service-note {
    font-style: italic;
    color: #666;
    margin: 1.5rem 0;
}

.services-faq {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.services-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cta-services {
    padding: 4rem 5%;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-services h2,
.cta-services p {
    color: #ffffff;
}

/* Contact Page Styles */
.contact-hero {
    padding: 5rem 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-split {
    display: flex;
    align-items: stretch;
}

.contact-details {
    flex: 1;
    padding: 4rem 5%;
    background-color: #ffffff;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-large {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 1rem 0;
}

.contact-large a {
    color: #c9a05d;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    padding: 1rem 1.5rem;
}

.visit-section {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.visit-image {
    flex: 1;
    min-height: 400px;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit-content {
    flex: 1;
    padding: 3rem 5%;
}

.parking-section {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 4rem 0;
}

.parking-content {
    flex: 1;
    padding: 3rem 5%;
}

.parking-image {
    flex: 1;
    min-height: 350px;
}

.parking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta {
    padding: 4rem 5%;
    background-color: #1a1a1a;
    text-align: center;
}

.contact-cta h2,
.contact-cta p {
    color: #ffffff;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-lead {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.thanks-details {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ffffff;
}

.timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #c9a05d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.timeline-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-text p {
    font-size: 0.95rem;
    color: #666;
}

.service-selected {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #c9a05d;
}

.thanks-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #fff9e6;
    border: 1px solid #c9a05d;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.trust-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.trust-item h3 {
    margin-bottom: 1rem;
    color: #c9a05d;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.legal-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

.legal-container h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container ul li {
    margin-bottom: 0.7rem;
}

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

    h2 {
        font-size: 1.6rem;
    }

    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-split,
    .intro-alternate,
    .values-split,
    .process-alternate,
    .testimonial-alternate,
    .about-hero,
    .story-alternate,
    .philosophy-alternate,
    .process-detail,
    .service-detail,
    .contact-info-split,
    .visit-section,
    .parking-section {
        flex-direction: column;
    }

    .hero-text,
    .intro-content,
    .value-text,
    .process-content,
    .testimonial-content,
    .about-hero-content,
    .story-content,
    .philosophy-content,
    .process-text,
    .service-detail-content,
    .contact-details,
    .visit-content,
    .parking-content {
        padding: 2rem 5%;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .team-member,
    .faq-item,
    .trust-item {
        flex: 1 1 100%;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }
}
