/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #1e2024;
    --color-surface: #262830;
    --color-text: #c8cad0;
    --color-text-muted: #7d818a;
    --color-primary: #c8cad0;
    --color-accent: #8a9bae;
    --color-accent-light: rgba(138, 155, 174, 0.10);
    --color-border: #33363e;
    --color-hero-bg: #16181c;
    --color-hero-text: #d0d2d8;
    --color-nav-bg: rgba(30, 32, 36, 0.90);
    --color-nav-mobile-bg: rgba(30, 32, 36, 0.98);
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-accent: 'DM Sans', sans-serif;
    --radius: 8px;
    --radius-sm: 6px;
    --shadow: 0 2px 8px rgba(255, 255, 255, 0.13);
    --shadow-lg: 0 8px 24px rgba(255, 255, 255, 0.17);
    --transition: 0.3s ease;
}

[data-theme="light"] {
    --color-bg: #cdced1;
    --color-surface: #d5d6d8;
    --color-text: #3a3d44;
    --color-text-muted: #5e6168;
    --color-primary: #3a3d44;
    --color-accent: #4e6380;
    --color-accent-light: rgba(78, 99, 128, 0.12);
    --color-border: #b8bbc0;
    --color-hero-bg: #c0c2c6;
    --color-hero-text: #3a3d44;
    --color-nav-bg: rgba(205, 206, 209, 0.92);
    --color-nav-mobile-bg: rgba(205, 206, 209, 0.98);
    --shadow: 0 2px 8px rgba(58, 61, 68, 0.18);
    --shadow-lg: 0 8px 24px rgba(58, 61, 68, 0.22);
}

html {
    scroll-padding-top: 88px;
}

/* Anchor navigation: subtle highlight pulse on target section */
@keyframes sectionArrive {
    0%   { box-shadow: inset 0 0 0 0 var(--color-accent-light); }
    40%  { box-shadow: inset 0 0 40px 0 var(--color-accent-light); }
    100% { box-shadow: inset 0 0 0 0 transparent; }
}

.section-arrive {
    animation: sectionArrive 0.6s ease-out;
}

/* Page-exit fade for navigating to other pages */
body.page-exit {
    opacity: 0;
    transition: opacity 0.15s ease;
}

body.page-exit-home {
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background var(--transition), color var(--transition);
}

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

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--color-nav-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--color-border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    max-width: 280px;
    height: auto;
    display: block;
}

.nav-logo .logo-light {
    display: none;
}

[data-theme="light"] .nav-logo .logo-dark {
    display: none;
}

[data-theme="light"] .nav-logo .logo-light {
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    transition: opacity 0.3s ease;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), text-shadow var(--transition), transform var(--transition);
    display: inline-block;
}

.nav-links a:hover {
    color: var(--color-accent);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.06);
    transform: scale(1.06);
}

[data-theme="light"] .nav-links a:hover {
    text-shadow: 0 0 8px rgba(58, 61, 68, 0.06);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Texture Overlays ===== */
.hero,
.about,
.services,
.blog-hero,
.shop-hero,
.legal-hero {
    position: relative;
}

.hero::after,
.about::after,
.services::after,
.blog-hero::after,
.shop-hero::after,
.legal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

.hero > *,
.about > *,
.services > *,
.blog-hero > *,
.shop-hero > *,
.legal-hero > * {
    position: relative;
    z-index: 2;
}

/* Hero: Diagonal lines grain */
.hero::after {
    background-image:
        repeating-linear-gradient(
            -55deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.04) 3px,
            rgba(255, 255, 255, 0.04) 5px
        );
    opacity: 0.8;
}

/* Hero grain overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    opacity: 0.14;
}

/* About: Subtle noise */
.about::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.08;
    mix-blend-mode: soft-light;
}

/* Services: Paper texture */
.services::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 250px 250px;
    opacity: 0.10;
    mix-blend-mode: soft-light;
}

/* Blog/Shop hero: Same grain as main hero */
.blog-hero::after,
.shop-hero::after,
.legal-hero::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.12;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    color: var(--color-hero-text);
    padding: 120px 24px 80px;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Hero entrance animation on page load */
@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline,
.hero-description,
.hero-buttons {
    opacity: 0;
    animation: heroEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tagline { animation-delay: 0.1s; }
.hero-description { animation-delay: 0.4s; }
.hero-buttons { animation-delay: 0.55s; }

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    padding-left: 0.7em;
    margin-bottom: 12px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.0;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-text);
    white-space: nowrap;
    overflow: visible;
    width: fit-content;
}

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

/* Soft wave animation for hero title characters */
@keyframes heroWave {
    0% {
        opacity: 0;
        transform: translateY(0.12em) scale(1, 0.95);
    }
    12% {
        opacity: 1;
        transform: translateY(-0.04em) scale(1, 1.02);
    }
    21% {
        transform: translateY(0.015em) scale(1, 0.995);
    }
    28% {
        transform: translateY(-0.008em) scale(1, 1.005);
    }
    35% {
        transform: translateY(0) scale(1, 1);
    }
    45% {
        transform: translateY(-0.004em);
    }
    56% {
        transform: translateY(0.002em);
    }
    67% {
        transform: translateY(-0.0015em);
    }
    78% {
        transform: translateY(0.0008em);
    }
    89% {
        transform: translateY(-0.0003em);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1, 1);
    }
}

.hero-char {
    display: inline-block;
    opacity: 0;
    animation: heroWave 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-surface);
    font-weight: 600;
}

.btn-primary:hover {
    filter: brightness(0.9);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-full.btn-primary:hover {
    box-shadow: none;
    transform: scale(1.03);
}

.hero-buttons .btn:hover {
    box-shadow: none;
    transform: scale(1.06);
}

.btn-secondary {
    background: color-mix(in srgb, var(--color-surface), white 10%);
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
}

[data-theme="light"] .btn-secondary {
    background: color-mix(in srgb, var(--color-surface), black 20%);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    background: var(--color-accent-light);
}

.btn-full {
    width: 100%;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 600;
    font-style: italic;
    color: var(--color-text);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-description {
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* ===== About ===== */
.about {
    padding: 100px 0;
}

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

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-cta {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform var(--transition);
}

.about-cta:hover {
    transform: scale(1.06);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-accent-light);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid rgba(138, 155, 174, 0.18);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    padding: 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: box-shadow var(--transition), transform var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow);
    transform: scale(1.03);
}

.stat-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
    display: block;
    color: var(--color-accent);
    stroke: currentColor;
    stroke-width: 1.8;
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ===== Services ===== */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    padding: 36px 28px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow);
    transform: scale(1.03);
}
[data-theme="light"] .service-card:hover {
    box-shadow: 0 2px 8px rgba(58, 61, 68, 0.28);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-card {
    cursor: pointer;
}

.service-summary {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    text-align: left;
}

.service-details {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    opacity: 0;
    transition: grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.service-details p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.service-details > div {
    min-height: 0;
}

.service-card.active .service-details > div {
    min-height: var(--details-height, auto);
}

.service-card.active .service-details {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 12px;
    transition: grid-template-rows 0.5s cubic-bezier(0.33, 0, 0.2, 1), opacity 0.4s ease 0.12s, margin 0.5s cubic-bezier(0.33, 0, 0.2, 1);
}

.service-toggle {
    display: grid;
    grid-template-rows: 1fr;
    margin-top: auto;
    text-align: center;
    color: var(--color-text);
    opacity: 0.5;
    transition: opacity 0.3s ease, grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s ease;
    padding-top: 12px;
    overflow: hidden;
}

.service-toggle > svg {
    min-height: 0;
    margin: 0 auto;
}

.service-card:hover .service-toggle {
    opacity: 0.7;
}

.service-card.active .service-toggle {
    grid-template-rows: 0fr;
    opacity: 0;
    padding-top: 0;
}

.btn-service {
    display: inline-block;
    font-size: 0.85rem;
    padding: 10px 22px;
}

/* Dark mode: reduce service button glow, add glow to all primary buttons */
:root .btn-primary {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.10);
}
:root .btn-primary:hover {
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.14);
}
:root .btn-service.btn-primary {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
}
:root .btn-service.btn-primary:hover {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .btn-primary,
[data-theme="light"] .btn-primary:hover,
[data-theme="light"] .btn-service.btn-primary,
[data-theme="light"] .btn-service.btn-primary:hover {
    box-shadow: none;
}

/* ===== Portfolio ===== */
.portfolio {
    padding: 100px 0;
}

/* Carousel */
.carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-track-wrapper {
    overflow: hidden;
    border-radius: var(--radius);
    mask-image: linear-gradient(to right, black 0%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 96%, transparent);
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
    min-width: calc((100% - 60px) / 3.5);
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: transform var(--transition);
}

.carousel-slide:hover {
    transform: scale(1.03);
}

.carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 2;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--color-accent);
    color: var(--color-surface);
}

.carousel-next { right: 8px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: background var(--transition), width var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-accent);
    width: 48px;
}

.portfolio-placeholder {
    background: var(--color-bg);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .carousel-slide {
        min-width: calc((100% - 20px) / 1.3);
    }
    .carousel-next { right: 4px; }
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

.portfolio-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: box-shadow var(--transition), transform var(--transition);
    cursor: pointer;
}

.portfolio-item:hover {
    box-shadow: var(--shadow);
    transform: scale(1.03);
}

.portfolio-image {
    position: relative;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    min-height: 280px;
    overflow: hidden;
}

.portfolio-image img {
    max-width: 80%;
    max-height: 240px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 20, 22, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    padding: 10px 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
}

.portfolio-info {
    padding: 24px;
}

.portfolio-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.portfolio-full {
    display: none;
}

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition);
    z-index: 201;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 201;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity var(--transition);
    padding: 16px;
    line-height: 1;
}

.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-counter {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.lightbox-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.lightbox-info h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: 8px;
}

.lightbox-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    color: var(--color-text);
    transition: border-color var(--transition);
    outline: none;
}

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

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

/* ===== Form Validation ===== */
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #e05555;
}

.form-error {
    font-size: 0.78rem;
    color: #e05555;
    margin-top: 4px;
    display: none;
}

.form-error.visible {
    display: block;
}

.disposable-warning {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #e05555;
    margin-top: 5px;
}

.disposable-warning.visible {
    display: flex;
}

.btn-disposable {
    padding: 2px 12px;
    font-size: 0.78rem;
    border-radius: 4px;
    border: 1px solid #e05555;
    cursor: pointer;
    background: transparent;
    color: #e05555;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.btn-disposable:hover {
    background: #e05555;
    color: #fff;
}

.btn-full:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* ===== Form Success ===== */
.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
    max-width: 600px;
    margin: 0 auto;
}

.form-success.visible {
    display: block;
    animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-success-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.success-circle {
    transform-origin: center;
}

.form-success.visible .success-circle {
    animation: drawCircle 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.2s forwards,
               spinCircle 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.2s forwards;
}

.form-success.visible .success-check {
    animation: drawCheck 0.35s cubic-bezier(0.65, 0, 0.35, 1) 0.7s forwards;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes spinCircle {
    from { transform: rotate(-90deg); }
    to { transform: rotate(270deg); }
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Footer ===== */
.footer {
    background: transparent;
    color: var(--color-text-muted);
    padding: 48px 0 24px;
    text-align: center;
}

/* ===== Language Switcher ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    flex-shrink: 0;
}

.lang-switcher a {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color var(--transition);
}

.lang-switcher a:hover {
    color: var(--color-accent);
}

.lang-switcher .lang-active {
    color: var(--color-accent);
    font-weight: 700;
}

.lang-divider {
    color: var(--color-border);
    font-size: 0.75rem;
    user-select: none;
}

.lang-switcher-mobile {
    display: none;
}

.footer-lang {
    display: inline-flex;
    gap: 6px;
    margin-left: 8px;
}

.footer-lang a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-lang a:hover {
    color: var(--color-accent);
}

.footer-lang .lang-active {
    color: var(--color-accent);
    font-weight: 600;
}

.footer-lang .lang-divider {
    color: var(--color-border);
    font-size: 0.8rem;
}

/* ===== Theme Toggle ===== */
.theme-toggle {
    background: var(--color-text-muted);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-bg);
    overflow: hidden;
    position: relative;
    transition: all var(--transition);
    flex-shrink: 0;
}

.theme-toggle:hover {
    opacity: 0.8;
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.theme-toggle .icon-sun {
    transform: translateY(0);
    opacity: 1;
}

.theme-toggle .icon-moon {
    transform: translateY(40px);
    opacity: 0;
}

[data-theme="light"] .theme-toggle .icon-sun {
    transform: translateY(-40px);
    opacity: 0;
}

[data-theme="light"] .theme-toggle .icon-moon {
    transform: translateY(0);
    opacity: 1;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-hero-text);
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.85rem;
    margin-bottom: 32px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.8rem;
}

/* ===== Nav Active Link ===== */
.nav-links a.nav-active {
    color: var(--color-accent);
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 90;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.scroll-top.visible {
    opacity: 0.7;
    transform: translateY(0);
    pointer-events: all;
}

.scroll-top:hover {
    opacity: 1;
    background: var(--color-accent);
    color: var(--color-surface);
}

/* ===== Blog ===== */
.blog-hero {
    padding: 140px 0 60px;
    background: transparent;
    color: var(--color-hero-text);
}

.blog-hero .section-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--color-text);
}

.blog-posts {
    padding: 60px 0 100px;
}

.blog-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 36px 32px;
    margin-bottom: 32px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow);
    transform: scale(1.03);
}

.blog-date {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
}

.blog-card p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.blog-card p:last-child {
    margin-bottom: 0;
}

.blog-image {
    margin: 20px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-border), var(--color-bg));
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

.blog-audio {
    margin: 20px 0;
}

.blog-audio audio {
    width: 100%;
    border-radius: var(--radius-sm);
}

/* Podcast title in hero */
.podcast-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--color-text);
    line-height: 1.1;
}

/* RSS subscribe button */
.rss-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    background: var(--color-accent-light);
    border: 1.5px solid var(--color-accent);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
    margin-top: 20px;
}

.rss-button:hover {
    background: var(--color-accent);
    color: var(--color-surface);
}

.rss-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Episode card variant */
.blog-card--episode {
    border-left: 3px solid var(--color-accent);
}

.episode-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.episode-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: 20px;
    border: 1px solid rgba(138, 155, 174, 0.18);
}

/* ===== Shop ===== */
.shop-hero {
    padding: 140px 0 60px;
    background: transparent;
    color: var(--color-hero-text);
}

.shop-hero .section-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--color-text);
}

.shop-products {
    padding: 60px 0 100px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.shop-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.shop-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

.shop-image {
    height: 180px;
    background: linear-gradient(135deg, var(--color-border), var(--color-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-border);
}

.shop-image span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    opacity: 0.5;
}

.shop-info {
    padding: 24px;
}

.shop-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.shop-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.shop-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.shop-options {
    margin-bottom: 16px;
}

.shop-options label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-text);
}

.shop-options select {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    color: var(--color-text);
    outline: none;
    transition: border-color var(--transition);
    cursor: pointer;
}

.shop-options select:focus {
    border-color: var(--color-accent);
}

.shop-btn {
    width: 100%;
    text-align: center;
}

/* ===== Legal / Impressum ===== */
.legal-hero {
    padding: 140px 0 60px;
    background: transparent;
    color: var(--color-hero-text);
}

.legal-hero .section-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--color-text);
}

.legal-content {
    padding: 60px 0 100px;
}

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

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    color: var(--color-text);
}

.legal-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.legal-block a {
    color: var(--color-accent);
    text-decoration: none;
    transition: opacity var(--transition);
}

.legal-block a:hover {
    opacity: 0.7;
}

/* ===== Footer Links ===== */
.footer-bottom a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--color-accent);
}

.footer-divider {
    margin: 0 6px;
    opacity: 0.4;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 360px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 300;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hiding {
    transform: translateY(120%);
    opacity: 0;
}

.cookie-banner p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 14px;
}

.cookie-btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 8px 20px;
    background: var(--color-accent);
    color: var(--color-hero-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: opacity var(--transition);
}

.cookie-btn:hover {
    opacity: 0.85;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.arrived {
    transition: none;
}

/* ===== Righteous Typography (global) ===== */
.about-skills {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 20px;
    letter-spacing: 0.02em;
}

.nav-links a {
    font-family: 'Righteous', cursive;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.nav-logo img {
    max-width: 280px;
    height: auto;
}

.btn {
    font-family: 'Righteous', cursive;
    font-weight: 400;
    letter-spacing: 0.03em;
    border-radius: 4px;
}

.footer-logo {
    font-family: 'Righteous', cursive;
    font-weight: 400;
}

/* ===== Index Page: Continuous Page Gradient ===== */
.page-index {
    position: relative;
}

.page-index > .page-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            var(--color-hero-bg) 0%,
            color-mix(in srgb, var(--color-hero-bg) 60%, var(--color-bg)) 8%,
            var(--color-bg) 15%,
            color-mix(in srgb, var(--color-bg) 50%, var(--color-surface)) 25%,
            var(--color-surface) 35%,
            color-mix(in srgb, var(--color-surface) 50%, var(--color-bg)) 45%,
            var(--color-bg) 55%,
            color-mix(in srgb, var(--color-bg) 50%, var(--color-surface)) 65%,
            var(--color-surface) 75%,
            color-mix(in srgb, var(--color-surface) 50%, var(--color-bg)) 85%,
            var(--color-bg) 92%,
            var(--color-hero-bg) 100%
        );
}

/* ===== Index Page: Global Grain Overlay ===== */
.page-index::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    opacity: 0.08;
    mix-blend-mode: overlay;
}

/* ===== Index Page: Hero Depth & Vignette ===== */
.page-index .hero {
    align-items: flex-start;
    padding-top: 28vh;
    background:
        radial-gradient(ellipse at 25% 40%, rgba(138, 155, 174, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(138, 155, 174, 0.03) 0%, transparent 50%);
}

.page-index .hero::before {
    background-image:
        radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.35) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 100% 100%, 180px 180px;
    opacity: 0.15;
}

/* ===== Index Page: Section Flow ===== */

/* ===== Index Page: Portfolio Depth ===== */
.page-index .portfolio {
    color: var(--color-text);
}

.page-index .portfolio-item {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"),
        var(--color-surface);
    background-size: 128px 128px, auto;
}

.page-index .portfolio-item:hover {
    box-shadow: var(--shadow);
}

/* ===== Responsive: Navbar + Lang-Switcher ===== */
@media (max-width: 1024px) {
    .lang-switcher {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: var(--color-nav-mobile-bg);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
        visibility: visible;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .theme-toggle {
        margin-left: auto;
    }

    .nav-toggle {
        margin-left: 16px;
        margin-right: 8px;
    }

    .lang-switcher-mobile {
        display: flex !important;
        justify-content: center;
        gap: 6px;
        padding-top: 12px;
        border-top: 1px solid var(--color-border);
        margin-top: 8px;
    }
}

.theme-toggle-mobile {
    display: none;
}

@media (max-width: 400px) {
    .nav-container > .theme-toggle {
        display: none;
    }

    .nav-toggle {
        margin-left: auto;
        margin-right: 12px;
    }

    .theme-toggle-mobile {
        display: flex !important;
        justify-content: center;
        align-items: center;
        padding-top: 12px;
        border-top: 1px solid var(--color-border);
    }

    .theme-toggle-mobile .theme-toggle {
        margin-left: 0;
        margin-top: 8px;
        list-style: none;
    }
}

/* ===== Responsive: Layout ===== */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 110px 20px 48px;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 16px;
    }

    .hero-tagline {
        margin-bottom: 16px;
        padding-left: 0;
    }

    .hero-description {
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .about,
    .services,
    .portfolio,
    .contact {
        padding: 56px 0;
    }

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

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

    .service-card {
        padding: 20px 18px;
    }

    .service-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 12px;
    }

    .service-icon svg {
        width: 22px;
        height: 22px;
    }

    .service-card h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .service-summary {
        font-size: 0.82rem;
    }

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

    .btn {
        text-align: center;
    }

    .blog-card {
        padding: 24px 20px;
    }

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

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

@media (min-width: 769px) and (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .carousel-track {
        transition: none !important;
    }
    .hero-char {
        opacity: 1 !important;
        animation: none !important;
    }
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
    .scroll-top {
        transition: none;
    }
}
