:root {
    --seafoam-primary: #2EC4B6;
    --seafoam-light: #4DD9CC;
    --seafoam-dark: #1A9A92;
    --burnt-orange: #E07A5F;
    --burnt-orange-light: #F49A83;
    --burnt-orange-dark: #C66048;
    --crisp-white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-400: #CED4DA;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    --gray-900: #212529;
    --glass-white: rgba(255, 255, 255, 0.85);
    --glass-dark: rgba(33, 37, 41, 0.9);
    --shadow-soft: 0 4px 20px rgba(46, 196, 182, 0.1);
    --shadow-medium: 0 8px 30px rgba(46, 196, 182, 0.15);
    --shadow-strong: 0 15px 50px rgba(224, 122, 95, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Clash Display', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.7;
}

.text-seafoam {
    color: var(--seafoam-primary);
}

.text-orange {
    color: var(--burnt-orange);
}

.text-white {
    color: var(--crisp-white) !important;
}

.text-dark {
    color: var(--gray-900) !important;
}

.text-gray {
    color: var(--gray-600) !important;
}


.bg-seafoam {
    background: var(--seafoam-primary);
}

.bg-orange {
    background: var(--burnt-orange);
}

.bg-white {
    background: var(--crisp-white) !important;
}

.bg-offwhite {
    background: var(--off-white);
}

.bg-dark {
    background: var(--gray-900);
}

.bg-glass {
    background: var(--glass-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.bg-gradient-seafoam {
    background: linear-gradient(135deg, var(--seafoam-light) 0%, var(--seafoam-primary) 100%);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, var(--burnt-orange-light) 0%, var(--burnt-orange) 100%);
}

.bg-gradient-subtle {
    background: linear-gradient(180deg, var(--crisp-white) 0%, var(--off-white) 100%);
}


.studio-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    padding: 12px 0;
}

.studio-header.scrolled {
    background: var(--glass-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    padding: 12px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--seafoam-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crisp-white);
    font-size: 1.5rem;
}

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

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--gray-800);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burnt-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--burnt-orange);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    transition: all 0.3s ease;
}


.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../media/hero-cleaning.webp') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.92) 0%, rgba(33, 37, 41, 0.85) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    color: var(--crisp-white);
}

.hero-content .section-label {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    color: var(--crisp-white) !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-title {
    color: var(--crisp-white);
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--burnt-orange);
    color: var(--crisp-white);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-strong);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--burnt-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(224, 122, 95, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--crisp-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--crisp-white);
    transform: translateY(-2px);
}

.hero-visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
}

.glass-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--seafoam-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 4px;
}


.section-pad {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    color: var(--burnt-orange);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.125rem;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--crisp-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--seafoam-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--seafoam-light) 0%, var(--seafoam-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--crisp-white);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--seafoam-primary);
}

.service-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-600);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--burnt-orange);
    font-weight: 600;
    margin-top: 16px;
}

.service-link:hover {
    gap: 12px;
}


.about-section {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--burnt-orange);
    color: var(--crisp-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

.about-badge-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
}

.about-badge-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--gray-600);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--seafoam-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crisp-white);
    flex-shrink: 0;
}

.feature-text {
    font-weight: 500;
    color: var(--gray-800);
}

.about-cta {
    margin-top: 32px;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.team-card {
    background: var(--crisp-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.team-role {
    color: var(--seafoam-primary);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.team-bio {
    color: var(--gray-600);
    font-size: 0.875rem;
}


.reviews-section {
    position: relative;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.review-card {
    background: var(--glass-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.review-stars {
    color: var(--burnt-orange);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.review-text {
    font-size: 1.0625rem;
    color: var(--gray-800);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-weight: 600;
    color: var(--gray-900);
}

.review-location {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.review-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    color: var(--seafoam-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}


.contact-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info h2 {
    color: var(--crisp-white);
    margin-bottom: 16px;
}

.contact-text {
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--seafoam-primary);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 4px;
}

.contact-value {
    color: var(--gray-800);
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--crisp-white);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-full {
    grid-column: 1/-1
}

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

.form-label {
    font-weight: 500;
    color: var(--gray-800);
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--crisp-white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--seafoam-primary);
    box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.1);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    grid-column: 1/-1;
    padding: 18px;
    background: var(--seafoam-primary);
    color: var(--crisp-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    margin-top: 8px;
}

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

.form-note {
    grid-column: 1/-1;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 16px;
}


.cta-section {
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--burnt-orange-dark) 100%);
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    color: var(--crisp-white);
    margin-bottom: 16px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--crisp-white);
    color: var(--burnt-orange);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}


.studio-footer {
    background: var(--gray-900);
    color: var(--crisp-white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: var(--crisp-white);
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--seafoam-primary);
    padding-left: 8px;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--seafoam-primary);
}


.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 420px;
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-strong);
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cookie-consent-banner.hidden {
    display: none;
}

.cookie-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.cookie-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cookie-accept {
    background: var(--seafoam-primary);
    color: var(--crisp-white);
}

.cookie-accept:hover {
    background: var(--seafoam-dark);
}

.cookie-decline {
    background: var(--gray-200);
    color: var(--gray-800);
}

.cookie-decline:hover {
    background: var(--gray-400);
}

.cookie-settings {
    background: transparent;
    color: var(--seafoam-primary);
    border: 1px solid var(--seafoam-primary);
}

.cookie-settings:hover {
    background: rgba(46, 196, 182, 0.1);
}


.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--crisp-white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    color: var(--seafoam-primary);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--seafoam-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crisp-white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--burnt-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}


.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: var(--gray-200);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--seafoam-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--crisp-white);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.step-desc {
    color: var(--gray-600);
    font-size: 0.9375px;
}


.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-200);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    background: var(--crisp-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    font-size: 0.8125rem;
    color: var(--seafoam-primary);
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    color: var(--burnt-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link:hover {
    gap: 10px;
}


@media (max-width:1024px) {
    .hero-visual {
        right: -10%;
        width: 50%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width:768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--crisp-white);
        flex-direction: column;
        padding: 80px 32px;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-strong);
    }

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

    .mobile-toggle {
        display: flex;
        z-index: 100;
    }

    .mobile-toggle.active span {
        color: var(--burnt-orange-dark) !important;
    }

    .hero-section {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 48px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .section-pad {
        padding: 60px 0;
    }

    .about-visual {
        order: -1;
    }

    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 24px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cookie-consent-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .reviews-slider {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-step::after {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}