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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: #d4a574;
    color: #fff;
}

.btn-accept:hover {
    background: #c49563;
}

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

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

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-visual {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: clamp(32px, 6vw, 72px);
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
    max-width: 900px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 24px);
    color: #f0f0f0;
    font-weight: 300;
    letter-spacing: 1px;
}

.intro-offset {
    padding: 120px 20px;
    background: #f9f7f4;
}

.intro-text-block {
    max-width: 700px;
    margin: 0 0 0 auto;
    padding-right: 10%;
}

.intro-lead {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.intro-text-block p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.story-visual {
    padding: 0;
}

.story-split {
    display: flex;
    min-height: 600px;
}

.story-image {
    flex: 1;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.amplify-section {
    padding: 100px 20px;
    background: #2c2c2c;
    color: #fff;
}

.amplify-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.amplify-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.amplify-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.amplify-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #d4a574;
}

.amplify-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
}

.cta-inline-block {
    padding: 80px 20px;
    background: #d4a574;
    text-align: center;
}

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

.cta-content p {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-link-underline {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.cta-link-underline:hover {
    border-bottom-color: #2c2c2c;
    color: #2c2c2c;
}

.insight-reveal {
    padding: 0;
}

.insight-wrap {
    display: flex;
    align-items: center;
}

.insight-text {
    flex: 1.2;
    padding: 80px 70px;
    background: #f9f7f4;
}

.insight-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2c2c2c;
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.insight-visual {
    flex: 1;
}

.insight-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trust-builder {
    padding: 100px 20px;
    background: #fff;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
    color: #2c2c2c;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #f9f7f4;
    border-left: 4px solid #d4a574;
}

.trust-icon {
    font-size: 28px;
    color: #d4a574;
    font-weight: bold;
}

.trust-item p {
    font-size: 18px;
    color: #2c2c2c;
}

.testimonials-flow {
    padding: 100px 20px;
    background: #2c2c2c;
}

.testimonial-single {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.testimonial-single:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 22px;
    color: #fff;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    color: #d4a574;
}

.visual-showcase {
    padding: 0;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
}

.showcase-item {
    flex: 1;
    min-width: 300px;
    height: 500px;
    overflow: hidden;
}

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

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

.benefits-asymmetric {
    padding: 100px 20px;
    background: #f9f7f4;
}

.benefits-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.benefit-block {
    padding: 50px;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.benefit-block.large {
    flex: 2;
    min-width: 300px;
}

.benefit-block.medium {
    flex: 1.5;
    min-width: 280px;
}

.benefit-block.small {
    flex: 1;
    min-width: 250px;
}

.benefit-block h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 500;
}

.benefit-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.cta-section-mid {
    padding: 100px 20px;
    background: #d4a574;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-cta-primary {
    display: inline-block;
    padding: 18px 50px;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid #2c2c2c;
}

.btn-cta-primary:hover {
    background: transparent;
    color: #2c2c2c;
}

.collection-preview {
    padding: 100px 20px;
    background: #fff;
}

.collection-container {
    max-width: 1300px;
    margin: 0 auto;
}

.collection-heading {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 300;
    color: #2c2c2c;
}

.collection-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.collection-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.collection-card {
    width: calc(33.333% - 30px);
    min-width: 300px;
    background: #f9f7f4;
    overflow: hidden;
    transition: transform 0.3s;
}

.collection-card:hover {
    transform: translateY(-10px);
}

.card-image-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 500;
}

.card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-cta {
    text-align: center;
}

.btn-select-service {
    padding: 12px 30px;
    background: #d4a574;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    width: 100%;
}

.btn-select-service:hover {
    background: #c49563;
}

.urgency-block {
    padding: 60px 20px;
    background: #2c2c2c;
    text-align: center;
}

.urgency-text {
    font-size: 28px;
    color: #d4a574;
    margin-bottom: 10px;
    font-weight: 500;
}

.urgency-subtext {
    font-size: 18px;
    color: #fff;
}

.final-push {
    padding: 100px 20px;
    background: #f9f7f4;
}

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

.push-container h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: 300;
}

.push-list {
    list-style: none;
}

.push-list li {
    font-size: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
}

.push-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.form-section {
    padding: 100px 20px;
    background: #fff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-heading {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 300;
    color: #2c2c2c;
}

.form-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
    border-radius: 4px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 18px 40px;
    background: #d4a574;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #c49563;
}

.final-cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    padding: 20px;
    z-index: 999;
    display: none;
}

.final-cta-sticky.active {
    display: block;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sticky-cta-content span {
    font-size: 18px;
    color: #fff;
}

.btn-sticky {
    padding: 12px 30px;
    background: #d4a574;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #c49563;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
}

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #d4a574;
}

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

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #d4a574;
    font-weight: 500;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #d4a574;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #f9f7f4;
    text-align: center;
}

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

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.thanks-heading {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 300;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-subtext {
    font-size: 16px;
    color: #777;
    margin-bottom: 40px;
}

.btn-back-home {
    display: inline-block;
    padding: 15px 40px;
    background: #d4a574;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background: #c49563;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
        top: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .story-split {
        flex-direction: column;
    }

    .story-content {
        padding: 40px 30px;
    }

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

    .insight-wrap {
        flex-direction: column;
    }

    .insight-text {
        padding: 50px 30px;
    }

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

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

    .showcase-item {
        height: 300px;
    }

    .collection-card {
        width: 100%;
    }

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

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

.contact-page {
    padding: 120px 20px 80px;
    background: #f9f7f4;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-heading {
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 300;
    color: #2c2c2c;
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background: #fff;
    border-left: 4px solid #d4a574;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 500;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.about-page {
    padding: 120px 20px 80px;
    background: #fff;
}

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

.about-hero {
    margin-bottom: 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-hero p {
    font-size: 20px;
    color: #666;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-section {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-section:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.services-page {
    padding: 120px 20px 80px;
    background: #f9f7f4;
}

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

.services-hero {
    text-align: center;
    margin-bottom: 60px;
}

.services-hero h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.services-hero p {
    font-size: 20px;
    color: #666;
}

.legal-page {
    padding: 120px 20px 80px;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 300;
    color: #2c2c2c;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #2c2c2c;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

@media (max-width: 768px) {
    .about-section {
        flex-direction: column !important;
    }

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