/* ================================================================
   FONALAK KOROMSZALON - Knitted / Woven Textile Aesthetic
   ================================================================ */

/* --- CSS Variables --- */
:root {
    --primary: #8b4513;
    --primary-dark: #6b3410;
    --primary-light: #a0522d;
    --secondary: #fdf5e6;
    --secondary-dark: #f5e6cc;
    --accent: #cd5c5c;
    --accent-dark: #b04848;
    --accent-light: #e08080;
    --forest: #2d5a27;
    --forest-light: #3d7a35;
    --cream: #faf0e0;
    --warm-white: #fff8f0;
    --chocolate: #3e1f0d;
    --dusty-rose: #c9928e;
    --text-dark: #2c1810;
    --text-body: #4a3228;
    --text-light: #7a6055;
    --text-on-dark: #fdf5e6;

    --font-display: 'Bubblegum Sans', cursive;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Cabin', 'Segoe UI', sans-serif;

    --shadow-warm: 0 4px 20px rgba(139, 69, 19, 0.15);
    --shadow-warm-lg: 0 8px 40px rgba(139, 69, 19, 0.2);
    --shadow-fabric: 0 2px 8px rgba(139, 69, 19, 0.1), 0 0 0 3px rgba(139, 69, 19, 0.05);

    --border-stitch: 3px dashed var(--primary);
    --border-stitch-light: 2px dashed var(--dusty-rose);
    --border-stitch-accent: 2px dashed var(--accent);

    --radius-soft: 16px;
    --radius-card: 20px;
    --radius-btn: 12px;
    --radius-round: 50%;

    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--secondary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Knit pattern background for body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(139, 69, 19, 0.3) 8px,
            rgba(139, 69, 19, 0.3) 9px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 8px,
            rgba(139, 69, 19, 0.3) 8px,
            rgba(139, 69, 19, 0.3) 9px
        );
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
}

ul {
    list-style: none;
}

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

/* --- Utility --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-title.light {
    color: var(--secondary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: var(--dusty-rose);
}

.yarn-decoration {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

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

/* --- Knit Pattern Backgrounds --- */
.knit-pattern-bg {
    background-image:
        repeating-conic-gradient(
            rgba(139, 69, 19, 0.06) 0% 25%,
            transparent 0% 50%
        );
    background-size: 12px 12px;
}

/* Cross-stitch pattern */
.cross-stitch-bg {
    background-image:
        radial-gradient(circle, rgba(139, 69, 19, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(205, 92, 92, 0.05) 1px, transparent 1px);
    background-size: 16px 16px, 16px 16px;
    background-position: 0 0, 8px 8px;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--warm-white);
    border-top: var(--border-stitch);
    box-shadow: 0 -4px 30px rgba(139, 69, 19, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

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

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon-wrap {
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-link {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: underline;
}

/* --- Buttons --- */
.btn-knit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-btn);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-knit::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px dashed rgba(255,255,255,0.3);
    border-radius: calc(var(--radius-btn) - 3px);
    pointer-events: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border: 3px solid var(--primary-dark);
    box-shadow: 0 4px 0 var(--primary-dark), var(--shadow-warm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--chocolate), var(--shadow-warm-lg);
    color: var(--secondary);
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 3px solid var(--primary);
}

.btn-secondary::before {
    border-color: rgba(139, 69, 19, 0.2);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-card {
    background: var(--accent);
    color: var(--secondary);
    border: 2px solid var(--accent-dark);
    padding: 10px 20px;
    font-size: 0.9rem;
    box-shadow: 0 3px 0 var(--accent-dark);
}

.btn-card:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 0 #8b3030, var(--shadow-warm);
    color: var(--secondary);
}

.btn-accept {
    background: var(--forest);
    color: var(--secondary);
    border: 2px solid var(--forest-light);
    padding: 10px 24px;
}

.btn-accept:hover {
    background: var(--forest-light);
    color: var(--secondary);
}

.btn-decline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--dusty-rose);
    padding: 10px 24px;
}

.btn-decline:hover {
    background: var(--dusty-rose);
    color: var(--text-dark);
}

.btn-submit {
    background: var(--primary);
    color: var(--secondary);
    border: 3px solid var(--primary-dark);
    padding: 14px 40px;
    font-size: 1.05rem;
    width: 100%;
    box-shadow: 0 4px 0 var(--primary-dark);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--chocolate), var(--shadow-warm-lg);
    color: var(--secondary);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary);
    transition: all var(--transition-smooth);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(62, 31, 13, 0.3);
}

.header-yarn-top,
.header-yarn-bottom {
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--accent) 0px,
        var(--accent) 8px,
        transparent 8px,
        transparent 12px,
        var(--dusty-rose) 12px,
        var(--dusty-rose) 20px,
        transparent 20px,
        transparent 24px
    );
}

.header-yarn-bottom {
    background: repeating-linear-gradient(
        90deg,
        var(--forest) 0px,
        var(--forest) 6px,
        transparent 6px,
        transparent 10px,
        var(--primary-dark) 10px,
        var(--primary-dark) 16px,
        transparent 16px,
        transparent 20px
    );
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--secondary);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--secondary);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--secondary);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: var(--radius-btn);
    transition: all var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
    background: rgba(253, 245, 230, 0.1);
}

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

.nav-link.nav-cta {
    background: var(--accent);
    color: var(--secondary);
    border: 2px dashed rgba(255,255,255,0.3);
    margin-left: 8px;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--accent-dark);
    color: var(--secondary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 24px 60px;
    background:
        linear-gradient(135deg, var(--cream) 0%, var(--secondary-dark) 50%, var(--warm-white) 100%);
    overflow: hidden;
}

/* Knitted texture overlay */
.knit-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 3px,
            rgba(139, 69, 19, 0.5) 3px,
            rgba(139, 69, 19, 0.5) 4px,
            transparent 4px,
            transparent 7px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 3px,
            rgba(139, 69, 19, 0.3) 3px,
            rgba(139, 69, 19, 0.3) 4px,
            transparent 4px,
            transparent 7px
        ),
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 10px,
            rgba(205, 92, 92, 0.15) 10px,
            rgba(205, 92, 92, 0.15) 11px,
            transparent 11px,
            transparent 21px
        );
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-wrap {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.3s forwards;
}

.stitch-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.stitch-dash {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--accent) 0px,
        var(--accent) 4px,
        transparent 4px,
        transparent 7px
    );
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line-2 {
    color: var(--accent);
    position: relative;
}

.title-line-2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--accent) 0px,
        var(--accent) 6px,
        transparent 6px,
        transparent 10px
    );
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 36px;
    max-width: 480px;
}

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

/* Hero Image */
.hero-image-wrap {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-img-frame {
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 4px dashed var(--primary);
    box-shadow: var(--shadow-warm-lg);
    position: relative;
    background: var(--cream);
    padding: 6px;
}

.hero-img-frame img {
    border-radius: calc(var(--radius-card) - 8px);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent);
    color: var(--secondary);
    padding: 16px 24px;
    border-radius: var(--radius-card);
    border: 3px dashed rgba(255,255,255,0.4);
    box-shadow: var(--shadow-warm-lg);
    text-align: center;
    z-index: 2;
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
}

.badge-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Hero scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    opacity: 0.5;
    animation: bounceDown 2s infinite;
    z-index: 1;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* --- Stats Bar --- */
.stats-bar {
    background: var(--primary);
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 6px,
            rgba(253, 245, 230, 0.5) 6px,
            rgba(253, 245, 230, 0.5) 7px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 6px,
            rgba(253, 245, 230, 0.3) 6px,
            rgba(253, 245, 230, 0.3) 7px
        );
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--secondary);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    display: inline;
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent-light);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--dusty-rose);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: repeating-linear-gradient(
        180deg,
        var(--dusty-rose) 0px,
        var(--dusty-rose) 4px,
        transparent 4px,
        transparent 8px
    );
    opacity: 0.5;
}

/* --- Services Section --- */
.services {
    padding: 100px 0;
    position: relative;
    background:
        radial-gradient(circle at 10% 20%, rgba(205, 92, 92, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(45, 90, 39, 0.04) 0%, transparent 50%),
        var(--secondary);
}

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

.service-card {
    background: var(--warm-white);
    border: var(--border-stitch);
    border-radius: var(--radius-card);
    padding: 36px 28px 28px;
    position: relative;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-fabric);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-card);
    opacity: 0;
    background-image:
        radial-gradient(circle, rgba(139, 69, 19, 0.04) 1px, transparent 1px),
        radial-gradient(circle, rgba(205, 92, 92, 0.03) 1px, transparent 1px);
    background-size: 12px 12px, 12px 12px;
    background-position: 0 0, 6px 6px;
    transition: opacity var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-warm-lg);
    border-color: var(--accent);
}

.service-card:hover::before {
    opacity: 1;
}

/* Stitch corners */
.card-stitch-corner {
    position: absolute;
    width: 16px;
    height: 16px;
}

.card-stitch-corner::before,
.card-stitch-corner::after {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 1px;
}

.card-stitch-corner.top-left { top: 8px; left: 8px; }
.card-stitch-corner.top-right { top: 8px; right: 8px; }
.card-stitch-corner.bottom-left { bottom: 8px; left: 8px; }
.card-stitch-corner.bottom-right { bottom: 8px; right: 8px; }

.card-stitch-corner::before {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.card-stitch-corner::after {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border: 2px dashed var(--dusty-rose);
    border-radius: var(--radius-soft);
    margin-bottom: 20px;
    transition: all var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--secondary-dark);
    border-color: var(--accent);
    transform: scale(1.05);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-features {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-features li {
    font-size: 0.88rem;
    color: var(--text-body);
    padding: 4px 0 4px 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    transform: translateY(-50%) rotate(45deg);
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: var(--border-stitch-light);
    position: relative;
    z-index: 1;
}

.price-from {
    font-size: 0.85rem;
    color: var(--text-light);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary);
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    background:
        linear-gradient(180deg, var(--cream) 0%, var(--secondary) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(
            60deg,
            transparent 0px,
            transparent 20px,
            rgba(139, 69, 19, 0.3) 20px,
            rgba(139, 69, 19, 0.3) 21px
        ),
        repeating-linear-gradient(
            -60deg,
            transparent 0px,
            transparent 20px,
            rgba(139, 69, 19, 0.3) 20px,
            rgba(139, 69, 19, 0.3) 21px
        );
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 4px dashed var(--primary);
    box-shadow: var(--shadow-warm-lg);
    padding: 5px;
    background: var(--warm-white);
}

.about-img-main img {
    border-radius: calc(var(--radius-card) - 7px);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    border-radius: var(--radius-soft);
    overflow: hidden;
    border: 3px dashed var(--accent);
    box-shadow: var(--shadow-warm);
    padding: 4px;
    background: var(--warm-white);
    z-index: 2;
}

.about-img-secondary img {
    border-radius: calc(var(--radius-soft) - 5px);
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-yarn-deco {
    position: absolute;
    top: -20px;
    left: -30px;
    opacity: 0.3;
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 16px;
}

.about-features {
    margin: 30px 0;
    display: grid;
    gap: 12px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 90, 39, 0.08);
    border-radius: 8px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--warm-white);
    padding: 10px 16px;
    border-radius: var(--radius-btn);
    border: var(--border-stitch-light);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    box-shadow: var(--shadow-fabric);
}

/* --- Case Studies --- */
.case-studies {
    padding: 100px 0;
    background: var(--secondary);
}

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

.case-card {
    background: var(--warm-white);
    border: var(--border-stitch);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-fabric);
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm-lg);
}

.case-header {
    background:
        linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 24px;
    color: var(--secondary);
    position: relative;
}

.case-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--accent) 0px,
        var(--accent) 6px,
        transparent 6px,
        transparent 10px
    );
}

.case-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(253, 245, 230, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    border: 1px dashed rgba(253, 245, 230, 0.3);
}

.case-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--secondary);
}

.case-body {
    padding: 24px;
}

.case-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 16px;
}

.case-result {
    background: var(--cream);
    padding: 16px;
    border-radius: var(--radius-soft);
    border-left: 4px solid var(--forest);
}

.result-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--forest);
    margin-bottom: 4px;
}

.case-result span {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- Team Section --- */
.team {
    padding: 100px 0;
    background:
        linear-gradient(180deg, var(--secondary) 0%, var(--cream) 100%);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image:
        radial-gradient(circle, rgba(139, 69, 19, 0.4) 1px, transparent 1px),
        radial-gradient(circle, rgba(205, 92, 92, 0.3) 1px, transparent 1px);
    background-size: 20px 20px, 20px 20px;
    background-position: 0 0, 10px 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.team-card {
    background: var(--warm-white);
    border: var(--border-stitch-light);
    border-radius: var(--radius-card);
    padding: 30px 20px;
    text-align: center;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-fabric);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-warm-lg);
    border-color: var(--accent);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Gallery Section --- */
.gallery {
    padding: 100px 0;
    background: var(--secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-soft);
    overflow: hidden;
    border: 3px dashed var(--dusty-rose);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.gallery-item:hover {
    border-color: var(--accent);
    transform: scale(1.02);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(62, 31, 13, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

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

.gallery-overlay span {
    font-family: var(--font-display);
    color: var(--secondary);
    font-size: 1rem;
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

/* --- Testimonials Section --- */
.testimonials {
    padding: 100px 0;
    background:
        linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 5px,
            rgba(253, 245, 230, 0.4) 5px,
            rgba(253, 245, 230, 0.4) 6px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 5px,
            rgba(253, 245, 230, 0.3) 5px,
            rgba(253, 245, 230, 0.3) 6px
        );
}

.testimonials-slider {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 40px;
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.author-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--secondary);
}

.author-detail {
    font-size: 0.85rem;
    color: var(--dusty-rose);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    border: 2px dashed var(--dusty-rose);
    color: var(--secondary);
    transition: all var(--transition-smooth);
    background: rgba(253, 245, 230, 0.1);
}

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

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    border: 2px solid var(--dusty-rose);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-smooth);
    transform: rotate(45deg);
}

.slider-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(45deg) scale(1.2);
}

/* --- Contact Section --- */
.contact {
    padding: 100px 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(205, 92, 92, 0.05) 0%, transparent 50%),
        var(--cream);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 14px,
            rgba(139, 69, 19, 0.3) 14px,
            rgba(139, 69, 19, 0.3) 15px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent 0px,
            transparent 14px,
            rgba(139, 69, 19, 0.2) 14px,
            rgba(139, 69, 19, 0.2) 15px
        );
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-card-wrap {
    background: var(--warm-white);
    border: var(--border-stitch);
    border-radius: var(--radius-card);
    padding: 36px;
    box-shadow: var(--shadow-fabric);
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-btn);
    border: 2px dashed var(--dusty-rose);
}

.info-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.info-text p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.6;
}

.info-text a {
    color: var(--accent);
}

.info-text small {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--warm-white);
    border: var(--border-stitch);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-warm);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--dusty-rose);
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: all var(--transition-smooth);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    background: var(--warm-white);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(205, 92, 92, 0.1);
}

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

.form-error {
    display: block;
    font-size: 0.82rem;
    color: var(--accent);
    margin-top: 4px;
    min-height: 18px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.form-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.form-consent label {
    flex: 1;
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light);
}

.form-consent a {
    color: var(--accent);
    text-decoration: underline;
}

.form-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-btn);
    margin-top: 16px;
    font-size: 0.92rem;
}

.form-message.success {
    background: rgba(45, 90, 39, 0.08);
    border: 2px solid var(--forest);
    color: var(--forest);
}

.form-message.error {
    background: rgba(205, 92, 92, 0.08);
    border: 2px solid var(--accent);
    color: var(--accent-dark);
}

/* --- Trust Section --- */
.trust-section {
    padding: 80px 0;
    background: var(--secondary);
    border-top: var(--border-stitch-light);
    border-bottom: var(--border-stitch-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 24px;
    background: var(--warm-white);
    border-radius: var(--radius-card);
    border: 2px dashed var(--dusty-rose);
    box-shadow: var(--shadow-fabric);
    transition: all var(--transition-smooth);
}

.trust-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-warm);
}

.trust-item svg {
    margin: 0 auto 12px;
    display: block;
}

.trust-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.trust-item a {
    color: var(--accent);
    text-decoration: underline;
}

/* --- Footer --- */
.footer {
    background: var(--chocolate);
    color: var(--secondary);
    position: relative;
}

.footer-yarn-top {
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--accent) 0px,
        var(--accent) 10px,
        var(--primary) 10px,
        var(--primary) 20px,
        var(--forest) 20px,
        var(--forest) 30px,
        var(--dusty-rose) 30px,
        var(--dusty-rose) 40px
    );
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--secondary);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--dusty-rose);
    line-height: 1.6;
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px dashed rgba(201, 146, 142, 0.3);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-col a {
    color: var(--dusty-rose);
    font-size: 0.9rem;
    transition: color var(--transition-smooth);
}

.footer-links-col a:hover {
    color: var(--secondary);
}

.footer-contact-col p {
    font-size: 0.9rem;
    color: var(--dusty-rose);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-contact-col a {
    color: var(--dusty-rose);
}

.footer-contact-col a:hover {
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 2px dashed rgba(201, 146, 142, 0.2);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--dusty-rose);
}

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

.footer-legal-links a {
    font-size: 0.85rem;
    color: var(--dusty-rose);
}

.footer-legal-links a:hover {
    color: var(--secondary);
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(62, 31, 13, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--warm-white);
    border: var(--border-stitch);
    border-radius: var(--radius-card);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform var(--transition-bounce);
    box-shadow: var(--shadow-warm-lg);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background: var(--cream);
    border: 2px dashed var(--dusty-rose);
    color: var(--text-body);
    transition: all var(--transition-smooth);
    z-index: 2;
}

.modal-close:hover {
    background: var(--accent);
    color: var(--secondary);
    border-color: var(--accent);
}

.modal-content {
    padding: 40px;
}

.modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.modal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 12px;
}

.modal-content ul {
    margin: 16px 0;
}

.modal-content ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 0.93rem;
    color: var(--text-body);
}

.modal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
}

.modal-price-section {
    background: var(--cream);
    padding: 20px;
    border-radius: var(--radius-soft);
    border: 2px dashed var(--dusty-rose);
    margin-top: 20px;
}

.modal-price-section h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.modal-price-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--dusty-rose);
}

.modal-price-row:last-child {
    border-bottom: none;
}

.modal-price-row span:last-child {
    font-weight: 700;
    color: var(--primary);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Responsive --- */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 8px;
        transition: right var(--transition-smooth);
        box-shadow: -4px 0 30px rgba(0,0,0,0.3);
        align-items: stretch;
    }

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

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-link.nav-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrap {
        order: -1;
    }

    .hero-img-frame img {
        height: 350px;
    }

    .hero-badge {
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
    }

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

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

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

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 2px;
        background: repeating-linear-gradient(
            90deg,
            var(--dusty-rose) 0px,
            var(--dusty-rose) 4px,
            transparent 4px,
            transparent 8px
        );
    }

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

    .footer-brand {
        grid-column: span 1;
    }

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

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-img-frame img {
        height: 280px;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .modal-content {
        padding: 24px;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .contact-card-wrap {
        padding: 24px;
    }

    .about-img-secondary {
        display: none;
    }

    .trust-badges {
        flex-direction: column;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--dusty-rose);
    border-radius: 5px;
    border: 2px solid var(--cream);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Print styles */
@media print {
    .header,
    .cookie-banner,
    .modal-overlay,
    .hero-scroll-hint {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}