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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.btn-accept {
    background-color: #ffffff;
    color: #2c2c2c;
}

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

.btn-accept:hover, .btn-reject:hover {
    opacity: 0.8;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: lowercase;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-items a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-items a:hover {
    color: #666666;
}

.ad-disclosure {
    font-size: 11px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 1px solid #e5e5e5;
    padding-left: 40px;
    margin-right: 20px;
}

.hero-minimal {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f5f5f5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 200;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: #666666;
    letter-spacing: 1px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

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

.intro-section {
    padding: 120px 40px;
    background-color: #ffffff;
}

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

.intro-text {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.8;
    color: #333333;
    text-align: center;
}

.services-preview {
    padding: 100px 40px;
    background-color: #fafafa;
}

.services-preview h2 {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.service-grid-minimal {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #f5f5f5;
}

.service-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.service-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 12px;
    padding: 0 32px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    padding: 0 32px;
}

.price {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    padding: 0 32px;
    margin-top: 8px;
}

.link-subtle {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 32px 32px 32px;
    display: inline-block;
    transition: opacity 0.2s;
}

.link-subtle:hover {
    opacity: 0.6;
}

.cta-section {
    padding: 120px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 16px;
    text-align: center;
}

.cta-content > p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 48px;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cccccc;
}

.form-group input,
.form-group select {
    padding: 16px;
    font-size: 16px;
    border: 1px solid #444444;
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #666666;
}

.btn-primary {
    padding: 18px 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    margin-top: 16px;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.about-preview {
    padding: 120px 40px;
    background-color: #ffffff;
}

.about-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 32px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 20px;
}

.link-arrow {
    display: inline-block;
    margin-top: 24px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.2s;
}

.link-arrow:hover {
    transform: translateX(8px);
}

.about-image {
    flex: 1;
    height: 500px;
    background-color: #f5f5f5;
}

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

.disclaimer-section {
    padding: 80px 40px;
    background-color: #fafafa;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.8;
    color: #999999;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 80px 40px 40px 40px;
}

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

.footer-brand h3 {
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.footer-brand p {
    font-size: 14px;
    color: #999999;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 500;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999999;
}

.page-header {
    padding: 120px 40px 80px 40px;
    text-align: center;
    background-color: #fafafa;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 18px;
    color: #666666;
    font-weight: 300;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    height: 400px;
    background-color: #f5f5f5;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 24px;
}

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

.service-features li {
    font-size: 15px;
    color: #999999;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-large {
    font-size: 38px;
    font-weight: 300;
    color: #1a1a1a;
}

.rental-terms {
    padding: 80px 40px;
    background-color: #fafafa;
}

.rental-terms h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 24px;
    text-align: center;
}

.rental-terms p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    text-align: center;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-section {
    margin-bottom: 100px;
}

.about-image-large {
    width: 100%;
    height: 500px;
    margin-bottom: 60px;
    background-color: #f5f5f5;
}

.about-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-inline {
    width: 100%;
    height: 400px;
    margin: 40px 0;
    background-color: #f5f5f5;
}

.about-image-inline img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 24px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 40px;
    background-color: #fafafa;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-card {
    flex: 1;
    padding: 40px;
    background-color: #fafafa;
}

.contact-card h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
}

.note-text {
    font-size: 13px;
    color: #999999;
    margin-top: 16px;
}

.contact-directions h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 24px;
}

.contact-directions p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    color: #666666;
    margin-bottom: 32px;
}

.thanks-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 16px;
}

.service-confirm {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 32px 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 48px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 16px;
}

.legal-updated {
    font-size: 14px;
    color: #999999;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 400;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .nav-items {
        gap: 16px;
        flex-wrap: wrap;
    }

    .ad-disclosure {
        display: none;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .service-grid-minimal {
        gap: 40px;
    }

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .about-split {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .contact-info-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}