@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

        :root {
            --wood-light: #C49A6C;
            --wood-dark: #8B5E34;
            --charcoal: #1C1C1C;
            --leaf-green: #5A6B41;
            --bg-color: #F8F5F2;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-color);
            color: var(--charcoal);
            line-height: 1.6;
        }

        h1, h2, h3, .hero-brand {
            font-family: 'Playfair Display', serif;
        }

        /* --- HERO STAGE (header + hero birleşik) --- */
        .hero-stage {
            position: relative;
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            color: var(--bg-color);
            overflow: hidden;
        }

        .hero-media {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transform: scale(1.08);
            animation: hero-zoom 22s ease-out forwards;
        }

        .hero-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(12, 12, 12, 0.55) 0%, rgba(12, 12, 12, 0.28) 38%, rgba(12, 12, 12, 0.72) 100%),
                linear-gradient(90deg, rgba(18, 14, 10, 0.55) 0%, transparent 45%, rgba(18, 14, 10, 0.25) 100%);
        }

        @keyframes hero-zoom {
            from { transform: scale(1.08); }
            to { transform: scale(1); }
        }

        /* --- HEADER (hero üzerinde) --- */
        header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.25rem 4%;
            transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        header.is-fixed {
            position: fixed;
        }

        .header-inner {
            position: relative;
            display: grid;
            grid-template-columns: minmax(160px, 1fr) minmax(0, 1.5fr) minmax(120px, 1fr);
            align-items: center;
            gap: 1rem 1.25rem;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.55rem 1.25rem;
            background: transparent;
            border: 1px solid transparent;
            border-radius: 14px;
            transition:
                padding 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease,
                backdrop-filter 0.4s ease;
        }

        header.scrolled .header-inner {
            padding: 0.4rem 1.1rem;
            background: rgba(22, 20, 18, 0.88);
            backdrop-filter: blur(16px) saturate(1.15);
            -webkit-backdrop-filter: blur(16px) saturate(1.15);
            border-color: rgba(196, 154, 108, 0.22);
            box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
        }

        header.scrolled {
            padding: 0.65rem 3%;
        }

        .brand {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            line-height: 0;
            flex-shrink: 0;
            max-width: 100%;
        }

        .brand-logo {
            display: block;
            height: 50px;
            width: auto;
            max-width: min(230px, 52vw);
            object-fit: contain;
            object-position: left center;
            image-rendering: auto;
            -webkit-font-smoothing: antialiased;
            filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.3));
            transition: transform 0.35s ease, filter 0.3s ease, height 0.35s ease, max-width 0.35s ease;
        }

        .brand:hover .brand-logo {
            transform: scale(1.02);
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.38));
        }

        header.scrolled .brand-logo {
            height: 40px;
            max-width: min(185px, 44vw);
        }

        .nav-toggle {
            display: none;
            position: relative;
            z-index: 1;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 42px;
            height: 42px;
            padding: 9px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(196, 154, 108, 0.28);
            border-radius: 9px;
            cursor: pointer;
            transition: border-color 0.3s ease, background 0.3s ease;
        }

        .nav-toggle:hover {
            border-color: var(--wood-light);
            background: rgba(196, 154, 108, 0.12);
        }

        .nav-toggle span {
            display: block;
            height: 1.5px;
            width: 100%;
            background: var(--wood-light);
            border-radius: 1px;
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform-origin: center;
        }

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

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

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

        nav {
            position: relative;
            z-index: 1;
            justify-self: stretch;
            min-width: 0;
        }

        nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            gap: 0.2rem;
            width: 100%;
        }

        nav ul li {
            flex: 1 1 0;
            text-align: center;
        }

        nav ul li a {
            position: relative;
            display: block;
            width: 100%;
            color: rgba(248, 245, 242, 0.78);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.86rem;
            letter-spacing: 1.1px;
            text-transform: uppercase;
            padding: 0.7rem 0.55rem;
            border-radius: 7px;
            transition: color 0.3s ease, background 0.3s ease;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0.35rem;
            width: 0;
            height: 1.5px;
            background: linear-gradient(90deg, transparent, var(--wood-light), transparent);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        nav ul li a:hover,
        nav ul li a:focus-visible {
            color: #f3e6d4;
            background: rgba(255, 255, 255, 0.06);
        }

        nav ul li a:hover::after,
        nav ul li a:focus-visible::after {
            width: 36%;
        }

        .header-cta {
            position: relative;
            z-index: 1;
            justify-self: end;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--charcoal);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.76rem;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            padding: 0.68rem 1.25rem;
            border-radius: 8px;
            background: linear-gradient(135deg, #d4ae7f, var(--wood-light) 50%, #b88955);
            box-shadow: 0 4px 14px rgba(139, 94, 52, 0.28);
            overflow: hidden;
            white-space: nowrap;
            transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }

        .header-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -120%;
            width: 70%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
            transform: skewX(-20deg);
            transition: left 0.55s ease;
        }

        .header-cta:hover,
        .header-cta:focus-visible {
            background: linear-gradient(135deg, #e0bc90, #cda06e 50%, #c49a6c);
            box-shadow: 0 6px 18px rgba(139, 94, 52, 0.4);
            transform: translateY(-1px);
        }

        .header-cta:hover::before {
            left: 140%;
        }

        .nav-cta-mobile {
            display: none;
        }

        /* --- HERO CONTENT --- */
        .hero-content {
            position: relative;
            z-index: 2;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            max-width: 1280px;
            width: 100%;
            margin: 0 auto;
            padding: 7.5rem 5% 5.5rem;
        }

        .hero-brand {
            font-size: clamp(3.2rem, 9vw, 6.5rem);
            font-weight: 700;
            letter-spacing: 0.06em;
            line-height: 0.95;
            color: #f0d4b0;
            text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
            margin-bottom: 1.25rem;
            opacity: 0;
            transform: translateY(28px);
            animation: hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
        }

        .hero-brand span {
            display: inline-block;
            font-family: 'Playfair Display', serif;
            font-size: 1em;
            font-weight: 700;
            letter-spacing: 0.04em;
            vertical-align: baseline;
            margin-left: 0;
            color: inherit;
            position: relative;
            top: 0;
            line-height: inherit;
        }

        .hero-line {
            width: 64px;
            height: 2px;
            background: linear-gradient(90deg, var(--wood-light), transparent);
            margin-bottom: 1.35rem;
            opacity: 0;
            transform: scaleX(0);
            transform-origin: left;
            animation: hero-line 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
        }

        .hero-copy {
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 300;
            letter-spacing: 0.02em;
            max-width: 34rem;
            color: rgba(248, 245, 242, 0.82);
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(20px);
            animation: hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem;
            opacity: 0;
            transform: translateY(20px);
            animation: hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.95rem 1.7rem;
            background: linear-gradient(135deg, #d4ae7f, var(--wood-light) 50%, #b88955);
            color: var(--charcoal);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.82rem;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
            background: linear-gradient(135deg, #e0bc90, #cda06e 50%, #c49a6c);
        }

        .btn-ghost {
            background: transparent;
            color: rgba(248, 245, 242, 0.9);
            border: 1px solid rgba(248, 245, 242, 0.28);
            box-shadow: none;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(196, 154, 108, 0.55);
            color: #f3e6d4;
            box-shadow: none;
        }

        .hero-scroll {
            position: absolute;
            z-index: 3;
            left: 50%;
            bottom: 1.6rem;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.55rem;
            color: rgba(248, 245, 242, 0.55);
            text-decoration: none;
            font-size: 0.65rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            opacity: 0;
            animation: hero-rise 1s ease 1.1s forwards;
        }

        .hero-scroll-mouse {
            width: 22px;
            height: 34px;
            border: 1.5px solid rgba(248, 245, 242, 0.35);
            border-radius: 12px;
            position: relative;
        }

        .hero-scroll-mouse::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            width: 3px;
            height: 6px;
            margin-left: -1.5px;
            border-radius: 2px;
            background: var(--wood-light);
            animation: scroll-dot 1.6s ease-in-out infinite;
        }

        @keyframes hero-rise {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes hero-line {
            to {
                opacity: 1;
                transform: scaleX(1);
            }
        }

        @keyframes scroll-dot {
            0% { opacity: 1; transform: translateY(0); }
            70% { opacity: 0; transform: translateY(10px); }
            100% { opacity: 0; transform: translateY(10px); }
        }

        @media (max-width: 900px) {
            header {
                padding: 0.85rem 3.5%;
            }

            .header-inner {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 0.75rem;
                padding: 0.55rem 0.85rem;
            }

            header.scrolled .header-inner {
                background: rgba(22, 20, 18, 0.92);
            }

            .header-cta {
                display: none;
            }

            .nav-cta-mobile {
                display: block;
            }

            .nav-toggle {
                display: flex;
                margin-left: auto;
            }

            nav {
                position: absolute;
                top: calc(100% + 0.45rem);
                left: 0;
                right: 0;
                background: rgba(18, 16, 14, 0.96);
                border: 1px solid rgba(196, 154, 108, 0.2);
                border-radius: 12px;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transform: translateY(-6px);
                transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
            }

            nav.open {
                max-height: 360px;
                opacity: 1;
                transform: translateY(0);
            }

            nav ul {
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 0.15rem;
                padding: 0.7rem;
            }

            nav ul li {
                flex: none;
                text-align: left;
            }

            nav ul li a {
                padding: 0.85rem 0.9rem;
            }

            nav ul li a::after {
                display: none;
            }

            .nav-cta-mobile a {
                margin-top: 0.25rem;
                text-align: center;
                color: var(--charcoal);
                background: linear-gradient(135deg, #d4ae7f, var(--wood-light) 50%, #b88955);
                font-weight: 600;
            }

            .nav-cta-mobile a:hover,
            .nav-cta-mobile a:focus-visible {
                color: var(--charcoal);
                background: linear-gradient(135deg, #e0bc90, #cda06e 50%, #c49a6c);
            }

            .hero-content {
                padding: 6.5rem 6% 5rem;
                justify-content: flex-end;
            }

            .brand-logo {
                height: 42px;
                max-width: min(195px, 60vw);
            }

            header.scrolled .brand-logo {
                height: 36px;
                max-width: min(168px, 54vw);
            }
        }

        /* --- ÜRÜNLER --- */
        .products {
            position: relative;
            padding: 6.5rem 5% 7rem;
            background:
                radial-gradient(ellipse 80% 50% at 10% 0%, rgba(196, 154, 108, 0.12), transparent 55%),
                radial-gradient(ellipse 60% 40% at 90% 100%, rgba(90, 107, 65, 0.08), transparent 50%),
                var(--bg-color);
            overflow: hidden;
        }

        .products-header {
            max-width: 1280px;
            margin: 0 auto 3.5rem;
            text-align: left;
        }

        .products-kicker {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--wood-dark);
            margin-bottom: 0.85rem;
        }

        .products h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--charcoal);
            letter-spacing: 0.02em;
            line-height: 1.15;
            margin-bottom: 0.9rem;
        }

        .products-intro {
            max-width: 32rem;
            font-size: 1rem;
            font-weight: 300;
            color: #666;
            line-height: 1.7;
        }

        .products-line {
            width: 56px;
            height: 2px;
            background: linear-gradient(90deg, var(--wood-light), transparent);
            margin: 1.25rem 0 0;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .card {
            position: relative;
            display: block;
            text-decoration: none;
            color: inherit;
            border-radius: 16px;
            overflow: hidden;
            min-height: 340px;
            isolation: isolate;
            box-shadow: 0 10px 30px rgba(28, 28, 28, 0.08);
            transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
        }

        .card:hover,
        .card:focus-visible {
            transform: translateY(-6px);
            box-shadow: 0 18px 44px rgba(28, 28, 28, 0.16);
            outline: none;
        }

        .card-media {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.04);
            transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .card:hover .card-media img,
        .card:focus-visible .card-media img {
            transform: scale(1.12);
        }

        .card-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(18, 14, 10, 0.08) 0%, rgba(18, 14, 10, 0.25) 40%, rgba(18, 14, 10, 0.82) 100%);
            transition: background 0.4s ease;
        }

        .card:hover .card-media::after,
        .card:focus-visible .card-media::after {
            background: linear-gradient(180deg, rgba(18, 14, 10, 0.12) 0%, rgba(18, 14, 10, 0.35) 35%, rgba(18, 14, 10, 0.88) 100%);
        }

        .card-body {
            position: relative;
            z-index: 1;
            height: 100%;
            min-height: 340px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.75rem 1.6rem 1.6rem;
            color: #f8f5f2;
        }

        .card-index {
            font-size: 0.68rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(196, 154, 108, 0.9);
            margin-bottom: 0.55rem;
        }

        .card h3 {
            margin-bottom: 0.55rem;
            color: #f3e6d4;
            font-size: clamp(1.35rem, 2.2vw, 1.7rem);
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .card p {
            font-size: 0.9rem;
            font-weight: 300;
            color: rgba(248, 245, 242, 0.72);
            line-height: 1.55;
            max-width: 28ch;
            margin-bottom: 1.1rem;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--wood-light);
        }

        .card-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.35s ease;
        }

        .card:hover .card-link svg,
        .card:focus-visible .card-link svg {
            transform: translateX(5px);
        }

        @media (max-width: 760px) {
            .products {
                padding: 4.5rem 5% 5rem;
            }

            .grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .card,
            .card-body {
                min-height: 280px;
            }

            .products-header {
                margin-bottom: 2.25rem;
            }
        }

        /* --- HİZMETLER --- */
        .services {
            position: relative;
            padding: 6.5rem 5% 7rem;
            background: #ffffff;
            color: var(--charcoal);
            overflow: hidden;
        }

        .services-inner {
            position: relative;
            z-index: 1;
            max-width: 1280px;
            margin: 0 auto;
        }

        .services-header {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            justify-content: space-between;
            gap: 1.5rem 2.5rem;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(28, 28, 28, 0.08);
        }

        .services-header-copy {
            max-width: 34rem;
        }

        .services-kicker {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--wood-dark);
            margin-bottom: 0.75rem;
        }

        .services h2 {
            font-size: clamp(2.1rem, 4vw, 3.1rem);
            color: var(--charcoal);
            letter-spacing: 0.01em;
            line-height: 1.12;
            margin-bottom: 0.85rem;
        }

        .services-intro {
            font-size: 0.98rem;
            font-weight: 300;
            color: #666;
            line-height: 1.75;
        }

        .services-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            flex-shrink: 0;
            padding: 0.9rem 1.45rem;
            border-radius: 8px;
            background: var(--charcoal);
            color: #f3e6d4;
            text-decoration: none;
            font-size: 0.74rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        .services-cta svg {
            width: 15px;
            height: 15px;
            transition: transform 0.3s ease;
        }

        .services-cta:hover,
        .services-cta:focus-visible {
            background: var(--wood-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(28, 28, 28, 0.18);
        }

        .services-cta:hover svg,
        .services-cta:focus-visible svg {
            transform: translateX(3px);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.15rem;
        }

        .service-card {
            position: relative;
            grid-column: span 2;
            display: flex;
            flex-direction: column;
            min-height: 320px;
            border-radius: 18px;
            overflow: hidden;
            text-decoration: none;
            color: #f8f5f2;
            isolation: isolate;
            box-shadow: 0 10px 28px rgba(28, 28, 28, 0.08);
            transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
        }

        .service-card:nth-child(1),
        .service-card:nth-child(2) {
            grid-column: span 3;
            min-height: 360px;
        }

        .service-card:hover,
        .service-card:focus-visible {
            transform: translateY(-6px);
            box-shadow: 0 20px 44px rgba(28, 28, 28, 0.16);
            outline: none;
        }

        .service-media {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .service-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.04);
            transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .service-card:hover .service-media img,
        .service-card:focus-visible .service-media img {
            transform: scale(1.1);
        }

        .service-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(18, 14, 10, 0.15) 0%, rgba(18, 14, 10, 0.55) 48%, rgba(18, 14, 10, 0.88) 100%);
        }

        .service-body {
            position: relative;
            z-index: 1;
            margin-top: auto;
            padding: 1.6rem 1.5rem 1.45rem;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }

        .service-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            margin-bottom: 0.15rem;
        }

        .service-index {
            font-family: 'Playfair Display', serif;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: rgba(232, 201, 160, 0.85);
        }

        .service-icon {
            display: grid;
            place-items: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(196, 154, 108, 0.35);
            color: var(--wood-light);
            backdrop-filter: blur(8px);
            transition: background 0.35s ease, transform 0.35s ease;
        }

        .service-card:hover .service-icon,
        .service-card:focus-visible .service-icon {
            background: linear-gradient(145deg, #e8c9a0, var(--wood-light));
            color: var(--charcoal);
            border-color: transparent;
            transform: scale(1.06);
        }

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

        .service-body h3 {
            font-size: clamp(1.2rem, 2vw, 1.45rem);
            color: #f3e6d4;
            font-weight: 600;
            letter-spacing: 0.01em;
            line-height: 1.25;
        }

        .service-body p {
            font-size: 0.88rem;
            font-weight: 300;
            line-height: 1.6;
            color: rgba(248, 245, 242, 0.72);
            max-width: 36ch;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.45rem;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--wood-light);
        }

        .service-link svg {
            width: 15px;
            height: 15px;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-link svg,
        .service-card:focus-visible .service-link svg {
            transform: translateX(4px);
        }

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

            .service-card,
            .service-card:nth-child(1),
            .service-card:nth-child(2) {
                grid-column: span 1;
                min-height: 300px;
            }
        }

        @media (max-width: 640px) {
            .services {
                padding: 4.5rem 5% 5rem;
            }

            .services-header {
                margin-bottom: 2rem;
                padding-bottom: 1.5rem;
            }

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

            .service-card,
            .service-card:nth-child(1),
            .service-card:nth-child(2) {
                min-height: 280px;
            }

            .services-cta {
                width: 100%;
                justify-content: center;
            }
        }

        footer {
            position: relative;
            background: #0f0e0c;
            color: rgba(248, 245, 242, 0.55);
            overflow: hidden;
            padding-top: 3.5rem;
        }

        .footer-glow {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 55% 70% at 15% 90%, rgba(196, 154, 108, 0.16), transparent 55%),
                radial-gradient(ellipse 45% 55% at 90% 10%, rgba(90, 107, 65, 0.12), transparent 50%);
        }

        .footer-watermark {
            position: absolute;
            left: 50%;
            bottom: -0.12em;
            transform: translateX(-50%);
            font-family: 'Playfair Display', serif;
            font-size: clamp(5rem, 16vw, 12rem);
            font-weight: 700;
            letter-spacing: 0.08em;
            color: transparent;
            -webkit-text-stroke: 1px rgba(196, 154, 108, 0.1);
            white-space: nowrap;
            pointer-events: none;
            user-select: none;
            line-height: 0.8;
        }

        .footer-inner {
            position: relative;
            z-index: 1;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5% 2rem;
        }

        .footer-cta {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 2rem 3rem;
            margin: 0 0 3.25rem;
            padding: 1.75rem 2rem;
            border-radius: 16px;
            border: 1px solid rgba(196, 154, 108, 0.22);
            background:
                linear-gradient(135deg, rgba(40, 34, 28, 0.92), rgba(22, 20, 18, 0.88));
            box-shadow:
                0 16px 40px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .footer-cta-copy h3 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.4rem, 2.6vw, 1.85rem);
            font-weight: 600;
            color: #f0d4b0;
            letter-spacing: 0.02em;
            margin-bottom: 0.35rem;
            line-height: 1.25;
        }

        .footer-cta-copy p {
            font-size: 0.9rem;
            font-weight: 300;
            color: rgba(248, 245, 242, 0.58);
            max-width: 40ch;
        }

        .footer-cta .btn {
            justify-self: end;
            white-space: nowrap;
        }

        .footer-main {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem 2rem;
            align-items: start;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-brand .brand {
            margin-bottom: 1rem;
        }

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

        .footer-brand > p {
            max-width: 32ch;
            font-size: 0.9rem;
            font-weight: 300;
            line-height: 1.7;
            color: rgba(248, 245, 242, 0.55);
        }

        .footer-col-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.66rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--wood-light);
            margin-bottom: 1.15rem;
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.55rem;
        }

        .footer-nav a {
            color: rgba(248, 245, 242, 0.68);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            letter-spacing: 0.02em;
            padding: 0.2rem 0;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .footer-nav a:hover,
        .footer-nav a:focus-visible {
            color: #f3e6d4;
            transform: translateX(3px);
        }

        .footer-meta {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0.65rem;
        }

        .footer-meta a,
        .footer-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.65rem 0.85rem;
            border-radius: 10px;
            border: 1px solid rgba(196, 154, 108, 0.16);
            background: rgba(255, 255, 255, 0.03);
            color: rgba(248, 245, 242, 0.62);
            text-decoration: none;
            font-size: 0.84rem;
            font-weight: 300;
            transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
        }

        .footer-meta a:hover,
        .footer-meta a:focus-visible {
            color: #f3e6d4;
            border-color: rgba(196, 154, 108, 0.4);
            background: rgba(196, 154, 108, 0.08);
        }

        .footer-meta svg {
            width: 14px;
            height: 14px;
            color: var(--wood-light);
            flex-shrink: 0;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.4rem 0 0.25rem;
        }

        .footer-bottom p {
            font-size: 0.76rem;
            letter-spacing: 0.04em;
            color: rgba(248, 245, 242, 0.35);
        }

        .footer-social {
            display: flex;
            gap: 0.5rem;
        }

        .footer-social a {
            display: grid;
            place-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(196, 154, 108, 0.2);
            color: rgba(248, 245, 242, 0.55);
            text-decoration: none;
            background: rgba(255, 255, 255, 0.02);
            transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
        }

        .footer-social a:hover,
        .footer-social a:focus-visible {
            color: var(--charcoal);
            border-color: var(--wood-light);
            background: linear-gradient(145deg, #d4ae7f, var(--wood-light));
            transform: translateY(-2px);
        }

        .footer-social svg {
            width: 15px;
            height: 15px;
        }

        @media (max-width: 900px) {
            footer {
                padding-top: 2.5rem;
            }

            .footer-cta {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                padding: 1.5rem 1.35rem;
            }

            .footer-cta .btn {
                justify-self: start;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 2rem 1.5rem;
            }

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

        @media (max-width: 560px) {
            .footer-inner {
                padding: 0 5% 1.5rem;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-cta .btn {
                width: 100%;
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-watermark {
                font-size: 5rem;
            }
        }

        /* --- TEKLİF FORMU --- */
        .quote {
            position: relative;
            padding: 5.5rem 5% 6rem;
            background: #0f0e0c;
            overflow: hidden;
        }

        .quote::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 55% 70% at 0% 50%, rgba(196, 154, 108, 0.16), transparent 55%),
                radial-gradient(ellipse 40% 50% at 100% 0%, rgba(90, 107, 65, 0.12), transparent 50%);
        }

        .quote-inner {
            position: relative;
            z-index: 1;
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
            gap: 0;
            border-radius: 22px;
            overflow: hidden;
            border: 1px solid rgba(196, 154, 108, 0.18);
            box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
        }

        .quote-info {
            position: relative;
            padding: 2.75rem 2.25rem;
            background:
                linear-gradient(160deg, rgba(28, 24, 20, 0.55), rgba(12, 11, 10, 0.82)),
                url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=1200&q=80') center/cover;
            color: rgba(248, 245, 242, 0.78);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 2.5rem;
            min-height: 100%;
        }

        .quote-kicker {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 500;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--wood-light);
            margin-bottom: 0.9rem;
        }

        .quote h2 {
            font-size: clamp(2rem, 3.6vw, 2.85rem);
            color: #f0d4b0;
            line-height: 1.12;
            margin-bottom: 1rem;
        }

        .quote-info-lead {
            font-size: 0.98rem;
            font-weight: 300;
            color: rgba(248, 245, 242, 0.68);
            line-height: 1.75;
            max-width: 32ch;
            margin-bottom: 2rem;
        }

        .quote-points {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.95rem;
        }

        .quote-points li {
            display: grid;
            grid-template-columns: 2rem 1fr;
            gap: 0.85rem;
            align-items: start;
            font-size: 0.9rem;
            font-weight: 300;
            color: rgba(248, 245, 242, 0.78);
            line-height: 1.55;
        }

        .quote-points span {
            display: grid;
            place-items: center;
            width: 2rem;
            height: 2rem;
            border-radius: 8px;
            border: 1px solid rgba(196, 154, 108, 0.35);
            background: rgba(196, 154, 108, 0.12);
            color: var(--wood-light);
            font-family: 'Playfair Display', serif;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .quote-contacts {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .quote-contacts a {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            color: rgba(248, 245, 242, 0.72);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .quote-contacts a:hover,
        .quote-contacts a:focus-visible {
            color: #f3e6d4;
        }

        .quote-contacts svg {
            width: 16px;
            height: 16px;
            color: var(--wood-light);
            flex-shrink: 0;
        }

        .quote-form {
            background: #f8f5f2;
            padding: 2.5rem 2.25rem 2.15rem;
        }

        .quote-form-head {
            margin-bottom: 1.75rem;
        }

        .quote-form-head h3 {
            font-size: 1.35rem;
            color: var(--charcoal);
            margin-bottom: 0.4rem;
        }

        .quote-form-head p {
            font-size: 0.88rem;
            font-weight: 300;
            color: #777;
            line-height: 1.55;
        }

        .quote-alert {
            padding: 0.95rem 1.05rem;
            border-radius: 12px;
            margin-bottom: 1.35rem;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .quote-alert.success {
            background: rgba(90, 107, 65, 0.12);
            color: var(--leaf-green);
            border: 1px solid rgba(90, 107, 65, 0.25);
        }

        .quote-alert.error {
            background: rgba(139, 50, 50, 0.08);
            color: #8b3232;
            border: 1px solid rgba(139, 50, 50, 0.2);
        }

        .quote-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.15rem 1.1rem;
        }

        .quote-field {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .quote-field.full {
            grid-column: 1 / -1;
        }

        .quote-field label {
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #8a8a8a;
        }

        .quote-field input,
        .quote-field select,
        .quote-field textarea {
            width: 100%;
            padding: 0.95rem 1.05rem;
            border: 1px solid transparent;
            border-radius: 12px;
            background: #ffffff;
            color: var(--charcoal);
            font-family: inherit;
            font-size: 0.95rem;
            font-weight: 400;
            outline: none;
            box-shadow: 0 1px 0 rgba(28, 28, 28, 0.04);
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }

        .quote-field textarea {
            min-height: 118px;
            resize: vertical;
            line-height: 1.55;
        }

        .quote-field input:hover,
        .quote-field select:hover,
        .quote-field textarea:hover {
            border-color: rgba(196, 154, 108, 0.28);
        }

        .quote-field input:focus,
        .quote-field select:focus,
        .quote-field textarea:focus {
            border-color: rgba(196, 154, 108, 0.7);
            box-shadow: 0 0 0 4px rgba(196, 154, 108, 0.14);
        }

        .quote-field select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B5E34' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }

        .quote-submit {
            grid-column: 1 / -1;
            margin-top: 0.45rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            width: 100%;
            padding: 1.05rem 1.5rem;
            border: none;
            border-radius: 12px;
            background: linear-gradient(135deg, #d4ae7f, var(--wood-light) 48%, #b88955);
            color: var(--charcoal);
            font-family: inherit;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            cursor: pointer;
            box-shadow: 0 10px 26px rgba(139, 94, 52, 0.28);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }

        .quote-submit svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .quote-submit:hover,
        .quote-submit:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 14px 32px rgba(139, 94, 52, 0.38);
            background: linear-gradient(135deg, #e0bc90, #cda06e 48%, #c49a6c);
        }

        .quote-submit:hover svg,
        .quote-submit:focus-visible svg {
            transform: translateX(3px);
        }

        .quote-note {
            grid-column: 1 / -1;
            font-size: 0.76rem;
            color: #999;
            text-align: center;
            margin-top: 0.2rem;
        }

        @media (max-width: 960px) {
            .quote-inner {
                grid-template-columns: 1fr;
            }

            .quote-info {
                min-height: auto;
                padding: 2.15rem 1.6rem;
            }
        }

        @media (max-width: 640px) {
            .quote {
                padding: 4rem 4% 4.5rem;
            }

            .quote-inner {
                border-radius: 16px;
            }

            .quote-form {
                padding: 1.6rem 1.25rem 1.5rem;
            }

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

        /* --- SABİT İLETİŞİM BUTONLARI --- */
        .float-contact {
            position: fixed;
            right: 1.15rem;
            bottom: 1.15rem;
            z-index: 200;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .float-btn {
            display: grid;
            place-items: center;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            text-decoration: none;
            color: #fff;
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
            transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
        }

        .float-btn svg {
            width: 24px;
            height: 24px;
            display: block;
        }

        .float-btn:hover,
        .float-btn:focus-visible {
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
            outline: none;
        }

        .float-btn.whatsapp {
            background: linear-gradient(145deg, #25d366, #1ebe57);
        }

        .float-btn.phone {
            background: linear-gradient(145deg, #d4ae7f, var(--wood-light) 45%, var(--wood-dark));
            color: var(--charcoal);
        }

        @media (max-width: 640px) {
            .float-contact {
                right: 0.85rem;
                bottom: 0.85rem;
            }

            .float-btn {
                width: 50px;
                height: 50px;
            }
        }

/* --- İÇ SAYFA HERO --- */
.page-hero {
    position: relative;
    min-height: 42vh;
    min-height: 42dvh;
    display: flex;
    align-items: flex-end;
    padding: 8rem 5% 3.5rem;
    color: #f8f5f2;
    overflow: hidden;
}

.page-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.45) 0%, rgba(12, 12, 12, 0.72) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.page-hero-kicker {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wood-light);
    margin-bottom: 0.85rem;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: #f0d4b0;
    line-height: 1.1;
    margin-bottom: 0.85rem;
}

.page-hero p {
    max-width: 36rem;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(248, 245, 242, 0.78);
    line-height: 1.7;
}

body.inner-page header {
    position: absolute;
}

body.inner-page header.is-fixed {
    position: fixed;
}

nav ul li a.active {
    color: var(--wood-light);
}

nav ul li a.active::after {
    width: 36%;
}

.about-section {
    padding: 5.5rem 5% 6rem;
    background: #fff;
}

.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.about-media {
    border-radius: 18px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 18px 40px rgba(28, 28, 28, 0.1);
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 420px;
}

.about-copy .kicker {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wood-dark);
    margin-bottom: 0.85rem;
}

.about-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    color: var(--charcoal);
    margin-bottom: 1.1rem;
    line-height: 1.2;
}

.about-copy p {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-stat {
    padding: 1.1rem 1rem;
    border-radius: 12px;
    background: #f7f2eb;
    border: 1px solid rgba(196, 154, 108, 0.2);
}

.about-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--wood-dark);
    margin-bottom: 0.25rem;
}

.about-stat span {
    font-size: 0.78rem;
    color: #777;
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-media,
    .about-media img {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .page-hero {
        min-height: 36vh;
        padding: 7rem 5% 2.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ÜRÜNLER SAYFASI — katalog / vitrin
   ========================================================= */
.shop-page {
    background: #f3efe8;
    padding-bottom: 5rem;
}

.shop-top {
    padding: 8.5rem 5% 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.shop-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-bottom: 2rem;
}

.shop-top h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.05;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.shop-top p {
    max-width: 28rem;
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    line-height: 1.7;
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.shop-filters span,
.shop-filters a,
.shop-filters a:link,
.shop-filters a:visited {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(28, 28, 28, 0.12);
    background: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    color: #555 !important;
    text-decoration: none !important;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.shop-filters a:hover,
.shop-filters a:focus-visible {
    border-color: rgba(139, 94, 52, 0.35);
    color: var(--charcoal) !important;
    outline: none;
}

.shop-filters span.is-on,
.shop-filters a.is-on,
.shop-filters a.is-on:visited {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: #f3e6d4 !important;
}

.shop-rail {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.shop-item {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 340px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 36px rgba(28, 28, 28, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.shop-item:nth-child(even) {
    grid-template-columns: 0.85fr 1.15fr;
}

.shop-item:nth-child(even) .shop-item-media {
    order: 2;
}

.shop-item:hover,
.shop-item:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(28, 28, 28, 0.12);
    outline: none;
}

.shop-item-media {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.shop-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.shop-item:hover .shop-item-media img {
    transform: scale(1.06);
}

.shop-item-body {
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
}

.shop-item-no {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wood-dark);
}

.shop-item h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: var(--charcoal);
    line-height: 1.15;
}

.shop-item p {
    font-size: 0.95rem;
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    max-width: 34ch;
}

.shop-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.35rem;
}

.shop-item-meta em {
    font-style: normal;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    background: #f3efe8;
    color: #6a5a48;
}

.shop-item-cta {
    margin-top: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wood-dark);
}

.shop-item-cta svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.shop-item:hover .shop-item-cta svg {
    transform: translateX(4px);
}

@media (max-width: 860px) {
    .shop-item,
    .shop-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .shop-item:nth-child(even) .shop-item-media {
        order: 0;
    }

    .shop-item-media {
        min-height: 220px;
    }
}

/* =========================================================
   HİZMETLER SAYFASI — modern / şık (marka renkleri)
   ========================================================= */
.flow-page {
    background:
        radial-gradient(ellipse 70% 40% at 0% 0%, rgba(196, 154, 108, 0.1), transparent 55%),
        radial-gradient(ellipse 50% 35% at 100% 12%, rgba(90, 107, 65, 0.07), transparent 50%),
        #f7f4ef;
    color: var(--charcoal);
    padding-bottom: 4rem;
}

.svc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wood-dark);
    margin-bottom: 0.95rem;
}

.svc-kicker i {
    display: inline-block;
    width: 1.65rem;
    height: 1px;
    background: var(--wood-dark);
    opacity: 0.7;
    font-style: normal;
}

.svc-hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 7.75rem 5% 2.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
    gap: 2.5rem 3rem;
    align-items: center;
}

.svc-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5.6vw, 4.1rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 1.15rem;
}

.svc-hero h1 em {
    font-style: italic;
    color: var(--wood-dark);
}

.svc-lead {
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    font-weight: 300;
    line-height: 1.8;
    color: #5f5a54;
    max-width: 34rem;
    padding-left: 1.05rem;
    border-left: 2px solid rgba(139, 94, 52, 0.35);
    margin-bottom: 1.35rem;
}

.svc-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wood-dark);
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
}

.svc-hero-link::after {
    content: '';
    width: 1.35rem;
    height: 1px;
    background: currentColor;
    transition: width 0.25s ease;
}

.svc-hero-link:hover {
    color: var(--charcoal);
    gap: 0.75rem;
}

.svc-hero-link:hover::after {
    width: 1.85rem;
}

.svc-hero-meta {
    padding: 1.35rem 1.3rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(28, 28, 28, 0.07);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(247, 244, 239, 0.55));
    box-shadow: 0 14px 36px rgba(28, 28, 28, 0.06);
}

.svc-hero-meta-title {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wood-dark);
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.svc-hero-meta-item {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(28, 28, 28, 0.07);
}

.svc-hero-meta-item:last-child {
    border-bottom: 0;
    padding-bottom: 0.15rem;
}

.svc-hero-meta-idx {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: rgba(139, 94, 52, 0.6);
}

.svc-hero-meta span:not(.svc-hero-meta-idx) {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(28, 28, 28, 0.42);
    margin-bottom: 0.28rem;
}

.svc-hero-meta strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
}

.svc-process {
    max-width: 1180px;
    margin: 0.5rem auto 0;
    padding: 0 5% 0.5rem;
}

.svc-process-head {
    margin-bottom: 1.25rem;
}

.svc-process-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.45rem, 2.6vw, 1.9rem);
    color: var(--charcoal);
}

.svc-process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}

.svc-process-list li {
    padding: 1.2rem 1.1rem 1.15rem;
    border-radius: 14px;
    border: 1px solid rgba(28, 28, 28, 0.07);
    background: rgba(255, 255, 255, 0.55);
    position: relative;
    overflow: hidden;
}

.svc-process-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--wood-light), var(--wood-dark));
    opacity: 0.55;
}

.svc-process-list b {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: rgba(139, 94, 52, 0.55);
    margin-bottom: 0.65rem;
}

.svc-process-list strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}

.svc-process-list p {
    font-size: 0.84rem;
    font-weight: 300;
    color: #5f5a54;
    line-height: 1.6;
}

.svc-list {
    max-width: 1180px;
    margin: 3rem auto 0;
    padding: 0 5%;
}

.svc-list-head {
    max-width: 32rem;
    margin-bottom: 1.5rem;
}

.svc-list-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
    margin-bottom: 0.55rem;
}

.svc-list-head > p:not(.svc-kicker) {
    font-size: 0.92rem;
    font-weight: 300;
    color: #5f5a54;
    line-height: 1.65;
}

.svc-cards {
    display: grid;
    gap: 1.1rem;
}

.svc-card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    min-height: 280px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(28, 28, 28, 0.07);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 12px 32px rgba(28, 28, 28, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.svc-card.is-reverse {
    direction: rtl;
}

.svc-card.is-reverse > * {
    direction: ltr;
}

.svc-card:hover,
.svc-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(28, 28, 28, 0.09);
    border-color: rgba(139, 94, 52, 0.2);
    outline: none;
}

.svc-card-media {
    position: relative;
    min-height: 240px;
    overflow: hidden;
}

.svc-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-card:hover .svc-card-media img {
    transform: scale(1.08);
}

.svc-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.6rem 1.55rem 1.5rem;
}

.svc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.svc-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: rgba(139, 94, 52, 0.55);
}

.svc-card-icon {
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 10px;
    border: 1px solid rgba(139, 94, 52, 0.25);
    background: rgba(196, 154, 108, 0.1);
    color: var(--wood-dark);
}

.svc-card-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.svc-card-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.2vw, 1.65rem);
    color: var(--charcoal);
    margin-bottom: 0.65rem;
    line-height: 1.2;
}

.svc-card-body p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #5f5a54;
    line-height: 1.7;
    max-width: 38ch;
    margin-bottom: 1.15rem;
}

.svc-card-body em {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wood-dark);
}

.svc-card-body em svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.svc-card:hover .svc-card-body em svg {
    transform: translateX(4px);
}

.svc-close {
    max-width: 1180px;
    margin: 2.75rem auto 0;
    padding: 0 5%;
}

.svc-close-inner {
    padding: 2.25rem 1.75rem;
    border-radius: 18px;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 60% at 10% 0%, rgba(196, 154, 108, 0.14), transparent 55%),
        linear-gradient(145deg, #1a1714 0%, #12100e 55%, #1c1814 100%);
    border: 1px solid rgba(196, 154, 108, 0.18);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    color: #f3e6d4;
}

.svc-close-inner .svc-kicker {
    color: rgba(196, 154, 108, 0.95);
}

.svc-close-inner .svc-kicker i {
    background: rgba(196, 154, 108, 0.9);
}

.svc-close-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
    color: #f8f5f2;
    margin-bottom: 0.7rem;
}

.svc-close-inner > p:not(.svc-kicker) {
    font-size: 0.94rem;
    font-weight: 300;
    color: rgba(248, 245, 242, 0.62);
    line-height: 1.7;
    max-width: 36rem;
    margin: 0 auto 1.35rem;
}

.svc-close-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.9rem 1.25rem;
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.82rem 1.3rem;
    border-radius: 9px;
    background: linear-gradient(135deg, #d4ae7f, var(--wood-light) 50%, #b88955);
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: filter 0.25s ease, transform 0.25s ease;
}

.svc-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.svc-phone {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--wood-light);
    text-decoration: none;
}

.svc-phone:hover {
    color: #f3e6d4;
}

.flow-page .svc-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-page .svc-reveal.is-in {
    opacity: 1;
    transform: none;
}

.svc-cards .svc-reveal:nth-child(2) { transition-delay: 0.05s; }
.svc-cards .svc-reveal:nth-child(3) { transition-delay: 0.08s; }
.svc-cards .svc-reveal:nth-child(4) { transition-delay: 0.1s; }
.svc-cards .svc-reveal:nth-child(5) { transition-delay: 0.12s; }

@media (max-width: 960px) {
    .svc-hero,
    .svc-process-list,
    .svc-card,
    .svc-card.is-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .svc-hero-meta {
        order: 2;
    }

    .svc-card-media {
        min-height: 220px;
        aspect-ratio: 16 / 10;
    }

    .svc-process-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .svc-hero {
        padding-top: 6.75rem;
    }

    .svc-process-list {
        grid-template-columns: 1fr;
    }

    .svc-close-inner {
        padding: 1.85rem 1.2rem;
    }
}

/* Eski flow sınıfları artık kullanılmıyor */
.flow-intro,
.flow-list,
.flow-step,
.flow-cta-band {
    display: none !important;
}

/* =========================================================
   HAKKIMIZDA SAYFASI — editoryal hikaye
   ========================================================= */
.story-page {
    background: #fff;
}

.story-hero {
    padding: 9rem 5% 4rem;
    max-width: 920px;
    margin: 0 auto;
}

.story-hero span {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wood-dark);
    margin-bottom: 1.1rem;
}

.story-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    line-height: 1.02;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.story-hero h1 em {
    font-style: italic;
    color: var(--wood-dark);
}

.story-hero p {
    font-size: 1.15rem;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    max-width: 38rem;
}

.story-bleed {
    width: 100%;
    max-height: 62vh;
    overflow: hidden;
}

.story-bleed img {
    width: 100%;
    height: 62vh;
    object-fit: cover;
    display: block;
}

.story-quote {
    max-width: 820px;
    margin: -3.5rem auto 0;
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem;
    background: var(--charcoal);
    color: #f3e6d4;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.story-quote p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    line-height: 1.4;
    font-style: italic;
}

.story-quote cite {
    display: block;
    margin-top: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(196, 154, 108, 0.9);
}

.story-chapters {
    max-width: 1100px;
    margin: 4.5rem auto 0;
    padding: 0 5% 2rem;
    display: grid;
    gap: 4rem;
}

.story-chapter {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 1.5rem 2.5rem;
}

.story-chapter b {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: rgba(196, 154, 108, 0.45);
    line-height: 1;
}

.story-chapter h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: var(--charcoal);
    margin-bottom: 0.85rem;
}

.story-chapter p {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    line-height: 1.85;
    max-width: 52ch;
}

.story-mosaic {
    max-width: 1100px;
    margin: 1rem auto 0;
    padding: 0 5% 5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.story-mosaic figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
}

.story-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 240px;
}

.story-mosaic figure:first-child {
    min-height: 420px;
}

.story-end {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 5% 5.5rem;
    text-align: center;
}

.story-end h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.story-end p {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.story-end a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    border-radius: 10px;
    background: var(--charcoal);
    color: #f3e6d4;
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
}

.story-end a:hover {
    background: var(--wood-dark);
    transform: translateY(-2px);
}

@media (max-width: 860px) {
    .story-quote {
        margin: -2rem 5% 0;
    }

    .story-chapter {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .story-mosaic {
        grid-template-columns: 1fr;
    }

    .story-mosaic figure:first-child {
        min-height: 260px;
    }
}

/* Açık arka planlı sayfalarda header her zaman koyu */
body.shop-page .header-inner,
body.story-page .header-inner,
body.flow-page .header-inner {
    background: rgba(22, 20, 18, 0.94);
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    border: 1px solid rgba(196, 154, 108, 0.22);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
}

body.flow-page {
    background: #f7f4ef;
}

body.shop-page {
    background: #f3efe8;
}

body.story-page {
    background: #fff;
}

/* =========================================================
   GLOBAL ORAN İNCE AYAR — daha zarif, daha dengeli
   ========================================================= */
:root {
    --space-section: clamp(3.5rem, 6vw, 5rem);
    --space-section-lg: clamp(4rem, 7vw, 5.75rem);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-soft: 0 10px 28px rgba(28, 28, 28, 0.08);
}

header {
    padding: 0.9rem 4%;
}

.header-inner {
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-md);
    gap: 0.75rem 1rem;
    align-items: center;
    min-height: 66px;
}

header.scrolled {
    padding: 0.5rem 3%;
}

header.scrolled .header-inner {
    padding: 0.3rem 0.95rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    min-height: 56px;
}

.brand-logo {
    height: 50px !important;
    max-width: min(230px, 52vw) !important;
    filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.3));
}

header.scrolled .brand-logo {
    height: 40px !important;
    max-width: min(185px, 44vw) !important;
}

.footer-brand .brand-logo {
    height: 62px !important;
    max-width: 260px !important;
}

nav ul li a {
    font-size: 0.86rem !important;
    font-weight: 500;
    padding: 0.65rem 0.6rem !important;
    letter-spacing: 1.1px;
}

.header-cta {
    font-size: 0.72rem;
    padding: 0.55rem 1.05rem;
    border-radius: var(--radius-sm);
}

.hero-content {
    padding: 6.5rem 5% 4.5rem;
}

.hero-brand {
    font-size: clamp(2.6rem, 6.5vw, 4.4rem) !important;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.hero-brand span {
    font-family: 'Playfair Display', serif !important;
    font-size: 1em !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    vertical-align: baseline !important;
    margin-left: 0 !important;
    top: 0 !important;
    color: inherit !important;
}

.hero-copy {
    font-size: clamp(0.95rem, 1.6vw, 1.08rem);
    margin-bottom: 1.6rem;
}

.btn {
    padding: 0.8rem 1.35rem;
    font-size: 0.76rem;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
}

.hero-scroll {
    bottom: 1.25rem;
    font-size: 0.6rem;
}

.products,
.services,
.quote,
.about-section {
    padding-top: var(--space-section-lg) !important;
    padding-bottom: var(--space-section-lg) !important;
}

.products-header,
.services-header {
    margin-bottom: 2.25rem;
}

.products h2,
.services h2,
.quote h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.45rem) !important;
}

.products-intro,
.services-intro,
.quote-info-lead {
    font-size: 0.92rem !important;
    line-height: 1.7;
}

.card,
.card-body {
    min-height: 280px !important;
    border-radius: var(--radius-lg) !important;
}

.card-body {
    padding: 1.35rem 1.3rem 1.25rem !important;
}

.card h3,
.service-body h3 {
    font-size: clamp(1.15rem, 1.8vw, 1.4rem) !important;
}

.card p,
.service-body p {
    font-size: 0.84rem !important;
}

.service-card {
    min-height: 270px !important;
    border-radius: var(--radius-lg) !important;
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
    min-height: 300px !important;
}

.service-body {
    padding: 1.3rem 1.25rem 1.2rem !important;
}

.service-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 9px !important;
}

.services-cta {
    padding: 0.75rem 1.2rem !important;
    font-size: 0.7rem !important;
}

.quote-inner {
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28) !important;
}

.quote-info {
    padding: 2.1rem 1.75rem !important;
    gap: 1.75rem !important;
}

.quote-form {
    padding: 1.85rem 1.65rem 1.7rem !important;
}

.quote-form-head {
    margin-bottom: 1.25rem !important;
}

.quote-form-head h3 {
    font-size: 1.2rem !important;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
    padding: 0.78rem 0.9rem !important;
    border-radius: 10px !important;
    font-size: 0.9rem !important;
}

.quote-field textarea {
    min-height: 100px !important;
}

.quote-submit {
    padding: 0.88rem 1.25rem !important;
    font-size: 0.74rem !important;
    border-radius: 10px !important;
}

.quote-points li {
    font-size: 0.84rem !important;
    gap: 0.7rem !important;
}

.quote-points span {
    width: 1.7rem !important;
    height: 1.7rem !important;
    font-size: 0.75rem !important;
}

.footer-cta {
    transform: none !important;
    margin: 0 0 2.5rem !important;
    padding: 1.4rem 1.5rem !important;
    border-radius: var(--radius-md) !important;
}

.footer-cta-copy h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem) !important;
}

.footer-inner {
    padding: 3.25rem 5% 1.5rem !important;
}

.footer-top,
.footer-main {
    gap: 2rem 1.75rem !important;
    padding-bottom: 2rem !important;
}

.footer-watermark {
    font-size: clamp(4rem, 12vw, 9rem) !important;
    opacity: 0.85;
}

.float-contact {
    right: 1rem;
    bottom: 1rem;
    gap: 0.55rem;
}

.float-btn {
    width: 46px !important;
    height: 46px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22) !important;
}

.float-btn svg {
    width: 20px !important;
    height: 20px !important;
}

/* Ürünler katalog */
.shop-top {
    padding: 7.25rem 5% 1.75rem !important;
}

.shop-top h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem) !important;
    line-height: 1.05 !important;
    white-space: nowrap;
}

.shop-top p {
    font-size: 0.92rem !important;
}

.shop-filters span,
.shop-filters a,
.shop-filters a:link,
.shop-filters a:visited {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.66rem !important;
    color: #555 !important;
    text-decoration: none !important;
}

.shop-filters a.is-on,
.shop-filters a.is-on:visited {
    color: #f3e6d4 !important;
}

.shop-item {
    min-height: 260px !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-soft) !important;
}

.shop-item-body {
    padding: 1.6rem 1.5rem !important;
    gap: 0.65rem !important;
}

.shop-item h2 {
    font-size: clamp(1.4rem, 2.4vw, 1.85rem) !important;
}

.shop-item p {
    font-size: 0.88rem !important;
}

.shop-item-media {
    min-height: 220px !important;
}

.shop-page {
    padding-bottom: 3.5rem !important;
}

/* Hizmetler — oran koruma */
.flow-page {
    padding-bottom: 3.5rem !important;
    background:
        radial-gradient(ellipse 70% 40% at 0% 0%, rgba(196, 154, 108, 0.1), transparent 55%),
        radial-gradient(ellipse 50% 35% at 100% 12%, rgba(90, 107, 65, 0.07), transparent 50%),
        #f7f4ef !important;
    color: var(--charcoal) !important;
}

/* Hakkımızda story */
.story-hero {
    padding: 7.5rem 5% 2.75rem !important;
}

.story-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem) !important;
    margin-bottom: 1.1rem !important;
}

.story-hero p {
    font-size: 1rem !important;
    line-height: 1.75 !important;
}

.story-bleed,
.story-bleed img {
    max-height: 48vh !important;
    height: 48vh !important;
}

.story-quote {
    margin-top: -2.5rem !important;
    padding: 1.75rem 1.5rem !important;
    border-radius: var(--radius-md) !important;
}

.story-quote p {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem) !important;
}

.story-chapters {
    margin-top: 3.25rem !important;
    gap: 2.75rem !important;
    padding-bottom: 1rem !important;
}

.story-chapter {
    grid-template-columns: 5.5rem 1fr !important;
    gap: 1rem 1.75rem !important;
}

.story-chapter b {
    font-size: 2.1rem !important;
}

.story-chapter h2 {
    font-size: clamp(1.35rem, 2.4vw, 1.7rem) !important;
}

.story-chapter p {
    font-size: 0.92rem !important;
    line-height: 1.75 !important;
}

.story-mosaic {
    padding-bottom: 3.5rem !important;
    gap: 0.85rem !important;
}

.story-mosaic figure {
    border-radius: var(--radius-md) !important;
}

.story-mosaic figure:first-child {
    min-height: 320px !important;
}

.story-mosaic img {
    min-height: 200px !important;
}

.story-end {
    padding-bottom: 4rem !important;
}

.story-end h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem) !important;
}

.story-end a {
    padding: 0.8rem 1.25rem !important;
    font-size: 0.72rem !important;
    border-radius: var(--radius-sm) !important;
}

.page-hero {
    min-height: 34vh !important;
    padding: 7rem 5% 2.5rem !important;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
}

.page-hero p {
    font-size: 0.95rem !important;
}

.about-section {
    padding: var(--space-section-lg) 5% !important;
}

.about-media,
.about-media img {
    min-height: 340px !important;
    border-radius: var(--radius-lg);
}

.about-copy h2 {
    font-size: clamp(1.55rem, 2.8vw, 2.1rem) !important;
}

.about-stat strong {
    font-size: 1.35rem !important;
}

@media (max-width: 900px) {
    .brand-logo {
        height: 42px !important;
        max-width: min(195px, 60vw) !important;
    }

    header.scrolled .brand-logo {
        height: 36px !important;
        max-width: min(168px, 54vw) !important;
    }

    .header-inner,
    header.scrolled .header-inner {
        min-height: 0;
    }

    .hero-content {
        padding: 5.75rem 6% 4rem;
    }
}

@media (max-width: 640px) {
    .float-btn {
        width: 44px !important;
        height: 44px !important;
    }

    .shop-item-media {
        min-height: 190px !important;
    }

    .story-bleed,
    .story-bleed img {
        max-height: 36vh !important;
        height: 36vh !important;
    }

    .story-chapter {
        grid-template-columns: 1fr !important;
    }

    .card,
    .card-body,
    .service-card,
    .service-card:nth-child(1),
    .service-card:nth-child(2) {
        min-height: 240px !important;
    }
}

/* Hover / hareket — daha yumuşak */
.card:hover,
.card:focus-visible,
.service-card:hover,
.service-card:focus-visible,
.shop-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 32px rgba(28, 28, 28, 0.12) !important;
}

.float-btn:hover,
.float-btn:focus-visible {
    transform: translateY(-2px) scale(1.02) !important;
}

.grid {
    gap: 1rem !important;
}

.services-grid {
    gap: 1rem !important;
}

.shop-list {
    gap: 1.15rem !important;
}

.products-header,
.services-header {
    max-width: 36rem;
}

.quote-info h2 {
    font-size: clamp(1.7rem, 3vw, 2.25rem) !important;
}

.quote-direct a {
    font-size: 0.95rem !important;
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
    font-size: 0.86rem !important;
}

/* --- Hakkımızda: dolu editoryal bölümler --- */
.story-chapter p + p {
    margin-top: 0.85rem;
}

.story-list {
    list-style: none;
    margin: 1.1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
    max-width: 36ch;
}

.story-list li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
}

.story-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 1px;
    background: var(--wood-dark);
}

.story-split {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    padding: 2.5rem 5% 0;
    display: grid;
    gap: 2rem;
}

.story-split-copy span,
.story-values-head span,
.story-focus-head span,
.story-aside span {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wood-dark);
    margin-bottom: 0.75rem;
}

.story-split-copy h2,
.story-values-head h2,
.story-focus-head h2,
.story-aside h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.55rem, 2.8vw, 2.1rem);
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.story-split-copy p,
.story-focus-head p,
.story-aside p {
    font-size: 0.95rem;
    font-weight: 300;
    color: #666;
    line-height: 1.75;
    max-width: 46ch;
}

.story-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(28, 28, 28, 0.08);
}

.story-split-grid article h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.65rem;
}

.story-split-grid article p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.9rem;
}

.story-split-grid a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wood-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(139, 94, 52, 0.35);
    padding-bottom: 0.15rem;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.story-split-grid a:hover {
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.story-values {
    max-width: 1100px;
    margin: 3.5rem auto 0;
    padding: 0 5%;
}

.story-values-head {
    margin-bottom: 1.75rem;
}

.story-values-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.5rem;
    counter-reset: value;
}

.story-values-list li {
    position: relative;
    padding-top: 1rem;
    border-top: 1px solid rgba(28, 28, 28, 0.1);
    display: grid;
    gap: 0.45rem;
}

.story-values-list strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
}

.story-values-list span {
    font-size: 0.88rem;
    font-weight: 300;
    color: #666;
    line-height: 1.65;
    letter-spacing: 0;
    text-transform: none;
    margin: 0;
}

.story-focus {
    max-width: 1100px;
    margin: 3.75rem auto 0;
    padding: 2.5rem 5%;
    background:
        linear-gradient(180deg, rgba(243, 239, 232, 0.65), rgba(248, 245, 242, 0.2));
}

.story-focus-head {
    margin-bottom: 1.75rem;
}

.story-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem 1.5rem;
}

.story-focus-grid h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.story-focus-grid p {
    font-size: 0.84rem;
    font-weight: 300;
    color: #666;
    line-height: 1.65;
}

.story-mosaic-wide {
    grid-template-columns: 1.15fr 0.7fr 0.7fr;
    margin-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.story-mosaic-wide figure:nth-child(2),
.story-mosaic-wide figure:nth-child(3) {
    min-height: 220px;
}

.story-aside {
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    padding: 1.75rem 5%;
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 1.5rem 2rem;
    align-items: end;
    border-top: 1px solid rgba(28, 28, 28, 0.08);
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.story-aside-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.story-aside-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.2rem;
    background: var(--charcoal);
    color: #f3e6d4;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 8px;
    transition: background 0.25s ease;
}

.story-aside-primary:hover {
    background: var(--wood-dark);
}

.story-aside-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--wood-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.story-aside-link:hover {
    color: var(--charcoal);
}

@media (max-width: 900px) {
    .story-split-grid,
    .story-values-list,
    .story-focus-grid,
    .story-mosaic-wide,
    .story-aside {
        grid-template-columns: 1fr;
    }

    .story-aside-actions {
        align-items: flex-start;
    }

    .story-focus {
        margin-top: 2.75rem;
        padding: 2rem 5%;
    }
}

/* =========================================================
   HAKKIMIZDA — modern / şık redesign
   ========================================================= */
body.story-page {
    background:
        radial-gradient(ellipse 70% 40% at 0% 0%, rgba(196, 154, 108, 0.1), transparent 55%),
        radial-gradient(ellipse 50% 35% at 100% 12%, rgba(90, 107, 65, 0.07), transparent 50%),
        #f7f4ef;
    color: var(--charcoal);
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wood-dark);
    margin-bottom: 1.15rem;
}

.about-kicker i {
    display: inline-block;
    width: 1.65rem;
    height: 1px;
    background: var(--wood-dark);
    opacity: 0.7;
    font-style: normal;
}

.about-hero {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 7.9rem 5% 3.25rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
    gap: 2.5rem 3.25rem;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    right: -2%;
    top: 42%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(5.5rem, 14vw, 10rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.85;
    color: rgba(139, 94, 52, 0.06);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}

.about-hero-main {
    position: relative;
    z-index: 1;
    padding-bottom: 0.25rem;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5.8vw, 4.35rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--charcoal);
    margin-bottom: 1.35rem;
    max-width: 11ch;
}

.about-hero h1 em {
    font-style: italic;
    color: var(--wood-dark);
    position: relative;
}

.about-hero h1 em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.08em;
    height: 0.12em;
    background: linear-gradient(90deg, rgba(196, 154, 108, 0.45), transparent 85%);
    border-radius: 2px;
    z-index: -1;
}

.about-lead {
    position: relative;
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    font-weight: 300;
    line-height: 1.8;
    color: #5f5a54;
    max-width: 31rem;
    padding-left: 1.05rem;
    border-left: 2px solid rgba(139, 94, 52, 0.35);
    margin-bottom: 1.35rem;
}

.about-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wood-dark);
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
}

.about-hero-link::after {
    content: '';
    width: 1.35rem;
    height: 1px;
    background: currentColor;
    transition: width 0.25s ease;
}

.about-hero-link:hover {
    color: var(--charcoal);
    gap: 0.75rem;
}

.about-hero-link:hover::after {
    width: 1.85rem;
}

.about-hero-meta {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0;
    padding: 1.35rem 1.3rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(28, 28, 28, 0.07);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(247, 244, 239, 0.55));
    box-shadow: 0 14px 36px rgba(28, 28, 28, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-hero-meta-title {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wood-dark);
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.about-hero-meta-item {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.75rem;
    align-items: start;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(28, 28, 28, 0.07);
    transition: transform 0.25s ease;
}

.about-hero-meta-item:hover {
    transform: translateX(3px);
}

.about-hero-meta-item:last-child {
    border-bottom: 0;
    padding-bottom: 0.15rem;
}

.about-hero-meta-idx {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    line-height: 1.35;
    color: rgba(139, 94, 52, 0.6);
}

.about-hero-meta span:not(.about-hero-meta-idx) {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(28, 28, 28, 0.42);
    margin-bottom: 0.28rem;
}

.about-hero-meta strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.25;
}

.about-feature {
    max-width: 1180px;
    margin: 0.35rem auto 0;
    padding: 0 5%;
}

.about-feature-media {
    position: relative;
    height: min(48vh, 460px);
    border-radius: 18px;
    overflow: hidden;
}

.about-feature-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 16, 14, 0.08) 0%, transparent 35%, rgba(18, 16, 14, 0.18) 100%);
    pointer-events: none;
}

.about-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    animation: about-cinema-in 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes about-cinema-in {
    from { transform: scale(1.08); filter: saturate(0.88); }
    to { transform: scale(1); filter: saturate(1); }
}

.about-feature-quote {
    position: relative;
    max-width: 40rem;
    margin: -2rem auto 0;
    padding: 2rem 1.75rem 1.65rem;
    text-align: center;
    background: rgba(247, 244, 239, 0.92);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    border: 1px solid rgba(28, 28, 28, 0.07);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(28, 28, 28, 0.08);
    z-index: 2;
}

.about-feature-mark {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    line-height: 0.6;
    color: var(--wood-dark);
    opacity: 0.55;
    margin-bottom: 0.85rem;
}

.about-feature-quote p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 2.3vw, 1.45rem);
    line-height: 1.5;
    font-style: italic;
    color: var(--charcoal);
    font-weight: 500;
}

.about-feature-quote cite {
    display: inline-block;
    margin-top: 1.1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(139, 94, 52, 0.28);
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wood-dark);
}

.about-chapters {
    max-width: 1040px;
    margin: 4rem auto 0;
    padding: 0 5%;
}

.about-chapters-head {
    max-width: 28rem;
    margin-bottom: 2rem;
}

.about-chapters-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 0.65rem;
}

.about-chapters-head > p:not(.about-kicker) {
    font-size: 0.92rem;
    font-weight: 300;
    color: #5f5a54;
    line-height: 1.65;
}

.about-chapters-rail {
    position: relative;
    display: grid;
    gap: 1rem;
}

.about-chapters-rail::before {
    content: '';
    position: absolute;
    left: 1.35rem;
    top: 1.4rem;
    bottom: 1.4rem;
    width: 1px;
    background: linear-gradient(
        180deg,
        rgba(139, 94, 52, 0.35),
        rgba(139, 94, 52, 0.12) 50%,
        rgba(139, 94, 52, 0.28)
    );
}

.about-chapter {
    position: relative;
    display: grid;
    grid-template-columns: 2.7rem 1fr;
    gap: 1rem 1.35rem;
    padding: 1.45rem 1.4rem 1.4rem 0.35rem;
    border: 1px solid rgba(28, 28, 28, 0.07);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(247, 244, 239, 0.45));
    box-shadow: 0 10px 28px rgba(28, 28, 28, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.about-chapter:hover {
    border-color: rgba(139, 94, 52, 0.22);
    box-shadow: 0 14px 32px rgba(28, 28, 28, 0.07);
    transform: translateY(-2px);
}

.about-chapter-index {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    background: #f7f4ef;
    border: 1px solid rgba(139, 94, 52, 0.28);
    box-shadow: 0 0 0 6px rgba(247, 244, 239, 0.95);
}

.about-chapter-index span {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--wood-dark);
    line-height: 1;
}

.about-chapter-label {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wood-dark);
    margin-bottom: 0.45rem;
}

.about-chapter-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 2.4vw, 1.7rem);
    margin-bottom: 0.8rem;
    color: var(--charcoal);
}

.about-chapter-body p {
    font-size: 0.92rem;
    font-weight: 300;
    color: #5f5a54;
    line-height: 1.75;
    max-width: 54ch;
}

.about-chapter-body > p + p {
    margin-top: 0.7rem;
}

.about-steps {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 0.85rem;
}

.about-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem;
    align-items: center;
    padding: 0.7rem 0.75rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(28, 28, 28, 0.06);
    font-size: 0.84rem;
    color: #4d4944;
    line-height: 1.35;
}

.about-steps em {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-size: 0.82rem;
    color: var(--wood-dark);
}

.about-dual {
    max-width: 1180px;
    margin: 3.5rem auto 0;
    padding: 0 5%;
}

.about-dual-intro {
    max-width: 34rem;
    margin-bottom: 1.75rem;
}

.about-dual-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    line-height: 1.15;
    margin-bottom: 0.85rem;
}

.about-dual-intro p:last-child {
    font-size: 0.94rem;
    font-weight: 300;
    color: #5f5a54;
    line-height: 1.7;
}

.about-dual-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-panel {
    position: relative;
    display: block;
    min-height: 420px;
    overflow: hidden;
    border-radius: 16px;
    text-decoration: none;
    color: #f8f5f2;
    isolation: isolate;
}

.about-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 16, 14, 0.15) 0%, rgba(18, 16, 14, 0.78) 100%);
    z-index: 1;
}

.about-panel > div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.5rem 1.4rem 1.35rem;
}

.about-panel span {
    display: block;
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(243, 230, 212, 0.7);
    margin-bottom: 0.45rem;
}

.about-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    margin-bottom: 0.55rem;
}

.about-panel p {
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(248, 245, 242, 0.78);
    margin-bottom: 0.9rem;
    max-width: 34ch;
}

.about-panel em {
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wood-light);
}

.about-panel:hover img,
.about-panel:focus-visible img {
    transform: scale(1.05);
}

.about-principles {
    max-width: 1180px;
    margin: 4.25rem auto 0;
    padding: 0 5%;
}

.about-principles-head {
    max-width: 30rem;
    margin-bottom: 1.75rem;
}

.about-principles-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    line-height: 1.15;
    margin-bottom: 0.65rem;
    color: var(--charcoal);
}

.about-principles-head > p:not(.about-kicker) {
    font-size: 0.92rem;
    font-weight: 300;
    color: #5f5a54;
    line-height: 1.65;
}

.about-principles-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
}

.about-principles-list li {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.35rem 1.2rem 1.3rem;
    border-radius: 16px;
    border: 1px solid rgba(28, 28, 28, 0.07);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(247, 244, 239, 0.5));
    box-shadow: 0 10px 26px rgba(28, 28, 28, 0.04);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.about-principles-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--wood-light), var(--wood-dark));
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.about-principles-list li:hover {
    border-color: rgba(139, 94, 52, 0.22);
    box-shadow: 0 14px 32px rgba(28, 28, 28, 0.07);
    transform: translateY(-3px);
}

.about-principles-list li:hover::before {
    opacity: 1;
}

.about-principles-list b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    border: 1px solid rgba(139, 94, 52, 0.28);
    background: rgba(255, 255, 255, 0.55);
    font-family: 'Playfair Display', serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--wood-dark);
    line-height: 1;
}

.about-principles-list strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
    color: var(--charcoal);
    line-height: 1.25;
}

.about-principles-list p {
    font-size: 0.84rem;
    font-weight: 300;
    color: #5f5a54;
    line-height: 1.65;
    margin-top: auto;
}

.about-focus {
    margin: 4rem 0 0;
    padding: 0 5%;
    color: #f3e6d4;
}

.about-focus-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2.75rem 1.75rem 2.5rem;
    border-radius: 20px;
    background:
        radial-gradient(ellipse 70% 60% at 10% 0%, rgba(196, 154, 108, 0.14), transparent 55%),
        linear-gradient(145deg, #1a1714 0%, #12100e 55%, #1c1814 100%);
    border: 1px solid rgba(196, 154, 108, 0.16);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.about-focus-head {
    max-width: 34rem;
    margin: 0 0 1.85rem;
}

.about-focus .about-kicker {
    color: rgba(196, 154, 108, 0.95);
}

.about-focus .about-kicker i {
    background: rgba(196, 154, 108, 0.9);
}

.about-focus-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    margin-bottom: 0.7rem;
    color: #f8f5f2;
    line-height: 1.15;
}

.about-focus-head p {
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(248, 245, 242, 0.62);
    line-height: 1.7;
}

.about-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}

.about-focus-grid article {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.25rem 1.15rem 1.2rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.about-focus-grid article:hover {
    background: rgba(196, 154, 108, 0.08);
    border-color: rgba(196, 154, 108, 0.28);
    transform: translateY(-3px);
}

.about-focus-num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 0.82rem;
    color: rgba(196, 154, 108, 0.45);
}

.about-focus-icon {
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    background: rgba(196, 154, 108, 0.1);
    border: 1px solid rgba(196, 154, 108, 0.22);
    color: var(--wood-light);
}

.about-focus-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.about-focus-grid h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin: 0 0 0.55rem;
    color: #f0d4b0;
    line-height: 1.25;
}

.about-focus-grid p {
    font-size: 0.84rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(248, 245, 242, 0.62);
    margin-top: auto;
}

.about-gallery {
    max-width: 1180px;
    margin: 3.25rem auto 0;
    padding: 0 5% 1.25rem;
}

.about-gallery-head {
    max-width: 28rem;
    margin-bottom: 1.5rem;
}

.about-gallery-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.55rem, 2.8vw, 2.1rem);
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 0.55rem;
}

.about-gallery-head > p:not(.about-kicker) {
    font-size: 0.92rem;
    font-weight: 300;
    color: #5f5a54;
    line-height: 1.65;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.35fr 0.9fr;
    gap: 0.9rem;
    align-items: stretch;
}

.about-gallery-item {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    min-height: 280px;
    background: #ddd6cb;
    box-shadow: 0 12px 30px rgba(28, 28, 28, 0.08);
}

.about-gallery-item--tall {
    min-height: 360px;
}

.about-gallery-item--wide {
    min-height: 360px;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(18, 16, 14, 0.72) 100%);
    opacity: 0.92;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.35s ease;
}

.about-gallery-item figcaption {
    position: absolute;
    left: 1.05rem;
    right: 1.05rem;
    bottom: 1rem;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    color: #f8f5f2;
}

.about-gallery-item figcaption span {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: rgba(196, 154, 108, 0.95);
}

.about-gallery-item figcaption strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

.about-gallery-item:hover::after {
    opacity: 1;
}

.about-close {
    max-width: 1180px;
    margin: 2rem auto 0;
    padding: 0 5% 4.5rem;
}

.about-close-inner {
    padding: 2.25rem 1.75rem;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(248, 245, 242, 0.45));
    border: 1px solid rgba(28, 28, 28, 0.07);
    text-align: center;
}

.about-close-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
    margin-bottom: 0.75rem;
}

.about-close-inner > p:not(.about-kicker) {
    font-size: 0.94rem;
    font-weight: 300;
    color: #5f5a54;
    line-height: 1.7;
    max-width: 36rem;
    margin: 0 auto 1.35rem;
}

.about-close-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.9rem 1.25rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.82rem 1.3rem;
    border-radius: 9px;
    background: var(--charcoal);
    color: #f3e6d4;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.25s ease;
}

.about-btn:hover {
    background: var(--wood-dark);
    transform: translateY(-1px);
}

.about-phone {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--wood-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.about-phone:hover {
    color: var(--charcoal);
}

.story-page .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-page .reveal.is-in {
    opacity: 1;
    transform: none;
}

.about-chapter.reveal:nth-child(2) { transition-delay: 0.06s; }
.about-chapter.reveal:nth-child(3) { transition-delay: 0.12s; }
.about-principles-list .reveal:nth-child(2) { transition-delay: 0.05s; }
.about-principles-list .reveal:nth-child(3) { transition-delay: 0.1s; }
.about-principles-list .reveal:nth-child(4) { transition-delay: 0.15s; }
.about-focus-grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.about-focus-grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.about-focus-grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.about-gallery-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.about-gallery-grid .reveal:nth-child(3) { transition-delay: 0.12s; }

@media (max-width: 960px) {
    .about-hero,
    .about-dual-panels,
    .about-principles-list,
    .about-focus-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-gallery-item--wide {
        grid-column: 1 / -1;
        min-height: 260px;
    }

    .about-hero-meta {
        grid-template-columns: 1fr;
        padding: 1.2rem 1.1rem 1.05rem;
    }

    .about-hero-bg {
        opacity: 0.7;
        right: -6%;
        top: 28%;
    }

    .about-hero-meta-item:hover {
        transform: none;
    }

    .about-hero-meta-item {
        grid-template-columns: 2rem 1fr;
    }

    .about-chapter {
        grid-template-columns: 2.4rem 1fr;
        gap: 0.75rem 1rem;
        padding: 1.2rem 1.1rem 1.15rem 0.25rem;
    }

    .about-chapters-rail::before {
        left: 1.15rem;
    }

    .about-steps {
        grid-template-columns: 1fr;
    }

    .about-panel {
        min-height: 340px;
    }

    .about-focus-grid article + article {
        padding-left: 1.15rem;
        border-left: 0;
    }

    .about-focus-inner {
        padding: 2.1rem 1.15rem 1.9rem;
        border-radius: 16px;
    }

    .about-feature-media {
        height: 40vh;
        border-radius: 14px;
    }

    .about-feature-quote {
        margin-top: -1.5rem;
        padding: 1.6rem 1.25rem 1.4rem;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding-top: 6.75rem;
    }

    .about-hero-meta {
        grid-template-columns: 1fr;
    }

    .about-principles-list,
    .about-focus-grid,
    .about-gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-gallery-item--tall,
    .about-gallery-item--wide {
        min-height: 240px;
    }

    .about-close-inner {
        padding: 1.75rem 1.2rem;
    }
}


/* --- Ürünler: geniş katalog grid --- */
.shop-filters button {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(28, 28, 28, 0.12);
    background: rgba(255, 255, 255, 0.7);
    font-family: inherit;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.shop-filters button:hover {
    border-color: rgba(139, 94, 52, 0.35);
    color: var(--charcoal);
}

.shop-filters button.is-on {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: #f3e6d4;
}

.shop-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5% 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.shop-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(28, 28, 28, 0.06);
    box-shadow: 0 10px 28px rgba(28, 28, 28, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.shop-card:hover,
.shop-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(28, 28, 28, 0.1);
    border-color: rgba(139, 94, 52, 0.2);
    outline: none;
}

.shop-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ddd6cb;
}

.shop-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-card:hover .shop-card-media img {
    transform: scale(1.06);
}

.shop-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.15rem 1.15rem 1.2rem;
    flex: 1;
}

.shop-card-cat {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wood-dark);
}

.shop-card-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    line-height: 1.25;
}

.shop-card-body p {
    font-size: 0.86rem;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

.shop-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.shop-card-tags em {
    font-style: normal;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(196, 154, 108, 0.12);
    color: var(--wood-dark);
}

.shop-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wood-dark);
}

.shop-card-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-card-cta svg {
    transform: translateX(3px);
}

.shop-empty {
    max-width: 1280px;
    margin: 1rem auto 0;
    padding: 0 5%;
    color: #666;
    font-size: 0.95rem;
}

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

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

/* --- Ürünler: kategori detay --- */
.shop-top-category .shop-top-row {
    align-items: flex-start;
}

.shop-top-category h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.1;
}

.shop-back {
    display: inline-flex;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wood-dark);
    text-decoration: none;
}

.shop-back:hover {
    color: var(--charcoal);
}

.shop-product-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5% 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.shop-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(28, 28, 28, 0.06);
    box-shadow: 0 10px 28px rgba(28, 28, 28, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.shop-product-card:hover,
.shop-product-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(28, 28, 28, 0.1);
    border-color: rgba(139, 94, 52, 0.2);
    outline: none;
}

.shop-product-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ddd6cb;
}

.shop-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-product-card:hover .shop-product-media img {
    transform: scale(1.05);
}

.shop-product-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.15rem 1.15rem 1.2rem;
    flex: 1;
}

.shop-product-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    line-height: 1.25;
}

.shop-product-body p {
    font-size: 0.86rem;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

.shop-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.shop-product-tags em {
    font-style: normal;
    font-size: 0.68rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(196, 154, 108, 0.12);
    color: var(--wood-dark);
}

.shop-product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wood-dark);
}

.shop-product-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.shop-product-card:hover .shop-product-cta svg {
    transform: translateX(3px);
}

.shop-empty-state {
    max-width: 720px;
    margin: 1rem auto 3rem;
    padding: 2.25rem 1.5rem;
    text-align: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(28, 28, 28, 0.07);
}

.shop-empty-state h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.65rem;
    color: var(--charcoal);
}

.shop-empty-state p {
    font-size: 0.92rem;
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.shop-empty-state code {
    font-size: 0.85em;
    background: rgba(28, 28, 28, 0.06);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}

.shop-empty-cta {
    display: inline-flex;
    padding: 0.75rem 1.2rem;
    border-radius: 8px;
    background: var(--charcoal);
    color: #f3e6d4;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.shop-empty-cta:hover {
    background: var(--wood-dark);
}

@media (max-width: 960px) {
    .shop-product-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .shop-product-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Ürünler: 3 sütun kategori grid --- */
.shop-cat-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5% 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.shop-cat-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(28, 28, 28, 0.06);
    box-shadow: 0 10px 28px rgba(28, 28, 28, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.shop-cat-card:hover,
.shop-cat-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(28, 28, 28, 0.1);
    border-color: rgba(139, 94, 52, 0.2);
    outline: none;
}

.shop-cat-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ddd6cb;
}

.shop-cat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-cat-card:hover .shop-cat-media img {
    transform: scale(1.08);
}

.shop-cat-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.15rem 1.15rem 1.2rem;
    flex: 1;
}

.shop-cat-no {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: rgba(139, 94, 52, 0.55);
    line-height: 1;
}

.shop-cat-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--charcoal);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.shop-cat-body p {
    font-size: 0.84rem;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.15rem;
}

.shop-cat-tags em {
    font-style: normal;
    font-size: 0.64rem;
    letter-spacing: 0.03em;
    padding: 0.22rem 0.5rem;
    border-radius: 999px;
    background: rgba(196, 154, 108, 0.12);
    color: var(--wood-dark);
}

.shop-cat-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.85rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wood-dark);
}

.shop-cat-cta svg {
    width: 13px;
    height: 13px;
    transition: transform 0.3s ease;
}

.shop-cat-card:hover .shop-cat-cta svg {
    transform: translateX(3px);
}

@media (max-width: 960px) {
    .shop-cat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .shop-cat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .shop-top-row {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .shop-top h1 {
        white-space: normal;
    }
}
