@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap");

:root {
    --ink: #1c271c;
    --forest: #23472f;
    --green: #5f7d3b;
    --lime: #b5d334;
    --gold: #d7ad43;
    --cream: #f3f1e8;
    --white: #ffffff;
    --muted: #687067;
    --border: #dfe3dc;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: 92px;
    display: flex;
    align-items: center;
    border: 0;
    background: transparent;
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease;
}

.site-header.transparent {
    color: #ffffff;
}

.site-header.scrolled {
    color: var(--ink);
    background: #ffffff;
    box-shadow: 0 8px 35px rgba(16, 29, 21, 0.08);
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
}

.brand-mark {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1;
}

.brand-text b {
    display: block;
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 22px;
    letter-spacing: 4px;
}

.brand-text small {
    display: block;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 26px;
    height: 100%;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.main-navigation > a,
.nav-drop > a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-navigation > a::after,
.nav-drop > a::after {
    position: absolute;
    right: 0;
    bottom: 26px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    background: var(--gold);
    content: "";
    transition: width 0.25s ease;
}

.main-navigation > a:hover::after,
.nav-drop:hover > a::after {
    width: 100%;
}

/* AÇILIR MENÜ */

.nav-drop {
    position: relative;
    height: 100%;
}

.nav-submenu {
    position: absolute;
    top: 65px;
    left: -22px;
    display: none;
    width: 255px;
    padding: 24px 12px 12px;
    color: var(--ink);
    background: transparent;
}

.nav-submenu::before {
    position: absolute;
    z-index: -1;
    top: 15px;
    right: 0;
    bottom: 0;
    left: 0;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(23, 32, 22, 0.16);
    content: "";
}

.nav-drop:hover .nav-submenu {
    display: grid;
}

.nav-submenu a {
    display: block;
    padding: 11px 13px;
    color: var(--ink) !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: none;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.nav-submenu a:hover {
    color: var(--forest) !important;
    background: var(--cream);
}

.header-phone {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.site-header.scrolled .header-phone {
    border-left-color: #dddddd;
}

.header-phone span {
    display: block;
    margin-bottom: 2px;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    background: transparent;
}

.menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* GENEL */

.section {
    padding: 105px 0;
}

.eyebrow {
    display: block;
    margin-bottom: 18px;
    color: #8ca638;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.1px;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
}

.section-head > div:first-child {
    max-width: 670px;
}

.section-head h2,
.split-copy h2,
.contact-strip h2,
.service-detail h2,
.related h2,
.project-detail-grid h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1.15;
}

.section-head > p {
    max-width: 430px;
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.7;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 1px solid var(--lime);
    color: #172016;
    background: var(--lime);
    font-size: 13px;
    font-weight: 700;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    border-color: #c7e24b;
    background: #c7e24b;
    transform: translateY(-2px);
}

.button.dark {
    border-color: var(--forest);
    color: #ffffff;
    background: var(--forest);
}

.button.dark:hover {
    border-color: #315d3e;
    background: #315d3e;
}

.button.light {
    border-color: #ffffff;
    background: #ffffff;
}

.button.outline {
    border-color: var(--forest);
    color: var(--forest);
    background: transparent;
}

.text-link {
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.dark-link {
    border-bottom-color: rgba(35, 71, 47, 0.4);
    color: var(--forest);
}

/* HERO SLIDER */

.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: var(--forest);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.05);
    transition:
        opacity 1s ease,
        transform 7s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10, 29, 15, 0.88) 0%,
            rgba(10, 29, 15, 0.58) 47%,
            rgba(10, 29, 15, 0.13) 78%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: clamp(180px, 24vh, 255px);
    color: #ffffff;
}

.hero h1 {
    max-width: 900px;
    margin: 0 0 24px;
    font-family: "Playfair Display", serif;
    font-size: clamp(52px, 5.2vw, 82px);
    line-height: 1.03;
}

.hero p {
    max-width: 650px;
    color: #e4e9e2;
    font-size: 17px;
    line-height: 1.75;
}

.actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 32px;
}

.hero-dots {
    position: absolute;
    z-index: 3;
    bottom: 55px;
    left: max(20px, calc((100vw - 1180px) / 2));
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 36px;
    height: 4px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
}

.hero-dots button.active {
    background: var(--lime);
}

.hero-note {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    width: 420px;
    padding: 27px 45px;
    color: var(--ink);
    background: var(--lime);
}

.hero-note b,
.hero-note span {
    display: block;
}

.hero-note b {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-note span {
    margin-top: 4px;
    font-size: 12px;
}

/* HİZMET KARTLARI */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 37px;
    background: var(--cream);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 45px rgba(20, 35, 23, 0.1);
    transform: translateY(-7px);
}

.service-card.featured {
    color: #ffffff;
    background: var(--forest);
}

.service-card > span {
    color: #92aa3e;
    font-size: 12px;
}

.service-card h3 {
    margin: 55px 0 10px;
    font-family: "Playfair Display", serif;
    font-size: 26px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.65;
}

.service-card.featured p {
    color: #dbe4dc;
}

.service-card b {
    margin-top: auto;
    font-size: 12px;
}

/* ÖNE ÇIKAN HİZMET */

.split-feature {
    display: grid;
    min-height: 670px;
    grid-template-columns: 1.12fr 0.88fr;
    background: var(--cream);
}

.split-image {
    min-height: 600px;
    background:
        url("https://images.unsplash.com/photo-1598902108854-10e335adac99?auto=format&fit=crop&w=1400&q=85")
        center / cover no-repeat;
}

.split-copy {
    padding: 100px 9vw;
}

.split-copy p {
    color: var(--muted);
    line-height: 1.8;
}

.split-copy ul {
    margin: 25px 0 35px;
    padding: 0;
    list-style: none;
}

.split-copy li {
    padding: 12px 0;
    border-bottom: 1px solid #d7dbd2;
}

/* ÜRÜNLER */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    display: block;
}

.product-image {
    position: relative;
    height: 310px;
    overflow: hidden;
    background-position: bottom;
    background-size: cover;
}

.product-image::after {
    position: absolute;
    inset: 0;
    background: rgba(29, 49, 29, 0);
    content: "";
    transition: background-color 0.25s ease;
}

.product-image span {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 20px;
    padding: 10px 14px;
    color: var(--ink);
    background: #ffffff;
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.product-card:hover .product-image::after {
    background: rgba(29, 49, 29, 0.22);
}

.product-card:hover .product-image span {
    opacity: 1;
    transform: translateY(0);
}

.product-card small,
.detail-copy > small {
    display: block;
    margin-top: 18px;
    color: #7b9243;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 8px 0;
    font-family: "Playfair Display", serif;
    font-size: 21px;
}

.product-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* PROJELER */

.projects-section {
    overflow: hidden;
    background: #f4f3ec;
}

.project-controls {
    display: flex;
    gap: 8px;
}

.project-controls button {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid #ccd2c8;
    color: var(--forest);
    background: transparent;
    font-size: 18px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.project-controls button:hover {
    color: #ffffff;
    background: var(--forest);
}

.projects-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 25px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--green) #dcded7;
    scrollbar-width: thin;
}

.project-card {
    flex: 0 0 min(390px, 82vw);
    scroll-snap-align: start;
}

.project-card-image {
    position: relative;
    height: 460px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.project-card-image::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(16, 32, 22, 0.7),
            transparent 48%
        );
    content: "";
}

.project-card-image span {
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 24px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.project-card:hover .project-card-image span {
    opacity: 1;
    transform: translateY(0);
}

.project-card small {
    display: block;
    margin-top: 18px;
    color: #7d9637;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-card h3 {
    margin: 7px 0;
    font-family: "Playfair Display", serif;
    font-size: 26px;
}

.project-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ALT SAYFA BAŞLIĞI */

.page-hero {
    padding: 175px 0 90px;
    background: var(--cream);
}

.page-hero h1 {
    margin: 0 0 15px;
    font-family: "Playfair Display", serif;
    font-size: 58px;
}

.page-hero p {
    max-width: 650px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

/* ÜRÜN KATALOĞU */

.catalog {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 55px;
}

.catalog aside {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.catalog aside h3 {
    margin-top: 0;
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

.catalog aside a {
    padding: 9px 0;
    color: var(--muted);
    font-size: 14px;
}

.catalog aside a:hover,
.catalog aside a.active {
    color: var(--green);
    font-weight: 700;
}

.catalog-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 13px;
}

.catalog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.catalog-grid .product-image {
    height: 280px;
}

.empty-state {
    padding: 60px;
    text-align: center;
    background: var(--cream);
}

.empty-state h3 {
    margin-top: 0;
    font-family: "Playfair Display", serif;
    font-size: 28px;
}

.empty-state p {
    margin: 0 auto 25px;
    max-width: 550px;
    color: var(--muted);
    line-height: 1.7;
}

/* ÜRÜN DETAY */

.product-detail {
    padding-top: 165px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 75px;
}

.detail-image {
    min-height: 100%;
    background-position: bottom;
    background-size: cover;
}

.breadcrumb {
    display: block;
    margin-bottom: 35px;
    color: #8b928a;
    font-size: 12px;
}

.detail-copy h1 {
    margin: 8px 0 22px;
    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1.1;
}

.lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.detail-copy dl {
    margin: 30px 0 0;
    border-top: 1px solid #dddddd;
}

.detail-copy dl > div {
    display: grid;
    grid-template-columns: 145px 1fr;
    padding: 14px 0;
    border-bottom: 1px solid #dddddd;
}

.detail-copy dt {
    font-weight: 700;
}

.detail-copy dd {
    margin: 0;
    color: var(--muted);
}

.support-note {
    margin-top: 28px;
    padding: 18px;
    background: var(--cream);
    font-size: 13px;
}

.support-note a {
    font-weight: 700;
}

.related {
    background: #f7f7f3;
}

.related .product-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* HİZMET DETAY */

.service-hero {
    background:
        linear-gradient(
            90deg,
            var(--cream) 0%,
            var(--cream) 55%,
            #dfe6d9 55%
        );
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 350px;
    align-items: flex-start;
    gap: 85px;
}

.service-detail article > p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.service-photo {
    height: 500px;
    margin: 40px 0;
    background:
        url("https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=1400&q=85")
        center / cover no-repeat;
}

.service-detail h3 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
}

.steps > div {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #dddddd;
}

.steps b {
    color: #8da43b;
}

.steps span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.steps span strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ink);
}

.quote-card {
    position: sticky;
    top: 125px;
    padding: 38px;
    color: #ffffff;
    background: var(--forest);
}

.quote-card h3 {
    margin-top: 0;
    font-family: "Playfair Display", serif;
    font-size: 29px;
}

.quote-card p {
    color: #d3ddd3;
    line-height: 1.7;
}

.quote-card .button {
    width: 100%;
    margin: 15px 0 25px;
}

.quote-card > a:last-child {
    display: block;
    text-align: center;
    font-weight: 700;
}

/* PROJE DETAY */

.project-detail-hero {
    position: relative;
    display: flex;
    height: 72vh;
    min-height: 600px;
    align-items: flex-end;
    color: #ffffff;
    background-position: center;
    background-size: cover;
}

.project-detail-hero > .container {
    position: relative;
    z-index: 2;
    padding-bottom: 90px;
}

.project-detail-hero h1 {
    max-width: 950px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.05;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: flex-start;
    gap: 90px;
}

.project-detail-grid article p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

/* PROJE FOTOĞRAF GALERİSİ */

.project-gallery-section {
    padding: 0 0 105px;
}

.project-gallery-title {
    margin-bottom: 35px;
}

.project-gallery-title h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 42px;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.project-gallery-item {
    position: relative;
    height: 320px;
    overflow: hidden;
    border: 0;
    background: #eeeeee;
}

.project-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    height: 648px;
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-gallery-item::after {
    position: absolute;
    inset: 0;
    background: rgba(16, 32, 22, 0);
    content: "";
    transition: background-color 0.25s ease;
}

.project-gallery-item:hover::after {
    background: rgba(16, 32, 22, 0.18);
}

.project-gallery-item:hover img {
    transform: scale(1.04);
}

/* PROJE VİDEOLARI */

.project-videos-section {
    padding: 105px 0;
    background: #f4f3ec;
}

.project-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.project-video-card {
    overflow: hidden;
    background: #111111;
}

.project-video-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111111;
    object-fit: cover;
}

/* GALERİ MODAL */

.gallery-modal {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(5, 12, 7, 0.94);
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-modal-close {
    position: absolute;
    top: 22px;
    right: 28px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #ffffff;
    background: transparent;
    font-size: 28px;
}

/* İLETİŞİM ŞERİDİ */

.contact-strip {
    padding: 65px 0;
    background: var(--lime);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr auto;
    align-items: center;
    gap: 50px;
}

.contact-strip .eyebrow {
    color: #3c5425;
}

.contact-strip h2 {
    font-size: 34px;
}

.contact-strip p,
.contact-strip a {
    font-size: 14px;
    line-height: 1.7;
}

.contact-information > a {
    text-decoration: underline;
}

/* FOOTER */

.site-footer {
    padding: 75px 0 25px;
    color: #e5ebe4;
    background: #101510;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 1fr;
    gap: 90px;
}

.footer-brand {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    letter-spacing: 3px;
}

.footer-brand small {
    display: block;
    color: #83a314;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.footer-grid p {
    max-width: 360px;
    color: #aeb7ad;
    font-size: 14px;
    line-height: 1.7;
}

.footer-grid h4 {
    margin-top: 0;
}

.footer-grid > div > a {
    display: block;
    margin: 12px 0;
    color: #b7c0b6;
    font-size: 14px;
}

.footer-grid > div > a:hover {
    color: var(--lime);
}

.copyright {
    margin-top: 55px;
    padding-top: 23px;
    border-top: 1px solid #344035;
    color: #7e8a7d;
    font-size: 12px;
}

/* WHATSAPP */

.floating-wa {
    position: fixed;
    z-index: 2000;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: 65px;
    height: 65px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #6d942f;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-size: 55px;
}

/* TABLET */

@media (max-width: 1100px) {
    .main-navigation {
        gap: 18px;
        font-size: 12px;
    }

    .header-phone {
        display: none;
    }
}

@media (max-width: 950px) {
    .site-header {
        height: 76px;
    }

    .menu-button {
        display: block;
        color: var(--ink);
    }

    .site-header.transparent .menu-button {
        color: #ffffff;
    }

    .main-navigation {
        position: absolute;
        top: 76px;
        right: 0;
        left: 0;
        display: none;
        height: auto;
        max-height: calc(100vh - 76px);
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        padding: 20px;
        color: var(--ink);
        background: #ffffff;
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
    }

    .main-navigation.mobile-open {
        display: flex;
    }

    .main-navigation > a,
    .nav-drop,
    .nav-drop > a {
        display: block;
        width: 100%;
        height: auto;
    }

    .main-navigation > a,
    .nav-drop > a {
        padding: 13px 0;
    }

    .main-navigation > a::after,
    .nav-drop > a::after {
        display: none;
    }

    .nav-submenu {
        position: static;
        display: grid;
        width: 100%;
        padding: 0 0 8px 18px;
        background: transparent;
        box-shadow: none;
    }

    .nav-submenu::before {
        display: none;
    }

    .nav-submenu a {
        padding: 9px 0;
        white-space: normal;
    }

    .service-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-feature {
        grid-template-columns: 1fr;
    }

    .split-image {
        min-height: 480px;
    }

    .split-copy {
        padding: 70px 8vw;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .catalog {
        grid-template-columns: 1fr;
    }

    .catalog aside {
        display: none;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-grid,
    .service-detail,
    .project-detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-image {
        min-height: 560px;
    }

    .quote-card {
        position: static;
    }

    .service-hero {
        background: var(--cream);
    }

    .hero-note {
        display: none;
    }

    .project-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-gallery-item:first-child {
        grid-column: span 2;
    }
}

/* MOBİL */

@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand-text b {
        font-size: 18px;
    }

    .brand-mark {
        font-size: 36px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding-top: 145px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero .actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-dots {
        bottom: 28px;
    }

    .section {
        padding: 70px 0;
    }

    .section-head {
        display: block;
    }

    .section-head h2,
    .split-copy h2,
    .contact-strip h2,
    .service-detail h2,
    .related h2,
    .project-detail-grid h2 {
        font-size: 32px;
    }

    .service-grid,
    .product-grid,
    .catalog-grid,
    .related .product-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 250px;
    }

    .product-image {
        height: 390px;
    }

    .split-image {
        min-height: 370px;
    }

    .split-copy {
        padding: 60px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .page-hero {
        padding: 140px 0 65px;
    }

    .page-hero h1 {
        font-size: 39px;
    }

    .detail-image {
        min-height: 420px;
    }

    .detail-copy h1 {
        font-size: 38px;
    }

    .detail-copy dl > div {
        grid-template-columns: 110px 1fr;
    }

    .detail-copy .actions {
        align-items: stretch;
        flex-direction: column;
    }

    .service-photo {
        height: 380px;
    }

    .project-card-image {
        height: 390px;
    }

    .project-detail-hero {
        min-height: 520px;
    }

    .project-detail-hero > .container {
        padding-bottom: 55px;
    }

    .project-gallery {
        grid-template-columns: 1fr;
    }

    .project-gallery-item,
    .project-gallery-item:first-child {
        height: 300px;
        grid-column: auto;
        grid-row: auto;
    }

    .project-videos-grid {
        grid-template-columns: 1fr;
    }

    .gallery-modal {
        padding: 15px;
    }

    .contact-strip {
        padding: 55px 0;
    }

    .empty-state {
        padding: 40px 20px;
    }
}
.service-description p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.service-description p:first-child {
    margin-top: 28px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-image img {
    width: 100%;
    min-height: 680px;
    object-fit: cover;
}

.about-content h2 {
    margin: 0 0 28px;
    font-family: "Playfair Display", serif;
    font-size: 44px;
    line-height: 1.16;
}

.about-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.about-content .button {
    margin-top: 20px;
}

.about-values {
    padding: 105px 0;
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.value-card {
    padding: 35px 28px;
    background: #ffffff;
}

.value-card > span {
    color: #8da43b;
    font-size: 12px;
    font-weight: 700;
}

.value-card h3 {
    margin: 45px 0 12px;
    font-family: "Playfair Display", serif;
    font-size: 23px;
}

.value-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.about-slogan {
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
    background: var(--forest);
}

.about-slogan span {
    color: var(--lime);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-slogan h2 {
    max-width: 850px;
    margin: 20px auto 15px;
    font-family: "Playfair Display", serif;
    font-size: 48px;
}

.about-slogan p {
    margin-bottom: 0;
    color: #d4ddd5;
}

@media (max-width: 950px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-grid {
        gap: 40px;
    }

    .about-image img {
        min-height: 430px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-slogan h2 {
        font-size: 36px;
    }
}.projects-page {
    background: #f8f8f4;
}

.projects-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.projects-page-card {
    display: block;
    background: #ffffff;
}

.projects-page-image {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.projects-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.projects-page-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 30px;
    color: #ffffff;
    background:
        linear-gradient(
            0deg,
            rgba(14, 31, 19, 0.78),
            transparent 55%
        );
}

.projects-page-overlay span {
    font-size: 12px;
    font-weight: 700;
}

.projects-page-overlay b {
    font-size: 25px;
}

.projects-page-card:hover .projects-page-image img {
    transform: scale(1.04);
}

.projects-page-content {
    padding: 28px 30px 34px;
}

.projects-page-content small {
    color: #7d9637;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.projects-page-content h2 {
    margin: 9px 0 13px;
    font-family: "Playfair Display", serif;
    font-size: 27px;
    line-height: 1.2;
}

.projects-page-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 800px) {
    .projects-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .projects-page-image {
        height: 360px;
    }
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: 80px;
}

.contact-page-intro {
    position: sticky;
    top: 130px;
}

.contact-page-intro h2 {
    margin: 0 0 25px;
    font-family: "Playfair Display", serif;
    font-size: 44px;
    line-height: 1.15;
}

.contact-page-intro p {
    color: var(--muted);
    line-height: 1.8;
}

.contact-page-intro .button {
    margin-top: 20px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-card {
    display: block;
    min-height: 245px;
    padding: 32px;
    border: 1px solid var(--border);
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

a.contact-card:hover {
    border-color: var(--green);
    box-shadow: 0 18px 40px rgba(25, 48, 29, 0.08);
    transform: translateY(-4px);
}

.contact-card > span {
    color: #829637;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.contact-card h3 {
    margin: 45px 0 12px;
    overflow-wrap: anywhere;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    line-height: 1.25;
}

.contact-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.contact-service-area {
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
    background: var(--forest);
}

.contact-service-area h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 45px;
}

.contact-service-area p {
    max-width: 720px;
    margin: 20px auto 35px;
    color: #d3ddd3;
    line-height: 1.8;
}

.service-area-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.service-area-list span {
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 12px;
}

@media (max-width: 950px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-intro {
        position: static;
    }
}

@media (max-width: 600px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-page-intro h2,
    .contact-service-area h2 {
        font-size: 34px;
    }

    .contact-card {
        min-height: 210px;
    }
}

a.brand img{
	    padding: 80px;
    width: 100%;
}

.product-detail-gallery {
    min-width: 0;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.product-thumbnail {
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
}

.product-thumbnail.active {
    border-color: #c89b3c;
}

.product-thumbnail img {
    display: block;
    width: 100%;
    height: 82px;
    object-fit: cover;
}

.product-short-description {
    margin-bottom: 20px;
    color: #59645c;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .product-thumbnails {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-thumbnail img {
        height: 68px;
    }
}



.product-gallery-section {
    background: #f3f5f1;
}

.product-detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-detail-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 360px;
    background: #e8ece5;
    border-radius: 4px;
}

.product-detail-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-detail-gallery-item span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 14px;
    color: #fff;
    background: rgba(25, 44, 31, 0.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.product-detail-gallery-item:hover img {
    transform: scale(1.04);
}

.product-detail-gallery-item:hover span {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .product-detail-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .product-detail-gallery-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-gallery-item,
    .product-detail-gallery-item img {
        min-height: 300px;
    }

    .product-detail-gallery-item span {
        opacity: 1;
        transform: none;
    }
}

body.lightbox-open {
    overflow: hidden;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 100px 40px;
    visibility: hidden;
    opacity: 0;
    background: rgba(7, 13, 9, 0.94);
    backdrop-filter: blur(8px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.product-lightbox.active {
    visibility: visible;
    opacity: 1;
}

.product-lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(1200px, 100%);
    height: 100%;
}

.product-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.product-lightbox-content p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-align: center;
}

.product-lightbox-close {
    position: absolute;
    top: 22px;
    right: 28px;
    width: 48px;
    height: 48px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.product-lightbox-close:hover {
    color: #1f3526;
    background: #fff;
}

.product-lightbox-arrow {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.product-lightbox-arrow:hover {
    color: #1f3526;
    background: #fff;
}

.product-lightbox-previous {
    left: 28px;
}

.product-lightbox-next {
    right: 28px;
}

@media (max-width: 767px) {
    .product-lightbox {
        padding: 70px 18px 90px;
    }

    .product-lightbox-content img {
        max-height: calc(100vh - 190px);
    }

    .product-lightbox-close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
    }

    .product-lightbox-arrow {
        top: auto;
        bottom: 20px;
        width: 46px;
        height: 46px;
        transform: none;
    }

    .product-lightbox-previous {
        left: calc(50% - 58px);
    }

    .product-lightbox-next {
        right: calc(50% - 58px);
    }
}

.project-video-card iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.gallery-modal-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 52px;
    height: 52px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}

.gallery-modal-previous {
    left: 24px;
}

.gallery-modal-next {
    right: 24px;
}

@media (max-width: 767px) {
    .gallery-modal-arrow {
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .gallery-modal-previous {
        left: calc(50% - 58px);
    }

    .gallery-modal-next {
        right: calc(50% - 58px);
    }
}