:root {
    --site-bg: #faf8f4;
    --site-cream: #f4efe7;
    --site-white: #ffffff;
    --site-dark: #24231f;
    --site-text: #57534c;
    --site-muted: #8c877e;
    --site-gold: #ad8149;
    --site-gold-light: #eee2d2;
    --site-border: #e5dfd5;
    --site-container: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--site-bg);
    color: var(--site-dark);
    font-family: 'DM Sans', sans-serif;
}

img {
    max-width: 100%;
}

.site-container {
    width: min( var(--site-container), calc(100% - 48px) );
    margin-inline: auto;
}


/* =====================================================
   TOP BAR
===================================================== */

.site-topbar {
    height: 34px;
    display: flex;
    align-items: center;
    background: #27251f;
    color: rgba(255,255,255,.72);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: .3px;
}

.topbar-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: sticky;
    z-index: 900;
    top: 0;
    height: 82px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(50,46,40,.08);
    background: rgba(250,248,244,.96);
    backdrop-filter: blur(16px);
    transition: .25s;
}

    .site-header.scrolled {
        box-shadow: 0 8px 30px rgba(45,39,31,.07);
    }

.header-inner {
    display: flex;
    align-items: center;
    gap: 45px;
}

.site-logo {
    display: inline-flex;
    flex-direction: column;
    min-width: 160px;
    color: var(--site-dark);
    text-decoration: none;
}

.site-logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.site-logo-sub {
    margin-top: 1px;
    color: var(--site-gold);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 5px;
}

.site-navigation {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

    .site-navigation a {
        position: relative;
        color: #504d47;
        font-size: 11px;
        font-weight: 600;
        text-decoration: none;
    }

        .site-navigation a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -9px;
            width: 0;
            height: 1px;
            background: var(--site-gold);
            transition: width .25s;
        }

        .site-navigation a:hover {
            color: var(--site-gold);
        }

            .site-navigation a:hover::after {
                width: 100%;
            }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-discovery-button {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    border-radius: 4px;
    background: var(--site-dark);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
}

.mobile-navigation-button {
    display: none;
    border: 0;
    background: transparent;
    color: var(--site-dark);
    font-size: 25px;
    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.home-hero {
    position: relative;
    min-height: 710px;
    overflow: hidden;
    background: #ebe5dc;
}

.hero-background {
    position: absolute;
    inset: 0;
}

    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(242,237,228,.96) 0%, rgba(242,237,228,.86) 31%, rgba(242,237,228,.28) 62%, rgba(242,237,228,.06) 100% );
}

.hero-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient( 110deg, #f0eade, #ded4c3 );
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 650px;
}

.home-eyebrow {
    display: block;
    margin-bottom: 17px;
    color: var(--site-gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.6px;
}

    .home-eyebrow.light {
        color: #e4cba7;
    }

.hero-copy h1 {
    margin: 0;
    max-width: 660px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(55px, 6vw, 86px);
    font-weight: 500;
    line-height: .99;
    letter-spacing: -2px;
}

    .hero-copy h1 em {
        display: block;
        color: var(--site-gold);
        font-weight: 500;
    }

.hero-copy p {
    max-width: 530px;
    margin: 27px 0 0;
    color: #666158;
    font-size: 14px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 32px;
}

.public-primary-button,
.public-outline-button,
.public-dark-link {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 21px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
}

.public-primary-button {
    border: 1px solid var(--site-dark);
    background: var(--site-dark);
    color: #fff;
}

    .public-primary-button:hover {
        background: var(--site-gold);
        border-color: var(--site-gold);
    }

.public-outline-button {
    border: 1px solid #8b857b;
    color: var(--site-dark);
    background: rgba(255,255,255,.22);
}

    .public-outline-button.dark {
        border-color: #aaa398;
    }

.hero-benefits {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid rgba(70,60,50,.10);
    background: rgba(250,248,244,.94);
    backdrop-filter: blur(15px);
}

.hero-benefits-inner {
    min-height: 90px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 25px;
    border-right: 1px solid var(--site-border);
}

    .hero-benefit:first-child {
        padding-left: 0;
    }

    .hero-benefit:last-child {
        border-right: 0;
    }

    .hero-benefit > i {
        color: var(--site-gold);
        font-size: 21px;
    }

    .hero-benefit div {
        display: flex;
        flex-direction: column;
    }

    .hero-benefit strong {
        font-size: 11px;
    }

    .hero-benefit span {
        margin-top: 4px;
        color: var(--site-muted);
        font-size: 9px;
    }

/* =====================================================
   HOME HERO SLIDER
===================================================== */

.home-hero {
    position: relative;
    min-height: 710px;
    overflow: hidden;
    background: #ebe5dc;
}


/* -----------------------------------------------------
   Slider container
----------------------------------------------------- */

.hero-slider {
    position: absolute;
    inset: 0;
}


/* -----------------------------------------------------
   Slide
----------------------------------------------------- */

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .8s ease, visibility .8s ease;
}

    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 2;
    }


    /* -----------------------------------------------------
   Background
----------------------------------------------------- */

    .hero-slide .hero-background {
        position: absolute;
        inset: 0;
    }

        .hero-slide .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.02);
            transition: transform 7s ease;
        }

    .hero-slide.active .hero-background img {
        transform: scale(1.07);
    }


    /* -----------------------------------------------------
   Overlay
----------------------------------------------------- */

    .hero-slide .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(242,237,228,.97) 0%, rgba(242,237,228,.89) 31%, rgba(242,237,228,.40) 60%, rgba(242,237,228,.08) 100% );
    }


    /* -----------------------------------------------------
   Content
----------------------------------------------------- */

    .hero-slide .hero-content {
        position: relative;
        z-index: 5;
        min-height: 620px;
        display: flex;
        align-items: center;
    }


    /* -----------------------------------------------------
   Text animation
----------------------------------------------------- */

    .hero-slide .hero-copy {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity .65s ease .20s, transform .65s ease .20s;
    }

    .hero-slide.active .hero-copy {
        opacity: 1;
        transform: translateY(0);
    }


/* =====================================================
   SLIDER ARROWS
===================================================== */

.hero-slider-arrow {
    position: absolute;
    z-index: 20;
    top: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(36,35,31,.18);
    border-radius: 50%;
    background: rgba(250,248,244,.76);
    color: var(--site-dark);
    font-size: 17px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

    .hero-slider-arrow:hover {
        background: var(--site-dark);
        border-color: var(--site-dark);
        color: #fff;
    }

.hero-slider-prev {
    left: 25px;
}

.hero-slider-next {
    right: 25px;
}


/* =====================================================
   SLIDER NAVIGATION
===================================================== */

.hero-slider-navigation {
    position: absolute;
    z-index: 25;
    right: max( 24px, calc((100vw - var(--site-container)) / 2) );
    bottom: 115px;
    display: flex;
    align-items: center;
    gap: 22px;
}


/* Counter */

.hero-slider-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--site-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

    .hero-slider-counter > span:first-child {
        color: var(--site-gold);
        font-size: 15px;
    }


/* Counter line */

.hero-counter-line {
    width: 32px;
    height: 1px;
    display: block;
    background: rgba(36,35,31,.28);
}


/* =====================================================
   DOTS
===================================================== */

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-slider-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: rgba(36,35,31,.28);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

    .hero-slider-dot.active {
        width: 25px;
        background: var(--site-gold);
    }


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .hero-slider-arrow {
        top: auto;
        bottom: 115px;
        width: 42px;
        height: 42px;
        transform: none;
    }

    .hero-slider-prev {
        left: 20px;
    }

    .hero-slider-next {
        left: 72px;
        right: auto;
    }

    .hero-slider-navigation {
        right: 20px;
        bottom: 126px;
    }
}


@media (max-width: 650px) {

    .hero-slide .hero-overlay {
        background: linear-gradient( 180deg, rgba(242,237,228,.16) 0%, rgba(242,237,228,.50) 36%, rgba(242,237,228,.97) 64%, rgba(242,237,228,.99) 100% );
    }

    .hero-slider-arrow {
        display: none;
    }

    .hero-slider-navigation {
        right: 15px;
        left: 15px;
        bottom: 132px;
        justify-content: flex-end;
    }

    .hero-slider-counter {
        display: none;
    }
}
/* =====================================================
   SECTIONS
===================================================== */

.home-section {
    padding: 105px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 45px;
}

    .section-heading h2,
    .about-copy h2,
    .home-discovery-cta h2 {
        margin: 0;
        font-family: 'Playfair Display', serif;
        font-size: clamp(38px, 4vw, 57px);
        font-weight: 500;
        line-height: 1.1;
    }

        .section-heading h2 em,
        .about-copy h2 em,
        .home-discovery-cta h2 em {
            color: var(--site-gold);
            font-weight: 500;
        }

    .section-heading > p {
        max-width: 420px;
        margin: 0 0 5px;
        color: var(--site-muted);
        font-size: 12px;
        line-height: 1.8;
    }


/* =====================================================
   COLLECTION
===================================================== */

.home-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 17px;
}

.home-collection-card {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #ddd7ce;
}

    .home-collection-card:nth-child(2),
    .home-collection-card:nth-child(5) {
        height: 500px;
    }

    .home-collection-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .55s;
    }

    .home-collection-card:hover img {
        transform: scale(1.035);
    }

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0,0,0,0) 42%, rgba(26,23,20,.62) 100% );
}

.collection-card-content {
    position: absolute;
    left: 27px;
    right: 27px;
    bottom: 27px;
    color: white;
}

    .collection-card-content span {
        color: #dfcaac;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .collection-card-content h3 {
        margin: 6px 0 14px;
        font-family: 'Playfair Display', serif;
        font-size: 27px;
        font-weight: 500;
    }

    .collection-card-content a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: white;
        font-size: 9px;
        font-weight: 700;
        text-decoration: none;
    }


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    padding: 115px 0;
    background: #f0ebe3;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 90px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-large {
    height: 620px;
    overflow: hidden;
}

    .about-image-large img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-experience {
    position: absolute;
    right: -30px;
    bottom: 35px;
    width: 235px;
    padding: 29px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(50,42,32,.12);
}

    .about-experience strong {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 21px;
    }

    .about-experience span {
        display: block;
        margin-top: 7px;
        color: var(--site-muted);
        font-size: 10px;
        line-height: 1.5;
    }

.about-copy > p {
    max-width: 590px;
    margin: 23px 0 0;
    color: var(--site-text);
    font-size: 13px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    gap: 13px;
    margin-top: 30px;
}

    .about-features div {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #514c44;
        font-size: 11px;
    }

    .about-features i {
        color: var(--site-gold);
        font-size: 17px;
    }

.public-dark-link {
    margin-top: 35px;
    background: var(--site-dark);
    color: white;
}


/* =====================================================
   PRODUCTS
===================================================== */

.products-section {
    background: #fff;
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 25px;
}

.home-product-card {
    background: #fff;
}

.product-image {
    position: relative;
    height: 390px;
    overflow: hidden;
    background: #eeeae4;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s;
    }

.home-product-card:hover .product-image img {
    transform: scale(1.025);
}

.product-category-tag {
    position: absolute;
    left: 15px;
    top: 15px;
    padding: 7px 10px;
    background: rgba(250,248,244,.9);
    color: var(--site-gold);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .6px;
}

.product-card-content {
    padding: 19px 3px 0;
}

    .product-card-content h3 {
        margin: 0;
        font-family: 'Playfair Display', serif;
        font-size: 23px;
        font-weight: 500;
    }

    .product-card-content p {
        margin: 8px 0 12px;
        color: var(--site-muted);
        font-size: 10px;
        line-height: 1.7;
    }

    .product-card-content a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--site-dark);
        font-size: 9px;
        font-weight: 700;
        text-decoration: none;
    }


/* =====================================================
   CTA
===================================================== */

.home-discovery-cta {
    padding: 80px 0;
    background: #292720;
    color: #fff;
}

.discovery-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.home-discovery-cta h2 {
    max-width: 760px;
}

.home-discovery-cta p {
    margin: 17px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 12px;
}

.discovery-cta-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    padding: 0 21px;
    background: var(--site-gold);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
}


/* =====================================================
   GALLERY
===================================================== */

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    grid-auto-rows: 260px;
    gap: 12px;
}

.home-gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #ddd;
}

    .home-gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }

    .home-gallery-item:nth-child(4) {
        grid-column: span 2;
    }

    .home-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s;
    }

    .home-gallery-item:hover img {
        transform: scale(1.035);
    }

    .home-gallery-item figcaption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 28px 20px 17px;
        background: linear-gradient( transparent, rgba(26,23,20,.68) );
        color: #fff;
    }

        .home-gallery-item figcaption span {
            font-size: 10px;
            font-weight: 600;
        }


/* =====================================================
   GUIDE
===================================================== */

.guide-section {
    padding: 105px 0;
    background: #f2eee7;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 24px;
}

.guide-card {
    background: white;
}

.guide-image {
    height: 260px;
    overflow: hidden;
    background: #e4dfd7;
}

    .guide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.guide-card-content {
    padding: 26px;
}

    .guide-card-content > span {
        color: var(--site-gold);
        font-size: 8px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.2px;
    }

    .guide-card-content h3 {
        margin: 9px 0;
        font-family: 'Playfair Display', serif;
        font-size: 23px;
        font-weight: 500;
        line-height: 1.35;
    }

    .guide-card-content p {
        color: var(--site-muted);
        font-size: 10px;
        line-height: 1.7;
    }

    .guide-card-content a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
        color: var(--site-dark);
        font-size: 9px;
        font-weight: 700;
        text-decoration: none;
    }


/* =====================================================
   FINAL CONTACT
===================================================== */

.final-contact-section {
    padding: 73px 0;
    background: #c49a60;
}

.final-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

    .final-contact-inner > div:first-child > span {
        color: rgba(255,255,255,.75);
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .final-contact-inner h2 {
        margin: 7px 0 0;
        color: white;
        font-family: 'Playfair Display', serif;
        font-size: clamp(30px,4vw,47px);
        font-weight: 500;
    }

.final-contact-actions {
    display: flex;
    gap: 10px;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    padding: 75px 0 25px;
    background: #24231f;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3,1fr);
    gap: 60px;
}

.footer-logo {
    color: #fff;
}

.footer-brand p {
    max-width: 330px;
    margin: 23px 0 0;
    color: rgba(255,255,255,.48);
    font-size: 10px;
    line-height: 1.9;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-title {
    margin-bottom: 8px;
    color: #bc945e;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.footer-column a {
    color: rgba(255,255,255,.62);
    font-size: 10px;
    text-decoration: none;
}

    .footer-column a:hover {
        color: white;
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.35);
    font-size: 8px;
}


/* =====================================================
   CONTACT + DISCOVERY COMMON
===================================================== */

.public-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
}

.public-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .public-field.full {
        grid-column: 1 / -1;
    }

    .public-field label {
        color: #4b4842;
        font-size: 10px;
        font-weight: 700;
    }

.public-input,
.public-textarea {
    width: 100%;
    border: 1px solid #ddd7cd;
    border-radius: 5px;
    background: white;
    color: #35322d;
    font: inherit;
    font-size: 12px;
    outline: none;
}

.public-input {
    height: 48px;
    padding: 0 13px;
}

.public-textarea {
    padding: 13px;
    resize: vertical;
}

    .public-input:focus,
    .public-textarea:focus {
        border-color: var(--site-gold);
        box-shadow: 0 0 0 3px rgba(173,129,73,.09);
    }


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .site-navigation {
        gap: 16px;
    }

    .home-collection-grid,
    .home-product-grid,
    .guide-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .about-grid {
        gap: 50px;
    }
}

@media (max-width: 900px) {

    .site-navigation {
        position: fixed;
        top: 116px;
        left: 15px;
        right: 15px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        border: 1px solid var(--site-border);
        background: white;
        box-shadow: 0 20px 50px rgba(40,35,29,.12);
    }

        .site-navigation.open {
            display: flex;
        }

    .mobile-navigation-button {
        display: inline-flex;
    }

    .header-discovery-button {
        display: none;
    }

    .hero-benefits-inner {
        grid-template-columns: repeat(2,1fr);
    }

    .hero-benefit:nth-child(2) {
        border-right: 0;
    }

    .home-hero {
        min-height: 800px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-experience {
        right: 20px;
    }

    .discovery-cta-inner,
    .final-contact-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 650px) {

    .site-container {
        width: min( 100% - 30px, var(--site-container) );
    }

    .site-topbar {
        display: none;
    }

    .site-header {
        height: 74px;
    }

    .site-navigation {
        top: 82px;
    }

    .site-logo-main {
        font-size: 20px;
    }

    .hero-content {
        min-height: 590px;
        align-items: flex-end;
        padding-bottom: 150px;
    }

    .hero-overlay {
        background: linear-gradient( 180deg, rgba(242,237,228,.20), rgba(242,237,228,.96) 57% );
    }

    .hero-copy h1 {
        font-size: 46px;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-benefits-inner {
        grid-template-columns: 1fr 1fr;
    }

    .hero-benefit {
        min-height: 80px;
        padding: 13px;
    }

        .hero-benefit:first-child {
            padding-left: 13px;
        }

    .home-section,
    .about-section,
    .guide-section {
        padding: 70px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .home-collection-grid,
    .home-product-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .home-collection-card,
    .home-collection-card:nth-child(2),
    .home-collection-card:nth-child(5) {
        height: 390px;
    }

    .about-image-large {
        height: 430px;
    }

    .about-experience {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 30px);
        margin: -40px auto 0;
    }

    .home-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .home-gallery-item:first-child,
    .home-gallery-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }

    .public-form-grid {
        grid-template-columns: 1fr;
    }

    .public-field.full {
        grid-column: auto;
    }
}

/* =====================================================
   KOCAOĞLU — GLOBAL TYPOGRAPHY
===================================================== */

:root {
    --site-font: 'Manrope', Arial, sans-serif;
}


/* =====================================================
   GLOBAL
===================================================== */

html,
body {
    font-family: var(--site-font);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea,
select,
a {
    font-family: var(--site-font);
}


/* =====================================================
   LOGO
===================================================== */

.site-logo-main {
    font-family: var(--site-font);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.site-logo-sub {
    font-family: var(--site-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
}


/* =====================================================
   HEADER
===================================================== */

.topbar-inner {
    font-size: 12px;
}

.site-navigation a {
    font-family: var(--site-font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.header-discovery-button {
    font-size: 13px;
    font-weight: 700;
}


/* =====================================================
   EYEBROW / KÜÇÜK ÜST BAŞLIKLAR
===================================================== */

.home-eyebrow {
    font-family: var(--site-font);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.14em;
}


/* =====================================================
   TÜM BAŞLIKLAR
===================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
.hero-copy h1,
.section-heading h2,
.about-copy h2,
.home-discovery-cta h2,
.collection-card-content h3,
.about-experience strong,
.product-card-content h3,
.guide-card-content h3,
.final-contact-inner h2,
.public-page-hero h1,
.collection-detail-content h1,
.product-detail-copy h1 {
    font-family: var(--site-font);
    font-weight: 700;
    letter-spacing: -0.035em;
}


/* HERO */

.hero-copy h1 {
    font-size: clamp(52px, 5.6vw, 82px);
    line-height: 1.02;
}

    .hero-copy h1 em {
        display: block;
        font-family: var(--site-font);
        color: var(--site-gold);
        font-style: normal;
        font-weight: 500;
    }

.hero-copy p {
    font-size: 17px;
    line-height: 1.75;
}


/* =====================================================
   SECTION HEADINGS
===================================================== */

.section-heading h2,
.about-copy h2,
.home-discovery-cta h2 {
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.12;
}

    .section-heading h2 em,
    .about-copy h2 em,
    .home-discovery-cta h2 em {
        font-family: var(--site-font);
        color: var(--site-gold);
        font-style: normal;
        font-weight: 500;
    }

.section-heading > p {
    font-size: 16px;
    line-height: 1.75;
}


/* =====================================================
   HERO BENEFITS
===================================================== */

.hero-benefit strong {
    font-size: 14px;
    font-weight: 700;
}

.hero-benefit span {
    font-size: 12px;
}


/* =====================================================
   COLLECTION
===================================================== */

.collection-card-content span {
    font-size: 11px;
}

.collection-card-content h3 {
    font-size: 28px;
    font-weight: 700;
}

.collection-card-content a {
    font-size: 14px;
}


/* =====================================================
   ABOUT
===================================================== */

.about-experience strong {
    font-size: 22px;
    font-weight: 700;
}

.about-experience span {
    font-size: 13px;
    line-height: 1.6;
}

.about-copy > p {
    font-size: 16px;
    line-height: 1.8;
}

.about-features div {
    font-size: 14px;
}


/* =====================================================
   PRODUCT CARDS
===================================================== */

.product-category-tag {
    font-size: 11px;
    font-weight: 700;
}

.product-card-content h3 {
    font-size: 22px;
    line-height: 1.3;
}

.product-card-content p {
    font-size: 15px;
    line-height: 1.7;
}

.product-card-content a {
    font-size: 14px;
}


/* =====================================================
   CTA
===================================================== */

.home-discovery-cta p {
    font-size: 15px;
    line-height: 1.7;
}

.discovery-cta-button {
    font-size: 14px;
}


/* =====================================================
   GALLERY
===================================================== */

.home-gallery-item figcaption span {
    font-size: 13px;
}


/* =====================================================
   MOBİLYA REHBERİ
===================================================== */

.guide-card-content > span {
    font-size: 11px;
}

.guide-card-content h3 {
    font-size: 22px;
    line-height: 1.35;
}

.guide-card-content p {
    font-size: 15px;
    line-height: 1.7;
}

.guide-card-content a {
    font-size: 14px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.final-contact-inner > div:first-child > span {
    font-size: 11px;
}

.final-contact-inner h2 {
    font-size: clamp(31px, 4vw, 46px);
}


/* =====================================================
   FOOTER
===================================================== */

.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
}

.footer-title {
    font-size: 11px;
    font-weight: 700;
}

.footer-column a {
    font-size: 14px;
}

.footer-bottom {
    font-size: 12px;
}


/* =====================================================
   BUTTONS
===================================================== */

.public-primary-button,
.public-outline-button,
.public-dark-link {
    font-size: 14px;
    font-weight: 700;
}


/* =====================================================
   FORMS
===================================================== */

.public-field label,
label,
.form-label {
    font-size: 14px;
    font-weight: 600;
}

.public-input,
.public-textarea,
input,
select,
textarea {
    font-family: var(--site-font);
    font-size: 15px;
}


/* =====================================================
   PUBLIC PAGE
===================================================== */

.public-page-hero p,
.collection-detail-content p {
    font-size: 16px;
    line-height: 1.75;
}

.product-filter {
    font-size: 13px;
}

.product-lead {
    font-size: 17px;
    line-height: 1.75;
}

.product-description {
    font-size: 16px;
    line-height: 1.85;
}

.product-service-list div {
    font-size: 14px;
}


/* =====================================================
   MOBILE TYPOGRAPHY
===================================================== */

@media (max-width: 768px) {

    html,
    body {
        font-size: 16px;
    }

    .site-navigation a {
        font-size: 16px;
    }

    .hero-copy h1 {
        font-size: 44px;
        line-height: 1.06;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .section-heading h2,
    .about-copy h2,
    .home-discovery-cta h2 {
        font-size: 36px;
    }

    .section-heading > p {
        font-size: 15px;
    }

    .product-card-content p,
    .guide-card-content p {
        font-size: 15px;
    }

    .footer-column a {
        font-size: 15px;
    }
}
/* =====================================================
   MOBİLYA REHBERİ — PUBLIC
===================================================== */

.guide-list-section {
    padding: 80px 0 110px;
    background: var(--site-bg);
}


/* =====================================================
   FILTERS
===================================================== */

.guide-filter-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 42px;
}

.guide-filter-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid var(--site-border);
    border-radius: 50px;
    background: #fff;
    color: var(--site-text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

    .guide-filter-item:hover,
    .guide-filter-item.active {
        border-color: var(--site-dark);
        background: var(--site-dark);
        color: #fff;
    }


/* =====================================================
   GUIDE GRID
===================================================== */

.guide-public-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}


/* =====================================================
   CARD
===================================================== */

.guide-public-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(90, 80, 68, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .guide-public-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(50, 42, 32, .08);
    }

.guide-public-image {
    display: block;
    height: 290px;
    overflow: hidden;
    background: #e9e4dc;
}

    .guide-public-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s ease;
    }

.guide-public-card:hover
.guide-public-image img {
    transform: scale(1.035);
}

.guide-public-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--site-gold);
    font-size: 42px;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.guide-public-content {
    padding: 27px;
}

.guide-public-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 11px;
    color: var(--site-muted);
    font-size: 12px;
}

    .guide-public-meta span {
        color: var(--site-gold);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

.guide-public-content h2 {
    margin: 0;
    font-size: 23px;
    line-height: 1.35;
}

    .guide-public-content h2 a {
        color: var(--site-dark);
        text-decoration: none;
    }

.guide-public-content p {
    margin: 13px 0 20px;
    color: var(--site-muted);
    font-size: 15px;
    line-height: 1.75;
}

.guide-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--site-dark);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

    .guide-read-more:hover {
        color: var(--site-gold);
    }


/* =====================================================
   HOME GUIDE HEADING ACTION
===================================================== */

.guide-heading-action {
    max-width: 420px;
}

    .guide-heading-action p {
        margin: 0;
        color: var(--site-muted);
        font-size: 15px;
        line-height: 1.75;
    }

    .guide-heading-action a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 14px;
        color: var(--site-dark);
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }

        .guide-heading-action a:hover {
            color: var(--site-gold);
        }


/* =====================================================
   EMPTY
===================================================== */

.guide-empty {
    padding: 75px 30px;
    text-align: center;
    background: #fff;
}

    .guide-empty > i {
        display: block;
        margin-bottom: 20px;
        color: var(--site-gold);
        font-size: 42px;
    }

    .guide-empty h2 {
        margin: 0;
        font-size: 27px;
    }

    .guide-empty p {
        margin: 13px auto 25px;
        max-width: 500px;
        color: var(--site-muted);
        font-size: 15px;
    }


/* =====================================================
   GUIDE DETAIL HEADER
===================================================== */

.guide-detail-header {
    padding: 75px 0 45px;
    background: #f1ece4;
}

.guide-detail-header-inner {
    max-width: 930px;
}

.guide-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 35px;
    color: var(--site-text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

    .guide-back-link:hover {
        color: var(--site-gold);
    }

.guide-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    color: var(--site-muted);
    font-size: 13px;
}

.guide-detail-category {
    color: var(--site-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.guide-detail-header h1 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.08;
}

.guide-detail-lead {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--site-text);
    font-size: 18px;
    line-height: 1.8;
}


/* =====================================================
   COVER
===================================================== */

.guide-detail-cover {
    height: 600px;
    margin: 50px 0 0;
    overflow: hidden;
    background: #e9e4dc;
}

    .guide-detail-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


/* =====================================================
   ARTICLE
===================================================== */

.guide-detail-body {
    padding: 70px 0 110px;
}

.guide-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 80px;
    align-items: start;
}

.guide-detail-content {
    max-width: 820px;
}

.guide-article-text {
    color: #47433d;
    font-size: 17px;
    line-height: 1.95;
    white-space: pre-line;
}


/* =====================================================
   SIDEBAR
===================================================== */

.guide-detail-sidebar {
    position: sticky;
    top: 120px;
}

.guide-sidebar-card {
    padding: 30px;
    background: #292720;
    color: #fff;
}

    .guide-sidebar-card > span {
        color: #d7b27d;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .12em;
    }

    .guide-sidebar-card h3 {
        margin: 13px 0;
        color: #fff;
        font-size: 24px;
        line-height: 1.35;
    }

    .guide-sidebar-card p {
        margin: 0 0 23px;
        color: rgba(255, 255, 255, .65);
        font-size: 14px;
        line-height: 1.75;
    }

    .guide-sidebar-card
    .public-primary-button {
        background: var(--site-gold);
        border-color: var(--site-gold);
    }


/* =====================================================
   RELATED
===================================================== */

.guide-related-section {
    padding: 90px 0 110px;
    background: #f2eee7;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .guide-public-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-detail-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .guide-detail-sidebar {
        position: static;
    }
}


@media (max-width: 650px) {

    .guide-list-section {
        padding: 55px 0 75px;
    }

    .guide-filter-bar {
        gap: 7px;
        margin-bottom: 30px;
    }

    .guide-filter-item {
        min-height: 39px;
        padding: 0 14px;
        font-size: 12px;
    }

    .guide-public-grid {
        grid-template-columns: 1fr;
    }

    .guide-public-image {
        height: 250px;
    }

    .guide-detail-header {
        padding: 50px 0 35px;
    }

        .guide-detail-header h1 {
            font-size: 39px;
        }

    .guide-detail-lead {
        font-size: 16px;
    }

    .guide-detail-cover {
        height: 340px;
        margin-top: 30px;
    }

    .guide-detail-body {
        padding: 50px 0 75px;
    }

    .guide-article-text {
        font-size: 16px;
        line-height: 1.85;
    }
}
/* =====================================================
   KOCAOĞLU — HOME HERO MULTI SLIDER
   site.css dosyasının EN SONUNA ekleyin
===================================================== */


/* =====================================================
   HERO CONTAINER
===================================================== */

.home-hero {
    position: relative;
    min-height: 710px;
    overflow: hidden;
    background: #ebe5dc;
}


    /* =====================================================
   SLIDER
===================================================== */

    .home-hero .hero-slider {
        position: absolute;
        inset: 0;
        z-index: 1;
    }


    /* =====================================================
   SLIDES
===================================================== */

    .home-hero .hero-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .85s ease, visibility .85s ease;
    }


        .home-hero .hero-slide.active {
            z-index: 2;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }


    /*
 * Slider kaydı yokken kullanılan
 * fallback article da görünür kalır.
 */
    .home-hero > .hero-slide.active {
        position: absolute;
        inset: 0;
    }


    /* =====================================================
   BACKGROUND
===================================================== */

    .home-hero .hero-background {
        position: absolute;
        inset: 0;
        overflow: hidden;
    }


        .home-hero .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.015);
            transition: transform 7s ease;
        }


    /*
 * Aktif sliderda çok hafif
 * sinematik zoom.
 */
    .home-hero .hero-slide.active
    .hero-background img {
        transform: scale(1.065);
    }


    /* =====================================================
   FALLBACK
===================================================== */

    .home-hero .hero-fallback {
        position: absolute;
        inset: 0;
        background: linear-gradient( 110deg, #f0eade, #ded4c3 );
    }


    /* =====================================================
   OVERLAY
===================================================== */

    .home-hero .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(242,237,228,.97) 0%, rgba(242,237,228,.91) 30%, rgba(242,237,228,.55) 51%, rgba(242,237,228,.22) 71%, rgba(242,237,228,.06) 100% );
    }


    /* =====================================================
   HERO CONTENT
===================================================== */

    .home-hero .hero-content {
        position: relative;
        z-index: 5;
        min-height: 620px;
        display: flex;
        align-items: center;
    }


    /* =====================================================
   COPY TRANSITION
===================================================== */

    .home-hero .hero-slide .hero-copy {
        max-width: 650px;
        opacity: 0;
        transform: translateY(22px);
        transition: opacity .65s ease .18s, transform .65s ease .18s;
    }


    .home-hero .hero-slide.active
    .hero-copy {
        opacity: 1;
        transform: translateY(0);
    }


/* =====================================================
   SLIDER ARROWS
===================================================== */

.hero-slider-arrow {
    position: absolute;
    z-index: 30;
    top: calc(50% - 45px);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(36, 35, 31, .16);
    border-radius: 50%;
    background: rgba(250, 248, 244, .82);
    color: var(--site-dark);
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(40, 35, 29, .06);
    transform: translateY(-50%);
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}


    .hero-slider-arrow:hover {
        border-color: var(--site-dark);
        background: var(--site-dark);
        color: #fff;
        box-shadow: 0 12px 30px rgba(40, 35, 29, .14);
    }


    .hero-slider-arrow:focus-visible {
        outline: 2px solid var(--site-gold);
        outline-offset: 3px;
    }


.hero-slider-prev {
    left: 25px;
}


.hero-slider-next {
    right: 25px;
}


/* =====================================================
   COUNTER + DOTS
===================================================== */

.hero-slider-navigation {
    position: absolute;
    z-index: 31;
    right: max( 25px, calc( (100vw - var(--site-container)) / 2 ) );
    /*
     * hero-benefits yaklaşık 90px.
     * Navigasyon onun üzerinde kalır.
     */
    bottom: 112px;
    display: flex;
    align-items: center;
    gap: 22px;
}


/* =====================================================
   COUNTER
===================================================== */

.hero-slider-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--site-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}


    .hero-slider-counter > span:first-child {
        color: var(--site-gold);
        font-size: 15px;
    }


.hero-counter-line {
    width: 32px;
    height: 1px;
    display: block;
    background: rgba(36, 35, 31, .28);
}


/* =====================================================
   DOTS
===================================================== */

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}


.hero-slider-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    border-radius: 30px;
    background: rgba(36, 35, 31, .27);
    cursor: pointer;
    transition: width .25s ease, background .25s ease, transform .25s ease;
}


    .hero-slider-dot:hover {
        background: rgba(36, 35, 31, .48);
    }


    .hero-slider-dot.active {
        width: 27px;
        background: var(--site-gold);
    }


    .hero-slider-dot:focus-visible {
        outline: 2px solid var(--site-gold);
        outline-offset: 3px;
    }


/* =====================================================
   HERO BENEFITS
===================================================== */

.home-hero .hero-benefits {
    position: absolute;
    z-index: 20;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid rgba(70, 60, 50, .10);
    background: rgba(250, 248, 244, .94);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .hero-slider-prev {
        left: 15px;
    }


    .hero-slider-next {
        right: 15px;
    }


    .hero-slider-navigation {
        right: 22px;
    }
}


/* =====================================================
   MOBILE / TABLET
===================================================== */

@media (max-width: 900px) {

    .home-hero {
        min-height: 800px;
    }


        .home-hero .hero-content {
            min-height: 640px;
        }


    .hero-slider-arrow {
        top: auto;
        bottom: 120px;
        width: 43px;
        height: 43px;
        transform: none;
    }


    .hero-slider-prev {
        left: 20px;
    }


    .hero-slider-next {
        left: 73px;
        right: auto;
    }


    .hero-slider-navigation {
        right: 20px;
        bottom: 130px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .home-hero {
        min-height: 820px;
    }


        /*
     * Mobilde yazı aşağıda,
     * fotoğraf yukarıda daha görünür.
     */
        .home-hero .hero-overlay {
            background: linear-gradient( 180deg, rgba(242,237,228,.06) 0%, rgba(242,237,228,.18) 28%, rgba(242,237,228,.72) 51%, rgba(242,237,228,.97) 69%, rgba(242,237,228,.99) 100% );
        }


        .home-hero .hero-content {
            min-height: 650px;
            align-items: flex-end;
            padding-bottom: 110px;
        }


        .home-hero .hero-copy {
            max-width: 100%;
        }


    /*
     * Mobilde okları kaldırıyoruz.
     * Swipe + noktalar kullanılabilir.
     */
    .hero-slider-arrow {
        display: none;
    }


    .hero-slider-navigation {
        left: 15px;
        right: 15px;
        bottom: 175px;
        justify-content: flex-end;
    }


    .hero-slider-counter {
        display: none;
    }


    .hero-slider-dot {
        width: 9px;
        height: 9px;
    }


        .hero-slider-dot.active {
            width: 28px;
        }


    /*
     * Mevcut benefits yapısı mobilde
     * 2 x 2 olarak devam eder.
     */
    .home-hero
    .hero-benefits-inner {
        grid-template-columns: repeat(2, 1fr);
    }


    .home-hero
    .hero-benefit {
        min-height: 80px;
        padding: 13px;
    }
}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media ( prefers-reduced-motion: reduce ) {

    .home-hero .hero-slide,
    .home-hero .hero-slide .hero-copy,
    .home-hero .hero-background img,
    .hero-slider-arrow,
    .hero-slider-dot {
        transition: none !important;
    }


        .home-hero
        .hero-slide.active
        .hero-background img {
            transform: none;
        }
}
/* =====================================================
   KOCAOĞLU — DISCOVERY / ÜCRETSİZ KEŞİF
===================================================== */

.discovery-page {
    padding: 105px 0 120px;
    background: linear-gradient( 135deg, #f7f3ed 0%, #fbfaf7 55%, #f2ece3 100% );
}


/* =====================================================
   LAYOUT
===================================================== */

.discovery-layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
    align-items: start;
    gap: 90px;
}


/* =====================================================
   LEFT INTRO
===================================================== */

.discovery-intro {
    position: sticky;
    top: 135px;
    padding-top: 28px;
}


.discovery-eyebrow,
.form-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--site-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
}


.discovery-intro h1 {
    max-width: 650px;
    margin: 0;
    color: var(--site-dark);
    font-size: clamp( 44px, 4.7vw, 68px );
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -.045em;
}


    .discovery-intro h1 em {
        display: block;
        color: var(--site-gold);
        font-style: normal;
        font-weight: 600;
    }


.discovery-intro > p {
    max-width: 590px;
    margin: 26px 0 0;
    color: #69645c;
    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   BENEFITS
===================================================== */

.discovery-benefits {
    display: grid;
    gap: 19px;
    margin-top: 42px;
    padding-top: 32px;
    border-top: 1px solid var(--site-border);
}


.discovery-benefit {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: start;
    gap: 16px;
}


.discovery-benefit-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfd5c6;
    border-radius: 50%;
    background: rgba(255,255,255,.7);
    color: var(--site-gold);
    font-size: 18px;
}


.discovery-benefit strong {
    display: block;
    margin-top: 2px;
    color: var(--site-dark);
    font-size: 14px;
    font-weight: 700;
}


.discovery-benefit span {
    display: block;
    max-width: 370px;
    margin-top: 5px;
    color: var(--site-muted);
    font-size: 13px;
    line-height: 1.65;
}


/* =====================================================
   FORM CARD
===================================================== */

.discovery-form-card {
    padding: 48px;
    border: 1px solid rgba(180,163,140,.25);
    border-radius: 8px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 28px 70px rgba(48,41,32,.08);
}


    .discovery-form-card h2 {
        margin: 0;
        color: var(--site-dark);
        font-size: clamp( 30px, 3vw, 42px );
        font-weight: 650;
        line-height: 1.12;
    }


.form-description {
    margin: 13px 0 32px;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.75;
}


/* =====================================================
   FORM
===================================================== */

.discovery-form-card
.public-form-grid {
    gap: 21px 18px;
}


.discovery-form-card
.public-field {
    gap: 8px;
}


    .discovery-form-card
    .public-field label {
        color: #4d4942;
        font-size: 13px;
        font-weight: 700;
    }


.discovery-form-card
.public-input,
.discovery-form-card
.public-textarea {
    border: 1px solid #dcd5cb;
    border-radius: 5px;
    background: #fff;
    color: var(--site-dark);
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}


.discovery-form-card
.public-input {
    height: 52px;
    padding: 0 15px;
}


.discovery-form-card
select.public-input {
    cursor: pointer;
}


.discovery-form-card
.public-textarea {
    min-height: 145px;
    padding: 14px 15px;
    line-height: 1.7;
}


    .discovery-form-card
    .public-input::placeholder,
    .discovery-form-card
    .public-textarea::placeholder {
        color: #aaa49b;
    }


    .discovery-form-card
    .public-input:focus,
    .discovery-form-card
    .public-textarea:focus {
        border-color: var(--site-gold);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(173,129,73,.09);
    }


/* =====================================================
   VALIDATION
===================================================== */

.public-validation,
.public-field-error {
    color: #b2483f;
    font-size: 12px;
}


    .public-validation:empty,
    .public-field-error:empty {
        display: none;
    }


/* =====================================================
   SUBMIT
===================================================== */

.discovery-submit {
    width: 100%;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    padding: 0 24px;
    border: 0;
    border-radius: 5px;
    background: var(--site-dark);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}


    .discovery-submit:hover {
        background: var(--site-gold);
        transform: translateY(-1px);
        box-shadow: 0 12px 28px rgba(69,55,37,.16);
    }


    .discovery-submit i {
        transition: transform .25s ease;
    }


    .discovery-submit:hover i {
        transform: translateX(4px);
    }


/* =====================================================
   PRIVACY NOTE
===================================================== */

.discovery-form-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 16px 0 0;
    color: #8c867d;
    font-size: 11px;
    line-height: 1.65;
}


    .discovery-form-note i {
        margin-top: 2px;
        color: var(--site-gold);
    }


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .discovery-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .discovery-intro {
        position: static;
        max-width: 760px;
    }


    .discovery-form-card {
        max-width: 760px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .discovery-page {
        padding: 65px 0 75px;
    }


    .discovery-layout {
        gap: 40px;
    }


    .discovery-intro {
        padding-top: 0;
    }


        .discovery-intro h1 {
            font-size: 40px;
        }


        .discovery-intro > p {
            font-size: 15px;
        }


    .discovery-benefits {
        margin-top: 30px;
        padding-top: 25px;
    }


    .discovery-form-card {
        padding: 30px 20px;
        border-radius: 6px;
    }


        .discovery-form-card h2 {
            font-size: 30px;
        }


        .discovery-form-card
        .public-form-grid {
            grid-template-columns: 1fr;
        }


        .discovery-form-card
        .public-field.full {
            grid-column: auto;
        }
}
/* =====================================================
   KOCAOĞLU — DISCOVERY SUCCESS
===================================================== */

.discovery-success-page {
    min-height: 690px;
    display: flex;
    align-items: center;
    padding: 95px 0;
    background: radial-gradient( circle at 50% 0%, rgba(173,129,73,.10), transparent 38% ), linear-gradient( 135deg, #f7f3ed 0%, #fbfaf7 55%, #f2ece3 100% );
}


/* =====================================================
   CARD
===================================================== */

.discovery-success-card {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 60px 65px;
    border: 1px solid rgba(180,163,140,.28);
    border-radius: 10px;
    background: rgba(255,255,255,.94);
    text-align: center;
    box-shadow: 0 30px 80px rgba(48,41,32,.09);
}


/* =====================================================
   ICON
===================================================== */

.discovery-success-icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    border: 1px solid rgba(173,129,73,.30);
    border-radius: 50%;
    background: #f5eee4;
    color: var(--site-gold);
    font-size: 36px;
}


/* =====================================================
   EYEBROW
===================================================== */

.discovery-success-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--site-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
}


/* =====================================================
   TITLE
===================================================== */

.discovery-success-card h1 {
    max-width: 620px;
    margin: 0 auto;
    color: var(--site-dark);
    font-size: clamp( 38px, 5vw, 58px );
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.04em;
}


    .discovery-success-card h1 em {
        display: block;
        color: var(--site-gold);
        font-style: normal;
        font-weight: 600;
    }


/* =====================================================
   DESCRIPTION
===================================================== */

.discovery-success-lead {
    max-width: 570px;
    margin: 22px auto 0;
    color: #69645c;
    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   PROCESS INFO
===================================================== */

.discovery-success-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 38px;
    padding: 27px 0;
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border);
}


    .discovery-success-info > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0 18px;
        border-right: 1px solid var(--site-border);
    }


        .discovery-success-info > div:last-child {
            border-right: 0;
        }


    .discovery-success-info i {
        color: var(--site-gold);
        font-size: 21px;
    }


    .discovery-success-info span {
        color: #69645c;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.55;
    }


/* =====================================================
   ACTIONS
===================================================== */

.discovery-success-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}


.discovery-success-primary,
.discovery-success-secondary {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 24px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}


.discovery-success-primary {
    border: 1px solid var(--site-dark);
    background: var(--site-dark);
    color: #fff;
}


    .discovery-success-primary:hover {
        border-color: var(--site-gold);
        background: var(--site-gold);
        color: #fff;
        transform: translateY(-1px);
    }


    .discovery-success-primary i {
        transition: transform .25s ease;
    }


    .discovery-success-primary:hover i {
        transform: translateX(4px);
    }


.discovery-success-secondary {
    border: 1px solid #cfc6ba;
    background: transparent;
    color: var(--site-dark);
}


    .discovery-success-secondary:hover {
        border-color: var(--site-dark);
        background: #fff;
    }


/* =====================================================
   PRIVACY
===================================================== */

.discovery-success-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    max-width: 510px;
    margin: 23px auto 0;
    color: #989188;
    font-size: 11px;
    line-height: 1.6;
}


    .discovery-success-bottom i {
        flex: 0 0 auto;
        color: var(--site-gold);
        font-size: 14px;
    }


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .discovery-success-page {
        min-height: auto;
        padding: 65px 0 75px;
    }


    .discovery-success-card {
        padding: 42px 20px;
    }


    .discovery-success-icon {
        width: 66px;
        height: 66px;
        font-size: 30px;
    }


    .discovery-success-card h1 {
        font-size: 38px;
    }


    .discovery-success-lead {
        font-size: 15px;
    }


    .discovery-success-info {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 5px 0;
    }


        .discovery-success-info > div {
            flex-direction: row;
            justify-content: flex-start;
            text-align: left;
            padding: 17px 4px;
            border-right: 0;
            border-bottom: 1px solid var(--site-border);
        }


            .discovery-success-info > div:last-child {
                border-bottom: 0;
            }


        .discovery-success-info i {
            width: 30px;
            text-align: center;
        }


    .discovery-success-actions {
        flex-direction: column;
        align-items: stretch;
    }


    .discovery-success-primary,
    .discovery-success-secondary {
        width: 100%;
    }
}
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page-hero {
    padding: 100px 0 70px;
    background: linear-gradient( 135deg, #f6f2eb 0%, #fbfaf8 100% );
    border-bottom: 1px solid rgba(35,31,26,.07);
}


    .contact-page-hero h1 {
        max-width: 800px;
        margin: 12px 0 20px;
        color: #201d19;
        font-size: clamp(42px, 6vw, 76px);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -3px;
    }


        .contact-page-hero h1 span {
            color: #ad8149;
        }


    .contact-page-hero p {
        max-width: 650px;
        margin: 0;
        color: #777069;
        font-size: 16px;
        line-height: 1.8;
    }


/* =========================================================
   MAIN
========================================================= */

.contact-page-section {
    padding: 90px 0;
    background: #fff;
}


.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
    gap: 70px;
    align-items: start;
}


.contact-section-heading {
    margin-bottom: 32px;
}


    .contact-section-heading h2,
    .contact-form-header h2,
    .contact-map-heading h2 {
        margin: 8px 0 12px;
        color: #221f1b;
        font-size: clamp(28px, 3vw, 42px);
        line-height: 1.15;
        letter-spacing: -1.5px;
    }


    .contact-section-heading p,
    .contact-form-header p {
        max-width: 560px;
        margin: 0;
        color: #817a72;
        font-size: 14px;
        line-height: 1.75;
    }


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info-side {
    display: flex;
    flex-direction: column;
}


.contact-info-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #ece8e1;
    color: inherit;
    text-decoration: none;
    transition: padding-left .2s ease, color .2s ease;
}


a.contact-info-card:hover {
    padding-left: 5px;
}


.contact-info-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f3eee6;
    color: #ad8149;
    font-size: 17px;
}


    .contact-info-icon.whatsapp {
        background: #edf7ef;
        color: #278a48;
    }


.contact-info-content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}


    .contact-info-content small {
        color: #a29b92;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1px;
    }


    .contact-info-content strong {
        color: #292621;
        font-size: 13px;
        overflow-wrap: anywhere;
    }


    .contact-info-content span {
        color: #8c857d;
        font-size: 11px;
    }


.contact-info-arrow {
    color: #ad8149;
    font-size: 14px;
}


.contact-hours {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    background: #f8f6f2;
}


.contact-hours-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #ad8149;
}


.contact-hours > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.contact-hours small {
    color: #999188;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .8px;
}


.contact-hours strong {
    color: #302c27;
    font-size: 12px;
}


.contact-hours span {
    color: #777069;
    font-size: 11px;
}


/* =========================================================
   FORM
========================================================= */

.contact-form-card {
    padding: 38px;
    border: 1px solid #ebe6df;
    border-radius: 18px;
    background: #faf9f7;
    box-shadow: 0 20px 60px rgba(41,34,25,.05);
}


.contact-form-header {
    margin-bottom: 30px;
}


.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}


.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


    .contact-form-field.full {
        grid-column: 1 / -1;
    }


    .contact-form-field label {
        color: #37322c;
        font-size: 11px;
        font-weight: 700;
    }


    .contact-form-field input,
    .contact-form-field select,
    .contact-form-field textarea {
        width: 100%;
        border: 1px solid #e2ddd5;
        border-radius: 8px;
        background: #fff;
        color: #292621;
        font: inherit;
        font-size: 13px;
        outline: none;
        transition: border-color .2s ease, box-shadow .2s ease;
    }


    .contact-form-field input,
    .contact-form-field select {
        height: 50px;
        padding: 0 14px;
    }


    .contact-form-field textarea {
        padding: 14px;
        resize: vertical;
        line-height: 1.65;
    }


        .contact-form-field input:focus,
        .contact-form-field select:focus,
        .contact-form-field textarea:focus {
            border-color: #ad8149;
            box-shadow: 0 0 0 3px rgba(173,129,73,.08);
        }


.contact-submit-button {
    min-height: 52px;
    margin-top: 22px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 7px;
    background: #27231f;
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}


    .contact-submit-button:hover {
        background: #ad8149;
        transform: translateY(-1px);
    }


.contact-validation {
    color: #b44b4b;
    font-size: 10px;
}


.contact-validation-summary {
    margin-bottom: 18px;
    color: #b44b4b;
    font-size: 11px;
}


    .contact-validation-summary:empty {
        display: none;
    }


/* =========================================================
   MAP
========================================================= */

.contact-map-section {
    padding: 30px 0 90px;
    background: #fff;
}


.contact-map-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}


.contact-map-address {
    max-width: 400px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #777069;
    font-size: 12px;
    text-align: right;
}


    .contact-map-address i {
        color: #ad8149;
    }


.contact-map-frame {
    height: 440px;
    overflow: hidden;
    border-radius: 18px;
    background: #eeeae4;
}


    .contact-map-frame iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
    }


/* =========================================================
   CTA
========================================================= */

.contact-discovery-cta {
    padding: 0 0 90px;
    background: #fff;
}


.contact-discovery-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px;
    border-radius: 20px;
    background: #26221e;
    color: #fff;
}


    .contact-discovery-inner > div > span {
        color: #cba56f;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.2px;
    }


    .contact-discovery-inner h2 {
        max-width: 650px;
        margin: 10px 0 12px;
        font-size: clamp(28px, 4vw, 46px);
        line-height: 1.15;
        letter-spacing: -1.5px;
    }


    .contact-discovery-inner p {
        max-width: 600px;
        margin: 0;
        color: rgba(255,255,255,.62);
        font-size: 13px;
        line-height: 1.7;
    }


    .contact-discovery-inner > a {
        flex: 0 0 auto;
        min-height: 50px;
        padding: 0 22px;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        border-radius: 6px;
        background: #bd9258;
        color: #fff;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }


    .contact-discovery-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .contact-page-hero {
        padding: 65px 0 50px;
    }


        .contact-page-hero h1 {
            letter-spacing: -2px;
        }


    .contact-page-section {
        padding: 60px 0;
    }


    .contact-form-card {
        padding: 24px 18px;
    }


    .contact-form-grid {
        grid-template-columns: 1fr;
    }


    .contact-form-field.full {
        grid-column: auto;
    }


    .contact-map-heading {
        align-items: flex-start;
        flex-direction: column;
    }


    .contact-map-address {
        text-align: left;
    }


    .contact-map-frame {
        height: 340px;
    }


    .contact-discovery-inner {
        padding: 32px 24px;
    }


        .contact-discovery-inner > a {
            width: 100%;
            justify-content: center;
        }
}
/* =========================================================
   KOCAOĞLU LOGO
========================================================= */

.site-logo-image-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-image {
    display: block;
    width: auto;
    height: 64px;
    object-fit: contain;
}

@media (max-width: 650px) {

    .site-logo-image {
        height: 52px;
    }
}
/* =========================================================
   CONTACT DIRECTIONS
========================================================= */

.contact-directions-button {
    min-height: 50px;
    margin-top: 18px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 8px;
    background: #27231f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}


    .contact-directions-button:hover {
        background: #ad8149;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(68, 52, 34, .14);
    }