:root {
    --color-terracotta: #E07A5F;
    --color-terracotta-dark: #C45D42;
    --color-charcoal: #264653;
    --color-charcoal-light: #3D5A73;
    --color-gold: #D4A373;
    --color-gold-dark: #B08250;
    --color-cream: #F4F1DE;
    --color-white: #FFFFFF;
    --color-text-dark: #1A1A1A;
    --color-text-light: #F8F9FA;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition-standard: all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;600;700&display=swap');

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

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-standard);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.text-terracotta { color: var(--color-terracotta); }
.text-charcoal { color: var(--color-charcoal); }
.text-gold { color: var(--color-gold); }
.text-cream { color: var(--color-cream); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--color-white) !important; }

.bg-terracotta { background-color: var(--color-terracotta); }
.bg-charcoal { background-color: var(--color-charcoal); }
.bg-gold { background-color: var(--color-gold); }
.bg-cream { background-color: var(--color-cream); }
.bg-white { background-color: var(--color-white); }

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

.border-white {
    border-color: var(--color-white) !important;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-standard);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 122, 95, 0.4);
}

.btn-outline {
    border-color: var(--color-charcoal);
    color: var(--color-charcoal);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-gold:hover {
    background-color: var(--color-gold-dark);
}


.header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--color-terracotta);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--color-charcoal);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-terracotta);
    transition: var(--transition-standard);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-charcoal);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        transform: translateY(-150%);
        transition: var(--transition-standard);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.open {
        transform: translateY(0);
    }
}


.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-charcoal);
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 70, 83, 0.9) 0%, rgba(38, 70, 83, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 120px 0;
    }
}


.section-title {
    font-size: 2.5rem;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--color-terracotta);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}


.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition-standard);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition-standard);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card-image {
    height: 200px;
    background-color: var(--color-charcoal);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 25px;
}

.service-price {
    color: var(--color-terracotta);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 15px 0;
    display: block;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-white);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-charcoal);
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--color-charcoal);
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid var(--color-gold);
}

.team-name {
    font-size: 1.2rem;
    color: var(--color-charcoal);
    margin-bottom: 5px;
}

.team-role {
    color: var(--color-terracotta);
    font-weight: 600;
    font-size: 0.9rem;
}


.contact-section {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-section {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}

.contact-form {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    color: var(--color-text-dark);
}


.contact-info h3 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-label {
    font-weight: 700;
    color: var(--color-gold);
    display: block;
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


.contact-form {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    color: var(--color-text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-charcoal);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-standard);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.2);
}

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


.footer {
    background-color: var(--color-charcoal);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
    border-top: 4px solid var(--color-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-terracotta);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--color-terracotta);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2000;
    border-left: 4px solid var(--color-terracotta);
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cookie-banner.hidden {
    display: none;
    opacity: 0;
}

.cookie-title {
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.cookie-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    min-width: 100px;
    transition: var(--transition-standard);
}

.cookie-btn-accept {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

.cookie-btn-accept:hover {
    background-color: var(--color-terracotta-dark);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
}

.cookie-btn-decline:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 500px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}


.page-hero {
    padding: 100px 0 60px;
    background-color: var(--color-charcoal);
    color: var(--color-white);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 70, 83, 0.9) 0%, rgba(38, 70, 83, 0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.breadcrumbs a {
    color: var(--color-gold);
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    background-color: var(--color-charcoal);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--color-white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}


.faq-item {
    background-color: var(--color-white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: rgba(0,0,0,0.02);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--color-terracotta);
    font-weight: bold;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: var(--color-text-dark);
    line-height: 1.6;
}


.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--color-terracotta);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-title {
    color: var(--color-charcoal);
    margin-bottom: 10px;
    font-size: 1.2rem;
}


.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.display-text {
    font-size: 3.5rem;
    font-family: var(--font-display);
    color: var(--color-charcoal);
    line-height: 1.1;
}

@media (max-width: 768px) {
    .display-text {
        font-size: 2.5rem;
    }
}


.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


::selection {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}
