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

:root {
    --color-primary: #8B4513;
    --color-secondary: #D2691E;
    --color-accent: #F4A460;
    --color-dark: #2C1810;
    --color-light: #FFF8F0;
    --color-cream: #FAEBD7;
    --color-sage: #9CAF88;
    --color-text: #3D2914;
    --color-muted: #7A6455;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans Pro', sans-serif;
    --shadow-soft: 0 4px 20px rgba(44, 24, 16, 0.08);
    --shadow-medium: 0 8px 30px rgba(44, 24, 16, 0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: var(--color-secondary);
}

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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Magazine Style */
.site-header {
    background: var(--color-cream);
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    position: relative;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.08);
}

.header-contact-info {
    display: flex;
    gap: 25px;
    font-size: 0.875rem;
    color: var(--color-muted);
}

.header-contact-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-social {
    display: flex;
    gap: 12px;
}

.header-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.875rem;
}

.header-social a:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

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

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-list a {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

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

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

.nav-cta {
    margin-left: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--color-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

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

.btn-accent:hover {
    background: #7A9466;
    color: white;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.05rem;
}

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

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

/* Hero - Magazine Style */
.hero-magazine {
    display: flex;
    min-height: 85vh;
    background: var(--color-cream);
}

.hero-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.hero-tag {
    display: inline-block;
    background: var(--color-sage);
    color: white;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-radius: 2px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-muted);
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-side {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

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

.hero-image-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: white;
    padding: 25px 35px;
    box-shadow: var(--shadow-medium);
    max-width: 280px;
}

.hero-image-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.hero-image-overlay p {
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* Magazine Grid Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--color-cream);
}

.section-dark {
    background: var(--color-dark);
    color: var(--color-light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-light);
}

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

.section-header-left {
    text-align: left;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Magazine Multi-Column Layout */
.magazine-grid {
    display: flex;
    gap: 40px;
}

.magazine-column {
    flex: 1;
}

.magazine-column-wide {
    flex: 1.5;
}

.magazine-column-narrow {
    flex: 0.8;
}

.magazine-featured {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.magazine-featured-image {
    flex: 1.3;
    position: relative;
}

.magazine-featured-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.magazine-featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.magazine-featured-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.magazine-featured-content p {
    color: var(--color-muted);
    margin-bottom: 25px;
    line-height: 1.9;
}

/* Services Grid */
.services-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-magazine {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    overflow: hidden;
}

.service-card-magazine:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-card-image {
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

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

.service-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card-content p {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.service-price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.service-price .unit {
    font-size: 0.9rem;
    color: var(--color-muted);
}

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

.service-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✓';
    color: var(--color-sage);
    font-weight: bold;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-accent);
    position: absolute;
    top: 20px;
    left: 30px;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* Stats Section */
.stats-row {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 50px 0;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.section-dark .stat-number {
    color: var(--color-accent);
}

.stat-label {
    font-size: 1rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-dark .stat-label {
    color: var(--color-cream);
}

/* About Section */
.about-magazine {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image-stack {
    flex: 1;
    position: relative;
    height: 550px;
}

.about-image-stack .img-main {
    position: absolute;
    width: 75%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
    top: 0;
    left: 0;
}

.about-image-stack .img-accent {
    position: absolute;
    width: 55%;
    height: 280px;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
    bottom: 0;
    right: 0;
    border: 8px solid white;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content p {
    margin-bottom: 18px;
    color: var(--color-muted);
    line-height: 1.85;
}

.about-signature {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-signature img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.about-signature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.about-signature-text span {
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* Process Section */
.process-timeline {
    display: flex;
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--color-accent);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-soft);
}

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

.process-step p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.7;
}

/* Gallery Section */
.gallery-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
    flex: 1 1 calc(50% - 10px);
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(4) img {
    height: 350px;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--color-cream);
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn:hover {
    background: var(--color-accent);
    color: var(--color-dark);
}

/* Contact Form */
.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info-side {
    flex: 1;
}

.contact-form-side {
    flex: 1.3;
}

.contact-info-block {
    margin-bottom: 35px;
}

.contact-info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-block p {
    color: var(--color-muted);
    line-height: 1.8;
}

.contact-map {
    height: 250px;
    background: var(--color-cream);
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--color-cream);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    border-radius: 4px;
}

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

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

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

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

/* Footer */
.site-footer {
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
}

.footer-column:first-child {
    flex: 1.5;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

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

.footer-column p {
    color: var(--color-cream);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: var(--color-cream);
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--color-cream);
    opacity: 0.6;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--color-cream);
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: white;
    padding: 25px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

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

.cookie-accept:hover {
    background: #7A9466;
}

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

.cookie-reject:hover {
    border-color: white;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-medium);
    padding: 16px 28px;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--color-primary);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.legal-content p {
    margin-bottom: 18px;
    color: var(--color-muted);
    line-height: 1.85;
}

.legal-content ul {
    margin: 15px 0 25px 25px;
    color: var(--color-muted);
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-cream);
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--color-sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.15rem;
    color: var(--color-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-magazine {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-side {
        padding: 60px 40px;
        order: 2;
    }

    .hero-image-side {
        order: 1;
        height: 50vh;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .magazine-grid,
    .magazine-featured {
        flex-direction: column;
    }

    .about-magazine {
        flex-direction: column;
    }

    .about-image-stack {
        height: 400px;
    }

    .contact-layout {
        flex-direction: column;
    }

    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .nav-list {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow-medium);
    }

    .mobile-nav.active {
        display: block;
    }

    .mobile-nav a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--color-cream);
        color: var(--color-dark);
        font-weight: 600;
    }

    .hero-content-side {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-magazine {
        flex-direction: column;
    }

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

    .testimonials-grid {
        flex-direction: column;
    }

    .stats-row {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 50%;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-column {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .page-header {
        padding: 80px 0 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .hero-image-overlay {
        display: none;
    }

    .about-image-stack {
        height: 300px;
    }

    .about-image-stack .img-main {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .about-image-stack .img-accent {
        display: none;
    }

    .gallery-item {
        flex: 1 1 100%;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        flex: 1 1 100%;
    }
}
