/* ========================================
   CSS CUSTOM PROPERTIES & RESET
   ======================================== */
:root {
    --bg: #FAF8F5;
    --text: #1A1817;
    --text-soft: #5C5956;
    --accent: #2B5EA7;
    --accent-light: #E8F0FA;
    --accent-dim: rgba(43, 94, 167, 0.08);
    --border: rgba(0, 0, 0, 0.06);
    --border-soft: rgba(0, 0, 0, 0.04);
    --surface: rgba(0, 0, 0, 0.03);
    --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.04), 0 2px 8px -2px rgba(0, 0, 0, 0.02);
    --shadow-nav: 0 4px 24px -8px rgba(0, 0, 0, 0.06);
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100dvh;
}

@media (max-width: 400px) {
    html { font-size: 15px; }
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Clash Display', 'Satoshi', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h1 { font-size: clamp(2.75rem, 6vw, 5.5rem); letter-spacing: -0.03em; line-height: 0.95; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p, li {
    max-width: 65ch;
    color: var(--text-soft);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 2rem;
}

@media (max-width: 768px) {
    .container { padding-inline: 1.25rem; }
}

.section {
    padding-block: clamp(4rem, 8vw, 8rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    background: var(--accent-dim);
    margin-bottom: 1.5rem;
}

.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ========================================
   DOUBLE-BEZEL CARD
   ======================================== */
.bezel-outer {
    background: var(--surface);
    padding: 2px;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
}

.bezel-inner {
    background: var(--bg);
    border-radius: calc(1.5rem - 2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), var(--shadow-card);
    padding: 2rem;
    height: 100%;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    transition: transform 160ms var(--ease-out);
    outline-offset: 4px;
    white-space: nowrap;
    min-height: 48px;
    min-width: 48px;
    justify-content: center;
}

.btn:active {
    transform: scale(0.97);
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.btn-primary {
    background: var(--accent);
    color: #FAF8F5;
}

.btn-primary:hover {
    filter: brightness(1.08);
}

.btn-primary .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: transform 200ms var(--ease-out);
}

.btn-primary:hover .icon-circle {
    transform: translateX(3px) translateY(-1px) scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.8125rem 1.75rem;
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.02);
}

.btn-ghost {
    padding: 0.5625rem 1.25rem;
    color: var(--text-soft);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 180ms var(--ease-out), background 180ms var(--ease-out);
}

.btn-ghost:hover {
    color: var(--text);
    background: rgba(0, 0, 0, 0.03);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding-top: 1.5rem;
    pointer-events: none;
}

.nav__inner {
    pointer-events: auto;
    margin-inline: auto;
    max-width: max-content;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 9999px;
    padding: 0.375rem;
    transition: box-shadow 300ms var(--ease-out);
    will-change: box-shadow;
}

.nav.scrolled .nav__inner {
    box-shadow: var(--shadow-nav);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Clash Display', 'Satoshi', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0.5rem 1.25rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.nav__logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    padding-inline: 0.5rem;
}

.nav__links .btn-ghost {
    border-radius: 9999px;
}

.nav__cta {
    padding-left: 0.25rem;
}

.nav__cta .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.75rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 110;
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 300ms var(--ease-out), opacity 200ms var(--ease-out);
}

.nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav__inner {
        max-width: calc(100% - 2rem);
        justify-content: space-between;
        border-radius: 9999px;
    }
    .nav__links { display: none; }
    .nav__cta { display: none; }
    .nav__hamburger { display: flex; }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 105;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    font-family: 'Clash Display', 'Satoshi', system-ui, -apple-system, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    transition: opacity 200ms var(--ease-out);
}

.mobile-menu a:hover {
    opacity: 0.6;
}

.mobile-menu .btn-primary {
    margin-top: 0.5rem;
    font-family: 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 1rem;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero__left {
    padding-left: 2rem;
}

.hero__heading {
    margin-bottom: 0.75rem;
}

.hero__sub {
    font-family: 'Clash Display', 'Satoshi', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero__body {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-soft);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text);
    padding: 0.8125rem 0;
    transition: color 180ms var(--ease-out);
}

.hero__phone:hover {
    color: var(--accent);
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    font-size: 0.75rem;
    color: var(--text-soft);
    font-weight: 500;
}

.hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.hero__trust span::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
}

.hero__right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 2rem;
}

.hero__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 480px;
}

.hero__visual svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 7rem;
        min-height: auto;
    }
    .hero__left { padding-left: 0; order: 1; }
    .hero__right {
        order: 0;
        padding-right: 0;
        max-width: 320px;
        margin-inline: auto;
    }
    .hero__visual { aspect-ratio: 1/1; max-width: 320px; }
}

/* ========================================
   SERVICES BENTO GRID
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
    margin-top: 3rem;
}

.services-grid > *:nth-child(1) { grid-column: 1; grid-row: 1; }
.services-grid > *:nth-child(2) { grid-column: 2; grid-row: 1; }
.services-grid > *:nth-child(3) { grid-column: 1; grid-row: 2; }
.services-grid > *:nth-child(4) { grid-column: 2; grid-row: 2; }
.services-grid > *:nth-child(5) { grid-column: 1; grid-row: 3; }
.services-grid > *:nth-child(6) { grid-column: 2; grid-row: 3; }

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .services-grid > *:nth-child(1),
    .services-grid > *:nth-child(2),
    .services-grid > *:nth-child(3),
    .services-grid > *:nth-child(4),
    .services-grid > *:nth-child(5),
    .services-grid > *:nth-child(6) {
        grid-column: 1;
        grid-row: auto;
    }
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: transform 350ms var(--ease-out), box-shadow 350ms var(--ease-out);
    cursor: default;
}

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

.service-card:hover .bezel-inner {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 28px 50px -20px rgba(0, 0, 0, 0.06), 0 2px 8px -2px rgba(0, 0, 0, 0.02);
}

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.service-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--text);
}

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-card__tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3125rem 0.75rem;
    border-radius: 9999px;
    background: var(--surface);
    color: var(--text-soft);
}

.service-card--cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-dim);
    border: 2px dashed var(--border);
    border-radius: 1.5rem;
}

.service-card--cta .bezel-inner {
    background: transparent;
    box-shadow: none;
}

/* ========================================
   TESTIMONIALS (Z-Axis Cascade)
   ======================================== */
.testimonials-stack {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 420px;
    margin-top: 3rem;
}

.testimonial-card {
    position: absolute;
    max-width: 420px;
    width: 100%;
    padding: 2.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: transform 350ms var(--ease-out);
}

.testimonial-card:nth-child(1) {
    transform: rotate(-2deg) translateX(-15%);
    z-index: 1;
}
.testimonial-card:nth-child(2) {
    transform: rotate(0deg) translateY(-10px);
    z-index: 3;
}
.testimonial-card:nth-child(3) {
    transform: rotate(2deg) translateX(15%);
    z-index: 2;
}

.testimonial-card:hover {
    transform: rotate(0deg) translateY(-4px) scale(1.01);
    z-index: 10;
}

.testimonial-card__stars {
    color: var(--accent);
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-card__quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card__author {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9375rem;
}

.testimonial-card__location {
    font-size: 0.8125rem;
    color: var(--text-soft);
}

@media (max-width: 768px) {
    .testimonials-stack {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        min-height: auto;
    }
    .testimonial-card {
        position: relative;
        transform: none !important;
        max-width: 100%;
    }
    .testimonial-card:nth-child(1),
    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3) {
        transform: none;
    }
}

/* ========================================
   TEAM / BEFORE-AFTER SPLIT
   ======================================== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.split-layout__text h3 {
    margin-bottom: 1rem;
}

.split-layout__text p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.split-layout__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.split-layout__stat-number {
    font-family: 'Clash Display', 'Satoshi', system-ui, -apple-system, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.split-layout__stat-label {
    font-size: 0.875rem;
    color: var(--text-soft);
    font-weight: 500;
}

.split-layout__visual {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--accent-dim);
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.split-layout__visual-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--accent);
    opacity: 0.6;
}

.split-layout__visual-inner i {
    font-size: 3rem;
}

.split-layout__visual-inner span {
    font-family: 'Clash Display', 'Satoshi', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .split-layout__stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   SERVICE AREAS
   ======================================== */
.areas-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.area-search { display: flex; align-items: center; gap: 0.5rem; max-width: 400px; margin: 0 auto 1.5rem; background: var(--bg); border: 1px solid var(--border); border-radius: 9999px; padding: 0.5rem 1rem; }
.area-search i { color: var(--text-soft); font-size: 1rem; flex-shrink: 0; }
.area-search input { border: none; background: none; font-family: inherit; font-size: 0.875rem; color: var(--text); width: 100%; outline: none; }
.area-search input::placeholder { color: var(--text-soft); opacity: 0.5; }
.areas-group { margin-bottom: 1.25rem; }
.areas-group__title { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-soft); margin-bottom: 0.5rem; padding-left: 0.25rem; }
.areas-group__pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.area-pill { display: inline-block; padding: 0.35rem 0.85rem; background: var(--bg); border: 1px solid var(--border); border-radius: 9999px; font-size: 0.8125rem; font-weight: 500; color: var(--text); text-decoration: none; transition: transform 160ms var(--ease-out), border-color 160ms var(--ease-out), background 160ms var(--ease-out); cursor: pointer; }
.area-pill:hover { transform: scale(1.03); border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
.area-pill--city { background: var(--accent-dim); border-color: transparent; font-weight: 600; }
.area-pill--city:hover { background: var(--accent-light); border-color: var(--accent); }

/* ========================================
   BLOG / RATGEBER
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    margin-top: 3rem;
}

.blog-card--featured {
    grid-column: 1;
    grid-row: 1 / 3;
}

.blog-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
    transition: transform 350ms var(--ease-out);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-2px);
}

.blog-card__image {
    aspect-ratio: 16/10;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    opacity: 0.5;
    overflow: hidden;
    position: relative;
}

.blog-card__image i {
    font-size: 3rem;
}

.blog-card__image svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.blog-card--featured .blog-card__image {
    aspect-ratio: 4/3;
}

.blog-card__content {
    padding: 1.5rem;
}

.blog-card__date {
    font-size: 0.75rem;
    color: var(--text-soft);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-card--featured .blog-card__title {
    font-size: 1.5rem;
}

.blog-card__excerpt {
    font-size: 0.875rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 0.75rem;
    transition: gap 200ms var(--ease-out);
}

.blog-card__read-more:hover {
    gap: 0.625rem;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .blog-card--featured {
        grid-column: 1;
        grid-row: auto;
    }
}

/* ========================================
   FINAL CTA
   ======================================== */
.cta-section {
    background: var(--accent-dim);
    text-align: center;
    padding-block: clamp(5rem, 10vw, 8rem);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(43, 94, 167, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section__question {
    font-family: 'Clash Display', 'Satoshi', system-ui, -apple-system, sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.cta-section__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 3rem;
    font-size: 0.875rem;
    color: var(--text-soft);
    position: relative;
    z-index: 1;
}

.cta-section__info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1E1C1B;
    color: rgba(250, 248, 245, 0.8);
    padding-block: 4rem 3rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand-name {
    font-family: 'Clash Display', 'Satoshi', system-ui, -apple-system, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FAF8F5;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.footer__brand-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    opacity: 0.7;
}

.footer__col-title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FAF8F5;
    margin-bottom: 1.25rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__links a {
    font-size: 0.875rem;
    opacity: 0.7;
    transition: opacity 180ms var(--ease-out);
}

.footer__links a:hover {
    opacity: 1;
}

.footer__bottom {
    border-top: 1px solid rgba(250, 248, 245, 0.08);
    padding-top: 2rem;
    font-size: 0.8125rem;
    opacity: 0.5;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}
@media (max-width: 480px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
    transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out), filter 800ms var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ========================================
   PREFERS-REDUCED-MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }
    html { scroll-behavior: auto; }
}

/* ========================================
   FOCUS-VISIBLE GLOBAL
   ======================================== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ========================================
   PHOSPHOR ICON FIXES
   ======================================== */
.ph {
    font-size: inherit;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}
/* ========================================
   SKIP LINK (a11y)
   ======================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 1000;
    display: inline-block;
    padding: 0.75rem 1.25rem;
    font-family: 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FAF8F5;
    background: var(--accent);
    border-radius: 9999px;
    text-decoration: none;
    transition: top 200ms var(--ease-out);
}
.skip-link:focus {
    top: 1rem;
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

/* ========================================
   HERO TAGLINE
   ======================================== */
.hero__tagline {
    font-family: 'Clash Display', 'Satoshi', system-ui, -apple-system, sans-serif;
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

/* ========================================
   GOOGLE REVIEWS BADGE
   ======================================== */
.hero__reviews {
    margin-top: 1rem;
}
.hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-size: 0.8125rem;
    color: var(--text-soft);
}
.hero__stars {
    color: #F5A623;
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.hero__rating-text {
    white-space: nowrap;
    font-weight: 500;
}

/* ========================================
   CONTACT PERSON AVATAR
   ======================================== */
.hero__contact-person {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 0.5rem;
}
.contact-avatar {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}
.contact-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}
.contact-name {
    font-size: 0.8125rem;
    color: var(--text-soft);
    font-weight: 500;
}
