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

:root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #3498db;
    --dark: #1a252f;
    --light: #ecf0f1;
    --text: #34495e;
    --border: #bdc3c7;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

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

a {
    text-decoration: none;
    color: var(--accent);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-irregular {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    margin: 4px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--white);
    list-style: none;
    padding: 80px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
}

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

.nav-menu li {
    margin: 25px 0;
}

.nav-menu a {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
}

.hero-asymmetric {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
    padding-top: 80px;
    position: relative;
}

.hero-offset-left {
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.hero-title-stacked {
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-accent {
    color: var(--secondary);
}

.hero-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image-overlap {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-top: -40px;
}

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

.cta-hero {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.intro-diagonal {
    padding: 80px 20px;
    background: var(--light);
    position: relative;
    margin-top: -60px;
    z-index: 3;
}

.text-block-floating {
    max-width: 650px;
    padding: 30px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-left: auto;
    margin-right: 20px;
}

.text-block-floating h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.visual-accent-strip {
    width: 200px;
    height: 6px;
    background: var(--secondary);
    margin-top: 30px;
}

.services-preview {
    padding: 100px 20px;
}

.container-split {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.offset-up {
    margin-top: 0;
}

.offset-down {
    margin-top: 20px;
}

.service-image-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-info p {
    margin-bottom: 15px;
    color: var(--text);
}

.service-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 20px 0;
}

.cta-inline {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--primary);
    color: var(--white);
}

.value-prop-layered {
    padding: 100px 20px;
    background: var(--primary);
    color: var(--white);
}

.value-prop-layered h3 {
    color: var(--white);
}

.prop-stack {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.prop-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prop-visual {
    width: 100%;
    height: 180px;
    background: var(--secondary);
    opacity: 0.3;
}

.prop-text h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.testimonial-overlap {
    padding: 80px 20px;
    background: var(--light);
}

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

.testimonial-large {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    padding: 40px;
    background: var(--white);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--secondary);
}

.testimonial-large cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 1rem;
    color: var(--text);
}

.full-services-link {
    padding: 80px 20px;
    text-align: center;
}

.full-services-link h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.cta-prominent {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.cta-prominent:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

.form-section-offset {
    padding: 100px 20px;
    background: var(--light);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 30px 0 auto;
    background: var(--white);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 35px;
}

.form-intro h2 {
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 12px;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.cta-form {
    padding: 15px 40px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.visual-break {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin: 60px 0;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-snippet {
    padding: 100px 20px;
}

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

.about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-text {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.05rem;
}

.about-image-crop {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.final-cta-block {
    padding: 100px 20px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-asymmetric h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-asymmetric p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: var(--light);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--white);
    color: var(--primary);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.footer-offset {
    background: var(--dark);
    color: var(--light);
    padding: 60px 20px 20px;
}

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

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 10px;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
}

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

.footer-col ul li {
    margin: 8px 0;
}

.footer-col a {
    color: var(--light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--border);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 30px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: var(--dark);
    color: var(--white);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 1001;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

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

.btn-cookie {
    padding: 10px 25px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.page-header-asymmetric {
    padding: 120px 20px 60px;
    background: var(--light);
    margin-bottom: 60px;
}

.header-content-offset {
    max-width: 700px;
    margin-left: 0;
}

.header-content-offset h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.header-content-offset p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 40px 20px 100px;
}

.service-item-full,
.service-item-offset-left,
.service-item-offset-right,
.service-item-centered {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-visual {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

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

.service-details {
    padding: 20px;
}

.service-details h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.service-details p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.5rem;
}

.service-pricing {
    margin: 25px 0;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
}

.price-note {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
    margin-top: 5px;
}

.cta-service {
    display: inline-block;
    padding: 14px 35px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.custom-exp .service-details {
    text-align: center;
    padding: 50px 20px;
    background: var(--light);
}

.about-hero-offset {
    padding: 120px 20px 80px;
    background: var(--light);
}

.about-hero-content {
    max-width: 900px;
}

.about-hero-content h1 {
    font-size: 2.3rem;
    line-height: 1.4;
    color: var(--primary);
}

.story-section {
    padding: 80px 20px;
}

.story-block {
    margin-bottom: 40px;
}

.story-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--primary);
}

.story-block h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.story-block p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.image-break-offset {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin: 60px 0;
}

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

.values-grid {
    padding: 100px 20px;
    background: var(--light);
}

.values-grid h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 50px;
    text-align: center;
}

.values-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card p {
    line-height: 1.8;
}

.team-section-asymmetric {
    padding: 100px 20px;
}

.team-section-asymmetric h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 50px;
    text-align: center;
}

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-member {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

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

.team-info {
    text-align: center;
}

.team-info h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.team-info p {
    line-height: 1.7;
}

.story-cta {
    padding: 80px 20px;
    background: var(--light);
    text-align: center;
}

.story-cta h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.story-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-hero {
    padding: 120px 20px 60px;
    background: var(--light);
}

.contact-header {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.contact-content-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 80px 20px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.info-item p {
    line-height: 1.7;
}

.info-item a {
    color: var(--secondary);
    font-weight: 600;
}

.info-note {
    font-size: 0.9rem;
    color: var(--text);
    margin-top: 8px;
}

.contact-visual {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info {
    padding: 80px 20px;
    background: var(--light);
}

.location-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.location-info p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 40px;
}

.thanks-details {
    text-align: left;
    background: var(--light);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.thanks-details p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-details ul {
    margin: 20px 0 20px 25px;
}

.thanks-details li {
    margin: 8px 0;
}

.service-selected {
    font-weight: 600;
    color: var(--secondary);
    margin-top: 20px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

.next-steps {
    padding: 80px 20px;
    background: var(--light);
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    background: var(--white);
    padding: 30px;
    border-left: 4px solid var(--secondary);
}

.step h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.step p {
    line-height: 1.7;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.updated {
    color: var(--text);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 15px;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 25px 0 12px;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin: 15px 0 20px 25px;
}

.legal-page li {
    margin: 8px 0;
    line-height: 1.7;
}

.legal-page a {
    color: var(--secondary);
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookies-table th {
    background: var(--light);
    color: var(--primary);
    font-weight: 600;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-menu li {
        margin: 0 0 0 30px;
    }

    .hero-asymmetric {
        flex-direction: row;
        align-items: center;
    }

    .hero-offset-left {
        width: 50%;
        padding: 60px;
        padding-left: 80px;
    }

    .hero-title-stacked {
        font-size: 3.5rem;
    }

    .hero-image-overlap {
        width: 55%;
        height: 600px;
        margin-top: 0;
        margin-left: -100px;
    }

    .container-split {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 30px);
    }

    .prop-item {
        flex-direction: row;
        align-items: center;
    }

    .prop-item.reverse {
        flex-direction: row-reverse;
    }

    .prop-visual {
        width: 300px;
        flex-shrink: 0;
    }

    .about-content-split {
        flex-direction: row;
        align-items: center;
    }

    .about-text {
        width: 55%;
    }

    .about-image-crop {
        width: 40%;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        flex-direction: row;
        gap: 60px;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .service-item-full,
    .service-item-offset-left,
    .service-item-offset-right {
        flex-direction: row;
        align-items: center;
    }

    .service-item-offset-left {
        margin-left: -50px;
    }

    .service-item-offset-right {
        flex-direction: row-reverse;
        margin-right: -50px;
    }

    .service-visual {
        width: 45%;
        height: 400px;
    }

    .service-details {
        width: 55%;
        padding: 40px;
    }

    .values-items {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        width: calc(50% - 15px);
    }

    .team-member {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .team-image {
        margin: 0;
    }

    .team-info {
        text-align: left;
    }

    .contact-content-split {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info-block {
        width: 45%;
    }

    .contact-visual {
        width: 50%;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step {
        width: calc(33.33% - 20px);
    }
}

@media (min-width: 1024px) {
    .hero-title-stacked {
        font-size: 4.2rem;
    }

    .text-block-floating {
        margin-right: 100px;
    }

    .form-wrapper {
        margin-right: 100px;
    }
}