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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fefefe;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 400;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 300;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    border: 1px solid #7f8c8d;
    border-radius: 3px;
}

.hero-visual {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-top: 0;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #ecf0f1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.95;
}

.intro-minimal {
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.intro-content {
    max-width: 800px;
    text-align: center;
}

.intro-text {
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 300;
    color: #34495e;
}

.visual-story {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.story-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image-wrap {
    flex: 1;
    background-color: #ecf0f1;
}

.story-image-wrap img {
    width: 100%;
    height: auto;
}

.story-text-wrap {
    flex: 1;
    padding: 2rem;
}

.immersive-section {
    width: 100%;
    height: 70vh;
    position: relative;
}

.immersive-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
    position: relative;
}

.immersive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(44, 62, 80, 0.5);
    color: #ffffff;
    padding: 2rem;
}

.immersive-overlay h3 {
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    max-width: 700px;
    letter-spacing: 1px;
}

.services-preview {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image-bg {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #ecf0f1;
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 1.5rem 0;
}

.btn-select {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.booking-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.booking-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid #e0e0e0;
}

.booking-container h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.selected-service-info {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #34495e;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.btn-submit {
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.testimonial-visual {
    padding: 5rem 2rem;
    background-color: #34495e;
    color: #ffffff;
}

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

.testimonial-content blockquote {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.8;
    font-weight: 300;
}

.testimonial-content cite {
    display: block;
    margin-top: 2rem;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

.approach-section {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.approach-layout {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 3rem 2rem 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-section a {
    color: #ecf0f1;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    display: none;
    z-index: 9999;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.btn-cookie.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.page-hero-visual {
    width: 100%;
    height: 60vh;
    position: relative;
    margin-top: 80px;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #ecf0f1;
}

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

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.page-hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.about-story {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

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

.philosophy-visual {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-image {
    flex: 1;
    background-color: #ecf0f1;
}

.philosophy-text {
    flex: 1;
    padding: 2rem;
}

.values-section {
    padding: 6rem 3rem;
    background-color: #ffffff;
    text-align: center;
}

.values-section h2 {
    margin-bottom: 3rem;
}

.values-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.value-item {
    flex: 1;
    max-width: 350px;
}

.team-minimal {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

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

.cta-inline {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    text-align: center;
}

.cta-content {
    color: #ffffff;
}

.cta-content h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 300;
}

.btn-cta {
    display: inline-block;
    background-color: #ffffff;
    color: #2c3e50;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #ecf0f1;
}

.services-intro {
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.intro-text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
}

.services-detailed {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    background-color: #ffffff;
    padding: 3rem;
}

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

.detail-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.detail-visual img {
    width: 100%;
    height: auto;
}

.detail-info {
    flex: 1;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 1rem 0 1.5rem 0;
}

.service-includes {
    list-style: none;
    margin: 2rem 0;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

.contact-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 3rem;
    display: flex;
    gap: 4rem;
}

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

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.info-item p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-text-block {
    flex: 1;
}

.thanks-section {
    padding: 8rem 2rem;
    background-color: #f8f9fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border: 1px solid #e0e0e0;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.thanks-service-info {
    margin: 2rem 0;
}

.service-confirmation {
    font-size: 1rem;
    color: #2c3e50;
    padding: 1rem;
    background-color: #ecf0f1;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
}

.thanks-next-steps h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.thanks-next-steps ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.legal-page {
    padding: 6rem 3rem;
    background-color: #ffffff;
    margin-top: 80px;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-date {
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

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

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

.legal-container a {
    color: #2c3e50;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .story-block,
    .philosophy-grid,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}