@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@100;200;300;400&display=swap');

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

:root {
    --cream: #FAF7F3;
    --beige: #F3EDE4;
    --sand: #E8DDD3;
    --taupe: #D4C4B5;
    --brown-light: #B5A090;
    --brown: #6B5D54;
    --brown-dark: #3C342D;
    --white: #FFFFFF;
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.43, 0.13, 0.23, 0.96);
}

::selection {
    background: var(--brown);
    color: var(--cream);
}

body {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--brown-dark);
    background: var(--cream);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 52, 45, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 3rem;
    background: var(--beige);
    text-align: center;
    border-bottom: 1px solid var(--taupe);
}

.modal-title {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--brown);
    font-style: italic;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--white);
    color: var(--brown-dark);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--brown);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--cream);
    border-left: 3px solid var(--brown-light);
    transition: all 0.3s ease;
}

.price-item:hover {
    border-left-color: var(--brown);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.price-item-info {
    flex: 1;
}

.price-item-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 0.3rem;
}

.price-item-description {
    font-size: 0.85rem;
    color: var(--brown);
    line-height: 1.5;
}

.price-item-price {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--brown);
    font-weight: 400;
    white-space: nowrap;
    margin-left: 2rem;
}

.price-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--beige);
    border-radius: 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--brown);
    line-height: 1.7;
}

.price-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: var(--brown);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    border: 1px solid var(--brown);
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-link:hover {
    background: var(--brown);
    color: var(--cream);
}

/* Service Detail Modal */
.service-detail-content {
    max-width: 900px;
    width: 95%;
}

.service-detail-header {
    padding: 4rem 3rem 3rem;
    background: var(--beige);
    text-align: center;
}

.service-detail-icon {
    font-family: var(--serif);
    font-size: 4rem;
    color: var(--brown);
    margin-bottom: 1rem;
}

.service-detail-title {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.service-detail-subtitle {
    font-size: 1.1rem;
    color: var(--brown);
    font-style: italic;
}

.service-detail-body {
    padding: 3rem;
}

.service-detail-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--brown);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-detail-section h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.service-detail-section p {
    line-height: 1.8;
    color: var(--brown);
    margin-bottom: 1rem;
}

.service-detail-section ul {
    list-style: none;
    padding: 0;
}

.service-detail-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--brown);
}

.service-detail-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brown-light);
}

.service-detail-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-detail-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--sand);
}

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

.service-detail-pricing {
    background: var(--cream);
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.service-detail-pricing h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.service-detail-price {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--brown);
    margin-bottom: 1rem;
}

/* Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--cream);
    transition: all 0.5s var(--ease);
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    background: rgba(250, 247, 243, 0.95);
}

nav {
    padding: 2rem 3rem;
    transition: padding 0.3s ease;
}

header.scrolled nav {
    padding: 1.5rem 3rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    text-decoration: none;
    color: var(--brown-dark);
    letter-spacing: 0.05em;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--brown-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    position: relative;
    transition: opacity 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brown);
    transition: width 0.3s ease;
}

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

.nav-cta {
    padding: 0.8rem 2rem;
    background: var(--brown);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--sand), transparent);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--brown);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--brown-dark);
}

.hero-title em {
    font-style: italic;
    color: var(--brown);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--brown);
    margin-bottom: 3rem;
    max-width: 500px;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.btn-secondary:hover {
    background: var(--brown);
    color: var(--cream);
}

.hero-visual {
    position: relative;
    height: 600px;
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    background: var(--sand);
}

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

/* About Section */
.about {
    padding: 8rem 3rem;
    background: var(--white);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--brown);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--brown-dark);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--brown);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brown-light);
}

/* Services */
.services {
    padding: 8rem 3rem;
    background: var(--beige);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brown), var(--brown-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-icon {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--sand);
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--brown);
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--brown-light);
    font-style: italic;
}

/* Gallery */
.gallery {
    padding: 8rem 3rem;
    background: var(--white);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--sand);
    cursor: pointer;
    transition: all 0.5s ease;
    opacity: 0.8;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(60, 52, 45, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-text {
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-style: italic;
}

/* Process */
.process {
    padding: 8rem 3rem;
    background: var(--cream);
}

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

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--taupe);
    z-index: 0;
}

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

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: var(--white);
    border: 1px solid var(--taupe);
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--brown);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: var(--brown);
    color: var(--white);
    transform: scale(1.1);
}

.step-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--brown);
}

/* Testimonials */
.testimonials {
    padding: 8rem 3rem;
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-size: 30rem;
    color: var(--taupe);
    opacity: 0.3;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    margin-top: 4rem;
    position: relative;
}

.testimonial-track {
    overflow: hidden;
    position: relative;
}

.testimonial-content {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 2rem;
}

.testimonial-text {
    font-family: var(--serif);
    font-size: 2rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--brown-dark);
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brown);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--taupe);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--brown);
    transform: scale(1.3);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testimonial-arrow {
    pointer-events: all;
    background: var(--white);
    border: 1px solid var(--brown);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--brown);
    font-size: 1.2rem;
}

.testimonial-arrow:hover {
    background: var(--brown);
    color: var(--white);
}

/* Contact */
.contact {
    padding: 8rem 3rem;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-info h2 {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--brown-dark);
    margin-bottom: 2rem;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--brown);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sand);
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brown-light);
    margin-bottom: 0.5rem;
}

.contact-value {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--brown-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: var(--brown);
}

.contact-form {
    background: var(--cream);
    padding: 3rem;
}

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

.form-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--taupe);
    background: var(--white);
    font-family: var(--sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brown);
    box-shadow: 0 0 0 3px rgba(107, 93, 84, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--brown);
    color: var(--cream);
    border: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--brown-dark);
    color: var(--cream);
    padding: 4rem 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--taupe);
    line-height: 1.8;
}

.footer-column h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--sand);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.copyright {
    color: var(--taupe);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--sand);
    transform: translateY(-2px);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--brown-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        font-size: 1.3rem;
    }

    .nav-menu .nav-cta {
        margin-top: 1rem;
        padding: 1rem 2.5rem;
    }

    .menu-toggle {
        display: block;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-visual {
        height: 400px;
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-image-wrapper {
        border-radius: 150px 150px 0 0;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-group {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-container {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1.5rem;
    }

    header.scrolled nav {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .hero-visual {
        height: 350px;
        max-width: 280px;
    }

    .hero-image-wrapper {
        border-radius: 120px 120px 0 0;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Gallery - alle Bilder gleich groß untereinander */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 1rem;
    }

    .footer-brand h3 {
        font-size: 2rem;
    }

    .footer-column h4 {
        margin-bottom: 1rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .modal-content,
    .service-detail-content {
        width: 95%;
    }

    .modal-header,
    .modal-body,
    .service-detail-header,
    .service-detail-body {
        padding: 2rem;
    }

    .modal-title,
    .service-detail-title {
        font-size: 2rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .price-item-price {
        margin-left: 0;
    }

    .testimonial-text {
        font-size: 1.5rem;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }

    .service-detail-images {
        grid-template-columns: 1fr;
    }

    /* Section Titles kleiner auf Mobile */
    .section-title {
        font-size: 2.5rem;
    }

    /* About + andere Sections */
    .about,
    .services,
    .gallery,
    .process,
    .testimonials,
    .contact {
        padding: 4rem 1.5rem;
    }

    /* Contact Section */
    .contact-info h2 {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
