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

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

.ad-disclosure {
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 60px;
    background-color: #ffffff;
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 45px;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.hero-minimal {
    background-color: #ffffff;
    padding: 100px 60px 0;
}

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

.hero-content h1 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #6a6a6a;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.philosophy-section {
    padding: 140px 60px;
    background-color: #ffffff;
}

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

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-section h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.philosophy-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.featured-property {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

.property-showcase {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.showcase-image {
    flex: 1;
    background-color: #e0e0e0;
    height: 500px;
    overflow: hidden;
}

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

.showcase-text {
    flex: 1;
}

.showcase-text h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a8a8a;
    margin-bottom: 15px;
    font-weight: 500;
}

.property-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.showcase-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.text-link {
    display: inline-block;
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

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

.insight-section {
    padding: 140px 60px;
    background-color: #ffffff;
}

.insight-section h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 70px;
    text-align: center;
    letter-spacing: -0.5px;
}

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

.insight-card {
    flex: 1;
}

.insight-card h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.service-selection-section {
    padding: 140px 60px;
    background-color: #f8f8f8;
}

.service-selection-section h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #6a6a6a;
    margin-bottom: 70px;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-option {
    background-color: #ffffff;
    padding: 45px;
    border: 1px solid #e5e5e5;
    transition: border-color 0.3s ease;
}

.service-option:hover {
    border-color: #c0c0c0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.service-option h3 {
    font-size: 26px;
    font-weight: 500;
    color: #1a1a1a;
}

.service-price {
    font-size: 24px;
    font-weight: 300;
    color: #2c2c2c;
}

.service-option p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 25px;
}

.select-service-btn {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.inquiry-form-section {
    padding: 140px 60px;
    background-color: #ffffff;
}

.inquiry-form-section h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: -0.5px;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #6a6a6a;
    margin-bottom: 60px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.form-group input,
.form-group textarea {
    font-family: inherit;
    font-size: 16px;
    padding: 15px;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

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

.trust-indicators {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

.indicator-item {
    margin-bottom: 50px;
}

.indicator-quote {
    font-size: 20px;
    line-height: 1.7;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 15px;
}

.indicator-attribution {
    font-size: 15px;
    color: #7a7a7a;
}

.site-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 80px 60px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 500;
}

.footer-section a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #909090;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 40px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

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

.page-hero-minimal {
    padding: 100px 60px 60px;
    background-color: #ffffff;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.about-intro {
    padding: 80px 60px;
    background-color: #f8f8f8;
}

.large-text {
    font-size: 24px;
    line-height: 1.6;
    color: #3a3a3a;
    font-weight: 300;
}

.about-image-section {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.story-section {
    padding: 120px 60px;
    background-color: #ffffff;
}

.story-section h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.story-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.values-section {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

.value-item {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-bottom: 80px;
}

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

.value-item img {
    width: 480px;
    height: 320px;
    object-fit: cover;
    background-color: #d5d5d5;
}

.value-text {
    flex: 1;
}

.value-text h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.value-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.team-philosophy {
    padding: 120px 60px;
    background-color: #ffffff;
}

.team-philosophy h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.team-philosophy p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.about-cta-section {
    padding: 100px 60px;
    background-color: #2c2c2c;
    text-align: center;
}

.about-cta-section h3 {
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-cta-section p {
    font-size: 17px;
    color: #c0c0c0;
    margin-bottom: 40px;
}

.prominent-link {
    display: inline-block;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 16px 45px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.prominent-link:hover {
    opacity: 0.9;
}

.services-intro {
    padding: 80px 60px;
    background-color: #f8f8f8;
}

.services-detailed {
    padding: 60px 60px 120px;
    background-color: #ffffff;
}

.service-detail-card {
    background-color: #fafafa;
    padding: 50px;
    margin-bottom: 40px;
    border-left: 3px solid #2c2c2c;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
}

.service-detail-card h2 {
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 300;
    color: #2c2c2c;
}

.service-detail-description {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.service-detail-includes h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.service-detail-includes ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.service-detail-includes li {
    font-size: 15px;
    line-height: 1.8;
    color: #5a5a5a;
    padding-left: 25px;
    position: relative;
}

.service-detail-includes li::before {
    content: "–";
    position: absolute;
    left: 0;
}

.service-detail-duration {
    font-size: 14px;
    color: #7a7a7a;
    font-style: italic;
}

.services-cta {
    padding: 100px 60px;
    background-color: #f5f5f5;
    text-align: center;
}

.services-cta h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 17px;
    color: #6a6a6a;
    margin-bottom: 35px;
}

.contact-content {
    padding: 80px 60px 100px;
    background-color: #ffffff;
}

.contact-block {
    margin-bottom: 60px;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.email-display {
    font-size: 18px;
    color: #2c2c2c;
}

.contact-note {
    font-size: 15px;
    color: #7a7a7a;
    margin-top: 15px;
}

.inline-link {
    color: #2c2c2c;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.inline-link:hover {
    opacity: 0.7;
}

.location-image-section {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.thanks-section {
    padding: 120px 60px;
    background-color: #ffffff;
}

.thanks-section h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.5px;
}

.thanks-details {
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f8f8;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-next-steps {
    margin: 50px 0;
}

.thanks-next-steps h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

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

.legal-page {
    padding: 60px 60px 100px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.legal-updated {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.legal-page a {
    color: #2c2c2c;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .minimal-nav {
        flex-direction: column;
        padding: 30px;
        gap: 25px;
    }

    .nav-links {
        gap: 25px;
    }

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

    .hero-image-container {
        height: 350px;
    }

    .property-showcase {
        flex-direction: column;
        gap: 40px;
    }

    .showcase-image {
        height: 350px;
    }

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

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

    .value-item {
        flex-direction: column;
        gap: 30px;
    }

    .value-item img {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-header {
        flex-direction: column;
        gap: 10px;
    }

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