﻿:root {
    --dark: #1d1b18;
    --dark-soft: #2b2824;
    --beige: #c7aa82;
    --beige-light: #eee7dd;
    --cream: #f7f4ef;
    --text: #25231f;
    --muted: #77716a;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* HERO */

.hero {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient( rgba(20, 18, 15, .34), rgba(20, 18, 15, .50) ), url('/images/hero-placeholder.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(12, 11, 10, .72) 0%, rgba(12, 11, 10, .25) 62%, rgba(12, 11, 10, .05) 100% );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 700px;
    color: white;
}

.hero-eyebrow,
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 700;
    color: #a18462;
    margin-bottom: 18px;
}

.hero-eyebrow {
    color: #e3c49d;
}

.hero h1 {
    font-size: clamp(45px, 6vw, 78px);
    line-height: 1.02;
    margin: 0;
    font-weight: 500;
    letter-spacing: -2.5px;
}

    .hero h1 span {
        display: block;
        color: #e9d0af;
    }

.hero p {
    max-width: 610px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.85);
    margin: 28px 0 35px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-main,
.btn-outline,
.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .25s ease;
}

.btn-main {
    background: #c7aa82;
    color: #1c1915;
}

    .btn-main:hover {
        background: #d7bd99;
        color: #1c1915;
    }

.btn-outline {
    border: 1px solid rgba(255,255,255,.6);
    color: white;
}

    .btn-outline:hover {
        background: white;
        color: #222;
    }

.btn-light {
    background: white;
    color: var(--dark);
}


/* SECTIONS */

.intro-section,
.products-section,
.gallery-section,
.areas-section {
    padding: 105px 0;
}

.intro-section {
    background: var(--cream);
}

.products-section {
    background: white;
}

.gallery-section {
    background: #f4f0ea;
}

.areas-section {
    background: white;
}

.section-heading {
    margin-bottom: 45px;
}

    .section-heading.centered {
        max-width: 720px;
        text-align: center;
        margin: 0 auto 50px;
    }

    .section-heading h2 {
        margin: 0;
        font-size: clamp(32px, 4vw, 47px);
        font-weight: 500;
        letter-spacing: -1.4px;
    }

    .section-heading p {
        color: var(--muted);
        line-height: 1.8;
        margin-top: 15px;
    }


/* CATEGORIES */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    text-decoration: none;
    color: white;
}

.category-image {
    position: relative;
    height: 390px;
    overflow: hidden;
    background: #ddd8d1;
}

    .category-image img,
    .image-placeholder {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.category-card:hover img {
    transform: scale(1.04);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 0deg, rgba(20,18,16,.72), rgba(20,18,16,.02) 65% );
}

.category-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
}

    .category-content h3 {
        margin: 0 0 8px;
        font-size: 24px;
        font-weight: 500;
    }

    .category-content span {
        font-size: 12px;
        letter-spacing: 1px;
        color: rgba(255,255,255,.8);
    }


/* PRODUCTS */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-image {
    position: relative;
    height: 340px;
    overflow: hidden;
    background: #eeeae5;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,.92);
    padding: 7px 10px;
    font-size: 11px;
    letter-spacing: .4px;
}

.product-body {
    padding: 18px 2px;
}

    .product-body h3 {
        margin: 0 0 10px;
        font-size: 20px;
    }

    .product-body p {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.6;
    }

.product-link {
    display: inline-block;
    color: #967650;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
}


/* SERVICE BANNER */

.service-banner {
    background: var(--dark);
    color: white;
    padding: 85px 0;
}

.service-banner-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: center;
}

.section-eyebrow.light {
    color: #d6bb98;
}

.service-banner h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 49px);
    line-height: 1.15;
    font-weight: 500;
}

.service-banner-right p {
    color: rgba(255,255,255,.72);
    line-height: 1.8;
    margin-bottom: 25px;
}


/* GALLERY */

.home-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.home-gallery-item {
    height: 300px;
    position: relative;
    overflow: hidden;
}

    .home-gallery-item:nth-child(1),
    .home-gallery-item:nth-child(6) {
        grid-column: span 2;
    }

    .home-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s ease;
    }

    .home-gallery-item:hover img {
        transform: scale(1.04);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    background: linear-gradient( 0deg, rgba(15,14,12,.70), transparent 65% );
    color: white;
}

    .gallery-overlay span {
        font-size: 11px;
        color: #e1c9aa;
    }

    .gallery-overlay h3 {
        margin: 5px 0 0;
        font-size: 18px;
    }


/* AREAS */

.area-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .area-list a {
        text-decoration: none;
        color: #544b42;
        border: 1px solid #ded8d0;
        padding: 11px 17px;
        border-radius: 30px;
        transition: .2s;
    }

        .area-list a:hover {
            background: var(--dark);
            color: white;
            border-color: var(--dark);
        }


/* MEASUREMENT */

.measurement-section {
    padding: 100px 0;
    background: #eee7dd;
}

.measurement-box {
    background: #25221e;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.measurement-content {
    padding: 65px;
}

    .measurement-content h2 {
        font-size: 43px;
        font-weight: 500;
        margin: 0 0 20px;
    }

    .measurement-content p {
        color: rgba(255,255,255,.72);
        line-height: 1.8;
    }

.measurement-phone {
    margin-top: 35px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
}

    .measurement-phone strong {
        display: block;
        color: white;
        font-size: 25px;
        margin-top: 7px;
    }

.measurement-form-placeholder {
    margin: 25px;
    padding: 45px;
    background: white;
    color: var(--dark);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .measurement-form-placeholder h3 {
        font-size: 28px;
        margin: 0 0 15px;
    }

    .measurement-form-placeholder p {
        color: var(--muted);
        line-height: 1.7;
    }

.empty-content {
    background: #f6f4f1;
    padding: 35px;
    color: #888;
    text-align: center;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-banner-grid,
    .measurement-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .hero {
        min-height: 650px;
    }

        .hero h1 {
            letter-spacing: -1px;
        }

    .category-grid,
    .product-grid,
    .home-gallery {
        grid-template-columns: 1fr;
    }

    .category-image {
        height: 330px;
    }

    .home-gallery-item,
    .home-gallery-item:nth-child(1),
    .home-gallery-item:nth-child(6) {
        grid-column: auto;
    }

    .intro-section,
    .products-section,
    .gallery-section,
    .areas-section {
        padding: 75px 0;
    }

    .measurement-content {
        padding: 40px 25px;
    }

    .measurement-form-placeholder {
        margin: 12px;
        padding: 30px 22px;
    }
}


/* =========================================================
   PUBLIC HEADER
========================================================= */

.public-header {
    position: relative;
    z-index: 1000;
    background: #ffffff;
}

.header-top {
    background: #211f1b;
    color: rgba(255,255,255,.75);
    font-size: 12px;
}

.header-top-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-top-right {
    display: flex;
    gap: 22px;
    align-items: center;
}

.header-top a {
    color: rgba(255,255,255,.82);
    text-decoration: none;
}

    .header-top a:hover {
        color: white;
    }


.main-header {
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #eeeae4;
}

.main-header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-logo {
    flex-shrink: 0;
    text-decoration: none;
    color: #222;
}

    .site-logo img {
        max-width: 190px;
        max-height: 58px;
        object-fit: contain;
    }

.text-logo {
    display: flex;
    flex-direction: column;
    line-height: .92;
}

    .text-logo strong {
        font-size: 23px;
        letter-spacing: -.7px;
    }

    .text-logo span {
        color: #a98761;
        font-size: 17px;
        letter-spacing: 3px;
        text-transform: uppercase;
    }


.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
}

    .desktop-nav > a,
    .nav-dropdown-button {
        position: relative;
        background: none;
        border: none;
        padding: 31px 0;
        color: #393530;
        font-size: 14px;
        text-decoration: none;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
    }

        .desktop-nav > a::after,
        .nav-dropdown-button::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 22px;
            width: 0;
            height: 1px;
            background: #aa8964;
            transition: width .25s ease;
        }

        .desktop-nav > a:hover::after,
        .nav-dropdown:hover .nav-dropdown-button::after {
            width: 100%;
        }

        .desktop-nav > a:hover,
        .nav-dropdown-button:hover {
            color: #8e6d49;
        }


.nav-dropdown {
    position: relative;
}

.nav-dropdown-button span {
    font-size: 13px;
    margin-left: 5px;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% - 7px);
    left: -22px;
    width: 230px;
    padding: 10px;
    background: white;
    border: 1px solid #eee8e1;
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 11px 13px;
    text-decoration: none;
    color: #4d4741;
    font-size: 13px;
    border-radius: 3px;
}

    .nav-dropdown-menu a:hover {
        background: #f5f1eb;
        color: #8b6944;
    }


.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.header-whatsapp {
    text-decoration: none;
    color: #4d473f;
    border: 1px solid #ded8d0;
    padding: 11px 14px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

    .header-whatsapp:hover {
        color: #29251f;
        border-color: #aaa198;
    }

.header-measurement {
    background: #29251f;
    color: white;
    text-decoration: none;
    padding: 12px 17px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

    .header-measurement:hover {
        color: white;
        background: #403930;
    }


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #e4dfd9;
    background: white;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .mobile-menu-button span {
        display: block;
        width: 20px;
        height: 1.5px;
        background: #2c2823;
        transition: .2s ease;
    }

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #eee9e4;
    border-bottom: 1px solid #eee9e4;
}

    .mobile-menu.open {
        display: block;
    }

.mobile-menu-inner {
    width: min(100% - 28px, 1180px);
    margin: auto;
    padding: 12px 0 22px;
}

    .mobile-menu-inner > a {
        display: block;
        text-decoration: none;
        color: #332f2a;
        padding: 13px 5px;
        border-bottom: 1px solid #f0ece7;
        font-size: 14px;
        font-weight: 600;
    }

.mobile-menu-title {
    color: #a2825f;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding: 21px 5px 7px;
}

.mobile-menu-inner .mobile-sub-link {
    padding-left: 18px;
    color: #6f675f;
    font-weight: 500;
}

.mobile-menu-inner .mobile-measurement {
    background: #29251f;
    color: white;
    margin-top: 15px;
    padding: 14px 16px;
    text-align: center;
    border-bottom: none;
}


/* =========================================================
   FOOTER
========================================================= */

.public-footer {
    background: #1e1c19;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 70px;
    padding-top: 75px;
    padding-bottom: 70px;
}

.footer-logo {
    max-width: 190px;
    max-height: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 22px;
}

.footer-text-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

    .footer-text-logo strong {
        font-size: 27px;
    }

    .footer-text-logo span {
        color: #c4a681;
        text-transform: uppercase;
        letter-spacing: 4px;
        font-size: 16px;
    }

.footer-brand p {
    max-width: 330px;
    color: rgba(255,255,255,.57);
    line-height: 1.8;
    font-size: 14px;
}

.footer-column h4 {
    margin: 0 0 20px;
    font-size: 14px;
    letter-spacing: .4px;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,.62);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 11px;
    line-height: 1.5;
}

    .footer-column a:hover {
        color: #d4b78f;
    }

.footer-address {
    color: rgba(255,255,255,.60);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.42);
    font-size: 12px;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    min-width: 120px;
    height: 48px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #202d24;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

    .floating-whatsapp:hover {
        color: white;
        background: #2c3d31;
    }


/* =========================================================
   HEADER RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

    .desktop-nav {
        gap: 17px;
    }

    .header-whatsapp {
        display: none;
    }
}

@media (max-width: 980px) {

    .header-top {
        display: none;
    }

    .main-header-inner {
        min-height: 74px;
    }

    .desktop-nav {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .mobile-menu-button {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
}

@media (max-width: 650px) {

    .site-logo img {
        max-width: 155px;
        max-height: 48px;
    }

    .text-logo strong {
        font-size: 20px;
    }

    .text-logo span {
        font-size: 13px;
    }

    .header-measurement {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 55px;
        padding-bottom: 50px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 18px 0;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }
}
/* =========================================================
   INNER PAGE HERO
========================================================= */

.inner-hero {
    background: #f3eee7;
    padding: 85px 0 75px;
    border-bottom: 1px solid #e8e1d8;
}

    .inner-hero h1 {
        margin: 0;
        font-size: clamp(38px, 5vw, 62px);
        font-weight: 500;
        letter-spacing: -1.8px;
    }

    .inner-hero p {
        max-width: 720px;
        margin-top: 18px;
        color: #716a62;
        line-height: 1.8;
        font-size: 16px;
    }

.category-products-section {
    padding: 90px 0 110px;
}


/* =========================================================
   PRODUCT DETAIL
========================================================= */

.product-detail-section {
    padding: 80px 0 110px;
    background: white;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 70px;
    align-items: start;
}

.product-detail-main {
    width: 100%;
    height: 620px;
    background: #eeeae5;
    overflow: hidden;
}

    .product-detail-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.thumbnail-button {
    border: 1px solid #e4ded7;
    background: white;
    padding: 0;
    height: 95px;
    cursor: pointer;
    overflow: hidden;
}

    .thumbnail-button img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .thumbnail-button:hover {
        border-color: #9a7b58;
    }

.product-detail-content {
    padding-top: 20px;
}

.product-category-name {
    color: #9b7a56;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.product-detail-content h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -1.8px;
}

.product-lead {
    color: #777069;
    font-size: 17px;
    line-height: 1.8;
    margin: 24px 0 0;
}

.product-detail-divider {
    height: 1px;
    background: #eae5df;
    margin: 30px 0;
}

.product-description {
    white-space: pre-line;
    color: #57514a;
    line-height: 1.9;
    font-size: 15px;
}

.product-detail-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.detail-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    text-decoration: none;
    border: 1px solid #d8d1c9;
    color: #36312c;
    font-weight: 700;
    font-size: 14px;
}

    .detail-secondary-button:hover {
        color: #36312c;
        background: #f5f1ec;
    }

.product-benefits {
    margin-top: 42px;
    border-top: 1px solid #ece7e1;
}

    .product-benefits > div {
        padding: 17px 0;
        border-bottom: 1px solid #ece7e1;
    }

    .product-benefits strong {
        display: block;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .product-benefits span {
        color: #888078;
        font-size: 13px;
    }

@media (max-width: 900px) {

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-detail-main {
        height: 520px;
    }
}

@media (max-width: 600px) {

    .inner-hero {
        padding: 60px 0 50px;
    }

    .category-products-section,
    .product-detail-section {
        padding: 65px 0 80px;
    }

    .product-detail-main {
        height: 420px;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .thumbnail-button {
        height: 78px;
    }
}

/* =========================================================
   MEASUREMENT FORM
========================================================= */

.measurement-form-box {
    margin: 25px;
    padding: 42px;
    background: #ffffff;
    color: #25221e;
    align-self: stretch;
}

    .measurement-form-box h3 {
        margin: 0;
        font-size: 28px;
        font-weight: 600;
        letter-spacing: -.6px;
    }

.measurement-form-description {
    margin: 10px 0 27px;
    color: #817970;
    line-height: 1.6;
    font-size: 14px;
}

.measurement-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.measurement-field.full {
    grid-column: 1 / -1;
}

.measurement-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
    color: #504941;
}

.measurement-field input,
.measurement-field select,
.measurement-field textarea {
    display: block;
    width: 100%;
    border: 1px solid #ded8d0;
    background: #ffffff;
    color: #29251f;
    padding: 13px 14px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    border-radius: 0;
    transition: border-color .2s ease;
}

.measurement-field input,
.measurement-field select {
    height: 48px;
}

.measurement-field textarea {
    min-height: 105px;
    resize: vertical;
}

    .measurement-field input:focus,
    .measurement-field select:focus,
    .measurement-field textarea:focus {
        border-color: #9f7f5a;
    }

    .measurement-field input::placeholder,
    .measurement-field textarea::placeholder {
        color: #aaa39b;
    }

.measurement-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 20px;
    border: none;
    background: #29251f;
    color: white;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

    .measurement-submit:hover {
        background: #413a32;
    }

.measurement-privacy {
    margin-top: 13px;
    text-align: center;
    color: #aaa198;
    font-size: 10px;
    line-height: 1.5;
}

.measurement-success {
    background: #eaf6ed;
    color: #28633a;
    border: 1px solid #d1e9d7;
    padding: 12px 14px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
}

.measurement-error {
    background: #fbecec;
    color: #9b2c2c;
    border: 1px solid #f0d0d0;
    padding: 12px 14px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 650px) {

    .measurement-form-box {
        margin: 12px;
        padding: 30px 22px;
    }

    .measurement-form-grid {
        grid-template-columns: 1fr;
    }

    .measurement-field.full {
        grid-column: auto;
    }
}

/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-page-section {
    padding: 80px 0 110px;
    background: #f8f6f2;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 45px;
}

.gallery-filter {
    padding: 10px 17px;
    border: 1px solid #ddd6ce;
    background: white;
    color: #5c554e;
    text-decoration: none;
    font-size: 13px;
    transition: .2s ease;
}

    .gallery-filter:hover,
    .gallery-filter.active {
        background: #29251f;
        border-color: #29251f;
        color: white;
    }

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-page-item {
    height: 410px;
    position: relative;
    overflow: hidden;
    background: #e9e4de;
}

    .gallery-page-item:nth-child(5n + 1) {
        grid-row: span 2;
        height: 835px;
    }

    .gallery-page-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .gallery-page-item:hover img {
        transform: scale(1.035);
    }

.gallery-page-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    background: linear-gradient( 0deg, rgba(20,18,16,.70), transparent 60% );
    color: white;
}

    .gallery-page-overlay span {
        color: #dbc09d;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .gallery-page-overlay h3 {
        margin: 6px 0 0;
        font-size: 20px;
        font-weight: 500;
    }


/* =========================================================
   GENERIC PAGE CTA
========================================================= */

.page-cta {
    padding: 75px 0;
    background: #25221e;
    color: white;
}

.page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.page-cta h2 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(30px, 4vw, 45px);
    font-weight: 500;
}


/* =========================================================
   ABOUT
========================================================= */

.about-intro {
    padding: 105px 0;
    background: white;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
}

.about-title h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.about-copy p {
    margin: 0 0 22px;
    color: #6e675f;
    line-height: 1.95;
    font-size: 15px;
}

.about-values {
    padding: 100px 0;
    background: #f4f0ea;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.value-card {
    background: white;
    padding: 35px 28px;
    min-height: 260px;
}

.value-number {
    color: #b09371;
    font-size: 12px;
    letter-spacing: 2px;
}

.value-card h3 {
    margin: 45px 0 13px;
    font-size: 20px;
}

.value-card p {
    margin: 0;
    color: #777068;
    font-size: 14px;
    line-height: 1.75;
}

.about-dark {
    padding: 100px 0;
    background: #211f1b;
    color: white;
}

.about-dark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-dark h2 {
    margin: 0;
    max-width: 520px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.15;
    font-weight: 500;
}

.about-features > div {
    padding: 19px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.about-features strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.about-features span {
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

.about-final-cta {
    padding: 105px 0;
    text-align: center;
    background: #eee7dd;
}

    .about-final-cta h2 {
        margin: 0;
        font-size: clamp(36px, 5vw, 55px);
        font-weight: 500;
    }

    .about-final-cta p {
        color: #756d64;
        line-height: 1.7;
        margin: 18px 0 28px;
    }


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 100px 0 120px;
    background: #f7f4ef;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: stretch;
}

.contact-info {
    padding: 30px 10px;
}

    .contact-info h2 {
        margin: 0;
        font-size: clamp(34px, 4vw, 49px);
        font-weight: 500;
        letter-spacing: -1.4px;
    }

.contact-lead {
    color: #746d65;
    line-height: 1.8;
    margin: 20px 0 40px;
    max-width: 520px;
}

.contact-item {
    padding: 18px 0;
    border-bottom: 1px solid #ded8d0;
}

    .contact-item > span {
        display: block;
        color: #9b8060;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.6px;
        margin-bottom: 7px;
    }

    .contact-item a,
    .contact-item div {
        color: #342f2a;
        text-decoration: none;
        font-size: 16px;
        line-height: 1.6;
    }

        .contact-item a:hover {
            color: #9a7954;
        }

.contact-action-box {
    background: #29251f;
    color: white;
    padding: 65px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .contact-action-box h2 {
        margin: 0;
        font-size: clamp(34px, 4vw, 48px);
        line-height: 1.15;
        font-weight: 500;
    }

    .contact-action-box p {
        color: rgba(255,255,255,.65);
        line-height: 1.8;
        margin: 22px 0 30px;
    }

    .contact-action-box .btn-light {
        align-self: flex-start;
    }

.contact-direct {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.50);
    font-size: 12px;
}

    .contact-direct a {
        display: block;
        color: white;
        font-size: 22px;
        font-weight: 600;
        text-decoration: none;
        margin-top: 6px;
    }


/* =========================================================
   PAGE RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-page-item:nth-child(5n + 1) {
        grid-row: auto;
        height: 410px;
    }

    .about-intro-grid,
    .about-dark-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {

    .gallery-page-section,
    .about-intro,
    .about-values,
    .about-dark,
    .about-final-cta,
    .contact-section {
        padding: 65px 0;
    }

    .gallery-page-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page-item,
    .gallery-page-item:nth-child(5n + 1) {
        height: 380px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .contact-action-box {
        padding: 40px 27px;
    }
}

/* =========================================================
   SERVICE AREA DETAIL
========================================================= */

.area-detail-hero {
    min-height: 570px;
    position: relative;
    display: flex;
    align-items: center;
    background: #27231f;
    color: white;
    overflow: hidden;
}

.area-detail-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.area-detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(22,19,16,.90) 0%, rgba(22,19,16,.68) 50%, rgba(22,19,16,.30) 100% );
}

.area-detail-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 75px;
    padding-bottom: 75px;
}

.area-breadcrumb {
    display: block;
    color: #d7bb96;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.area-detail-hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(43px, 6vw, 70px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -2px;
}

.area-detail-hero p {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.75);
    font-size: 17px;
    line-height: 1.8;
}

.area-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}


/* CONTENT */

.area-content-section {
    padding: 105px 0;
    background: white;
}

.area-content-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 90px;
    align-items: start;
}

.area-main-content h2 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(34px, 4vw, 49px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -1.4px;
}

.area-description {
    margin-top: 30px;
    max-width: 760px;
    color: #696159;
    font-size: 15px;
    line-height: 1.95;
    white-space: pre-line;
}

    .area-description p {
        margin: 0 0 22px;
    }


/* SERVICE CARD */

.area-service-card {
    background: #f2eee8;
    padding: 38px;
}

    .area-service-card h3 {
        margin: 0 0 25px;
        font-size: 26px;
        font-weight: 500;
    }

.area-process > div {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd6cd;
}

.area-process span {
    color: #a78661;
    font-size: 11px;
    font-weight: 700;
}

.area-process p {
    margin: 0;
    color: #5f5851;
    font-size: 13px;
    line-height: 1.6;
}

.area-card-button {
    display: block;
    margin-top: 28px;
    padding: 14px 18px;
    background: #29251f;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

    .area-card-button:hover {
        color: white;
        background: #403930;
    }


/* PRODUCTS */

.area-products {
    padding: 100px 0;
    background: #f5f2ed;
}

.area-product-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #ded8d0;
}

    .area-product-features > div {
        background: white;
        padding: 35px 27px;
        min-height: 250px;
    }

    .area-product-features span {
        color: #aa8964;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .area-product-features h3 {
        margin: 45px 0 12px;
        font-size: 21px;
    }

    .area-product-features p {
        margin: 0;
        color: #777068;
        font-size: 13px;
        line-height: 1.75;
    }


/* LOCAL CTA */

.area-local-cta {
    background: #25221e;
    color: white;
    padding: 85px 0;
}

.area-local-cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 70px;
    align-items: center;
}

.area-local-cta h2 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 500;
}

.area-local-cta p {
    max-width: 650px;
    color: rgba(255,255,255,.62);
    line-height: 1.8;
    margin: 20px 0 0;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .area-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .area-product-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-local-cta-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 600px) {

    .area-detail-hero {
        min-height: 500px;
    }

    .area-content-section,
    .area-products {
        padding: 70px 0;
    }

    .area-service-card {
        padding: 28px 23px;
    }

    .area-product-features {
        grid-template-columns: 1fr;
    }

    .area-local-cta {
        padding: 65px 0;
    }
}

/* =========================================================
   404 PAGE
========================================================= */

.not-found-section {
    min-height: 650px;
    display: flex;
    align-items: center;
    background: #f4f0ea;
    padding: 90px 0;
}

.not-found-box {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.not-found-code {
    font-size: clamp(110px, 20vw, 220px);
    line-height: .9;
    font-weight: 700;
    color: #ded3c5;
    letter-spacing: -10px;
    margin-bottom: 25px;
}

.not-found-box h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 500;
    letter-spacing: -1.5px;
}

.not-found-box p {
    max-width: 570px;
    margin: 20px auto 30px;
    color: #756d65;
    line-height: 1.8;
}

.not-found-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.site-logo-pacifico {
    font-family: 'Pacifico', cursive;
    font-size: 30px;
    font-weight: 400;
    color: #0d9488;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.1;
    letter-spacing: 0;
}

    .site-logo-pacifico:hover {
        color: #0f766e;
        text-decoration: none;
    }

@media (max-width: 768px) {
    .site-logo-pacifico {
        font-size: 24px;
    }
}

.site-logo-pacifico {
    font-family: 'Pacifico', cursive;
    font-size: 29px;
    font-weight: 400;
    color: #149C8E;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
}

    .site-logo-pacifico:hover {
        color: #149C8E;
        text-decoration: none;
    }

@media (max-width: 768px) {
    .site-logo-pacifico {
        font-size: 24px;
    }
}
/* =========================================
   PERDE REHBERİ
========================================= */

.blog-hero {
    padding: 90px 0 70px;
    background: #f5f3ee;
    text-align: center;
}

.blog-hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.blog-eyebrow {
    display: block;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #149c8e;
}

.blog-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.1;
    color: #211e1a;
}

.blog-hero p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #69645e;
}

.blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #ebe8e2;
    border-radius: 16px;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 45px rgba(0,0,0,.08);
    }

.blog-card-image {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
    background: #eeeae3;
}

    .blog-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #88817a;
}

.blog-featured {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 12px;
    border-radius: 30px;
    background: #149c8e;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.blog-card-body {
    padding: 25px;
}

.blog-date {
    margin-bottom: 10px;
    color: #99928b;
    font-size: 13px;
}

.blog-card h2 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.4;
}

    .blog-card h2 a {
        color: #211e1a;
        text-decoration: none;
    }

.blog-card p {
    margin: 0 0 20px;
    color: #716c66;
    line-height: 1.7;
}

.blog-read-more {
    color: #149c8e;
    font-weight: 600;
    text-decoration: none;
}

.blog-empty {
    padding: 70px 20px;
    text-align: center;
}

@media (max-width: 992px) {

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {

    .blog-hero {
        padding: 60px 0 50px;
    }

    .blog-section {
        padding: 50px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        height: 220px;
    }
}

/* =========================================
   MAKALE DETAY
========================================= */

.article-hero {
    padding: 70px 0 55px;
    background: #f5f3ee;
}

.article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px;
    font-size: 13px;
    color: #8b857e;
}

    .article-breadcrumb a {
        color: #6e6963;
        text-decoration: none;
    }

        .article-breadcrumb a:hover {
            color: #149c8e;
        }

.article-header {
    max-width: 900px;
}

.article-label {
    display: block;
    margin-bottom: 14px;
    color: #149c8e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.article-header h1 {
    margin: 0 0 22px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.12;
    color: #211e1a;
}

.article-summary {
    max-width: 820px;
    margin: 0 0 24px;
    font-size: 19px;
    line-height: 1.8;
    color: #67615b;
}

.article-meta {
    display: flex;
    gap: 10px;
    color: #96908a;
    font-size: 13px;
}

.article-cover-section {
    padding: 45px 0 0;
    background: white;
}

.article-cover {
    max-width: 1100px;
    height: 520px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

    .article-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.article-section {
    padding: 70px 0 90px;
    background: #fff;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 320px;
    justify-content: center;
    gap: 70px;
    align-items: start;
}

.article-content {
    font-size: 17px;
    line-height: 1.85;
    color: #44403c;
}

    .article-content h2 {
        margin: 45px 0 18px;
        font-size: 30px;
        line-height: 1.25;
        color: #211e1a;
    }

    .article-content h3 {
        margin: 35px 0 15px;
        font-size: 23px;
        color: #211e1a;
    }

    .article-content p {
        margin: 0 0 22px;
    }

    .article-content ul,
    .article-content ol {
        margin: 0 0 25px;
        padding-left: 25px;
    }

    .article-content li {
        margin-bottom: 10px;
    }

    .article-content a {
        color: #149c8e;
        font-weight: 600;
    }

    .article-content img {
        max-width: 100%;
        height: auto;
        margin: 30px 0;
        border-radius: 14px;
    }

.article-sidebar {
    position: sticky;
    top: 110px;
}

.article-cta {
    padding: 30px;
    border-radius: 18px;
    background: #211e1a;
    color: white;
}

.article-cta-label {
    display: block;
    margin-bottom: 12px;
    color: #70d4c9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.article-cta h2 {
    margin: 0 0 15px;
    font-size: 25px;
    line-height: 1.3;
}

.article-cta p {
    margin-bottom: 22px;
    line-height: 1.7;
    color: #d4d0cb;
}

.article-cta-button {
    display: block;
    padding: 13px 18px;
    border-radius: 9px;
    background: #149c8e;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

.article-guide-box {
    margin-top: 25px;
    padding: 26px;
    border: 1px solid #e8e4df;
    border-radius: 16px;
}

    .article-guide-box h3 {
        margin: 0 0 10px;
    }

    .article-guide-box p {
        color: #716b65;
        line-height: 1.6;
    }

    .article-guide-box a {
        color: #149c8e;
        text-decoration: none;
        font-weight: 600;
    }

.article-bottom-cta {
    padding: 30px 0 80px;
    background: white;
}

.article-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 45px 50px;
    border-radius: 22px;
    background: #f5f3ee;
}

    .article-bottom-inner span {
        color: #149c8e;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .article-bottom-inner h2 {
        margin: 10px 0;
        font-size: 30px;
        color: #211e1a;
    }

    .article-bottom-inner p {
        margin: 0;
        color: #6e6963;
    }

    .article-bottom-inner > a {
        flex-shrink: 0;
        padding: 14px 24px;
        border-radius: 9px;
        background: #149c8e;
        color: white;
        text-decoration: none;
        font-weight: 600;
    }

@media (max-width: 992px) {

    .article-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .article-sidebar {
        position: static;
    }

    .article-cover {
        height: 400px;
    }
}

@media (max-width: 650px) {

    .article-hero {
        padding: 45px 0;
    }

    .article-header h1 {
        font-size: 36px;
    }

    .article-summary {
        font-size: 17px;
    }

    .article-cover {
        height: 260px;
        border-radius: 12px;
    }

    .article-section {
        padding: 50px 0;
    }

    .article-content {
        font-size: 16px;
    }

        .article-content h2 {
            font-size: 26px;
        }

    .article-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

        .article-bottom-inner > a {
            width: 100%;
            text-align: center;
        }
}