:root {
    --color-primary: #2d5a27;
    --color-primary-dark: #1e3d1a;
    --color-secondary: #d4a574;
    --color-accent: #8b4513;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f6f3;
    --color-bg-dark: #2c2c2c;
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

.container-narrow {
    max-width: 800px;
}

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

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

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-dark);
    font-weight: 400;
}

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

.nav-link {
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
    padding: 5px 0;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-secondary);
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

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

.btn-secondary:hover {
    background: #c49464;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    color: #fff;
    margin-bottom: 25px;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero-text {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
}

.page-hero-small {
    min-height: 40vh;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-hero-content h1 {
    color: #fff;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 1.15rem;
    opacity: 0.9;
}

.editorial-intro {
    padding: 80px 20px;
    background: var(--color-bg);
}

.intro-lead {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 25px;
}

.editorial-intro p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.story-image-section {
    padding: 0;
}

.story-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
}

.story-caption {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: var(--color-text-light);
}

.philosophy-section {
    padding: 80px 20px;
    background: var(--color-bg-alt);
}

.section-title-editorial {
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

.section-title-editorial::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-secondary);
    margin-top: 15px;
}

.philosophy-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.editorial-quote {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-primary);
    border-left: 4px solid var(--color-secondary);
    padding-left: 30px;
    margin: 40px 0;
}

.services-preview {
    padding: 100px 20px;
}

.services-preview-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-preview-header h2 {
    margin-bottom: 15px;
}

.services-preview-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: var(--color-bg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

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

.service-card-content h3 {
    margin-bottom: 10px;
}

.service-card-content p {
    color: var(--color-text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.service-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.service-link {
    font-weight: 500;
    font-size: 0.9rem;
}

.services-preview-cta {
    text-align: center;
    margin-top: 50px;
}

.story-section {
    padding: 80px 20px;
}

.story-dark {
    background: var(--color-bg-dark);
    color: #fff;
}

.story-dark h2,
.story-dark p {
    color: #fff;
}

.story-dark .section-title-editorial::after {
    background: var(--color-secondary);
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonials-inline {
    padding: 80px 20px;
    background: var(--color-bg-alt);
}

.testimonial-item {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-content p {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.testimonial-content cite {
    font-style: normal;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.inline-cta-section {
    padding: 60px 20px;
}

.inline-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    border-radius: 8px;
}

.inline-cta h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.75rem;
}

.inline-cta p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.inline-cta .btn-primary {
    background: #fff;
    color: var(--color-primary);
}

.inline-cta .btn-primary:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
}

.process-section {
    padding: 100px 20px;
    background: var(--color-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

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

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 30px;
}

.step-number {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.process-step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.gallery-section {
    padding: 0;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1;
    min-width: 250px;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.final-cta {
    padding: 100px 20px;
    background: var(--color-bg-alt);
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section {
    padding: 100px 20px;
    text-align: center;
}

.cta-contact {
    background: var(--color-primary);
    color: #fff;
}

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

.cta-contact .btn-primary {
    background: #fff;
    color: var(--color-primary);
}

.services-intro {
    padding: 80px 20px 40px;
}

.services-full {
    padding: 40px 20px 100px;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-tag {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-radius: 3px;
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-detail-content > p {
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--color-text);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.service-pricing {
    margin-bottom: 25px;
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-dark);
}

.service-pricing .price-info {
    display: block;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.booking-section {
    padding: 100px 20px;
    background: var(--color-bg-alt);
}

.booking-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
    min-width: 280px;
}

.booking-info h2 {
    margin-bottom: 20px;
}

.booking-info > p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.booking-form {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 40px;
    box-shadow: var(--shadow);
    border-radius: 8px;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.faq-section {
    padding: 80px 20px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-item summary {
    font-weight: 500;
    cursor: pointer;
    padding-right: 30px;
    position: relative;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin-top: 15px;
    color: var(--color-text-light);
    padding-left: 0;
}

.contact-main {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.contact-text h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.contact-text p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 0.85rem;
    font-style: italic;
}

.contact-map-area {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 20px 20px;
    color: #fff;
}

.directions-section {
    padding: 60px 20px;
    background: var(--color-bg-alt);
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.direction-item {
    flex: 1;
    min-width: 250px;
}

.direction-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.direction-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.faq-contact-section {
    padding: 80px 20px;
}

.thanks-section {
    padding: 150px 20px 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    color: var(--color-primary);
    margin-bottom: 30px;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.thanks-details {
    background: var(--color-bg-alt);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.next-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.next-step p {
    color: var(--color-text-light);
    padding-top: 5px;
}

.thanks-cta p {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.about-story {
    padding: 80px 20px;
}

.about-image-full {
    padding: 0;
}

.full-width-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.about-mission {
    padding: 80px 20px;
    background: var(--color-bg-alt);
}

.team-section {
    padding: 100px 20px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
}

.team-member {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 25px;
    background-color: var(--color-bg-alt);
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.team-role {
    display: block;
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.values-section {
    padding: 80px 20px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.value-item p {
    color: var(--color-text-light);
}

.about-space {
    padding: 100px 20px;
    background: var(--color-bg-alt);
}

.space-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.space-text {
    flex: 1;
    min-width: 300px;
}

.space-text h2 {
    margin-bottom: 20px;
}

.space-text p {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.space-image {
    flex: 1;
    min-width: 300px;
}

.space-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.legal-hero {
    padding: 150px 20px 60px;
    background: var(--color-bg-alt);
}

.legal-hero h1 {
    margin-bottom: 10px;
}

.legal-updated {
    color: var(--color-text-light);
}

.legal-content {
    padding: 60px 20px 100px;
}

.legal-article h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article h3 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.legal-article p {
    margin-bottom: 15px;
    color: var(--color-text);
}

.legal-article ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-article li {
    margin-bottom: 8px;
    color: var(--color-text);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
}

.footer {
    background: var(--color-dark);
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.cookie-content a {
    color: var(--color-secondary);
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--color-primary);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.sticky-cta:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: var(--transition);
        opacity: 0;
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list li {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: 70vh;
        padding: 100px 20px 60px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail-reverse {
        flex-direction: column;
    }

    .service-detail-image {
        height: 250px;
        width: 100%;
    }

    .gallery-item {
        min-width: 50%;
        height: 200px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}