:root {
  --dark: #151714;
  --ivory: #f1ede4;
  --gold: #b78b51;
  --line: #3f403b;
  --font-body:16px;
  --font-small:12px;
  --font-card:14px;
  --font-nav:14px;
  --font-footer:13px;
  --line-body:1.7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ivory);
  font-family: Inter, Arial, sans-serif;
  color: #26231f;
  font-size: 16px;
}
h1,
h2,
h3,
.logo {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  width: 100%;
}
/* =========================================
   DESKTOP NAVBAR
========================================= */

.navbar {
    min-height: 76px;
    background: #101210;
}

.navbar .navbar-nav > li {
    position: relative;
}

.navbar .navbar-nav > li > .nav-link {
    color: #d7d1c7;
    font-size: 13px;
    transition: color .25s ease;
}

.navbar .navbar-nav > li > .nav-link:hover {
    color: #c99c61;
}


/* ALT MENÜ */
.navbar .navbar-nav > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;

    min-width: 250px;
    margin: 0;
    padding: 10px 0;

    list-style: none;

    background: #171917;
    border: 1px solid rgba(255, 255, 255, .08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}


/* DESKTOP HOVER */
@media (min-width: 992px) {

    .navbar .navbar-nav > li:hover > ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}


/* ALT MENÜ LINKLER */
.navbar .navbar-nav > li > ul > li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.navbar .navbar-nav > li > ul > li > a {
    display: block;
    width: 100%;

    padding: 11px 20px;

    color: #d7d1c7;
    background: transparent;

    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;

    transition:
        color .2s ease,
        background .2s ease,
        padding-left .2s ease;
}

.navbar .navbar-nav > li > ul > li > a:hover {
    color: #c99c61;
    background: rgba(255, 255, 255, .04);
    padding-left: 24px;
}


/* MOBİL TOGGLE BUTONU
   Masaüstünde görünmez
========================================= */

.navbar .submenu-toggle {
    display: none;
}


/* =========================================
   TABLET + MOBİL
========================================= */

@media (max-width: 991.98px) {

    .navbar .navbar-nav {
        width: 100%;
    }

    .navbar .navbar-nav > li {
        position: relative;
        width: 100%;

        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .navbar .navbar-nav > li > .nav-link {
        display: flex;
        align-items: center;

        min-height: 48px;
        padding: 12px 50px 12px 0;
    }


    /* ALT MENÜ MOBİLDE BAŞLANGIÇTA KAPALI */

    .navbar .navbar-nav > li > ul {
        position: static;

        display: none;

        width: 100%;
        min-width: 0;

        margin: 0;
        padding: 4px 0 12px 15px;

        background: transparent;
        border: 0;

        opacity: 1;
        visibility: visible;
        transform: none;

        transition: none;
    }


    /* AÇIK ALT MENÜ */

    .navbar .navbar-nav > li.submenu-open > ul {
        display: block;
    }


    /* ALT MENÜ LINK */

    .navbar .navbar-nav > li > ul > li > a {
        padding: 9px 15px;

        color: #aaa49b;
        font-size: 12px;
    }

    .navbar .navbar-nav > li > ul > li > a:hover {
        padding-left: 19px;

        color: #c99c61;
        background: transparent;
    }


    /* + / - BUTONU */

    .navbar .submenu-toggle {
        position: absolute;
        top: 5px;
        right: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 40px;
        height: 40px;

        padding: 0;

        background: transparent;
        border: 0;

        color: #d7d1c7;

        font-size: 22px;
        font-weight: 300;
        line-height: 1;

        cursor: pointer;

        transition: color .25s ease;
    }

    .navbar .submenu-toggle:hover {
        color: #c99c61;
    }


    /* ARTIDAN EKSİYE ANİMASYON */

    .navbar .submenu-toggle::before,
    .navbar .submenu-toggle::after {
        content: "";

        position: absolute;

        width: 12px;
        height: 1px;

        background: currentColor;

        transition: transform .25s ease;
    }

    .navbar .submenu-toggle::after {
        transform: rotate(90deg);
    }

    .navbar .submenu-open > .submenu-toggle::after {
        transform: rotate(0);
    }

}
.logo {
  color: #c99c61 !important;
  letter-spacing: 0.25em;
  font-size: 25px;
}

.btn-outline {
  border: 1px solid #8d8980;
  color: #eee9e0;
  border-radius: 0;
  padding: 11px 21px;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-radius: 0;
  padding: 13px 24px;
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  border-radius: 0;
  padding: 12px 23px;
}
.hero {
  min-height: 680px;
  position: relative;
  color: #f5efe6;
  overflow: hidden;
}
.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(12, 12, 10, 0.81) 0%,
    rgba(12, 12, 10, 0.24) 60%,
    rgba(12, 12, 10, 0.08)
  );
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  padding-bottom: 85px;
}
.hero h1 {
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.95;
  margin: 0 0 20px;
}
.hero p {
  font-size: 17px;
  color: #d3cdc3;
  line-height: 1.65;
}
.audiences {
  padding: 38px 0;
}
.audience-card {
  height: 415px;
  position: relative;
  display: block;
  overflow: hidden;
}
.audience-card:after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(10, 11, 10, 0.9));
}
.audience-card img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.audience-card div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  text-align: center;
  color: #eee9e0;
}
.audience-card h2 {
  font-size: 28px;
  margin: 7px 0;
}
.audience-card:hover img,
.project-card:hover img {
  transform: scale(1.03);
}
.dark-section {
  background: var(--dark);
  color: #eee9e0;
}
.light-section {
  background: var(--ivory);
}
.section-pad {
  padding: 70px 0;
}
.section-title {
  text-align: center;
  font-size: clamp(43px, 4.7vw, 64px);
  margin-bottom: 38px;
}
.section-title:after {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto;
}
.service-card {
  height: 100%;
  background: #20221f;
  border: 1px solid var(--line);
}
.service-card img {
  height: 315px;
  object-fit: cover;
}
.service-card div {
  padding: 20px;
}
.service-card h3 {
  font-size: 29px;
  margin: 0 0 8px;
}
.service-card p {
  color: #aaa69e;
  font-size: 13px;
  min-height: 60px;
}
.service-card a {
  color: #cfa46c;
}
.project-card {
  height: 510px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.project-card:after {
  content: "";
  position: absolute;
  inset: 43% 0 0;
  background: linear-gradient(transparent, rgba(8, 9, 8, 0.95));
}
.project-card img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.project-card div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 23px;
}
.project-card h3 {
  font-size: 32px;
  margin: 0;
}
.project-card p,
.project-card a {
  font-size: 12px;
}
.step {
  height: 100%;
  text-align: center;
  position: relative;
}
.step:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0%;
    right: 0%;
    height: 1px;
    background: var(--gold);
}
.step b {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  background: #141615;
  position: relative;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #d3a66b;
}
.step h3 {
  margin: 18px;
  font-size: 26px;
}
.step p {
  font-size: 12px;
  color: #aaa69e;
}
.trust {
  text-align: center;
  padding-top: 70px;
}
.trust h2 {
  font-size: 43px;
}
.trust > p {
  max-width: 720px;
  margin: 0 auto 35px;
  color: #aaa69e;
}
.stat {
  border-right: 1px solid #4a4944;
}
.stat:last-child {
  border: 0;
}
.stat strong {
  display: block;
  font: 400 clamp(40px, 4vw, 58px) "DM Serif Display", serif;
  color: #c89b61;
}
.stat small {
  color: #bbb5ab;
}
.brands {
  border-top: 1px solid #4b4943;
  margin-top: 40px;
  padding-top: 24px;
  color: #c7a576;
}
.contact {
  padding: 65px 0;
}
.contact h2 {
  font-size: clamp(43px, 5vw, 65px);
  line-height: 0.98;
}
.contact-copy p {
  max-width: 400px;
  color: #6d665e;
}
.contact-copy a,
.contact-copy span {
  display: block;
  font-size: 13px;
  margin: 8px 0;
}
.contact .form-control,
.contact .form-select {
  border-radius: 0;
  background: transparent;
  border: 1px solid #bdb5aa;
  padding: 12px;
}
.contact .form-label {
  font-size: 12px;
}
.footer {
  background: #111310;
  color: #aaa69e;
  padding: 48px 0;
}
.footer h6 {
  font: 600 14px Inter, sans-serif;
  color: #eee9e0;
}
.footer a,
.footer p {
  display: block;
  font-size: 12px;
  margin-bottom: 7px;
}
.footer-credit a {
  display: inline-block;
}
/* ==================================================
   DEKOSAUNA FOOTER
================================================== */

.footer {
    position: relative;
    background: #101210;
    color: #a9a39a;
    /* padding: 70px 0 0; */
    padding: 70px 0 48px 0;
}


/* --------------------------------------------------
   FOOTER BLOKLARI
-------------------------------------------------- */

.footer .footer-block {
    margin-bottom: 40px;
}


/* BAŞLIKLAR */

.footer .footer-title {
    position: relative;

    margin: 0 0 24px;
    padding: 0 0 14px;

    color: #f1ede3;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;

    letter-spacing: .08em;
    text-transform: uppercase;
}


/* Başlık altındaki gold çizgi */

.footer .footer-title::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 28px;
    height: 1px;

    background: #c99c61;
}


/* --------------------------------------------------
   MARKA AÇIKLAMASI
-------------------------------------------------- */

.footer .footer-description {
    max-width: 360px;
    margin: 0;

    color: #969188;

    font-size: 13px;
    line-height: 1.8;
}


/* --------------------------------------------------
   FOOTER LİSTELERİ
-------------------------------------------------- */

.footer ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer ul li {
    margin: 0;
    padding: 0;

    border-bottom: 1px solid rgba(255, 255, 255, .055);
}

.footer ul li:last-child {
    border-bottom: 0;
}


/* --------------------------------------------------
   FOOTER LİNKLERİ
-------------------------------------------------- */

.footer ul li a {
    position: relative;

    display: flex;
    align-items: center;

    padding: 9px 0;

    color: #aaa49b;

    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;

    text-decoration: none;

    transition:
        color .25s ease,
        padding-left .25s ease;
}


/* Hover */

.footer ul li a:hover {
    color: #c99c61;
    padding-left: 8px;
}


/* Küçük ok */

.footer ul li a::before {
    content: "";

    width: 0;
    height: 1px;

    margin-right: 0;

    background: #c99c61;

    opacity: 0;

    transition:
        width .25s ease,
        margin-right .25s ease,
        opacity .25s ease;
}

.footer ul li a:hover::before {
    width: 10px;
    margin-right: 7px;
    opacity: 1;
}


/* ==================================================
   KEŞİF TALEBİ - ÖZEL CTA
================================================== */

.footer ul li a.footer-cta {
    display: inline-flex;

    margin-top: 12px;
    padding: 11px 17px;

    border: 1px solid #c99c61;

    color: #c99c61;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: .06em;
    text-transform: uppercase;
}

.footer ul li a.footer-cta::before {
    display: none;
}

.footer ul li a.footer-cta:hover {
    padding-left: 17px;

    background: #c99c61;
    color: #101210;
}


/* ==================================================
   SOSYAL MEDYA
================================================== */

.footer .footer-social {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 24px;
}

.footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255, 255, 255, .12);

    color: #b8b2a9;

    text-decoration: none;

    transition:
        color .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.footer .footer-social a:hover {
    background: #c99c61;
    border-color: #c99c61;
    color: #101210;
}


/* ==================================================
   FOOTER ALT BÖLÜM
================================================== */

.footer-bottom {
    margin-top: 25px;
    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, .08);

    color: #77736d;

    font-size: 11px;
    line-height: 1.6;
}

.footer-bottom a {
    color: #9e9991;
    text-decoration: none;

    transition: color .25s ease;
}

.footer-bottom a:hover {
    color: #c99c61;
}


/* ==================================================
   DYM KREATİF CREDIT
================================================== */

.footer-credit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 4px;

    color: #77736d;

    font-size: 11px;
    line-height: 1.6;
}

.footer-credit a {
    color: #a9a39a;
    font-weight: 500;
    text-decoration: none;
}

.footer-credit a:hover {
    color: #c99c61;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991.98px) {

    .footer {
        padding-top: 55px;
    }

    .footer .footer-block {
        margin-bottom: 35px;
    }
}


/* ==================================================
   MOBİL
================================================== */

@media (max-width: 767.98px) {

    .footer {
        padding-top: 45px;
    }

    .footer .footer-block {
        margin-bottom: 32px;
    }

    .footer .footer-title {
        margin-bottom: 16px;
    }

    .footer .footer-description {
        max-width: 100%;
    }

    .footer ul li a {
        padding: 10px 0;
    }

    .footer-bottom {
        margin-top: 5px;
        padding: 20px 0;
    }

    .footer-credit {
        margin-top: 10px;
    }
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 12px 0 20px;
  }
  .hero {
    min-height: 620px;
  }
  .audience-card {
    height: 360px;
  }
  .project-card {
    height: 460px;
  }
  .stat:nth-child(2) {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }
  .hero {
    min-height: 570px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .audience-card {
    height: 340px;
  }
  .service-card img {
    height: 290px;
  }
  .stat {
    border: 0;
    border-bottom: 1px solid #4a4944;
    padding: 18px;
  }
  .contact {
    padding: 50px 0;
  }
}
@media (max-width: 575.98px) {
  .logo {
    font-size: 21px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .section-pad {
    padding: 52px 0;
  }
}


.btn-outline:hover,
.btn-ghost:hover {
  background: #eee9e0;
  border-color: #eee9e0;
  color: #171816;
}
.btn-gold:hover {
  background: #987140;
  border-color: #987140;
  color: #fff;
}

.btn-dark:hover,
.btn-gold:hover {
  background: #987140;
  border-color: #987140;
  color: #fff;
}

.btn-dark {
  background: #171816;
  border-color: #171816;
  color: #fff;
  border-radius: 0;
  padding: 14px;
}


/* İletişim sayfası */
.contact-page {
  background: #f1ede4;
}
.contact-hero {
  min-height: 620px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.contact-hero > img,
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.contact-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(10, 11, 9, 0.9),
    rgba(10, 11, 9, 0.2)
  );
}
.contact-hero article {
  position: relative;
  z-index: 1;
  padding-top: 105px;
  padding-bottom: 90px;
  max-width: 880px;
}
.contact-hero h1 {
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.95;
  margin: 18px 0;
}
.contact-hero h1 em,
.contact-request h2 em,
.contact-offices h2 em,
.contact-map h2 em {
  color: #b78b51;
}
.contact-hero p {
  max-width: 680px;
  color: #d1cbc2;
  font-size: 17px;
}
.channel {
  height: 100%;
  padding: 38px 30px;
  border-right: 1px solid #c8bfb2;
}
.channel > span {
  color: #b78b51;
}
.channel h2 {
  font-size: 32px;
  margin: 18px 0 7px;
}
.channel p {
  color: #716a61;
}
.channel a {
  font-size: 13px;
  color: #987140;
}
.contact-request {
  background: #171917;
  color: #eee9e0;
  padding: 75px 0;
}
.contact-request h2,
.contact-offices h2,
.contact-map h2 {
  font-size: clamp(45px, 5vw, 67px);
  line-height: 0.98;
}
.request-copy p {
  color: #aaa69e;
  line-height: 1.7;
}
.request-copy ol {
  padding: 0;
  list-style: none;
}
.request-copy li {
  padding: 12px 0;
  border-bottom: 1px solid #44443f;
}
.request-copy li b {
  color: #b78b51;
  margin-right: 15px;
}
.request-copy img {
  height: 300px;
  object-fit: cover;
  margin-top: 28px;
}
.request-form {
  background: #eee9e0;
  color: #26231f;
  padding: 35px;
}
.request-form .form-control,
.request-form .form-select {
  border-radius: 0;
  border: 1px solid #b9b1a6;
  background: transparent;
  padding: 12px;
}
.request-form .form-label {
  font-size: 12px;
}
.request-form .form-check-input {
  border-radius: 0;
}
.contact-offices {
  padding: 75px 0;
}
.office-card {
  height: 100%;
  background: #191b18;
  color: #eee9e0;
}
.office-card img {
  height: 390px;
  object-fit: cover;
}
.office-card div {
  padding: 27px;
}
.office-card h3 {
  font-size: 35px;
}
.office-card p {
  color: #aaa69e;
}
.office-card a {
  color: #bd925c;
}
.contact-map {
  background: #ded6ca;
  padding: 70px 0;
}
.map-abstract {
  min-height: 430px;
  position: relative;
  border: 1px solid #b9ad9d;
  background: linear-gradient(145deg, #e9e2d8, #cfc4b5);
}
.map-abstract:before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 2px dashed #b58b54;
  border-radius: 45% 55% 40% 60%;
}
.map-pin {
  position: absolute;
  padding: 10px 15px;
  background: #171917;
  color: #fff;
  font-size: 11px;
}
.map-pin b {
  display: block;
  color: #c99c61;
}
.antalya-pin {
  right: 15%;
  bottom: 20%;
}
.izmir-pin {
  left: 14%;
  top: 22%;
}
.contact-note {
  background: #b78b51;
  color: #fff;
  padding: 25px 0;
}
.contact-note p {
  margin: 0;
}
.contact-note small {
  margin-right: 16px;
}
@media (max-width: 991.98px) {
  .contact-hero {
    min-height: 560px;
  }
  .channel {
    border-right: 0;
    border-bottom: 1px solid #c8bfb2;
  }
  .map-abstract {
    min-height: 350px;
  }
}
@media (max-width: 575.98px) {
  .contact-hero h1 {
    font-size: 43px;
  }
  .contact-hero article {
    padding-top: 70px;
  }
  .request-form {
    padding: 23px;
  }
  .office-card img {
    height: 320px;
  }
}

/* Türkiye haritası */
.map-abstract {
  min-height: 315px;
  position: relative;
  overflow: hidden;
  border: 1px solid #b9ad9d;
  background: #e9e2d8;
}

.map-abstract > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-abstract::before {
  display: none;
}

.map-abstract .map-pin {
  z-index: 1;
  box-shadow: 0 8px 24px rgba(23,24,22,.2);
}

.map-abstract .izmir-pin {
  left: 14%;
  top: 40%;
}

.map-abstract .antalya-pin {
  left: 32%;
  right: auto;
  top: 62%;
  bottom: auto;
}

@media (max-width: 991.98px) {
  .map-abstract { min-height: 315px; }
}

@media (max-width: 575.98px) {
  .map-abstract { min-height: 222px; }
  .map-abstract .map-pin { padding: 7px 7px; font-size: 9px; }
}

/* Hizmetler sayfası */
.services-hero {
  min-height: 620px;
  position: relative;
  color: #fff;
}
.services-hero > img,
.services-hero > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-hero > div {
  background: linear-gradient(90deg, rgba(8, 9, 8, 0.9), rgba(8, 9, 8, 0.18));
}
.services-hero > article {
  position: relative;
  z-index: 1;
  padding: 105px max(24px, 6vw);
  max-width: 920px;
}
.services-hero h1 {
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.95;
}
.services-page h1 em,
.services-page h2 em {
  color: #b78b51;
}
.service-jump {
  background: #e6dfd3;
  padding: 0 max(20px, 4vw);
  justify-content: center;
}
.service-jump a {
  padding: 20px 28px;
  border-right: 1px solid #c8beb1;
}
.service-jump span {
  color: #b78b51;
  margin-right: 9px;
}
.service-detail {
  margin: 0 !important;
  align-items: stretch;
}
.service-detail.reverse {
  flex-direction: row-reverse;
}
.service-image {
  position: relative;
  min-height: 590px;
  padding: 0;
}
.service-image img {
  height: 100%;
  object-fit: cover;
}
.service-image b {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
}
.service-copy {
  padding: 65px max(28px, 5vw);
  background: #f1ede4;
}
.service-copy h2 {
  font-size: clamp(44px, 5vw, 67px);
}
.service-copy p {
  line-height: 1.75;
  color: #655f57;
}
.service-copy h3 {
  font-size: 22px;
}
.service-copy li {
  margin: 8px 0;
}
.service-link {
  color: #987140;
}
.service-scope {
  background: #171917;
  color: #eee9e0;
  padding: 70px max(24px, 4vw);
}
.scope-head h2 {
  font-size: clamp(45px, 5vw, 67px);
}
.scope-steps article {
  text-align: center;
  padding: 25px 12px;
  border-top: 1px solid #594f42;
}
.scope-steps b {
  color: #b78b51;
}
.scope-steps span {
  display: block;
  font-size: 27px;
  margin: 14px;
}
.scope-steps h3 {
  font-size: 21px;
}
.comparison {
  margin: 0 !important;
  padding: 75px max(24px, 5vw);
  background: #e5ddd1;
}
.comparison-copy h2 {
  font-size: 46px;
}
.comparison-table {
  overflow-x: auto;
}
.table-row {
  display: flex;
  min-width: 650px;
  border-bottom: 1px solid #b9afa2;
}
.table-row > * {
  flex: 1;
  padding: 17px 12px;
}
.table-row.head {
  background: #171917;
  color: #fff;
}
.materials {
  padding: 70px max(24px, 4vw);
  background: #171917;
  color: #eee9e0;
}
.material-grid article {
  background: #20221f;
  padding-bottom: 20px;
}
.material-grid img {
  height: 280px;
  object-fit: cover;
}
.material-grid h3,
.material-grid p {
  margin-left: 18px;
  margin-right: 18px;
}
.service-faq {
  margin: 0 !important;
  padding: 75px max(24px, 5vw);
}
.service-faq h2 {
  font-size: 47px;
}
.faq-list article {
  border-bottom: 1px solid #c8beb1;
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  font-size: 17px;
}
.faq-list article p {
  display: none;
}
.faq-list article.open p {
  display: block;
}
.service-projects {
  padding: 65px max(24px, 4vw);
  background: #e5ddd1;
}
.service-projects article img {
  height: 360px;
  object-fit: cover;
}
.service-projects h3 {
  font-size: 28px;
  margin-top: 14px;
}
.services-contact {
  min-height: 520px;
  position: relative;
  color: #fff;
}
.services-contact > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-contact > article {
  position: relative;
  z-index: 1;
  padding: 90px max(24px, 7vw);
  max-width: 950px;
}
.services-contact h2 {
  font-size: clamp(44px, 5vw, 66px);
}
@media (max-width: 991.98px) {
  .service-image {
    min-height: 430px;
  }
  .service-copy {
    padding: 45px 28px;
  }
}
@media (max-width: 575.98px) {
  .services-hero {
    min-height: 540px;
  }
  .services-hero h1 {
    font-size: 43px;
  }
  .service-jump a {
    width: 50%;
    padding: 14px 8px;
  }
  .service-image {
    min-height: 340px;
  }
  .service-copy {
    padding: 38px 22px;
  }
}


.service-copy h3 {
  font-size: 22px;
  border-bottom: 1px solid #c9c1b5;
  padding-bottom: 8px;
}
.service-columns {
  margin: 30px 0;
}
.service-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-columns li {
  padding: 7px 0;
  border-bottom: 1px solid #ded8ce;
}
.service-columns li::before {
  content: "—";
  color: #b28a51;
  margin-right: 9px;
}
.services-hero small,
.service-copy > small,
.scope-head small,
.comparison-copy small,
.service-faq > div > small,
.services-contact small {
  letter-spacing: 0.2em;
  color: #c09a64;
}

/* Tasarımdan devreye almaya süreç düzeni */
.service-scope {
  background: #131514;
  padding: 65px max(30px, 5vw);
}
.scope-head {
  text-align: center;
}
.scope-head h2 {
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.04;
  margin: 18px 0 45px;
}
.scope-steps {
  position: relative;
}
.scope-steps::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 20px;
  height: 1px;
  background: #b28a51;
}
.scope-steps article {
  position: relative;
  text-align: center;
  padding: 0 8px;
  border-top: 0;
}
.scope-steps b {
  width: 40px;
  height: 40px;
  border: 1px solid #b28a51;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: #141615;
  position: relative;
  z-index: 1;
  font: 400 17px "DM Serif Display", serif;
  color: #c4a06c;
}
.scope-steps span {
  display: block;
  font-size: 28px;
  color: #d2c0a1;
  margin: 18px 0 5px;
}
.scope-steps h3 {
  font-size: 18px;
  margin: 0;
  margin-top:24px;
  color: #eee9e0;
}
@media (max-width: 1199.98px) {
  .step:before {
    display: none;
  }
  .scope-steps::before {
    display: none;
  }
  .scope-steps article {
    padding: 18px 8px;
  }
}
/* Malzeme ve sistem kalitesi — özgün düzen */
.materials {
  background: #151716;
  padding: 55px max(30px, 5vw);
}
.materials .section-title {
  margin-bottom: 38px;
  color: #eee9e0;
}
.material-grid {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}
.material-grid article {
  height: 100%;
  border: 1px solid #45433e;
  background: transparent;
  padding-bottom: 17px;
}
.material-grid img {
  height: 230px;
  object-fit: cover;
}
.material-grid h3 {
  font-size: 22px;
  margin: 15px 15px 5px;
  color: #eee9e0;
}
.material-grid p {
  font-size: 10px;
  color: #aaa69e;
  margin: 0 15px;
  min-height: 0;
}
@media (max-width: 575.98px) {
  .material-grid img {
    height: 320px;
  }
}
/* Uygulamadan örnekler — özgün düzen */
.service-projects {
  background: #e5ded2;
  color: #1c1d19;
  padding: 55px max(30px, 5vw);
}
.service-project-head {
  margin-bottom: 25px;
}
.service-project-head h2 {
  font-size: 44px;
  margin: 0;
}
.service-project-head a {
  font-size: 11px;
  border-bottom: 1px solid #b28a51;
  padding: 8px 0;
}
.service-projects > .row {
  margin-left: -5px;
  margin-right: -5px;
}
.service-projects > .row article {
  position: relative;
  background: #171918;
  color: #fff;
  border: 5px solid #e5ded2;
  padding: 0 0 17px;
}
.service-projects > .row article img {
  height: 330px;
  object-fit: cover;
}
.service-projects > .row article h3 {
  font-size: 23px;
  margin: 15px 15px 4px;
}
.service-projects > .row article p {
  font-size: 9px;
  color: #aaa69e;
  margin: 0 15px;
}
@media (max-width: 575.98px) {
  .service-project-head {
    align-items: flex-start !important;
    flex-direction: column;
    gap: 15px;
  }
  .service-project-head h2 {
    font-size: 38px;
  }
}
/* Hizmet detayları — bootstrap5 referans düzeni */
.service-details .service-detail {
  background: #171917;
  color: #eee9e0;
}
.service-details .service-detail.reverse {
  background: #eee9df;
  color: #22201d;
}
.service-details .service-copy {
  min-height: 650px;
  padding: 75px max(30px, 7vw);
  background: transparent;
}
.service-details .service-image {
  min-height: 650px;
}
.service-details .service-image b {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: rgba(15, 16, 14, 0.82);
  padding: 10px 12px;
  color: #c49b66;
}
.service-details .service-copy h2 {
  font-size: clamp(50px, 5vw, 72px);
  margin: 14px 0;
}
.service-details .service-copy > p {
  color: #aaa69e;
  line-height: 1.8;
}
.service-details .service-detail.reverse .service-copy > p {
  color: #68635b;
}
.service-details .service-copy h3 {
  font-size: 23px;
  margin-bottom: 13px;
}
.service-details .service-copy li {
  padding: 8px 0;
  border-bottom-color: #44443f;
  /* font-size: 12px; */
}
.service-details .service-detail.reverse .service-copy li {
  border-bottom-color: #c9c0b4;
}
.service-details .service-link {
  display: inline-block;
  margin-top: 25px;
  color: #bd925c;
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .service-details .service-copy {
    min-height: auto;
    padding: 55px 30px;
  }
  .service-details .service-image {
    min-height: 480px;
  }
}
@media (max-width: 767.98px) {
  .service-details .service-image {
    min-height: 380px;
  }
  .service-details .service-copy {
    padding: 55px 22px;
  }
}
/* Hizmetler alt keşif alanı — Bootstrap yapı */
.services-contact {
  min-height: 570px;
  overflow: hidden;
  color: #eee9e0;
}
.services-contact > img {
  object-fit: cover;
}
.services-contact > .services-contact-shade {
  background: linear-gradient(90deg, rgba(8, 9, 8, 0.94), rgba(8, 9, 8, 0.25));
}
.services-contact > .container-fluid {
  position: relative !important;
  inset: auto;
  width: 100%;
  height: auto;
}
.services-contact article {
  padding: 0;
}
.services-contact h2 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.98;
  margin: 17px 0;
}
.services-contact p {
  max-width: 650px;
  color: #c5bfb6;
  line-height: 1.7;
}
@media (max-width: 991.98px) {
  .services-contact {
    min-height: 520px;
  }
}
@media (max-width: 575.98px) {
  .services-contact {
    min-height: 560px;
  }
  .services-contact h2 {
    font-size: 43px;
  }
}

.service-projects .project-card {
  overflow: hidden;
}
.service-projects .project-card img {
  transition: transform 0.65s ease;
}
.service-projects .project-card:hover img {
  transform: scale(1.06);
}

/* Modern Bootstrap 5 tipografi ölçeği */

.navbar .nav-link {
  font-size: var(--font-nav);
}
small,
.services-hero small,
.service-copy > small,
.scope-head small,
.comparison-copy small,
.service-faq > div > small,
.services-contact small {
  font-size: var(--font-small);
  line-height: 1.5;
}
.service-copy > p,
.comparison-copy p,
.service-faq > div > p,
.services-contact p {
  font-size: 16px;
  line-height: 1.75;
}
.service-copy li {
  font-size: 14px;
  line-height: 1.55;
}
.service-link,
.service-project-head a {
  font-size: 13px;
}
.material-grid p,
.project-card p,
.service-projects > .row article p {
  font-size: var(--font-card);
  line-height: 1.55;
}
.channel p,
.office-card p,
.request-copy p {
  font-size: 15px;
}
.footer a,
.footer p {
  font-size: var(--font-footer);
  line-height: 1.55;
}
.form-label,
.request-form .form-label,
.contact .form-label {
  font-size: 13px;
}
@media (max-width: 767.98px) {
  :root {
    --font-body: 16px;
    --font-nav: 15px;
    --font-footer: 13px;
  }
  .service-copy > p,
  .comparison-copy p,
  .service-faq > div > p,
  .services-contact p {
    font-size: 15px;
  }
}
/* Hakkımızda sayfası */
.about-page {
  background: #f1ede4;
}
.about-hero-v2 {
  min-height: 670px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.about-hero-v2 > img,
.about-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-shade {
  background: linear-gradient(90deg, rgba(9, 10, 8, 0.87), rgba(9, 10, 8, 0.2));
}
.about-hero-copy {
  position: relative;
  z-index: 1;
  padding: 95px max(24px, 6vw);
  max-width: 980px;
}
.about-hero-copy h1 {
  font-size: clamp(53px, 6vw, 84px);
  line-height: 0.95;
}
.about-page h1 em,
.about-page h2 em {
  color: #b78b51;
}
.about-hero-copy p {
  max-width: 690px;
  color: #d0cac1;
  font-size: 17px;
}

.about-hero-copy nav,
.about-bottom-cta nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}
.about-story-v2 {
  margin: 0 !important;
}
.story-copy {
  padding: 65px max(28px, 6vw);
}
.story-copy h2 {
  font-size: clamp(43px, 5vw, 63px);
  line-height: 1;
}
.story-copy p {
  color: #625d56;
}
.story-copy a {
  color: #987140;
}
.about-story-v2 > img {
  padding: 0;
  height: 610px;
  object-fit: cover;
}
.about-core-dark {
  background: #151716;
  color: #eee9e0;
  padding: 65px max(24px, 3.5vw);
}
.about-service-five article {
  height: 100%;
  border: 1px solid #46443f;
  padding: 0;
}
.about-service-five img {
  height: 260px;
  object-fit: cover;
}
.about-service-five article > div {
  padding: 18px;
}
.about-service-five h3 {
  font-size: 25px;
}
.about-service-five p {
  font-size: 14px;
  color: #aaa69e;
}
.about-process-title {
  text-align: center;
  font-size: clamp(38px, 4vw, 56px);
  margin: 65px 0 38px;
}
.about-six-steps {
  position: relative;
}
.about-six-steps:before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 20px;
  height: 1px;
  background: #b78b51;
}
.about-six-steps article {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.about-six-steps b {
  display: flex;
  width: 40px;
  height: 40px;
  border: 1px solid #b78b51;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: auto;
  background: #151716;
  position: relative;
  z-index: 1;
  color: #c99c61;
}
.about-six-steps span {
  display: block;
  font-size: 28px;
  margin: 18px 0 5px;
  color: #d2c0a1;
}
.about-six-steps h3 {
  margin: 18px 0 5px;
  font-size: 20px;
}
.about-six-steps p {
  font-size: 13px;
  color: #aaa69e;
}
.principles {
  padding: 65px max(24px, 5vw);
}
.principles article {
  padding: 25px 22px;
  border-right: 1px solid #c9c0b4;
}
.principles article:last-child {
  border: 0;
}
.principles b {
  color: #b78b51;
}
.principles h3 {
  font-size: 22px;
  margin-top: 15px;
}
.principles p {
  font-size: 14px;
  color: #6b655d;
}
.workmanship {
  padding: 60px max(24px, 3.5vw);
  background: #171917;
  color: #eee9e0;
}
.workmanship-grid img {
  height: 330px;
  object-fit: cover;
}
.workmanship-grid .workmanship-tall {
  height: 500px;
}
.workmanship-grid img:last-child {
  height: 260px;
}
.service-region {
  margin: 0 !important;
  background: #eee9df;
}
.service-region > div:first-child {
  padding: 65px max(28px, 6vw);
}
.service-region h2 {
  font-size: clamp(42px, 5vw, 62px);
}
.service-region p {
  color: #686159;
}
.map-panel {
  min-height: 430px;
  position: relative;
  background: #ded6ca;
}
.map-panel:before {
  content: "";
  position: absolute;
  inset: 20%;
  border: 2px dashed #b78b51;
  border-radius: 50%;
}
.map-panel .pin {
  position: absolute;
  background: #171917;
  color: #fff;
  padding: 9px 13px;
  font-size: 11px;
}
.map-panel .izmir {
  left: 22%;
  top: 28%;
}
.map-panel .antalya {
  left: 46%;
  bottom: 20%;
}
.map-panel strong {
  position: absolute;
  right: 12%;
  top: 45%;
  color: #9b713f;
}
.about-bottom-cta {
  margin: 0 !important;
  background: #eee9df;
}
.about-bottom-cta > img {
  padding: 0;
  height: 360px;
  object-fit: cover;
}
.about-bottom-cta > div {
  padding: 55px max(28px, 5vw);
}
.about-bottom-cta h2 {
  font-size: clamp(42px, 5vw, 62px);
}
.light-contact {
  display: inline-block;
  border: 1px solid #aaa096;
  padding: 9px 18px;
}
@media (max-width: 1199.98px) {
  .about-six-steps:before {
    display: none;
  }
  .about-six-steps article {
    padding: 20px 12px;
  }
}
@media (max-width: 991.98px) {
  .about-story-v2 > img {
    height: 450px;
  }
  .principles article {
    border-right: 0;
    border-bottom: 1px solid #c9c0b4;
  }
  .workmanship-grid .workmanship-tall,
  .workmanship-grid img {
    height: 350px;
  }
}
@media (max-width: 575.98px) {
  .about-hero-v2 {
    min-height: 590px;
  }
  .about-hero-copy h1 {
    font-size: 43px;
  }
  .about-service-five img {
    height: 320px;
  }
  .about-bottom-cta > img {
    height: 300px;
  }
}


/* Hakkımızda alt CTA buton dengesi */
.about-bottom-cta nav {
  align-items: stretch;
}
.about-bottom-cta nav a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 22px;
  line-height: 1.25;
}
.about-bottom-cta .light-contact {
  flex-direction: column;
  min-width: 265px;
}
.about-bottom-cta .light-contact small {
  font-size: 12px;
  margin-top: 3px;
  color: #625b53;
  letter-spacing: 0.02em;
}
@media (max-width: 575.98px) {
  .about-bottom-cta nav a {
    width: 100%;
  }
  .about-bottom-cta .light-contact {
    min-width: 0;
  }
}

/* Tasarımdan uygulamaya görsel kolaj */
.workmanship {
  background: #151716;
  padding: 38px max(35px, 4vw);
}
.workmanship > .section-title {
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.04;
  margin-bottom: 28px;
}
.workmanship-grid {
  max-width: 1250px;
  margin-left: auto !important;
  margin-right: auto !important;
  align-items: end;
}
.workmanship-grid > div {
  display: flex;
  align-items: flex-end;
}
.workmanship-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  padding: 0;
}
.workmanship-grid img.workmanship-large {
  height: 320px;
}
@media (max-width: 991.98px) {
  .workmanship-grid img,
  .workmanship-grid img.workmanship-large {
    height: 280px;
  }
}
@media (max-width: 575.98px) {
  .workmanship {
    padding: 38px 22px;
  }
  .workmanship-grid img,
  .workmanship-grid img.workmanship-large {
    height: 260px;
  }
}

/* Kurumsal görsel logo */
.site-logo {
  display: inline-block;
  line-height: 0;
  flex: 0 0 auto;
}
.site-logo img {
  display: block;
  width: 240px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}
.navbar .site-logo {
  padding: 0;
  margin-right: 24px;
}
.footer .footer-logo img {
  width: 270px;
  max-height: none;
  margin-bottom: 18px;
}
@media (max-width: 575.98px) {
  .site-logo img {
    width: 185px;
    max-height: 44px;
  }
  .footer .footer-logo img {
    width: 230px;
  }
}

/* Hakkımızda Türkiye haritası */
.service-region .map-panel {
  overflow: hidden;
  background: #eee8dd;
}
.service-region .map-panel::before {
  display: none;
}
.service-region .map-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-region .map-panel .pin,
.service-region .map-panel > strong {
  z-index: 1;
  box-shadow: 0 8px 22px rgba(23, 24, 22, 0.18);
}
.service-region .map-panel .izmir {
  left: 12%;
  top: 40%;
}
.service-region .map-panel .antalya {
  left: 31%;
  right: auto;
  top: 62%;
  bottom: auto;
}
.service-region .map-panel > strong {
  right: 7%;
  top: auto;
  bottom: 8%;
  background: rgba(241, 237, 228, 0.88);
  padding: 7px 10px;
}
@media (max-width: 991.98px) {
  .service-region .map-panel {
    min-height: 380px;
  }
}
@media (max-width: 575.98px) {
  .service-region .map-panel {
    min-height: 270px;
  }
  .service-region .map-panel .pin {
    font-size: 9px;
    padding: 6px 9px;
  }
  .service-region .map-panel > strong {
    font-size: 10px;
  }
}

/* Foto galeri ana sayfası */
.gallery-page {
  background: #f1ede4;
}
.gallery-index-hero {
  padding: 78px 0 68px;
  background: #171917;
  color: #f1ede3;
}
.gallery-index-hero h1 {
  font-size: clamp(54px, 6vw, 88px);
  line-height: 0.96;
  margin: 18px 0;
}
.gallery-index-hero h1 em,
.gallery-cta h2 em {
  color: #bd925c;
}
.gallery-index-hero p {
  max-width: 700px;
  color: #b8b2a8;
  font-size: 17px;
  line-height: 1.75;
}
.gallery-index-hero small,
.gallery-cta small,
.gallery-category-card small {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #bd925c;
}
.gallery-breadcrumb {
  font-size: 13px;
  color: #aaa39a;
}
.gallery-breadcrumb span {
  margin: 0 9px;
  color: #766c60;
}
.gallery-categories {
  padding: 72px 0;
}
.gallery-category-card {
  display: block;
  height: 100%;
  background: #1a1c19;
  color: #eee9e0;
  overflow: hidden;
}
.gallery-category-card figure {
  height: 470px;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.gallery-category-card figure img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.gallery-category-card figure span {
  position: absolute;
  left: 22px;
  top: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Serif Display", serif;
  background: rgba(10, 11, 10, 0.25);
}
.gallery-category-card > div {
  padding: 27px 28px 30px;
}
.gallery-category-card h2 {
  font-size: 39px;
  margin: 10px 0 6px;
}
.gallery-category-card p {
  color: #aba69d;
  font-size: 15px;
  margin-bottom: 22px;
}
.gallery-category-card b {
  font-size: 13px;
  color: #cda36e;
}
.gallery-category-card:hover figure img {
  transform: scale(1.06);
}
.gallery-cta {
  padding: 66px 0;
  background: #e6dfd3;
}
.gallery-cta h2 {
  font-size: clamp(42px, 4.6vw, 65px);
  line-height: 0.98;
  margin: 10px 0 0;
}
@media (max-width: 991.98px) {
  .gallery-category-card figure {
    height: 410px;
  }
}
@media (max-width: 767.98px) {
  .gallery-index-hero {
    padding: 58px 0 50px;
  }
  .gallery-index-hero h1 {
    font-size: 49px;
  }
  .gallery-categories {
    padding: 45px 0;
  }
  .gallery-category-card figure {
    height: 390px;
  }
}
@media (max-width: 575.98px) {
  .gallery-index-hero h1 {
    font-size: 42px;
  }
  .gallery-category-card figure {
    height: 330px;
  }
  .gallery-category-card > div {
    padding: 22px;
  }
}

/* Foto galeri yatay kategori kartları */
@media (min-width: 992px) {
  .gallery-category-card {
    display: flex;
    min-height: 390px;
  }
  .gallery-category-card figure {
    flex: 0 0 55%;
    width: 55%;
    height: auto;
    min-height: 390px;
  }
  .gallery-category-card > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px 26px;
  }
  .gallery-category-card h2 {
    font-size: 34px;
    line-height: 1.05;
  }
  .gallery-category-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}


/* Galeri detay ve lightbox */
.gallery-detail-page {
  background: #171917;
  color: #eee9e0;
}
.gallery-detail-hero {
  padding: 70px 0 58px;
  background: #20221f;
}
.gallery-detail-hero > a {
  font-size: 13px;
}
.gallery-detail-hero small {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #bd925c;
}
.gallery-detail-hero h1 {
  font-size: clamp(53px, 6vw, 86px);
  line-height: 0.95;
  margin: 18px 0;
}
.gallery-detail-hero h1 em {
  color: #bd925c;
}
.gallery-detail-hero p {
  max-width: 700px;
  color: #aaa69e;
  font-size: 16px;
}
.gallery-detail-list {
  padding: 55px 0 75px;
}
.gallery-detail-tile {
  position: relative;
  width: 100%;
  height: 420px;
  border: 0;
  padding: 0;
  background: #111;
  overflow: hidden;
  text-align: left;
}
.gallery-detail-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-detail-tile:after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(8, 9, 8, 0.9));
}
.gallery-detail-tile span {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 20px;
  color: #fff;
  font: 400 27px "DM Serif Display", serif;
}
.gallery-detail-tile b {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 18px;
  color: #fff;
  font-size: 20px;
}
.gallery-detail-tile:hover img {
  transform: scale(1.06);
}
.gallery-lightbox .modal-content {
  background: #0c0d0c;
  color: #eee9e0;
}
.gallery-lightbox .modal-header {
  border: 0;
  padding: 18px 25px;
}
.gallery-lightbox .modal-title {
  font-size: 25px;
}
.gallery-lightbox .modal-header span {
  font-size: 13px;
  color: #bd925c;
}
.gallery-lightbox .btn-close {
  filter: invert(1);
}
.gallery-lightbox .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 80px;
}
.gallery-lightbox .modal-body img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(10, 11, 10, 0.55);
  color: #fff;
  font-size: 38px;
  line-height: 1;
}
.lightbox-arrow.prev {
  left: 18px;
}
.lightbox-arrow.next {
  right: 18px;
}
.lightbox-arrow:hover {
  background: #b78b51;
}
@media (max-width: 767.98px) {
  .gallery-detail-tile {
    height: 350px;
  }
  .gallery-lightbox .modal-body {
    padding: 15px 55px;
  }
  .lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }
}
@media (max-width: 575.98px) {
  .gallery-detail-hero h1 {
    font-size: 43px;
  }
  .gallery-detail-tile {
    height: 310px;
  }
  .gallery-lightbox .modal-body {
    padding: 10px 45px;
  }
  .lightbox-arrow.prev {
    left: 6px;
  }
  .lightbox-arrow.next {
    right: 6px;
  }
}

/* Garanti ve servis — solda menüsüz düz içerik */
.support-page {
  background: #f1ede4;
  color: #25231f;
}
.support-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f1ede4;
}
.support-hero > img,
.support-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.support-hero-shade {
  background: linear-gradient(90deg, rgba(9, 10, 8, 0.9), rgba(9, 10, 8, 0.26));
}
.support-hero-copy {
  max-width: 760px;
  padding: 75px 0;
}
.support-hero small,
.support-cta small,
.support-callout small,
.support-contact small {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #c49b66;
}
.support-hero h1 {
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.9;
  margin: 16px 0;
}
.support-hero h1 em,
.support-cta h2 em {
  color: #c49b66;
}
.support-hero p {
  max-width: 680px;
  color: #d0cac1;
  font-size: 17px;
}
.support-hero time {
  display: block;
  margin-top: 22px;
  color: #aaa49b;
  font-size: 13px;
}
.support-content {
  max-width: 1040px;
}
.support-lead {
  font: 400 clamp(25px, 3vw, 36px) / 1.35 "DM Serif Display", serif;
  border-left: 2px solid #b78b51;
  padding-left: 28px;
  margin: 20px 0 65px;
}
.support-content > section {
  position: relative;
  padding: 45px 0;
  border-top: 1px solid #cfc7bb;
}
.support-content > section > span {
  position: absolute;
  right: 0;
  top: 38px;
  font: 400 45px "DM Serif Display", serif;
  color: #c9b18e;
}
.support-content h2 {
  font-size: clamp(35px, 4vw, 48px);
  padding-right: 85px;
}
.support-content p,
.support-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #625d55;
}
.support-content ul {
  padding-left: 0;
  list-style: none;
  columns: 2;
  column-gap: 45px;
}
.support-content li {
  break-inside: avoid;
  padding: 9px 0;
  border-bottom: 1px solid #d8d0c4;
}
.support-content li:before {
  content: "—";
  color: #b78b51;
  margin-right: 10px;
}
.support-callout {
  margin: 30px 0 50px;
  padding: 42px;
  background: #171917;
  color: #eee9e0;
}
.support-callout h3 {
  font-size: clamp(30px, 4vw, 45px);
  margin: 12px 0;
}
.support-callout p {
  color: #aaa69e;
  margin: 0;
}
.support-steps article {
  height: 100%;
  padding: 28px;
  background: #e5ddd1;
  border-top: 2px solid #b78b51;
}
.support-steps b {
  color: #b78b51;
}
.support-steps h3 {
  font-size: 24px;
  margin: 18px 0 8px;
}
.support-steps p {
  font-size: 14px;
  margin: 0;
}
.support-contact > div {
  padding: 25px;
  border: 1px solid #cfc7bb;
  background: #eee8de;
}
.support-contact a {
  display: block;
  margin-top: 10px;
  color: #171917;
  font-size: 18px;
}
.support-contact p {
  font-size: 14px;
  margin: 8px 0 0;
}
.support-note {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid #cfc7bb;
}
.support-note p {
  max-width: 700px;
  margin: 0;
  font-size: 13px;
  color: #716b62;
}
.support-note a {
  color: #987140;
  white-space: nowrap;
}
.support-cta {
  padding: 65px 0;
  background: #171917;
  color: #eee9e0;
}
.support-cta h2 {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
  margin: 12px 0 0;
}
/* .support-cta .btn-outline { */
  /* color: #eee9e0; */
  /* border-color: #78746d; */
/* } */
@media (max-width: 767.98px) {
  .support-hero {
    min-height: 500px;
  }
  .support-hero-copy {
    padding: 55px 0;
  }
  .support-content ul {
    columns: 1;
  }
  .support-content > section > span {
    position: static;
    display: block;
    font-size: 25px;
  }
  .support-content h2 {
    padding-right: 0;
  }
  .support-callout {
    padding: 30px 24px;
  }
  .support-note {
    display: block;
  }
  .support-note a {
    display: inline-block;
    margin-top: 18px;
  }
}
@media (max-width: 575.98px) {
  .support-hero h1 {
    font-size: 48px;
  }
  .support-hero p {
    font-size: 15px;
  }
  .support-lead {
    padding-left: 18px;
    margin-bottom: 45px;
  }
  .support-content > section {
    padding: 35px 0;
  }
  .support-content p,
  .support-content li {
    font-size: 15px;
  }
  .support-cta .btn {
    width: 100%;
  }
}
.privacy-hero .support-hero-shade {
  background: linear-gradient(
    90deg,
    rgba(9, 10, 8, 0.92),
    rgba(9, 10, 8, 0.38)
  );
}
.privacy-warning {
  margin: 20px 0 65px;
  padding: 32px 36px;
  border-left: 2px solid #b78b51;
  background: #e7dfd3;
}
.privacy-warning p {
  font-size: 17px;
  line-height: 1.75;
  color: #575149;
}
.privacy-warning p:last-child {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .privacy-warning {
    padding: 25px 22px;
    margin-bottom: 45px;
  }
  .privacy-warning p {
    font-size: 15px;
  }
}

/* Hizmet bölgeleri */
.regions-page-bs {
  background: #f1ede4;
  color: #25231f;
}
.regions-hero-bs {
  padding: 95px 0;
  background: #171917;
  color: #eee9e0;
}
.regions-hero-bs small,
.region-centers-bs small,
.region-directory-bs small,
.region-services-bs small {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #c49b66;
}
.regions-hero-bs h1 {
  font-size: clamp(55px, 6.5vw, 88px);
  line-height: 0.95;
  margin: 18px 0;
}
.regions-hero-bs h1 em,
.region-directory-bs h2 em,
.region-services-bs h2 em {
  color: #c49b66;
}
.regions-hero-bs p {
  max-width: 760px;
  font-size: 17px;
  color: #b9b4ab;
}
.region-stats > div {
  border-bottom: 1px solid #55534d;
  padding: 12px;
}
.region-stats strong,
.region-stats span {
  display: block;
}
.region-stats strong {
  font: 400 35px "DM Serif Display", serif;
  color: #c49b66;
}
.region-stats span {
  font-size: 13px;
  color: #aaa69e;
}
.region-centers-bs {
  padding: 65px 0;
  background: #e6ded2;
}
.region-centers-bs article {
  height: 100%;
  padding: 40px;
  border: 1px solid #c8beb0;
  background: #eee8de;
}
.region-centers-bs h2 {
  font-size: 48px;
  margin: 12px 0;
}
.region-centers-bs p {
  color: #655f57;
}
.region-centers-bs a {
  color: #987140;
}
.region-directory-bs {
  padding: 75px 0;
}
.region-directory-bs h2,
.region-services-bs h2 {
  font-size: clamp(45px, 5vw, 65px);
  margin: 10px 0;
}
.region-directory-bs p {
  color: #676159;
}
.region-search {
  display: flex;
  align-items: center;
  border: 1px solid #aaa096;
  background: #fff;
  padding: 0 18px;
}
.region-search input {
  width: 100%;
  height: 56px;
  border: 0;
  outline: 0;
  background: transparent;
}
.region-filters button {
  border: 1px solid #aaa096;
  background: transparent;
  padding: 10px 15px;
  color: #3b3833;
}
.region-filters button.active,
.region-filters button:hover {
  background: #171917;
  color: #fff;
}
.region-list-bs a {
  display: flex;
  justify-content: space-between;
  padding: 15px 17px;
  background: #e7dfd3;
  color: #26231f;
  border-bottom: 1px solid #c7bdaf;
}
.region-list-bs a:hover {
  background: #b78b51;
  color: #fff;
}
.region-list-bs .hidden {
  display: none !important;
}
.region-services-bs {
  padding: 75px 0;
  background: #171917;
  color: #eee9e0;
}
.region-service-card {
  display: block;
  height: 100%;
  background: #22231f;
  color: #eee9e0;
}
.region-service-card figure {
  height: 330px;
  overflow: hidden;
  margin: 0;
}
.region-service-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.region-service-card:hover img {
  transform: scale(1.06);
}
.region-service-card > div {
  padding: 25px;
}
.region-service-card h3 {
  font-size: 34px;
  margin: 10px 0;
}
.region-service-card p {
  font-size: 15px;
  color: #aaa69e;
}
@media (max-width: 767.98px) {
  .regions-hero-bs {
    padding: 65px 0;
  }
  .regions-hero-bs h1 {
    font-size: 48px;
  }
  .region-centers-bs article {
    padding: 30px 24px;
  }
  .region-directory-bs,
  .region-services-bs {
    padding: 55px 0;
  }
  .region-service-card figure {
    height: 300px;
  }
}
@media (max-width: 575.98px) {
  .region-stats strong {
    font-size: 26px;
  }
  .region-stats span {
    font-size: 11px;
  }
  .region-filters button {
    font-size: 12px;
    padding: 8px 10px;
  }
}

/* Hizmet bölgesi detay */
.region-detail-bs {
  background: #f1ede4;
  color: #25231f;
}
.region-detail-hero-bs {
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #eee9e0;
}
.region-detail-hero-bs > img,
.region-detail-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.region-detail-shade {
  background: linear-gradient(90deg, rgba(8, 9, 8, 0.92), rgba(8, 9, 8, 0.22));
}
.region-detail-hero-copy {
  max-width: 970px;
  padding: 85px 0;
}
.region-detail-hero-copy > a {
  display: block;
  margin-bottom: 36px;
  color: #d0c9bf;
}
.region-detail-bs small {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #c49b66;
}
.region-detail-hero-copy small {
  display: block;
}
.region-detail-hero-copy h1 {
  font-size: clamp(51px, 6vw, 82px);
  line-height: 0.95;
  margin: 17px 0;
}
.region-detail-bs h1 em,
.region-detail-bs h2 em {
  color: #c49b66;
}
.region-detail-hero-copy p {
  max-width: 730px;
  color: #c5bfb6;
  font-size: 17px;
}
.region-detail-intro-bs {
  padding: 70px 0;
}
.region-detail-intro-bs h2,
.region-process-bs h2,
.region-request-bs h2 {
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1;
  margin: 12px 0;
}
.region-detail-intro-bs p {
  color: #645e56;
  font-size: 16px;
}
.region-detail-services-bs article {
  background: #171917;
  color: #eee9e0;
}
.region-detail-services-bs article:nth-child(2) {
  background: #e7dfd3;
  color: #25231f;
}
.region-detail-services-bs figure {
  margin: 0;
  min-height: 650px;
  overflow: hidden;
}
.region-detail-services-bs figure img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.region-detail-services-bs article:hover figure img {
  transform: scale(1.04);
}
.region-detail-copy {
  padding: 70px max(35px, 7vw);
}
.region-detail-copy h2 {
  font-size: clamp(39px, 4.5vw, 61px);
  line-height: 1;
  margin: 15px 0;
}
.region-detail-copy em {
  display: block;
}
.region-detail-copy p {
  color: #aaa69e;
  line-height: 1.75;
}
.region-detail-services-bs article:nth-child(2) p {
  color: #635d55;
}
.region-detail-copy ul {
  list-style: none;
  padding: 15px 0;
}
.region-detail-copy li {
  padding: 9px 0;
  border-bottom: 1px solid #45453f;
}
.region-detail-services-bs article:nth-child(2) li {
  border-color: #c8beb0;
}
.region-detail-copy li:before {
  content: "—";
  color: #b78b51;
  margin-right: 10px;
}
.region-detail-copy > a {
  color: #c49b66;
}
.region-process-bs {
  padding: 75px 0;
  background: #20221f;
  color: #eee9e0;
}
.region-process-bs article {
  height: 100%;
  padding: 25px;
  border-top: 1px solid #b78b51;
  background: #191b19;
}
.region-process-bs b {
  color: #c49b66;
}
.region-process-bs h3 {
  font-size: 23px;
  margin: 15px 0 8px;
}
.region-process-bs p {
  font-size: 14px;
  color: #aaa69e;
}
.region-request-bs {
  padding: 75px 0;
  background: #e7dfd3;
}
.region-request-bs p {
  color: #655f57;
}
.region-request-bs .form-control,
.region-request-bs .form-select {
  border-radius: 0;
  border-color: #bcb2a5;
  background: #f4f0e8;
  min-height: 52px;
}
.region-request-bs textarea.form-control {
  min-height: 115px;
}
@media (max-width: 991.98px) {
  .region-detail-services-bs figure {
    min-height: 470px;
  }
  .region-detail-copy {
    padding: 55px 30px;
  }
}
@media (max-width: 575.98px) {
  .region-detail-hero-bs {
    min-height: 600px;
  }
  .region-detail-hero-copy h1 {
    font-size: 43px;
  }
  .region-detail-hero-copy p {
    font-size: 15px;
  }
  .region-detail-services-bs figure {
    min-height: 340px;
  }
  .region-detail-copy {
    padding: 45px 22px;
  }
  .region-process-bs,
  .region-request-bs {
    padding: 55px 0;
  }
}
/* Sauna hizmet detay */
.sauna-detail-bs {
  background: #f1ede4;
  color: #25231f;
}
.sauna-detail-bs small {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #c49b66;
}
.sauna-detail-bs h1 em,
.sauna-detail-bs h2 em {
  color: #c49b66;
}
.sauna-hero-bs {
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #eee9e0;
}
.sauna-hero-bs > img,
.sauna-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sauna-hero-shade {
  background: linear-gradient(90deg, rgba(8, 9, 8, 0.9), rgba(8, 9, 8, 0.15));
}
.sauna-hero-copy {
  max-width: 850px;
  padding: 85px 0;
}
.sauna-hero-copy h1 {
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.92;
  margin: 18px 0;
}
.sauna-hero-copy em {
  display: block;
}
.sauna-hero-copy p {
  max-width: 680px;
  color: #c9c3ba;
  font-size: 17px;
}
.sauna-intro-bs {
  padding: 75px 0;
}
.sauna-intro-bs h2,
.sauna-types-bs h2,
.sauna-process-bs h2,
.sauna-faq-bs h2 {
  font-size: clamp(43px, 5vw, 64px);
  line-height: 1;
  margin: 12px 0;
}
.sauna-intro-bs p {
  color: #625d55;
}
.sauna-intro-bs a {
  color: #987140;
}
.sauna-types-bs {
  padding: 75px 0;
  background: #171917;
  color: #eee9e0;
}
.sauna-types-bs article {
  height: 100%;
  padding: 30px 25px;
  border: 1px solid #45453f;
}
.sauna-types-bs b {
  color: #c49b66;
}
.sauna-types-bs h3 {
  font-size: 28px;
  margin: 20px 0 10px;
}
.sauna-types-bs p {
  color: #aaa69e;
  font-size: 14px;
}
.sauna-types-bs dl {
  margin: 20px 0 0;
  padding-top: 15px;
  border-top: 1px solid #45453f;
}
.sauna-types-bs dt {
  font-size: 11px;
  color: #8e8981;
}
.sauna-types-bs dd {
  font-size: 14px;
}
.sauna-split-bs figure {
  margin: 0;
  min-height: 650px;
  overflow: hidden;
}
.sauna-split-bs figure img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.sauna-split-bs:hover figure img {
  transform: scale(1.04);
}
.sauna-split-bs article {
  padding: 75px max(35px, 7vw);
  background: #e8e0d4;
}
.sauna-split-bs h2 {
  font-size: clamp(43px, 5vw, 64px);
  line-height: 1;
  margin: 15px 0;
}
.sauna-split-bs p {
  color: #625d55;
}
.sauna-split-bs ul {
  list-style: none;
  padding: 15px 0;
}
.sauna-split-bs li {
  padding: 12px 0;
  border-bottom: 1px solid #c8beb0;
}
.sauna-split-bs li span {
  color: #b78b51;
  margin-right: 14px;
}
.sauna-technical-bs article {
  background: #20221f;
  color: #eee9e0;
}
.sauna-technical-bs article p {
  color: #aaa69e;
}
.sauna-tech-list > div {
  padding: 12px 8px;
  border-bottom: 1px solid #4a4944;
  font-size: 14px;
}
.sauna-process-bs {
  padding: 75px 0;
  background: #f1ede4;
}
.sauna-process-bs article {
  height: 100%;
  padding: 25px;
  border-top: 1px solid #b78b51;
  background: #e7dfd3;
}
.sauna-process-bs b {
  color: #b78b51;
}
.sauna-process-bs h3 {
  font-size: 22px;
  margin: 15px 0 7px;
}
.sauna-process-bs p {
  font-size: 13px;
  color: #686159;
}
.sauna-case-bs {
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #eee9e0;
}
.sauna-case-bs > img,
.sauna-case-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sauna-case-shade {
  background: linear-gradient(90deg, rgba(8, 9, 8, 0.9), rgba(8, 9, 8, 0.18));
}
.sauna-case-bs article {
  max-width: 680px;
  padding: 75px 0;
}
.sauna-case-bs h2 {
  font-size: clamp(48px, 6vw, 75px);
  line-height: 0.95;
  margin: 15px 0;
}
.sauna-case-bs p {
  color: #c5bfb6;
}
.sauna-faq-bs {
  padding: 75px 0;
}
.sauna-faq-bs > div > div > div:first-child p {
  color: #655f57;
}
.sauna-faq-bs .faq-list article {
  border-top: 1px solid #bdb4a8;
}
.sauna-faq-bs .faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-size: 18px;
}
.sauna-faq-bs .faq-list article > p {
  display: none;
  padding: 0 40px 20px 0;
  color: #655f57;
}
.sauna-faq-bs .faq-list article.open > p {
  display: block;
}
@media (max-width: 991.98px) {
  .sauna-split-bs figure {
    min-height: 450px;
  }
  .sauna-split-bs article {
    padding: 55px 30px;
  }
}
@media (max-width: 575.98px) {
  .sauna-hero-bs {
    min-height: 600px;
  }
  .sauna-hero-copy h1 {
    font-size: 46px;
  }
  .sauna-hero-copy p {
    font-size: 15px;
  }
  .sauna-intro-bs,
  .sauna-types-bs,
  .sauna-process-bs,
  .sauna-faq-bs {
    padding: 55px 0;
  }
  .sauna-split-bs figure {
    min-height: 340px;
  }
  .sauna-split-bs article {
    padding: 45px 22px;
  }
  .sauna-case-bs {
    min-height: 540px;
  }
}
.sauna-detail-bs .process-timeline {
  position: relative;
  margin-top: 42px !important;
}
.sauna-detail-bs .process-timeline:before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 22px;
  height: 1px;
  background: #b78b51;
}
.sauna-detail-bs .process-timeline > div {
  position: relative;
}
.sauna-detail-bs .process-timeline article {
  position: relative;
  text-align: center;
  padding: 0 14px;
  background: transparent;
  border: 0;
}
.sauna-detail-bs .process-timeline b {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 auto;
  border: 1px solid #b78b51;
  border-radius: 50%;
  background: #f1ede4;
  color: #a67d45;
  font: 400 19px "DM Serif Display", serif;
}
.sauna-detail-bs .process-timeline h3 {
  font-size: 23px;
  margin: 20px 0 8px;
}
.sauna-detail-bs .process-timeline p {
  max-width: 170px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.65;
}
@media (max-width: 1199.98px) {
  .sauna-detail-bs .process-timeline:before {
    display: none;
  }
  .sauna-detail-bs .process-timeline > div {
    margin-bottom: 30px;
  }
  .sauna-detail-bs .process-timeline article {
    padding: 0 18px;
  }
}
@media (max-width: 575.98px) {
  .sauna-detail-bs .process-timeline h3 {
    font-size: 20px;
  }
  .sauna-detail-bs .process-timeline p {
    font-size: 12px;
  }
  .sauna-detail-bs .process-timeline article {
    padding: 0 8px;
  }
}

/* Blog ana sayfası */
.blog-page-bs {
  background: #f1ede4;
  color: #25231f;
}
.blog-page-bs small {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #c49b66;
}
.blog-intro-bs {
  padding: 80px 0 60px;
  background: #171917;
  color: #eee9e0;
}
.blog-intro-bs h1 {
  font-size: clamp(55px, 6.5vw, 88px);
  line-height: 0.95;
  margin: 16px 0;
}
.blog-intro-bs h1 em,
.blog-browser-bs h2 em {
  color: #c49b66;
}
.blog-intro-bs p {
  max-width: 760px;
  color: #b8b2a9;
  font-size: 17px;
}
.blog-featured-bs {
  padding: 60px 0;
  background: #171917;
}
.blog-lead-bs,
.blog-side-bs {
  display: block;
  position: relative;
  height: 100%;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
}
.blog-lead-bs > img,
.blog-lead-bs > span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-lead-bs > span {
  background: linear-gradient(0deg, rgba(8, 9, 8, 0.9), transparent 70%);
}
.blog-lead-bs article {
  position: absolute;
  z-index: 1;
  left: 35px;
  right: 35px;
  bottom: 35px;
}
.blog-lead-bs h2 {
  font-size: clamp(38px, 4vw, 57px);
  line-height: 1;
}
.blog-lead-bs p {
  max-width: 650px;
  color: #d0cbc2;
}
.blog-side-bs {
  min-height: 308px;
}
.blog-side-bs > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-side-bs:after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(8, 9, 8, 0.9));
}
.blog-side-bs article {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
}
.blog-side-bs h2 {
  font-size: 27px;
}
.blog-lead-bs:hover img,
.blog-side-bs:hover img {
  transform: scale(1.04);
}
.blog-browser-bs {
  padding: 75px 0;
}
.blog-browser-bs h2 {
  font-size: clamp(44px, 5vw, 65px);
  line-height: 1;
}
.blog-filters-bs button, .blog-filters-bs a {
  border: 1px solid #aaa096;
  background: transparent;
  padding: 10px 15px;
}
.blog-filters-bs button.active,
.blog-filters-bs button:hover,
.blog-filters-bs a:hover {
  background: #171917;
  color: #fff;
}
.blog-grid-bs > div.hidden {
  display: none;
}
.blog-grid-bs article {
  height: 100%;
  background: #e7dfd3;
}
.blog-grid-bs a {
  display: block;
  height: 100%;
  padding-bottom: 24px;
  color: #25231f;
}
.blog-grid-bs figure {
  height: 285px;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.blog-grid-bs img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-grid-bs figure span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 7px 9px;
  background: rgba(15, 16, 14, 0.82);
  color: #cba16a;
  font-size: 10px;
}
.blog-grid-bs h3,
.blog-grid-bs p,
.blog-grid-bs b {
  margin-left: 22px;
  margin-right: 22px;
}
.blog-grid-bs h3 {
  font-size: 28px;
  margin-top: 22px;
}
.blog-grid-bs p {
  color: #686159;
  font-size: 14px;
}
.blog-grid-bs b {
  color: #987140;
  font-size: 13px;
}
.blog-grid-bs article:hover img {
  transform: scale(1.06);
}
.blog-expert-bs {
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #eee9e0;
}
.blog-expert-bs > img,
.blog-expert-bs > div:first-of-type {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-expert-bs > div:first-of-type {
  background: rgba(10, 11, 10, 0.75);
}
.blog-expert-bs article {
  max-width: 900px;
  padding: 70px 0;
}
.blog-expert-bs blockquote {
  font: 400 clamp(34px, 4vw, 54px) / 1.15 "DM Serif Display", serif;
  margin: 18px 0;
}
@media (max-width: 991.98px) {
  .blog-lead-bs {
    min-height: 560px;
  }
}
@media (max-width: 575.98px) {
  .blog-intro-bs {
    padding: 60px 0 45px;
  }
  .blog-intro-bs h1 {
    font-size: 45px;
  }
  .blog-featured-bs {
    padding: 35px 0;
  }
  .blog-lead-bs {
    min-height: 500px;
  }
  .blog-lead-bs article {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }
  .blog-browser-bs {
    padding: 55px 0;
  }
  .blog-grid-bs figure {
    height: 260px;
  }
}
.category-hero-bs {
  background: #171917;
  color: #eee9e0;
}
.category-hero-copy-bs {
  padding: 75px max(35px, 7vw);
}
.category-hero-copy-bs nav {
  font-size: 13px;
  color: #aaa69e;
  margin-bottom: 40px;
}
.category-hero-copy-bs h1 {
  font-size: clamp(38px, 5vw, 46px);
  line-height: 0.95;
  margin: 16px 0;
}
.category-hero-copy-bs h1 em,
.category-archive-bs h2 em {
  display: block;
  color: #c49b66;
}
.category-hero-copy-bs p {
  color: #aaa69e;
  max-width: 600px;
}
.category-hero-bs figure {
  position: relative;
  min-height: 620px;
  margin: 0;
}
.category-hero-bs figure img {
  height: 100%;
  object-fit: cover;
}
.category-hero-bs figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: #eee9e0;
  font-size: 11px;
}
.category-count {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
.category-count strong {
  font: 400 50px "DM Serif Display", serif;
  color: #c49b66;
}
.category-count span {
  font-size: 13px;
}
.category-tabs-bs {
  background: #e6ded2;
  border-bottom: 1px solid #c7bdaf;
}
.category-tabs-bs a {
  padding: 18px 20px;
  color: #3e3933;
  border-bottom: 2px solid transparent;
}
.category-tabs-bs a.active {
  border-color: #b78b51;
  color: #987140;
}
.category-feature-bs {
  padding: 65px 0;
  background: #eee8de;
}
.category-feature-bs figure {
  margin: 0;
  min-height: 470px;
  overflow: hidden;
}
.category-feature-bs figure img {
  height: 100%;
  object-fit: cover;
}
.category-feature-bs article {
  padding: 55px;
  background: #171917;
  color: #eee9e0;
}
.category-feature-bs h2 {
  font-size: clamp(38px, 4vw, 55px);
  line-height: 1;
}
.category-feature-bs p {
  color: #aaa69e;
}
.category-feature-bs a {
  color: #c49b66;
}
.category-archive-bs {
  padding: 75px 0;
}
.category-archive-bs h2 {
  font-size: clamp(45px, 5vw, 65px);
}
.category-list-bs article {
  border-top: 1px solid #c5bbae;
  margin-bottom: 15px;
}
.category-list-bs article.hidden {
  display: none;
}
.category-list-bs a {
  color: #25231f;
}
.category-list-bs figure {
  position: relative;
  min-height: 290px;
  margin: 0;
  overflow: hidden;
}
.category-list-bs figure img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-list-bs figure span {
  position: absolute;
  left: 15px;
  bottom: 14px;
  background: rgba(15, 16, 14, 0.82);
  color: #c49b66;
  padding: 7px 9px;
  font-size: 10px;
}
.category-row-copy-bs {
  position: relative;
  padding: 35px 75px 35px 35px;
  background: #e8e0d4;
}
.category-row-copy-bs time {
  font-size: 12px;
  color: #8a8278;
}
.category-row-copy-bs h3 {
  font-size: 34px;
  margin: 12px 0;
}
.category-row-copy-bs p {
  color: #686159;
}
.category-row-copy-bs b {
  font-size: 13px;
  color: #987140;
}
.category-row-copy-bs i {
  position: absolute;
  right: 25px;
  top: 25px;
  font: italic 38px "DM Serif Display", serif;
  color: #c6ad8a;
}
.category-list-bs article:hover img {
  transform: scale(1.05);
}
.category-pagination-bs {
  padding-top: 35px;
}
.category-pagination-bs a {
  padding: 10px 13px;
  color: #554f47;
}
.category-pagination-bs a.active {
  background: #171917;
  color: #fff;
}
.category-pagination-bs a.disabled {
  opacity: 0.4;
}
@media (max-width: 991.98px) {
  .category-hero-bs figure {
    min-height: 470px;
  }
  .category-feature-bs article {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .category-tabs-bs .container {
    overflow-x: auto;
    flex-wrap: nowrap !important;
  }
  .category-tabs-bs a {
    white-space: nowrap;
  }
  .category-list-bs figure {
    min-height: 260px;
  }
  .category-row-copy-bs {
    padding: 30px 60px 30px 24px;
  }
}
@media (max-width: 575.98px) {
  .category-hero-copy-bs {
    padding: 55px 22px;
  }
  .category-hero-copy-bs h1 {
    font-size: 46px;
  }
  .category-hero-bs figure {
    min-height: 360px;
  }
  .category-feature-bs {
    padding: 40px 0;
  }
  .category-feature-bs figure {
    min-height: 300px;
  }
  .category-feature-bs article {
    padding: 32px 24px;
  }
  .category-archive-bs {
    padding: 55px 0;
  }
}
/* Projeler Bootstrap uyarlaması */
.projects-page {
  background: #f1ede4;
  color: #25231f;
}
.projects-hero {
  height: 620px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.projects-hero > img,
.projects-hero > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects-hero > div {
  background: linear-gradient(90deg, rgba(8, 9, 8, 0.9), rgba(8, 9, 8, 0.2));
}
.projects-hero article {
  position: absolute;
  z-index: 1;
  left: max(24px, 6vw);
  top: 50%;
  transform: translateY(-50%);
  max-width: 850px;
}
.projects-hero h1 {
  font-size: clamp(55px, 6vw, 84px);
  line-height: 0.94;
}
.projects-hero p {
  max-width: 650px;
  color: #c8c2b9;
  font-size: 17px;
}
.project-filters {
  padding: 28px max(24px, 5vw);
  background: #e6ded2;
}
.filter-services,
.filter-audience {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.filter-services button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 10px 15px;
}
.filter-services button.active,
.filter-services button:hover {
  border-color: #b78b51;
  color: #987140;
}
.filter-audience {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #c7bdaf;
}
.filter-audience span {
  flex: 1 1 180px;
  text-align: center;
}
.projects-masonry,
.project-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 20px max(14px, 3vw);
}
.project-tile {
  position: relative;
  flex: 1 1 30%;
  height: 430px;
  overflow: hidden;
  background: #171917;
  color: #fff;
}
.project-tile.tile-large,
.project-tile.tile-wide {
  flex-basis: 55%;
}
.project-tile.tile-tall {
  height: 550px;
}
.project-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.project-tile:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(8, 9, 8, 0.9));
}
.project-tile > div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 18px;
}
.project-tile h2 {
  font-size: 28px;
}
.project-tile p {
  font-size: 13px;
  color: #c8c2b9;
}
.project-tile a {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #c49b66;
  font-size: 24px;
}
.project-tile:hover img {
  transform: scale(1.06);
}
.project-tile.hidden {
  display: none;
}
.secondary-grid {
  display: flex;
  flex: 2 1 48%;
  flex-wrap: wrap;
  gap: 14px;
}
.secondary-grid .project-tile {
  flex-basis: 42%;
  height: 265px;
}
.featured-project {
  display: flex;
  margin: 20px max(14px, 3vw) 50px;
  background: #171917;
  color: #fff;
}
.featured-project > img {
  width: 62%;
  object-fit: cover;
}
.featured-project article {
  padding: 55px;
  align-self: center;
}
.featured-project h2 {
  font-size: clamp(42px, 5vw, 62px);
}
.featured-project p {
  color: #aaa69e;
}
.project-process {
  padding: 70px max(24px, 5vw);
  background: #171917;
  color: #fff;
}
.process-intro {
  text-align: center;
  max-width: 750px;
  margin: auto;
}
.process-intro h2 {
  font-size: 55px;
}
.project-process-steps,
.project-promises {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto 0;
}
.project-process-steps article {
  flex: 1 1 220px;
  text-align: center;
  padding: 22px;
}
.project-process-steps b {
  display: flex;
  width: 46px;
  height: 46px;
  border: 1px solid #b78b51;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: #c49b66;
}
.project-process-steps h3 {
  font-size: 23px;
  margin-top: 15px;
}
.project-process-steps p,
.project-promises small {
  color: #aaa69e;
  font-size: 13px;
}
.project-promises span {
  flex: 1 1 260px;
  padding: 22px;
  border-top: 1px solid #665236;
}
.project-promises b,
.project-promises small {
  display: block;
}
.projects-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 60px max(24px, 7vw);
}
.projects-contact h2 {
  font-size: 55px;
}
.projects-contact nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.projects-contact nav a {
  padding: 14px 18px;
}
@media (max-width: 767.98px) {
  .projects-hero {
    height: 560px;
  }
  .project-tile,
  .project-tile.tile-large,
  .project-tile.tile-wide {
    flex-basis: 100%;
    height: 380px;
  }
  .secondary-grid {
    flex-basis: 100%;
  }
  .secondary-grid .project-tile {
    flex-basis: 100%;
    height: 350px;
  }
  .featured-project {
    display: block;
  }
  .featured-project > img {
    width: 100%;
    height: 380px;
  }
  .featured-project article {
    padding: 40px 24px;
  }
  .projects-contact h2,
  .process-intro h2 {
    font-size: 42px;
  }
}
/* Proje vaatleri numaralı rozetleri */
.project-promises span {
  position: relative;
  padding: 25px 22px 25px 80px;
}
.project-promises i {
  position: absolute;
  left: 20px;
  top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #b78b51;
  border-radius: 50%;
  color: #c49b66;
  font: normal 16px "DM Serif Display", serif;
  letter-spacing: 0.04em;
}
.project-promises b {
  margin-bottom: 7px;
  font-size: 17px;
  color: #eee9e0;
}
.project-promises small {
  line-height: 1.6;
}
@media (max-width: 575.98px) {
  .project-promises span {
    padding-left: 72px;
  }
  .project-promises i {
    left: 14px;
  }
}
/* Projeler alt iletişim alanı */
.projects-contact {
  display: block;
  padding: 78px 0;
  background: #e7dfd3;
  border-top: 1px solid #c6bcaf;
}
.projects-contact small {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #a77d46;
}
.projects-contact h2 {
  max-width: 760px;
  font-size: clamp(45px, 5.3vw, 68px);
  line-height: 0.98;
  margin: 15px 0 20px;
}
.projects-contact h2 em {
  color: #a77d46;
}
.projects-contact p {
  max-width: 720px;
  color: #625c54;
  font-size: 16px;
  line-height: 1.75;
}
.project-contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #c5bbae;
}
.project-contact-points span {
  font-size: 13px;
  color: #4f4a43;
}
.project-contact-points span:before {
  content: "✓";
  color: #a77d46;
  margin-right: 8px;
}
.project-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-contact-actions .btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 92px;
  padding: 20px 62px 20px 24px;
  text-align: left;
  border-radius: 0;
}
.project-contact-actions .btn strong {
  font-size: 16px;
  font-weight: 500;
}
.project-contact-actions .btn small {
  margin-top: 5px;
  color: inherit;
  opacity: 0.76;
  letter-spacing: 0;
  font-size: 12px;
}
.project-contact-actions .btn b {
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
}
.project-whatsapp {
  border: 1px solid #9f968a;
  background: #f1ede4;
  color: #171816;
}
.project-whatsapp:hover {
  background: #171816;
  color: #fff;
}
@media (max-width: 767.98px) {
  .projects-contact {
    padding: 55px 0;
  }
  .projects-contact h2 {
    font-size: 42px;
  }
  .project-contact-actions .btn {
    width: 100%;
  }
}
/* Tekil blog yazısı */
.article-page {
  background: #f1ede4;
  color: #292620;
}
.reading-progress {
  position: fixed;
  z-index: 1100;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: transparent;
}
.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #b78b51;
}
.article-shell {
  padding-bottom: 70px;
}
.article-header {
  max-width: 1120px;
  margin: auto;
  padding: 80px 25px 45px;
}
.article-breadcrumb {
  font-size: 13px;
  color: #81796f;
  margin-bottom: 45px;
}
.article-breadcrumb span {
  margin: 0 9px;
}
.article-header > small,
.article-content small,
.article-related small {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #b78b51;
}
.article-header h1 {
  font-size: clamp(57px, 7vw, 94px);
  line-height: 0.92;
  margin: 17px 0;
}
.article-header h1 em {
  color: #b78b51;
}
.article-deck {
  max-width: 830px;
  font-size: 19px;
  line-height: 1.65;
  color: #625d55;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #c9c0b4;
}
.article-meta span {
  font-size: 12px;
  color: #746d64;
}
.article-cover {
  max-width: 1350px;
  margin: 0 auto 65px;
  padding: 0 24px;
}
.article-cover img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}
.article-cover figcaption,
.article-inline-image > p {
  font-size: 12px;
  color: #7a736a;
  margin-top: 10px;
}
.article-layout {
  max-width: 1040px;
  margin: auto;
  padding: 0 25px;
}
.article-toc {
  flex: 0 0 245px;
  position: sticky;
  top: 105px;
  border-top: 1px solid #b78b51;
  padding-top: 20px;
}
.article-toc nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #d3cabe;
  font-size: 12px;
  color: #625c54;
}
.article-toc b {
  color: #b78b51;
  margin-right: 8px;
}
.toc-service-link {
  display: block;
  margin-top: 25px;
  color: #987140;
  font-size: 12px;
}
.article-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.article-lead {
  font: 400 28px/1.5 "DM Serif Display", serif;
}
.article-content > section {
  position: relative;
  padding: 48px 0;
  border-top: 1px solid #cec5b9;
}
.article-content h2 {
  font-size: clamp(37px, 4vw, 50px);
  line-height: 1.05;
  padding-right: 60px;
}
.article-content p,
.article-content li {
  font-size: 16px;
  line-height: 1.85;
  color: #5e5951;
}
.article-number {
  position: absolute;
  right: 0;
  top: 43px;
  font: italic 34px "DM Serif Display", serif;
  color: #c8aa82;
}
.article-facts {
  display: flex;
  flex-wrap: wrap;
  padding: 0 !important;
  border: 1px solid #c9c0b4 !important;
}
.article-facts > div {
  flex: 1 1 180px;
  padding: 22px;
  border-right: 1px solid #c9c0b4;
}
.article-facts strong,
.article-facts span {
  display: block;
}
.article-facts strong {
  font: 400 30px "DM Serif Display", serif;
  margin: 8px 0;
}
.article-facts span {
  font-size: 12px;
  color: #756e65;
}
.article-caption {
  font-size: 12px !important;
}
.article-checklist {
  list-style: none;
  padding: 0;
}
.article-checklist li {
  padding: 10px 0;
  border-bottom: 1px solid #d4ccc0;
}
.article-checklist li:before {
  content: "✓";
  color: #b78b51;
  margin-right: 10px;
}
.article-content blockquote {
  font: 400 27px/1.45 "DM Serif Display", serif;
  border-left: 2px solid #b78b51;
  padding: 20px 25px;
  margin: 30px 0;
  background: #e7dfd3;
}
.article-inline-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}
.article-do-dont {
  display: flex;
  gap: 12px;
}
.article-do-dont article {
  flex: 1;
  padding: 25px;
  background: #e7dfd3;
}
.article-do-dont article:last-child {
  background: #20221f;
  color: #eee9e0;
}
.article-do-dont article:last-child p {
  color: #aaa69e;
}
.article-steps {
  list-style: none;
  padding: 0;
}
.article-steps li {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #d0c7bb;
}
.article-steps b {
  color: #b78b51;
}
.article-steps strong {
  display: block;
}
.article-warning,
.article-expert-note {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: #171917;
  color: #eee9e0;
  margin: 35px 0;
}
.article-warning > span {
  font: 400 50px "DM Serif Display", serif;
  color: #b78b51;
}
.article-warning p,
.article-expert-note p {
  color: #aaa69e;
}
.article-expert-note {
  display: block;
}
.article-expert-note a {
  color: #c49b66;
}
.article-faq .faq-list article {
  border-top: 1px solid #c9c0b4;
}
.article-faq .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: 0;
  background: transparent;
  padding: 18px 0;
  text-align: left;
  font-size: 17px;
}
.article-faq .faq-list article > p {
  display: none;
}
.article-faq .faq-list article.open > p {
  display: block;
}
.article-author {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 35px 0;
  border-top: 1px solid #c9c0b4;
}
.author-mark {
  width: 70px;
  height: 70px;
  border: 1px solid #b78b51;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Serif Display", serif;
}
.article-author h3 {
  font-size: 24px;
}
.article-author p {
  font-size: 13px;
  margin: 0;
}
.article-related {
  padding: 70px max(24px, 5vw);
  background: #171917;
  color: #eee9e0;
}
.article-related header {
  max-width: 1300px;
  margin: 0 auto 30px;
}
.article-related header h2 {
  font-size: 52px;
}
.article-related header em {
  color: #c49b66;
}
.article-related > div {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 20px;
}
.article-related .blog-card {
  flex: 1;
  background: #22231f;
}
.article-related .blog-card a {
  display: block;
  color: #eee9e0;
  padding-bottom: 22px;
}
.article-related .blog-card > a > div {
  height: 260px;
  position: relative;
  overflow: hidden;
}
.article-related img {
  height: 100%;
  object-fit: cover;
}
.article-related h3,
.article-related p,
.article-related b {
  margin-left: 20px;
  margin-right: 20px;
}
.article-related h3 {
  font-size: 27px;
  margin-top: 18px;
}
.article-related p {
  font-size: 13px;
  color: #aaa69e;
}
.article-related b {
  font-size: 12px;
  color: #c49b66;
}
@media (max-width: 991.98px) {
  .article-layout {
    display: block;
  }
  .article-toc {
    position: static;
    margin-bottom: 45px;
  }
  .article-related > div {
    flex-wrap: wrap;
  }
  .article-related .blog-card {
    flex: 1 1 45%;
  }
}
@media (max-width: 575.98px) {
  .article-header {
    padding-top: 55px;
  }
  .article-header h1 {
    font-size: 47px;
  }
  .article-deck {
    font-size: 16px;
  }
  .article-cover {
    padding: 0;
    margin-bottom: 45px;
  }
  .article-layout {
    padding: 0 20px;
  }
  .article-lead {
    font-size: 24px;
  }
  .article-content > section {
    padding: 38px 0;
  }
  .article-content h2 {
    padding-right: 0;
    font-size: 36px;
  }
  .article-number {
    position: static;
    display: block;
    font-size: 24px;
  }
  .article-content p,
  .article-content li {
    font-size: 15px;
  }
  .article-do-dont {
    display: block;
  }
  .article-do-dont article + article {
    margin-top: 10px;
  }
  .article-related {
    padding: 50px 20px;
  }
  .article-related > div {
    display: block;
  }
  .article-related .blog-card + .blog-card {
    margin-top: 18px;
  }
}
/* Antalya Otel Türk Hamamı proje detayı */
.case-page {
  background: #151715;
  color: #eee9e0;
}
.case-page small {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #c09a64;
}
.case-page em {
  color: #bc9259;
  font-style: italic;
}
.case-page h1,
.case-page h2,
.case-page h3 {
  font-family: "DM Serif Display", serif;
}
.section-pad {
  padding: clamp(64px, 7vw, 105px) 0;
}
.case-hero {
  position: relative;
  height: calc(100vh - 84px);
  min-height: 700px;
  overflow: hidden;
}
.case-hero > img,
.case-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.case-hero > img {
  object-fit: cover;
}
.case-hero-shade {
  background: linear-gradient(
      90deg,
      rgba(7, 8, 7, 0.94),
      rgba(7, 8, 7, 0.46) 55%,
      rgba(7, 8, 7, 0.12)
    ),
    linear-gradient(0deg, rgba(7, 8, 7, 0.78), transparent 45%);
}
.case-hero-copy {
  position: relative;
  z-index: 1;
  padding-top: clamp(100px, 16vh, 180px);
}
.case-back {
  display: block;
  margin-bottom: 38px;
  color: #d0c8bd;
  font-size: 13px;
}
.case-hero h1 {
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 18px 0 26px;
  max-width: 950px;
}
.case-hero-copy p {
  max-width: 600px;
  color: #d1cac0;
  font-size: 17px;
  line-height: 1.75;
}
.case-hero-facts {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
}
.case-hero-facts > .row {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.case-hero-facts dl {
  margin: 0;
  padding: 18px 20px;
}
.case-hero-facts dt {
  font-size: 11px;
  color: #aaa49b;
  font-weight: 400;
}
.case-hero-facts dd {
  font-family: "DM Serif Display", serif;
  font-size: 21px;
  margin: 4px 0 0;
}
.case-intro,
.case-detail,
.case-gallery,
.hamam-case-scope,
.case-contact {
  background: #eee9e0;
  color: #1c1d19;
}
.case-page h2 {
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1;
  margin: 16px 0 0;
}
.case-reading p {
  font-size: 16px;
  line-height: 1.9;
  color: #625e57;
}
.case-decisions {
  border-top: 1px solid #44433e;
}
.case-decisions article {
  padding: 30px 27px;
  border-right: 1px solid #3a3c39;
}
.case-decisions article:last-child {
  border-right: 0;
}
.case-decisions b,
.case-scope-list b {
  font: italic 27px "DM Serif Display", serif;
  color: #b68a50;
}
.case-decisions h3,
.case-scope-list h3 {
  font-size: 27px;
  margin: 22px 0 11px;
}
.case-decisions p,
.case-scope-list p {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa69e;
}
.hamam-case-panorama {
  position: relative;
  overflow: hidden;
}
.hamam-case-panorama > img {
  width: 100%;
  height: min(72vw, 820px);
  min-height: 580px;
  object-fit: cover;
}
.panorama-copy {
  position: absolute;
  left: max(24px, 6vw);
  bottom: max(24px, 5vw);
  max-width: 570px;
  padding: 35px;
  background: rgba(17, 18, 16, 0.86);
  backdrop-filter: blur(8px);
}
.panorama-copy h2 {
  margin: 14px 0 20px;
}
.panorama-copy p {
  color: #c5beb4;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.case-detail-copy {
  padding: clamp(55px, 7vw, 105px);
}
.case-detail-copy > p {
  color: #625e57;
  font-size: 15px;
  line-height: 1.85;
  margin: 26px 0;
}
.case-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}
.case-materials {
  border-top: 1px solid #c6beb3;
  margin-top: 30px;
}
.case-materials dl {
  margin: 0;
  padding: 16px 6px;
  border-bottom: 1px solid #d4ccc1;
}
.case-materials dt {
  font-size: 11px;
  color: #817a70;
  font-weight: 400;
}
.case-materials dd {
  font: 20px "DM Serif Display", serif;
  margin: 5px 0 0;
}
.case-stats article {
  padding: 30px;
  border-left: 1px solid #3e403d;
  border-bottom: 1px solid #3e403d;
}
.case-stats strong {
  display: block;
  font: 44px "DM Serif Display", serif;
  color: #c19a61;
}
.case-stats span {
  font-size: 13px;
  color: #aaa69e;
}
.case-gallery figure {
  height: 430px;
  margin: 0;
  overflow: hidden;
}
.case-gallery .case-gallery-wide {
  height: min(62vw, 680px);
}
.case-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.case-gallery figure:hover img {
  transform: scale(1.035);
}
.hamam-case-scope header {
  margin-bottom: 45px;
}
.case-scope-list {
  border-top: 1px solid #c9bda9;
}
.case-scope-list article {
  padding: 32px 28px;
  border-right: 1px solid #c9bda9;
}
.case-scope-list article:last-child {
  border-right: 0;
}
.case-scope-list p {
  color: #69635a;
}
.case-next {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(10, 11, 10, 0.66), rgba(10, 11, 10, 0.9)),
    url("../img/project-hamam-antalya-gallery.jpg") center/cover;
}
.case-next h2 {
  margin: 14px 0 25px;
}
.case-next a {
  display: inline-block;
  padding: 10px 0;
  border-bottom: 1px solid #b28a51;
}
.case-contact {
  padding: 60px 0;
}
.case-contact h2 {
  margin-bottom: 0;
}
.case-contact .btn {
  padding: 15px 20px;
  border-radius: 0;
  font-size: 14px;
}
.case-contact .btn-outline-dark:hover {
  background: #171816;
  color: #fff;
}
@media (max-width: 991.98px) {
  .case-hero {
    height: 760px;
  }
  .case-decisions article:nth-child(2) {
    border-right: 0;
  }
  .case-detail-image img {
    min-height: 500px;
  }
  .case-scope-list article:nth-child(2) {
    border-right: 0;
  }
  .case-scope-list article {
    border-bottom: 1px solid #c9bda9;
  }
}
@media (max-width: 767.98px) {
  .case-hero {
    height: 750px;
    min-height: 0;
  }
  .case-hero > img {
    object-position: 62% center;
  }
  .case-hero-copy {
    padding-top: 70px;
  }
  .case-hero h1 {
    font-size: 47px;
  }
  .case-hero-facts dl {
    padding: 13px 10px;
  }
  .case-hero-facts dd {
    font-size: 17px;
  }
  .case-decisions article {
    border-right: 0;
    border-bottom: 1px solid #3a3c39;
  }
  .hamam-case-panorama > img {
    height: 650px;
  }
  .panorama-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 24px;
  }
  .case-detail-copy {
    padding: 55px 22px;
  }
  .case-detail-image {
    order: -1;
  }
  .case-detail-image img {
    min-height: 420px;
  }
  .case-gallery figure,
  .case-gallery .case-gallery-wide {
    height: 390px;
  }
  .case-scope-list article {
    border-right: 0;
  }
  .case-contact {
    text-align: center;
  }
}
/* Bodrum Villa Wellness proje detayı */
.case-before-after {
  background: #eee9e0;
  color: #1c1d19;
}
.case-before-after header p {
  color: #69635b;
  font-size: 15px;
  line-height: 1.75;
}
.compare-frame {
  position: relative;
  height: min(65vw, 720px);
  overflow: hidden;
  background: #171816;
}
.compare-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare-after {
  position: absolute;
  inset: 0;
}
.compare-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}
.compare-before img {
  position: absolute;
  inset: 0;
}
.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 1px;
  background: #f3eee5;
  transform: translateX(-50%);
  pointer-events: none;
}
.compare-line:after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #b28a51;
  color: #fff;
  font-size: 18px;
}
.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.compare-label {
  position: absolute;
  top: 20px;
  padding: 9px 12px;
  background: rgba(13, 15, 14, 0.78);
  font-size: 11px;
  letter-spacing: 0.16em;
}
.before-label {
  left: 20px;
}
.after-label {
  right: 20px;
}
.case-build figure {
  position: relative;
  margin: 0;
  min-height: 690px;
  overflow: hidden;
}
.case-build figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.case-build figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 9px 12px;
  background: rgba(8, 9, 8, 0.7);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.case-build article {
  padding: clamp(55px, 6vw, 90px);
  align-self: center;
}
.case-build article > p {
  font-size: 15px;
  line-height: 1.8;
  color: #aaa69e;
  margin: 25px 0;
}
.case-build ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  border-top: 1px solid #41433f;
}
.case-build li {
  padding: 15px 0;
  border-bottom: 1px solid #343633;
  color: #c6c1b8;
  font-size: 14px;
}
.case-build li span {
  font: italic 19px "DM Serif Display", serif;
  color: #b28a51;
  margin-right: 12px;
}
.bodrum-case-next {
  background-image: linear-gradient(
      rgba(10, 11, 10, 0.66),
      rgba(10, 11, 10, 0.9)
    ),
    url("../img/project-hamam-antalya-hero.jpg");
}
@media (max-width: 767.98px) {
  .compare-frame {
    height: 530px;
  }
  .case-build figure {
    min-height: 440px;
  }
  .case-build article {
    padding: 55px 22px;
  }
}
/* Ege Tuz Odası proje detayı */
.salt-case-page .case-hero > img {
  object-position: center;
}
.salt-case-page .panorama-copy {
  border-left: 2px solid #b98d54;
}
.salt-case-next {
  background-image: linear-gradient(
      rgba(10, 11, 10, 0.66),
      rgba(10, 11, 10, 0.9)
    ),
    url("../img/project-hamam-antalya-hero.jpg");
}
/* Referanslar Bootstrap uyarlaması */
.references-page {
  background: #eee9e0;
  color: #1c1d19;
}
.references-page small {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #b4874e;
}
.references-page h1,
.references-page h2,
.references-page h3,
.references-page strong {
  font-family: "DM Serif Display", serif;
}
.references-page em {
  color: #a8783f;
}
.references-hero {
  padding: clamp(75px, 9vw, 130px) max(24px, 7vw) 55px;
  background: #171917;
  color: #eee9e0;
}
.references-hero > div {
  max-width: 1100px;
}
.references-hero > div nav {
  display: flex;
  gap: 10px;
  margin-bottom: 45px;
  font-size: 13px;
  color: #aaa69e;
}
.references-hero h1 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.96;
  margin: 18px 0 28px;
}
.references-hero > div > p {
  max-width: 720px;
  color: #bcb6ad;
  font-size: 17px;
  line-height: 1.75;
}
.references-hero > dl {
  display: flex;
  flex-wrap: wrap;
  margin: 55px 0 0;
  gap: 20px;
}
.references-hero > dl div {
  flex: 1 1 190px;
  padding: 25px 20px;
  border-right: 1px solid #48443d;
}
.references-hero strong,
.references-hero span {
  display: block;
}
.references-hero strong {
  font-size: 44px;
  color: #c19a61;
}
.references-hero span {
  font-size: 13px;
  color: #aaa69e;
}
.references-featured,
.references-directory,
.references-trust {
  padding: clamp(65px, 7vw, 100px) max(24px, 6vw);
}
.references-featured > header,
.references-trust > header {
  text-align: center;
  margin-bottom: 42px;
}
.references-page h2 {
  font-size: clamp(40px, 4.5vw, 65px);
  line-height: 1;
  margin: 15px 0;
}
.references-featured > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.references-featured article {
  position: relative;
  flex: 1 1 300px;
  height: 510px;
  overflow: hidden;
  background: #171816;
  color: #fff;
}
.references-featured article:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(8, 9, 8, 0.94));
}
.references-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s;
}
.references-featured article:hover img {
  transform: scale(1.05);
}
.references-featured article > div {
  position: absolute;
  z-index: 1;
  left: 25px;
  right: 25px;
  bottom: 24px;
}
.references-featured h3 {
  font-size: 29px;
  margin: 10px 0 4px;
}
.references-featured p {
  color: #c8c2b9;
}
.references-featured a {
  color: #c49b66;
}
.references-directory {
  background: #171917;
  color: #eee9e0;
}
.references-directory > header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  max-width: 1250px;
  margin: auto;
}
.references-directory > header p {
  color: #aaa69e;
}
.references-directory label {
  display: flex;
  align-items: center;
  min-width: min(100%, 360px);
  border-bottom: 1px solid #6d604f;
  padding: 10px;
}
.references-directory input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding-left: 10px;
}
.reference-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1250px;
  margin: 35px auto 20px;
}
.reference-filters button {
  padding: 10px 14px;
  border: 1px solid #454640;
  background: transparent;
  color: #bbb6ad;
}
.reference-filters button.active,
.reference-filters button:hover {
  background: #a77c47;
  border-color: #a77c47;
  color: #fff;
}
.reference-list {
  max-width: 1250px;
  margin: auto;
  border-top: 1px solid #44453f;
}
.reference-list article {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 12px;
  border-bottom: 1px solid #353733;
}
.reference-list article > b {
  width: 42px;
  color: #b88c53;
  font: 22px "DM Serif Display", serif;
}
.reference-list article > div {
  flex: 1;
}
.reference-list h3 {
  font-size: 22px;
  margin: 0;
}
.reference-list p {
  margin: 2px 0 0;
  color: #8f8c85;
  font-size: 13px;
}
.reference-list article > span {
  color: #c3bdb4;
  font-size: 13px;
  text-align: right;
}
.reference-empty {
  text-align: center;
  padding: 35px;
}
.references-map {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 55px;
  padding: 85px max(24px, 7vw);
}
.references-map > article {
  flex: 1 1 420px;
}
.references-map > article p {
  color: #69635a;
  line-height: 1.8;
}
.references-map > article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.references-map > article span {
  padding: 8px 12px;
  border: 1px solid #cfc5b7;
  font-size: 13px;
}
.reference-map-visual {
  position: relative;
  flex: 1 1 480px;
  height: 350px;
  background: url("../img/turkiye-izmir-antalya-haritasi.jpg") center/contain
    no-repeat;
}
.reference-map-visual strong {
  position: absolute;
  right: 8%;
  bottom: 8%;
  color: #ac7e45;
  font-size: 24px;
}
.map-dot {
  display: none;
}
.references-trust {
  background: #171917;
  color: #eee9e0;
}
.references-trust > div {
  display: flex;
  flex-wrap: wrap;
  max-width: 1250px;
  margin: auto;
  border-top: 1px solid #5b4d39;
}
.references-trust article {
  flex: 1 1 240px;
  padding: 30px 25px;
  border-right: 1px solid #3c3e3a;
}
.references-trust b {
  font: 28px "DM Serif Display", serif;
  color: #b98d54;
}
.references-trust h3 {
  font-size: 24px;
  margin: 18px 0 10px;
}
.references-trust p {
  font-size: 14px;
  color: #aaa69e;
  line-height: 1.7;
}
.references-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 65px max(24px, 7vw);
}
.references-contact p {
  color: #69635a;
}
.references-contact > div:last-child {
  display: flex;
  gap: 5px;
}
.references-contact .btn {
  border-radius: 0;
  padding: 15px 15px;
}
@media (max-width: 767.98px) {
  .references-directory > header {
    align-items: flex-start;
    flex-direction: column;
  }
  .references-directory label {
    width: 100%;
  }
  .reference-list article {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .reference-list article > span {
    width: 100%;
    padding-left: 67px;
    text-align: left;
  }
  .references-featured article {
    height: 430px;
  }
  .references-trust article {
    border-right: 0;
    border-bottom: 1px solid #3c3e3a;
  }
  .reference-map-visual {
    height: 270px;
  }
      .references-contact {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .references-contact > div:last-child {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .references-contact > div:last-child .btn {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}
/* Ürün arama Bootstrap uyarlaması */
.product-search-page {
  background: #eee9e0;
  color: #1c1d19;
}
.product-search-page small {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #ac7e45;
}
.product-search-page h1,
.product-search-page h2 {
  font-family: "DM Serif Display", serif;
}
.product-search-page em {
  color: #a8783f;
}
.search-results-hero {
  padding: clamp(70px, 8vw, 120px) max(24px, 7vw);
  background: #171917;
  color: #eee9e0;
}
.search-results-hero > nav {
  display: flex;
  gap: 10px;
  margin-bottom: 42px;
  color: #aaa69e;
  font-size: 13px;
}
.search-results-hero h1 {
  font-size: clamp(50px, 6vw, 82px);
  line-height: 0.96;
  margin: 16px 0 35px;
}
.search-results-hero form {
  display: flex;
  max-width: 850px;
  background: #eee9e0;
  padding: 6px;
}
.search-results-hero form > span {
  align-self: center;
  padding: 0 12px;
  color: #6c665d;
  font-size:36px;
}
.search-results-hero input {
  flex: 1;
  min-width: 0;
  padding: 16px 8px;
  border: 0;
  outline: 0;
  background: transparent;
}
.search-results-hero button {
  border: 0;
  background: #a97d47;
  color: #fff;
  padding: 14px 24px;
}
.search-results-hero > p {
  color: #aaa69e;
  margin: 14px 0 0;
}
.product-list-tools {
  padding: 30px max(24px, 6vw);
  border-bottom: 1px solid #cfc6b9;
}
.product-list-tools > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}
.product-list-tools > div > span {
  color: #777168;
}
.product-list-tools nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-list-tools button {
  padding: 9px 13px;
  border: 1px solid #c8bfb2;
  background: transparent;
}
.product-list-tools button.active,
.product-list-tools button:hover {
  background: #171816;
  color: #fff;
  border-color: #171816;
}
.product-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 45px max(18px, 5vw) 80px;
}
.product-list-card {
  flex: 1 1 280px;
  max-width: calc(25% - 12px);
  background: #f7f3eb;
  border: 1px solid #d8d0c4;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(24, 22, 18, 0.12);
}
.product-list-card > a {
  display: block;
  color: #1c1d19;
}
.product-card-image {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: #ddd4c6;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}
.product-list-card:hover img {
  transform: scale(1.045);
}
.product-card-image > span {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 9px;
  background: rgba(20, 21, 19, 0.86);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.product-card-copy {
  padding: 22px;
}
.product-card-copy h2 {
  font-size: 25px;
  line-height: 1.1;
  margin: 10px 0 22px;
}
.product-card-copy b {
  color: #a8783f;
  font-size: 13px;
}
.product-empty {
  text-align: center;
  padding: 65px 24px;
}
.product-empty strong {
  font: 34px "DM Serif Display", serif;
}
.product-empty p {
  color: #716b62;
}
.product-empty a {
  display: inline-block;
  padding: 14px 20px;
  background: #a97d47;
  color: #fff;
}
.product-list-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 65px max(24px, 7vw);
  background: #e3dacd;
}
.product-list-contact h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  margin: 14px 0;
}
.product-list-contact p {
  color: #69635a;
}
.product-list-contact nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-list-contact nav a {
  padding: 15px 20px;
  border: 1px solid #8c8377;
}
.product-list-contact nav a:first-child {
  background: #a97d47;
  color: #fff;
  border-color: #a97d47;
}
@media (max-width: 1199.98px) {
  .product-list-card {
    max-width: calc(33.333% - 11px);
  }
}
@media (max-width: 991.98px) {
  .product-list-card {
    max-width: calc(50% - 8px);
  }
}
@media (max-width: 575.98px) {
  .search-results-hero form {
    flex-wrap: wrap;
  }
  .search-results-hero button {
    width: 100%;
  }
  .product-list-card {
    max-width: 100%;
  }
  .product-list-tools > div,
  .product-list-contact {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-card-image {
    height: 360px;
  }
}
/* Ürünlerimiz Bootstrap uyarlaması */
.products-page {
  background: #eee9e0;
  color: #1c1d19;
}
.products-page small {
  font-size: 12px;
  letter-spacing: 0.17em;
  color: #b1844b;
}
.products-page h1,
.products-page h2,
.products-page h3 {
  font-family: "DM Serif Display", serif;
}
.products-page em {
  color: #a8783f;
}
.products-hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 720px;
  background: #171917;
  color: #eee9e0;
}
.products-hero-copy {
  flex: 1 1 48%;
  padding: clamp(70px, 8vw, 125px) max(25px, 7vw);
}
.products-hero h1 {
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.95;
  margin: 18px 0 28px;
}
.products-hero-copy > p {
  max-width: 620px;
  color: #bcb6ad;
  font-size: 17px;
  line-height: 1.75;
}
.products-hero-copy > nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 35px 0;
}
.products-hero-copy > nav a {
  padding: 15px 20px;
  border: 1px solid #8b8174;
}
.products-hero-copy .gold-button {
  background: #a97d47;
  border-color: #a97d47;
  color: #fff;
}
.products-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid #4a4741;
}
.products-hero-stats span {
  color: #aaa69e;
}
.products-hero-stats strong {
  font: 31px "DM Serif Display", serif;
  color: #c19a61;
  margin-right: 7px;
}
.products-hero-mosaic {
  flex: 1 1 52%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 5px;
}
.products-hero-mosaic figure {
  flex: 1 1 40%;
  height: 38%;
  margin: 0;
  overflow: hidden;
}
.products-hero-mosaic .mosaic-main {
  flex-basis: 100%;
  height: 62%;
}
.products-hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-category-nav {
  position: sticky;
  top: 80px;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #e1d7ca;
  border-bottom: 1px solid #c8bdae;
}
.products-category-nav a {
  padding: 17px 20px;
  font-size: 13px;
}
.products-intro {
  display: flex;
  gap: 8vw;
  padding: clamp(65px, 8vw, 110px) max(24px, 8vw);
}
.products-intro > div,
.products-intro > article {
  flex: 1;
}
.products-intro h2,
.product-selection h2 {
  font-size: clamp(42px, 4.8vw, 66px);
  line-height: 1;
  margin: 16px 0;
}
.products-intro article p {
  color: #676158;
  font-size: 15px;
  line-height: 1.85;
}
.products-intro article a {
  color: #9f713b;
  border-bottom: 1px solid #b98c54;
  padding-bottom: 5px;
}
.product-category {
  display: flex;
  min-height: 690px;
  background: #171917;
  color: #eee9e0;
}
.product-category.reverse {
  flex-direction: row-reverse;
  background: #e7ded1;
  color: #1c1d19;
}
.product-category figure,
.product-category-copy {
  flex: 1 1 50%;
}
.product-category figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.product-category figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  transition: transform 0.65s;
}
.product-category:hover figure img {
  transform: scale(1.035);
}
.product-category figure > span {
  position: absolute;
  left: 22px;
  top: 22px;
  padding: 9px 12px;
  background: rgba(20, 21, 19, 0.82);
  color: #fff;
  font-size: 11px;
}
.product-category-copy {
  align-self: center;
  padding: clamp(50px, 7vw, 100px);
}
.product-category-copy h2 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.92;
  margin: 16px 0 25px;
}
.product-category-copy > p {
  color: #aaa69e;
  font-size: 15px;
  line-height: 1.8;
}
.product-category.reverse .product-category-copy > p {
  color: #676158;
}
.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0;
}
.product-chips span {
  padding: 7px 10px;
  border: 1px solid #5b5c56;
  font-size: 12px;
}
.product-category.reverse .product-chips span {
  border-color: #c1b6a7;
}
.product-category-copy ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.product-category-copy li {
  padding: 10px 0;
  border-bottom: 1px solid #3d3e3a;
  font-size: 14px;
}
.product-category.reverse li {
  border-color: #cbc1b4;
}
.product-category-copy li:before {
  content: "—";
  color: #b58a51;
  margin-right: 9px;
}
.product-category-copy > a {
  display: inline-block;
  color: #c49b66;
  border-bottom: 1px solid #a87b45;
  padding: 8px 0;
}
.product-selection {
  padding: clamp(65px, 7vw, 100px) max(24px, 6vw);
  background: #eee9e0;
}
.product-selection > header {
  text-align: center;
  margin-bottom: 45px;
}
.product-selection > div {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #c9bda9;
}
.product-selection article {
  flex: 1 1 240px;
  padding: 30px 26px;
  border-right: 1px solid #c9bda9;
}
.product-selection b {
  font: 29px "DM Serif Display", serif;
  color: #ad8149;
}
.product-selection h3 {
  font-size: 25px;
  margin: 18px 0 10px;
}
.product-selection p {
  color: #69635a;
  font-size: 14px;
  line-height: 1.7;
}
.product-support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: clamp(60px, 7vw, 95px) max(24px, 7vw);
  background: #171917;
  color: #eee9e0;
}
.product-support > div {
  flex: 2 1 430px;
}
.product-support h2 {
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1;
  margin: 16px 0;
}
.product-support > div p {
  color: #aaa69e;
}
.product-support aside {
  flex: 1 1 300px;
}
.product-support aside span {
  float: left;
  margin-right: 12px;
  color: #b88c53;
}
.product-support aside p {
  padding-bottom: 12px;
  border-bottom: 1px solid #3c3e3a;
}
.product-support nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-support nav a {
  padding: 14px 18px;
  border: 1px solid #6b6257;
}
.product-support nav .gold-button {
  background: #a97d47;
  color: #fff;
  border-color: #a97d47;
}
@media (max-width: 991.98px) {
  .products-hero {
    display: block;
  }
  .products-hero-mosaic {
    height: 600px;
  }
  .products-intro {
    display: block;
  }
  .products-intro > div {
    margin-bottom: 35px;
  }
  .product-category,
  .product-category.reverse {
    display: block;
  }
  .product-category figure {
    height: 500px;
  }
  .product-category figure img {
    position: relative;
  }
  .product-category-copy {
    padding: 60px 28px;
  }
  .product-selection article {
    border-bottom: 1px solid #c9bda9;
  }
}
@media (max-width: 575.98px) {
  .products-hero-mosaic {
    height: 480px;
  }
  .products-category-nav {
    position: relative;
    top: auto;
  }
  .product-category figure {
    height: 400px;
  }
  .product-selection article {
    border-right: 0;
  }
  .product-support nav {
    width: 100%;
  }
}
/* Ürün kategori listeleme */
.product-list-page {
  background: #eee9e0;
  color: #1c1d19;
}
.product-list-hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 600px;
  background: #171917;
  color: #eee9e0;
}
.product-list-hero > div,
.product-list-hero > figure {
  flex: 1 1 50%;
}
.product-list-hero > div {
  align-self: center;
  padding: clamp(60px, 7vw, 105px);
}
.product-list-hero > div > nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 40px;
  color: #aaa69e;
  font-size: 13px;
}
.product-list-hero h1 {
  font: clamp(52px, 6vw, 82px) / 0.95 "DM Serif Display", serif;
  margin: 16px 0 25px;
}
.product-list-hero > div > p {
  max-width: 600px;
  color: #bcb6ad;
  font-size: 17px;
  line-height: 1.75;
}
.product-list-hero > figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.product-list-hero > figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-list-hero > figure span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 9px 12px;
  background: rgba(20, 21, 19, 0.82);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.product-list-tools > label {
  display: flex;
  align-items: center;
  max-width: 360px;
  margin-top: 20px;
  padding: 10px;
  border-bottom: 1px solid #aea497;
}
.product-list-tools > label input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding-left: 10px;
}
.product-card-copy dl {
  display: flex;
  margin: 18px 0;
}
.product-card-copy dl div {
  flex: 1;
  padding-right: 8px;
}
.product-card-copy dt {
  font-size: 11px;
  color: #80786e;
  font-weight: 400;
}
.product-card-copy dd {
  font: 17px "DM Serif Display", serif;
  margin: 4px 0;
}
.steam-product-grid .product-list-card {
  max-width: calc(25% - 12px);
}
@media (max-width: 991.98px) {
  .product-list-hero {
    display: block;
  }
  .product-list-hero > figure {
    height: 500px;
  }
  .steam-product-grid .product-list-card {
    max-width: calc(50% - 8px);
  }
}
@media (max-width: 575.98px) {
  .product-list-hero > div {
    padding: 55px 24px;
  }
  .product-list-hero > figure {
    height: 400px;
  }
  .steam-product-grid .product-list-card {
    max-width: 100%;
  }
}
/* Ürün listesi sayfalama */
.product-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 20px 65px;
}
.product-pagination > span {
  display: flex;
  gap: 7px;
}
.product-pagination button {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #c6bcaf;
  background: transparent;
  color: #27241f;
}
.product-pagination [data-page-number] {
  padding: 0;
}
.product-pagination button:hover,
.product-pagination button.active {
  background: #171816;
  border-color: #171816;
  color: #fff;
}
.product-pagination button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.product-pagination button:disabled:hover {
  background: transparent;
  border-color: #c6bcaf;
  color: #27241f;
}
/* Kompakt ürün kategori listeleri */
.compact-product-grid {
  justify-content: center;
}
.compact-product-grid .product-list-card {
  flex-basis: 420px;
  max-width: 520px;
}
.compact-product-grid .product-card-image {
  height: 430px;
}
@media (max-width: 767.98px) {
  .compact-product-grid .product-list-card {
    max-width: 100%;
  }
  .compact-product-grid .product-card-image {
    height: 380px;
  }
}
/* Ürün detay ve popup galeri */
.product-detail-page {
  background: #eee9e0;
  color: #1c1d19;
}
.product-detail-page h1,
.product-detail-page h2 {
  font-family: "DM Serif Display", serif;
}
.product-detail-page em {
  color: #a8783f;
}
.product-detail-page small {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #ad8149;
  text-transform: uppercase;
}
.product-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 22px max(24px, 6vw);
  font-size: 12px;
  color: #777168;
}
.product-detail-hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 720px;
}
.product-gallery,
.product-detail-copy {
  flex: 1 1 50%;
}
.product-gallery {
  padding: 0 max(18px, 3vw) 55px;
}
.product-gallery-main {
  position: relative;
  height: 610px;
  margin: 0 0 12px;
  overflow: hidden;
  background: #d9d0c3;
  cursor: zoom-in;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}
.product-gallery-main:hover img {
  transform: scale(1.025);
}
.product-gallery-main > span {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 8px 11px;
  background: rgba(20, 21, 19, 0.78);
  color: #fff;
  font-size: 11px;
}
.product-thumbs {
  display: flex;
  gap: 9px;
  overflow-x: auto;
}
.product-thumb {
  flex: 0 0 92px;
  height: 76px;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  overflow: hidden;
}
.product-thumb.active {
  border-color: #a77b45;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-copy {
  align-self: center;
  padding: 55px max(25px, 6vw);
}
.product-detail-copy h1 {
  font-size: clamp(52px, 5.7vw, 82px);
  line-height: 0.94;
  margin: 17px 0 25px;
}
.product-detail-copy > p {
  color: #676158;
  font-size: 15px;
  line-height: 1.8;
}
.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 25px 0;
}
.product-detail-tags span {
  padding: 8px 10px;
  border: 1px solid #c5bbad;
  font-size: 12px;
}
.product-detail-copy > dl {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #c8bfb2;
}
.product-detail-copy > dl div {
  flex: 1 1 50%;
  padding: 14px 5px;
  border-bottom: 1px solid #d3cabd;
}
.product-detail-copy dt {
  font-size: 11px;
  color: #817a70;
  font-weight: 400;
}
.product-detail-copy dd {
  font: 19px "DM Serif Display", serif;
  margin: 4px 0;
}
.product-detail-copy nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.product-detail-copy nav a {
  padding: 14px 18px;
  border: 1px solid #92887b;
}
.product-detail-copy nav .gold-button {
  background: #a97d47;
  border-color: #a97d47;
  color: #fff;
}
.product-detail-tabs {
  position: sticky;
  top: 80px;
  z-index: 8;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #171917;
}
.product-detail-tabs a {
  padding: 17px 22px;
  color: #d1cbc1;
  font-size: 13px;
}
.product-overview,
.product-specs,
.product-request {
  padding: clamp(65px, 7vw, 100px) max(24px, 8vw);
}
.product-overview {
  display: flex;
  gap: 8vw;
}
.product-overview > div,
.product-overview > article {
  flex: 1;
}
.product-overview h2,
.product-specs h2,
.product-usage h2,
.product-request h2 {
  font-size: clamp(42px, 4.7vw, 65px);
  line-height: 1;
  margin: 16px 0;
}
.product-overview article p {
  color: #676158;
  font-size: 15px;
  line-height: 1.85;
}
.product-specs {
  background: #171917;
  color: #eee9e0;
}
.product-specs header {
  text-align: center;
  margin-bottom: 38px;
}
.product-specs > dl {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  border-top: 1px solid #474843;
}
.product-specs > dl div {
  flex: 1 1 50%;
  padding: 17px;
  border-bottom: 1px solid #3b3d39;
}
.product-specs dt {
  font-size: 12px;
  color: #98958e;
}
.product-specs dd {
  font: 19px "DM Serif Display", serif;
  margin: 5px 0;
}
.product-specs p {
  margin: 15px 10px;
  padding: 10px;
  background: brown;
}
.product-usage {
  display: flex;
  min-height: 650px;
  background: #e5dccf;
}
.product-usage > img,
.product-usage > article {
  width: 50%;
}
.product-usage > img {
  object-fit: cover;
}
.product-usage > article {
  align-self: center;
  padding: 60px max(25px, 6vw);
}
.product-usage ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.product-usage li {
  padding: 11px 0;
  border-bottom: 1px solid #c9c0b3;
}
.product-usage li:before {
  content: "—";
  color: #b1844b;
  margin-right: 9px;
}
.product-usage article > a {
  color: #9f713b;
  border-bottom: 1px solid #b98c54;
  padding-bottom: 5px;
}
.product-request {
  display: flex;
  flex-wrap: wrap;
  gap: 6vw;
}
.product-request > div {
  flex: 1 1 380px;
}
.product-request > form {
  flex: 1 1 520px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.product-request label {
  flex: 1 1 calc(50% - 7px);
  font-size: 12px;
}
.product-request label.wide,
.product-request button.wide {
  flex-basis: 100%;
}
.product-request input,
.product-request textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 13px;
  border: 1px solid #c5bbad;
  background: #f7f3eb;
}
.product-request button {
  padding: 15px;
  border: 0;
  background: #171816;
  color: #fff;
}
.product-lightbox[hidden] {
  display: none;
}
.product-lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 90px;
  background: rgba(8, 9, 8, 0.96);
}
.product-lightbox figure {
  width: 100%;
  height: 100%;
  margin: 0;
  text-align: center;
}
.product-lightbox figure img {
  max-width: 100%;
  height: calc(100% - 45px);
  object-fit: contain;
}
.product-lightbox figcaption {
  display: flex;
  justify-content: space-between;
  color: #ddd6cc;
  padding-top: 13px;
}
.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.lightbox-close {
  right: 24px;
  top: 18px;
  width: 46px;
  height: 46px;
  font-size: 34px;
  line-height: normal;
}
.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 50px;
  line-height: 1;
}
.lightbox-prev {
  left: 18px;
}
.lightbox-next {
  right: 18px;
}
.lightbox-close:hover,
.lightbox-arrow:hover {
  background: #a97d47;
}
.lightbox-open {
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .product-detail-hero {
    display: block;
  }
  .product-gallery-main {
    height: 560px;
  }
  .product-overview {
    display: block;
  }
  .product-overview > div {
    margin-bottom: 35px;
  }
  .product-usage {
    display: block;
  }
  .product-usage > img,
  .product-usage > article {
    width: 100%;
  }
  .product-usage > img {
    height: 500px;
  }
  .product-detail-tabs {
    top: 76px;
  }
}
@media (max-width: 575.98px) {
  .product-gallery {
    padding: 0 14px 40px;
  }
  .product-gallery-main {
    height: 430px;
  }
  .product-detail-copy {
    padding: 45px 22px;
  }
  .product-detail-tabs {
    position: relative;
    top: auto;
    justify-content: flex-start;
  }
  .product-detail-tabs a {
    padding: 13px;
  }
  .product-overview,
  .product-specs,
  .product-request {
    padding: 55px 22px;
  }
  .product-specs > dl div {
    flex-basis: 100%;
  }
  .product-usage > img {
    height: 390px;
  }
  .product-request label {
    flex-basis: 100%;
  }
  .product-lightbox {
    padding: 65px 12px;
  }
  .lightbox-arrow {
    width: 42px;
    height: 58px;
  }
  .lightbox-prev {
    left: 5px;
  }
  .lightbox-next {
    right: 5px;
  }
}
.product-request select {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 13px;
  border: 1px solid #c5bbad;
  background: #f7f3eb;
}
/* Sauna uygulamaları uzun rehber şablonu */
.guide-page {
  background: #eee9e0;
  color: #24221e;
}
.guide-page h1,
.guide-page h2,
.guide-page h3 {
  font-family: "DM Serif Display", serif;
}
.guide-page em {
  color: #a9783e;
}
.guide-page small {
  font-size: 12px;
  letter-spacing: 0.17em;
  color: #ad8149;
}
.guide-hero {
  position: relative;
  height: 700px;
  color: #fff;
  overflow: hidden;
}
.guide-hero > img,
.guide-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.guide-hero > img {
  object-fit: cover;
}
.guide-hero-shade {
  background: linear-gradient(
    90deg,
    rgba(8, 9, 8, 0.94),
    rgba(8, 9, 8, 0.43) 58%,
    rgba(8, 9, 8, 0.15)
  );
}
.guide-hero-copy {
  position: relative;
  z-index: 1;
  padding-top: clamp(80px, 13vh, 145px);
}
.guide-hero-copy > nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 48px;
  color: #bbb5ad;
  font-size: 13px;
}
.guide-hero h1 {
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.94;
  margin: 18px 0 28px;
}
.guide-hero p {
  max-width: 650px;
  color: #d0c9bf;
  font-size: 17px;
  line-height: 1.75;
}
.guide-hero .btn {
  margin-top: 15px;
  border-radius: 0;
  padding: 15px 20px;
}
.guide-layout {
  padding: 80px 0;
}
.guide-sidebar {
  position: sticky;
  top: 115px;
  padding: 24px;
  background: #171917;
}
.guide-sidebar small {
  display: block;
  padding: 0 10px 18px;
}
.guide-sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-top: 1px solid #343632;
  color: #aaa69e;
  font-size: 12px;
}
.guide-sidebar a b {
  width: 25px;
  color: #8f7655;
  font-weight: 400;
}
.guide-sidebar a:hover,
.guide-sidebar a.active {
  color: #fff;
  background: #252622;
}
.guide-sidebar a.active b {
  color: #c49b66;
}
.guide-mobile-nav {
  margin-bottom: 35px;
  padding: 20px;
  background: #171917;
  color: #fff;
}
.guide-mobile-nav label {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
}
.guide-mobile-nav select {
  width: 100%;
  padding: 13px;
  border: 1px solid #5a554d;
  background: #232521;
  color: #fff;
}
.guide-content > section {
  scroll-margin-top: 115px;
  padding: 20px 0 75px;
  margin-bottom: 55px;
  border-bottom: 1px solid #cec4b7;
}
.guide-content h2 {
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1;
  margin: 15px 0 28px;
}
.guide-content h3 {
  font-size: 25px;
}
.guide-content p {
  max-width: 900px;
  color: #655f56;
  font-size: 16px;
  line-height: 1.9;
}
.guide-content .lead {
  font-size: 19px;
  color: #403c36;
}
.guide-facts {
  margin-top: 35px;
  border-top: 1px solid #c9bda9;
}
.guide-facts > div {
  padding: 24px;
  border-right: 1px solid #c9bda9;
}
.guide-facts strong,
.guide-facts span {
  display: block;
}
.guide-facts strong {
  font: 29px "DM Serif Display", serif;
  color: #a8783f;
}
.guide-facts span {
  font-size: 12px;
  color: #756e64;
}
.guide-compare article {
  height: 100%;
  padding: 28px;
  border: 1px solid #c8bdae;
}
.guide-compare article.dark {
  background: #171917;
  color: #fff;
}
.guide-compare article > b {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #b1844b;
}
.guide-compare ul,
.guide-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.guide-compare li,
.guide-content li {
  padding: 9px 0;
  border-bottom: 1px solid #d0c7ba;
}
.guide-compare .dark li {
  border-color: #383a36;
}
.guide-compare li:before,
.guide-content li:before {
  content: "—";
  color: #b1844b;
  margin-right: 8px;
}
.guide-feature-image,
.guide-inline-image {
  position: relative;
  margin: 0 0 70px;
  overflow: hidden;
}
.guide-feature-image {
  height: 570px;
}
.guide-inline-image {
  height: 500px;
  margin-top: 30px;
}
.guide-feature-image img,
.guide-inline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s;
}
.guide-feature-image:hover img,
.guide-inline-image:hover img {
  transform: scale(1.025);
}
.guide-feature-image figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  background: rgba(15, 16, 14, 0.8);
  color: #fff;
  font-size: 12px;
}
.guide-note {
  margin-top: 30px;
  padding: 25px 28px;
  border-left: 3px solid #b1844b;
  background: #e4dbce;
}
.guide-note b {
  font-family: "DM Serif Display", serif;
  font-size: 21px;
}
.guide-note p {
  margin: 7px 0 0;
}
.guide-link {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid #b1844b;
  color: #9b6c35;
}
.guide-checks {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  border-top: 1px solid #c9bda9;
}
.guide-checks span {
  flex: 1 1 220px;
  padding: 18px;
  border-bottom: 1px solid #c9bda9;
}
.guide-checks span:before {
  content: "✓";
  color: #a9783e;
  margin-right: 9px;
}
.guide-materials article {
  height: 100%;
  padding: 26px;
  border: 1px solid #c8bdae;
}
.guide-materials article > b,
.guide-process b {
  font: 25px "DM Serif Display", serif;
  color: #ad8149;
}
.guide-materials article p {
  font-size: 14px;
  line-height: 1.7;
}
.guide-process {
  margin-top: 30px;
  border-top: 1px solid #c8bdae;
}
.guide-process > div {
  padding: 25px;
  border-right: 1px solid #c8bdae;
  border-bottom: 1px solid #c8bdae;
}
.guide-process p {
  font-size: 14px;
  line-height: 1.7;
}
.guide-related {
  padding: 80px 0;
  background: #171917;
  color: #fff;
}
.guide-related header {
  text-align: center;
  margin-bottom: 40px;
}
.guide-related h2,
.guide-contact h2 {
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1;
  margin: 15px 0;
}
.guide-related a {
  position: relative;
  display: block;
  height: 470px;
  overflow: hidden;
}
.guide-related img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s;
}
.guide-related a:hover img {
  transform: scale(1.04);
}
.guide-related a:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(8, 9, 8, 0.9));
}
.guide-related a span {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
  font: 27px "DM Serif Display", serif;
}
.guide-related a b {
  float: right;
  color: #c49b66;
}
.guide-contact {
  padding: 70px 0;
}
.guide-contact p {
  color: #69635a;
}
.guide-contact .btn {
  border-radius: 0;
  padding: 15px 20px;
}
.guide-contact .btn-outline-dark:hover {
  background: #171816;
  color: #fff;
}
@media (max-width: 991.98px) {
  .guide-layout {
    padding-top: 45px;
  }
  .guide-content > section {
    padding-top: 5px;
  }
  .guide-feature-image {
    height: 500px;
  }
}
@media (max-width: 575.98px) {
  .guide-hero {
    height: 680px;
  }
  .guide-hero > img {
    object-position: 62% center;
  }
  .guide-hero-copy {
    padding: 65px 22px 0;
  }
  .guide-hero h1 {
    font-size: 46px;
  }
  .guide-layout {
    padding: 30px 0;
  }
  .guide-content > section {
    padding-bottom: 50px;
    margin-bottom: 40px;
  }
  .guide-feature-image,
  .guide-inline-image {
    height: 390px;
  }
  .guide-facts > div {
    border-right: 0;
  }
  .guide-related a {
    height: 390px;
  }
  .guide-contact {
    text-align: center;
  }
}
/* Sauna uygulamaları ana bilgilendirici makalesi */
.guide-editorial {
  padding-top: 0 !important;
}
.guide-editorial h3 {
  font-size: clamp(28px, 2.8vw, 40px);
  margin: 45px 0 15px;
  padding-top: 28px;
  border-top: 1px solid #d0c6b9;
}
.guide-editorial p {
  max-width: 950px;
}
.guide-editorial-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 45px;
  padding: 30px;
  background: #171917;
  color: #fff;
}
.guide-editorial-cta b {
  font: 27px "DM Serif Display", serif;
}
.guide-editorial-cta p {
  color: #aaa69e !important;
  margin: 6px 0 0 !important;
  font-size: 14px !important;
}
.guide-editorial-cta .btn {
  flex: 0 0 auto;
  border-radius: 0;
  padding: 15px 18px;
}
@media (max-width: 767.98px) {
  .guide-editorial-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .guide-editorial-cta .btn {
    width: 100%;
  }
}
.steam-guide-hero > img {
  object-position: center;
}
.guide-sidebar-contact {
  margin-top: 20px;
  padding: 18px 10px;
  border-top: 1px solid #6d573a;
  color: #fff;
}
.guide-sidebar-contact span,
.guide-sidebar-contact strong {
  display: block;
}
.guide-sidebar-contact span {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #b98d54;
}
.guide-sidebar-contact strong {
  font: 21px "DM Serif Display", serif;
  margin: 7px 0;
}
.guide-sidebar-contact a {
  display: inline-block !important;
  padding: 8px 0 !important;
  border: 0 !important;
  color: #c49b66 !important;
}
.hamam-guide-hero > img {
  object-position: center 55%;
}
/* Bilgi rehberi detay sayfası */
.guide-detail-hero {
  padding: clamp(70px, 8vw, 115px) 0;
  background: #171917;
  color: #fff;
}
.guide-detail-hero nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 45px;
  color: #aaa69e;
  font-size: 13px;
}
.guide-detail-hero h1 {
  font-size: clamp(50px, 5.8vw, 82px);
  line-height: 0.96;
  margin: 17px 0 25px;
}
.guide-detail-hero p {
  max-width: 760px;
  color: #bbb5ac;
  font-size: 17px;
  line-height: 1.75;
}
.guide-detail-layout {
  padding-top: 65px;
}
.guide-detail-content .guide-editorial {
  border-bottom: 0;
}
.guide-article-nav {
  display: flex;
  margin: 0 0 40px;
  border-top: 1px solid #c8bdae;
  border-bottom: 1px solid #c8bdae;
}
.guide-article-nav a {
  flex: 1;
  padding: 23px;
}
.guide-article-nav a + a {
  text-align: right;
  border-left: 1px solid #c8bdae;
}
.guide-article-nav span,
.guide-article-nav b {
  display: block;
}
.guide-article-nav span {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #a8783f;
}
.guide-article-nav b {
  font: 20px "DM Serif Display", serif;
  margin-top: 7px;
}
@media (max-width: 575.98px) {
  .guide-detail-hero {
    padding: 60px 22px;
  }
  .guide-article-nav {
    display: block;
  }
  .guide-article-nav a {
    display: block;
  }
  .guide-article-nav a + a {
    text-align: left;
    border-left: 0;
    border-top: 1px solid #c8bdae;
  }
}
/* Sıkça sorulan sorular */
.faq-page {
  background: #eee9e0;
  color: #24221e;
}
.faq-page h1,
.faq-page h2 {
  font-family: "DM Serif Display", serif;
}
.faq-page em {
  color: #a9783e;
}
.faq-page small {
  font-size: 12px;
  letter-spacing: 0.17em;
  color: #ad8149;
}
.faq-hero {
  padding: clamp(75px, 9vw, 130px) 0;
  background: #171917;
  color: #fff;
}
.faq-hero > div > nav {
  display: flex;
  gap: 9px;
  margin-bottom: 65px;
  color: #aaa69e;
  font-size: 13px;
}
.faq-hero h1 {
  font-size: clamp(54px, 6.5vw, 92px);
  line-height: 0.93;
  margin: 17px 0 0;
}
.faq-hero p {
  max-width: 480px;
  margin: 0;
  color: #bdb7ae;
  font-size: 17px;
  line-height: 1.8;
}
.faq-directory {
  position: relative;
  margin-top: -1px;
  background: #171917;
  color: #fff;
}
.faq-category-nav {
  display: flex;
  border-top: 1px solid #3d3e39;
}
.faq-category-nav a {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  padding: 25px 28px;
  border-right: 1px solid #3d3e39;
}
.faq-category-nav a:last-child {
  border-right: 0;
}
.faq-category-nav span {
  font: 25px "DM Serif Display", serif;
  color: #b68a51;
}
.faq-category-nav b {
  font: 23px "DM Serif Display", serif;
  font-weight: 400;
}
.faq-category-nav small {
  margin-left: auto;
  color: #77766f;
  letter-spacing: 0.08em;
}
.faq-category-nav a:hover {
  background: #22231f;
}
.faq-content {
  padding: clamp(65px, 7vw, 105px) 0;
}
.faq-group {
  scroll-margin-top: 110px;
  padding-bottom: 90px;
  margin-bottom: 80px;
  border-bottom: 1px solid #c9bfb2;
}
.faq-group:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.faq-group > header {
  align-items: end;
  margin-bottom: 42px;
}
.faq-group h2 {
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 0.98;
  margin: 14px 0 0;
}
.faq-group > header p {
  max-width: 720px;
  margin: 0 0 5px;
  color: #69635a;
  font-size: 16px;
  line-height: 1.8;
}
.faq-accordion {
  border-top: 1px solid #bfb4a5;
}
.faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #c9bfb2;
  border-radius: 0;
  background: transparent;
}
.faq-accordion .accordion-button {
  padding: 23px 55px 23px 4px;
  background: transparent !important;
  box-shadow: none !important;
  color: #24221e;
  font: 26px/1.25 "DM Serif Display", serif;
}
.faq-accordion .accordion-button:after {
  position: absolute;
  right: 5px;
  width: 36px;
  height: 36px;
  border: 1px solid #a97b44;
  border-radius: 50%;
  background-image: none;
  content: "+";
  color: #a97b44;
  font: 28px/32px Inter, sans-serif;
  text-align: center;
}
.faq-accordion .accordion-button:not(.collapsed):after {
  transform: none;
  content: "−";
  background: #a97b44;
  color: #fff;
}
.faq-accordion .accordion-body {
  max-width: 900px;
  padding: 0 60px 25px 4px;
  color: #655f56;
  font-size: 16px;
  line-height: 1.85;
}
.faq-contact {
  padding: clamp(65px, 7vw, 90px) 0;
  background: #ddd3c5;
}
.faq-contact h2 {
  font-size: clamp(43px, 5vw, 68px);
  line-height: 0.98;
  margin: 15px 0;
}
.faq-contact p {
  max-width: 720px;
  color: #665f56;
}
.faq-contact .btn {
  border-radius: 0;
  padding: 15px 19px;
}
.faq-contact .btn-outline-dark:hover {
  background: #171816;
  color: #fff;
}
@media (max-width: 991.98px) {
  .faq-category-nav a {
    padding: 20px 16px;
  }
  .faq-category-nav small {
    display: none;
  }
  .faq-group {
    padding-bottom: 70px;
    margin-bottom: 65px;
  }
}
@media (max-width: 767.98px) {
  .faq-hero {
    padding: 60px 22px 70px;
  }
  .faq-hero > div > nav {
    margin-bottom: 45px;
  }
  .faq-category-nav {
    display: block;
  }
  .faq-category-nav a {
    border-right: 0;
    border-bottom: 1px solid #3d3e39;
  }
  .faq-content {
    padding: 55px 22px;
  }
  .faq-group {
    padding-bottom: 55px;
    margin-bottom: 50px;
  }
  .faq-accordion .accordion-button {
    padding: 20px 48px 20px 2px;
    font-size: 22px;
  }
  .faq-accordion .accordion-body {
    padding-right: 20px;
    font-size: 15px;
  }
  .faq-contact {
    padding: 60px 22px;
    text-align: center;
  }
}
/* Ortak header — Hizmetler alt menüsü */
.ds-services-dropdown {
  position: relative;
}
.ds-services-toggle {
  display: none;
}
.ds-services-menu {
  position: absolute;
  z-index: 1100;
  left: 50%;
  top: calc(100% + 15px);
  width: 285px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #171816;
  border: 1px solid #3c3b36;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
}
.ds-services-menu:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 16px;
}
.ds-services-menu li {
  margin: 0;
  padding: 0;
}
.ds-services-menu a {
  position: relative;
  display: block;
  padding: 12px 22px;
  border-bottom: 1px solid #2e2f2b;
  color: #c9c4ba;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.ds-services-menu li:last-child a {
  border-bottom: 0;
}
.ds-services-menu a:after {
  content: "→";
  position: absolute;
  right: 20px;
  color: #a97b44;
  opacity: 0;
  transform: translateX(-6px);
  transition: 0.2s;
}
.ds-services-menu a:hover,
.ds-services-menu a.active {
  padding-left: 27px;
  background: #20211e;
  color: #fff;
}
.ds-services-menu a:hover:after,
.ds-services-menu a.active:after {
  opacity: 1;
  transform: none;
}
.ds-services-dropdown:hover > .ds-services-menu,
.ds-services-dropdown:focus-within > .ds-services-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
@media (max-width: 991.98px) {
  .ds-services-dropdown {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
  }
  .ds-services-dropdown > .nav-link {
    flex: 1;
  }
  .ds-services-toggle {
    display: block;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #c29a64;
  }
  .ds-services-toggle span,
  .ds-services-toggle span:after {
    display: block;
    width: 14px;
    height: 1px;
    margin: auto;
    background: currentColor;
    content: "";
    transition: transform 0.2s;
  }
  .ds-services-toggle span:after {
    transform: rotate(90deg);
  }
  .ds-services-dropdown.submenu-open .ds-services-toggle span:after {
    transform: rotate(0);
  }
  .ds-services-menu {
    position: static;
    display: none;
    flex: 0 0 100%;
    width: 100%;
    padding: 3px 0 8px;
    border: 0;
    border-left: 1px solid #5d4931;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .ds-services-dropdown:hover > .ds-services-menu,
  .ds-services-dropdown:focus-within > .ds-services-menu {
    transform: none;
  }
  .ds-services-dropdown.submenu-open > .ds-services-menu {
    display: block;
  }
  .ds-services-menu a {
    padding: 11px 18px;
    font-size: 14px;
  }
  .ds-services-menu a:hover,
  .ds-services-menu a.active {
    padding-left: 24px;
  }
}
/* DekoSauna UI Kit */
.ds-kit-page {
  background: #eee9e0;
  color: #211f1b;
}
.ds-kit-page h1,
.ds-kit-page h2,
.ds-kit-page h3,
.ds-kit-page h4 {
  font-family: "DM Serif Display", serif;
}
.ds-kit-page em {
  color: #b1844b;
}
.ds-kit-hero {
  padding: clamp(80px, 10vw, 145px) 0;
  background: #171816;
  color: #eee9e0;
}
.ds-kit-hero h1 {
  font-size: clamp(58px, 7.5vw, 105px);
  line-height: 0.9;
  margin: 20px 0 30px;
}
.ds-kit-hero p {
  max-width: 680px;
  color: #aaa69e;
  font-size: 18px;
  line-height: 1.75;
}
.ds-eyebrow,
.ds-kit-head small,
.ds-type-demo > div > span {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #b78b51;
}
.ds-kit-section {
  padding: clamp(70px, 8vw, 115px) 0;
  border-bottom: 1px solid #c9bfb1;
}
.ds-kit-dark {
  background: #171816;
  color: #eee9e0;
}
.ds-kit-soft {
  background: #e2d9cc;
}
.ds-kit-head {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 50px;
}
.ds-kit-head > span {
  font: 35px "DM Serif Display", serif;
  color: #b1844b;
}
.ds-kit-head h2 {
  font-size: clamp(42px, 4.5vw, 65px);
  line-height: 1;
  margin: 7px 0;
}
.ds-type-demo > div {
  padding: 26px 0;
  border-top: 1px solid #c9bfb1;
}
.ds-type-demo h1 {
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  margin: 12px 0;
}
.ds-type-demo h2 {
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 0.95;
  margin: 12px 0;
}
.ds-type-demo h3 {
  font-size: clamp(38px, 4vw, 56px);
  margin: 12px 0;
}
.ds-type-demo h4 {
  font-size: 30px;
  margin: 12px 0;
}
.ds-type-demo p {
  max-width: 850px;
  color: #625d55;
  line-height: 1.8;
}
.ds-type-demo p.lead {
  font-size: 20px;
  color: #3e3a34;
}
.ds-kit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.ds-ui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 180px;
  padding: 15px 18px;
  border: 1px solid transparent;
  font: 500 13px Inter, sans-serif;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.ds-ui-btn i,
.ds-ui-text-link i {
  font-style: normal;
  transition: transform 0.25s;
}
.ds-ui-btn:hover {
  transform: translateY(-2px);
}
.ds-ui-btn:hover i,
.ds-ui-text-link:hover i {
  transform: translateX(5px);
}
.ds-ui-btn-gold {
  background: #987140;
  color: #fff;
}
.ds-ui-btn-gold:hover {
  background: #b28a51;
  color: #fff;
}
.ds-ui-btn-dark {
  background: #0f100f;
  color: #fff;
  border-color: #4a4943;
}
.ds-ui-btn-dark:hover {
  background: #eee9e0;
  color: #171816;
}
.ds-ui-btn-light {
  background: #eee9e0;
  color: #171816;
}
.ds-ui-btn-light:hover {
  background: #987140;
  color: #fff;
}
.ds-ui-btn-outline-light {
  border-color: #77746d;
  color: #fff;
}
.ds-ui-btn-outline-light:hover {
  background: #eee9e0;
  border-color: #eee9e0;
  color: #171816;
}
.ds-ui-text-link {
  display: inline-flex;
  gap: 12px;
  padding: 10px 2px;
  border-bottom: 1px solid #987140;
  color: #c09a64;
  font-size: 13px;
}
.ds-kit-note {
  max-width: 720px;
  margin-top: 45px;
  padding: 25px 28px;
  border-left: 2px solid #b1844b;
  background: #20211e;
}
.ds-kit-note b {
  font: 24px "DM Serif Display", serif;
}
.ds-kit-note p {
  margin: 8px 0 0;
  color: #aaa69e;
}
.ds-hover-card {
  display: block;
  height: 100%;
  border: 1px solid #c3b9ab;
  background: #f2eee6;
  color: #211f1b;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.ds-hover-card figure {
  position: relative;
  height: 390px;
  margin: 0;
  overflow: hidden;
}
.ds-hover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s;
}
.ds-hover-card figure span {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 8px 11px;
  background: rgba(18, 19, 17, 0.8);
  color: #cba36f;
}
.ds-hover-card > div {
  padding: 25px;
}
.ds-hover-card h3 {
  font-size: 30px;
  margin: 8px 0;
}
.ds-hover-card p {
  color: #6a645b;
}
.ds-hover-card b {
  font-size: 12px;
  color: #9d713c;
}
.ds-hover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(32, 27, 21, 0.15);
}
.ds-hover-card:hover img {
  transform: scale(1.055);
}
.ds-hover-card-dark {
  background: #171816;
  color: #eee9e0;
  border-color: #41413c;
}
.ds-hover-card-dark p {
  color: #aaa69e;
}
.ds-kit-subtitle {
  font-size: 27px;
  margin-bottom: 22px;
}
.ds-line-list,
.ds-check-list,
.ds-number-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ds-line-list li,
.ds-check-list li {
  padding: 13px 0;
  border-bottom: 1px solid #c3b9ab;
}
.ds-line-list li:before {
  content: "—";
  margin-right: 10px;
  color: #a9783e;
}
.ds-check-list li:before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border: 1px solid #a9783e;
  border-radius: 50%;
  color: #a9783e;
  font-size: 11px;
}
.ds-number-list {
  counter-reset: steps;
}
.ds-number-list li {
  position: relative;
  padding: 12px 0 17px 50px;
  border-bottom: 1px solid #c3b9ab;
  counter-increment: steps;
}
.ds-number-list li:before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 12px;
  font: 24px "DM Serif Display", serif;
  color: #a9783e;
}
.ds-number-list b,
.ds-number-list span {
  display: block;
}
.ds-number-list b {
  font: 20px "DM Serif Display", serif;
}
.ds-number-list span {
  color: #756e64;
  font-size: 13px;
}
.ds-chip {
  display: inline-block;
  padding: 9px 13px;
  border: 1px solid #bdb2a3;
  font-size: 12px;
}
.ds-chip-dark {
  background: #171816;
  color: #fff;
  border-color: #171816;
}
.ds-chip-gold {
  background: #987140;
  color: #fff;
  border-color: #987140;
}
.ds-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin: 35px 0;
  color: #716a61;
  font-size: 11px;
  letter-spacing: 0.14em;
}
.ds-meta-line i {
  width: 35px;
  height: 1px;
  background: #b1844b;
}
.ds-quote {
  max-width: 950px;
  margin: 55px 0 0;
  padding: 35px 0 35px 45px;
  border-left: 2px solid #b1844b;
  font: clamp(30px, 3.5vw, 48px) / 1.15 "DM Serif Display", serif;
}
.ds-quote cite {
  display: block;
  margin-top: 20px;
  color: #81796e;
  font: 11px Inter, sans-serif;
  letter-spacing: 0.16em;
}
.ds-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
}
.ds-pagination a,
.ds-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #4a4a45;
  color: #ccc6bc;
}
.ds-pagination a:hover,
.ds-pagination a.active {
  background: #987140;
  border-color: #987140;
  color: #fff;
}
.ds-pagination .wide {
  min-width: 110px;
}
.ds-pagination .disabled {
  opacity: 0.35;
  pointer-events: none;
}
.ds-article-pagination {
  display: flex;
  max-width: 950px;
  margin: 55px auto 0;
  border-top: 1px solid #44443f;
  border-bottom: 1px solid #44443f;
}
.ds-article-pagination a {
  flex: 1;
  padding: 25px;
  color: #eee9e0;
}
.ds-article-pagination a:last-child {
  text-align: right;
  border-left: 1px solid #44443f;
}
.ds-article-pagination small,
.ds-article-pagination b {
  display: block;
}
.ds-article-pagination small {
  color: #a98251;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.ds-article-pagination b {
  margin-top: 8px;
  font: 21px "DM Serif Display", serif;
}
.ds-kit-form {
  max-width: 950px;
}
.ds-kit-form label {
  color: #5e5850;
  font-size: 12px;
}
.ds-kit-form input,
.ds-kit-form select,
.ds-kit-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid #bfb5a7;
  border-radius: 0;
  outline: 0;
  background: #f5f1e9;
  color: #211f1b;
}
.ds-kit-form input:focus,
.ds-kit-form select:focus,
.ds-kit-form textarea:focus {
  border-color: #987140;
  box-shadow: 0 0 0 3px rgba(152, 113, 64, 0.12);
}
@media (max-width: 767.98px) {
  .ds-kit-hero {
    padding: 65px 22px;
  }
  .ds-kit-section {
    padding: 60px 22px;
  }
  .ds-kit-head {
    gap: 14px;
  }
  .ds-kit-head > span {
    font-size: 27px;
  }
  .ds-hover-card figure {
    height: 330px;
  }
  .ds-ui-btn {
    width: 100%;
  }
  .ds-article-pagination {
    display: block;
  }
  .ds-article-pagination a:last-child {
    text-align: left;
    border-left: 0;
    border-top: 1px solid #44443f;
  }
  .ds-quote {
    padding-left: 24px;
  }
}

.pagination-bs {
    display: flex;
    align-items: center;
    justify-content: center !important;
    gap: 8px;
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}

.pagination-bs li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination-bs li a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;

    border: 1px solid #ddd8cf;
    /* border-radius: 50%; */

    color: #554f47;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;

    transition: all 0.25s ease;
}

.pagination-bs li a:hover {
    background: #171917;
    border-color: #171917;
    color: #fff;
}

.pagination-bs li.active a,
.pagination-bs li a.active {
    background: #171917;
    border-color: #171917;
    color: #fff;
}

.pagination-bs li a.next svg {
    fill: currentColor;
}

.pagination-bs li a.next:hover svg {
    fill: #fff;
}
/* ========================================
   DYM CONTENT - TYPOGRAPHY
======================================== */

.dym_blog-content,
.dym-content {
    font-size: 16px;
    line-height: 1.75;
}

/* H1 */
.dym_blog-content h1,
.dym-content h1 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
    margin: 0 0 24px;
}

/* H2 */
.dym_blog-content h2,
.dym-content h2 {
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.25;
    margin: 38px 0 18px;
}

/* H3 */
.dym_blog-content h3,
.dym-content h3 {
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.3;
    margin: 30px 0 14px;
}

/* H4 */
.dym_blog-content h4,
.dym-content h4 {
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.35;
    margin: 26px 0 12px;
}

/* H5 */
.dym_blog-content h5,
.dym-content h5 {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.4;
    margin: 22px 0 10px;
}

/* Paragraf */
.dym_blog-content p,
.dym-content p {
    margin: 0 0 20px;
}

/* Listeler */
.dym_blog-content ul,
.dym_blog-content ol,
.dym-content ul,
.dym-content ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.dym_blog-content li,
.dym-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* Görseller */
.dym_blog-content img,
.dym-content img {
    max-width: 100%;
    height: auto;
}

/* Linkler */
.dym_blog-content a,
.dym-content a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.call-to-action {
    position: relative;
    margin: 45px 0 0;
    padding: 36px 38px;
    display: flex;
    align-items: center;
    background: #f3efe6;
    border: 1px solid #ded8cc;
    border-left: 4px solid #9b7a4e;

    border-radius: 2px;
}

.call-to-action h3,
.call-to-action h4 {
    margin: 0 0 12px;
    color: #171917;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.25;
    font-weight: 600;
}

.call-to-action p {
    max-width: 760px;
    margin: 0 0 22px;
    color: #625d55;
    font-size: 15px;
    line-height: 1.7;
}

.call-to-action ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;

    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.call-to-action ul li {
    margin: 0;
    padding: 0;
}

.call-to-action ul li a {
    color: #171917;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.call-to-action ul li a:hover {
    color: #9b7a4e;
}

/* CTA içindeki butonlar */
.call-to-action .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 12px 22px;

    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;

    transition: all .25s ease;
}

/* WhatsApp / ana aksiyon */
.call-to-action .btn-primary,
.call-to-action .btn-gold {
    background: #171917;
    border: 1px solid #171917;
    color: #fff;
}

.call-to-action .btn-primary:hover,
.call-to-action .btn-gold:hover {
    background: #9b7a4e;
    border-color: #9b7a4e;
    color: #fff;
}

/* İkincil buton */
.call-to-action .btn-outline-dark {
    background: transparent;
    border: 1px solid #171917;
    color: #171917;
}

.call-to-action .btn-outline-dark:hover {
    background: #171917;
    color: #fff;
}
.text-5 {
    font-size: 1.50em !important;
}
.font-weight-bold {
    font-weight: 700 !important;
}
/* TABLET / MOBİL */
@media (max-width: 767.98px) {

    .call-to-action {
        display: block;
        margin-top: 35px;
        padding: 28px 22px;
    }

    .call-to-action ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .call-to-action .btn {
        width: 100%;
        margin-top: 10px;
    }

    .call-to-action .btn + .btn {
        margin-top: 10px;
    }
}
/* BLOG SEARCH */
#blog-search {
    display: flex;
    align-items: stretch;
}

#blog-search .region-search {
    display: flex;
    align-items: center;
    flex: 1;

    margin: 0;
    padding: 0 18px;

    background: #fff;
    border: 1px solid #aaa096;
    border-right: 0;
}

#blog-search .region-search input {
    width: 100%;
    height: 56px;
    padding: 0;

    border: 0;
    outline: 0;
    background: transparent;

    color: #171917;
    font-size: 14px;
    line-height: 1;
}

#blog-search .region-search input::placeholder {
    color: #817a72;
    opacity: 1;
}

/* SEARCH BUTTON */
#blog-search #button-search {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 56px;
    width: 56px;
    height: 58px;

    margin: 0;
    padding: 0 !important;

    background: #171917;
    border: 1px solid #171917;
    border-radius: 0;

    color: #fff;

    transition: background .25s ease,
                border-color .25s ease;
}

#blog-search #button-search i {
    margin: 0 !important;
    font-size: 14px;
}

#blog-search #button-search:hover {
    background: #9a7a52;
    border-color: #9a7a52;
    color: #fff;
}

/* INPUT FOCUS */
#blog-search:focus-within .region-search {
    border-color: #171917;
}

/* MOBILE */
@media (max-width: 767.98px) {

    #blog-search {
        width: 100%;
    }

    #blog-search .region-search input {
        height: 52px;
    }

    #blog-search #button-search {
        flex-basis: 52px;
        width: 52px;
        height: 54px;
    }
}
/* =========================================
   BACK TO TOP
========================================= */

#backToTop {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    padding: 0;

    background: #171917;
    border: 1px solid rgba(201, 156, 97, .45);
    border-radius: 0;

    color: #c99c61;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

#backToTop svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

#backToTop:hover {
    background: #c99c61;
    border-color: #c99c61;
    color: #171917;
}

/* Görünür */
#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* MOBİL */
@media (max-width: 767.98px) {

    #backToTop {
        right: 18px;
        bottom: 18px;

        width: 42px;
        height: 42px;
    }
}
/* Markalar sayfası */
.brands-page{background:#eee9e0;color:#24211d}.brands-page h1,.brands-page h2,.brands-page h3{font-family:'DM Serif Display',serif}.brands-page em{color:#ad7d43}.brands-page small{font-size:11px;letter-spacing:.19em;color:#b1844b}.brands-hero{padding:clamp(80px,9vw,135px) 0;background:#171816;color:#eee9e0}.brands-hero>div>nav{display:flex;gap:9px;margin-bottom:70px;color:#aaa69e;font-size:13px}.brands-hero h1{font-size:clamp(55px,7vw,94px);line-height:.92;margin:18px 0 0}.brands-hero p{max-width:470px;margin:0;color:#b9b3aa;font-size:17px;line-height:1.8}.brand-index-section{background:#171816;color:#fff;border-top:1px solid #393a36}.brand-index{display:flex;align-items:center;gap:35px;padding:22px 0}.brand-index>div small,.brand-index>div strong{display:block}.brand-index>div strong{font:21px 'DM Serif Display',serif}.brand-index nav{display:flex;gap:7px}.brand-index nav a{display:flex;align-items:center;justify-content:center;width:44px;height:44px;border:1px solid #585750;color:#cda46e;font:22px 'DM Serif Display',serif}.brand-index nav a:hover{background:#a8783f;color:#fff;border-color:#a8783f}.brand-index>span{margin-left:auto;color:#77776f;font-size:12px}.brands-list{padding:clamp(65px,8vw,110px) 0}.brand-showcase{position:relative;margin-bottom:70px;scroll-margin-top:110px;box-shadow:0 20px 50px rgba(35,29,22,.1)}.brand-showcase:last-child{margin-bottom:0}.brand-letter{position:absolute;z-index:2;right:18px;top:-56px;color:rgba(153,111,59,.12);font:170px/.8 'DM Serif Display',serif;pointer-events:none}.brand-showcase-reverse .brand-letter{right:auto;left:18px}.brand-identity{position:relative;display:flex;flex-direction:column;justify-content:center;min-height:570px;padding:55px;background:#1a1b18;color:#fff;overflow:hidden}.brand-identity:after{content:'';position:absolute;right:-95px;bottom:-95px;width:260px;height:260px;border:1px solid rgba(190,144,83,.22);border-radius:50%;box-shadow:0 0 0 42px rgba(190,144,83,.06)}.brand-identity-finnmax{background:#24231f}.brand-wordmark{position:relative;z-index:1;font:clamp(48px,5vw,72px)/.85 'DM Serif Display',serif;letter-spacing:.02em}.brand-wordmark span,.brand-wordmark b{display:block}.brand-wordmark span{color:#d3a263}.brand-wordmark b{font-weight:400;color:#eee9e0}.brand-identity>p{position:relative;z-index:1;margin-top:22px;color:#99968f;font-size:12px;letter-spacing:.15em;text-transform:uppercase}.brand-identity>i{position:absolute;left:55px;bottom:45px;color:#91724e;font-style:normal;font-size:11px}.brand-copy{display:flex;flex-direction:column;justify-content:center;padding:clamp(45px,6vw,85px);background:#f5f1e9}.brand-copy h2{font-size:clamp(43px,4.8vw,67px);line-height:.98;margin:16px 0 26px}.brand-copy>p{max-width:760px;color:#645e56;font-size:15px;line-height:1.85}.brand-tags{display:flex;flex-wrap:wrap;gap:7px;margin:25px 0 30px}.brand-tags span{padding:8px 11px;border:1px solid #c4b9aa;color:#665f56;font-size:11px}.brand-links{display:flex;align-items:center;flex-wrap:wrap;gap:20px}.brand-text-link{padding-bottom:5px;border-bottom:1px solid #ad7d43;color:#94652f;font-size:12px}.brand-selection{padding:clamp(70px,8vw,110px) 0;background:#171816;color:#eee9e0}.brand-selection header{text-align:center;max-width:780px;margin:0 auto 45px}.brand-selection h2,.brand-categories h2,.brands-contact h2{font-size:clamp(43px,5vw,68px);line-height:.98;margin:15px 0}.brand-selection header p{color:#aaa69e}.brand-selection article{padding:30px;border-top:1px solid #41413c;border-right:1px solid #41413c}.brand-selection article:last-child{border-right:0}.brand-selection article>b{font:29px 'DM Serif Display',serif;color:#b98d55}.brand-selection article h3{font-size:25px;margin:16px 0 8px}.brand-selection article p{color:#aaa69e;font-size:14px;line-height:1.7}.brand-categories{padding:clamp(70px,8vw,105px) 0;background:#ddd3c5}.brand-categories p{color:#665f56;line-height:1.8}.brand-categories .col-lg-7 a{position:relative;display:flex;flex-direction:column;min-height:175px;padding:25px;border:1px solid #bcae9b;color:#26231e;transition:background .25s,color .25s}.brand-categories a span{color:#a8783f;font:24px 'DM Serif Display',serif}.brand-categories a b{margin-top:auto;font:23px 'DM Serif Display',serif;font-weight:400}.brand-categories a i{position:absolute;right:23px;bottom:23px;color:#a8783f;font-style:normal;transition:transform .25s}.brand-categories a:hover{background:#171816;color:#fff}.brand-categories a:hover i{transform:translateX(5px)}.brands-contact{padding:clamp(65px,7vw,90px) 0;background:#eee9e0}.brands-contact p{max-width:700px;color:#675f56}.brands-contact .btn{border-radius:0;padding:15px 19px}.brands-contact .btn-outline-dark:hover{background:#171816;color:#fff}
@media(max-width:991.98px){.brand-identity{min-height:390px}.brand-identity>i{bottom:28px}.brand-selection article:nth-child(2){border-right:0}}
@media(max-width:767.98px){.brands-hero{padding:60px 22px 70px}.brands-hero>div>nav{margin-bottom:45px}.brand-index-section{padding:0 22px}.brand-index{gap:18px}.brand-index>div{display:none}.brands-list{padding:65px 22px}.brand-showcase{margin-bottom:55px}.brand-identity{min-height:330px;padding:40px 30px}.brand-identity>i{left:30px}.brand-copy{padding:45px 25px}.brand-letter{font-size:120px;top:-38px}.brand-selection,.brand-categories,.brands-contact{padding:60px 22px}.brand-selection article{border-right:0}.brands-contact{text-align:center}}
/* 404 hata sayfası */
.error-page{background:#171816;color:#eee9e0}.error-main{position:relative;min-height:820px;overflow:hidden}.error-backdrop,.error-shade{position:absolute;inset:0;width:100%;height:100%}.error-backdrop{object-fit:cover;object-position:center}.error-shade{background:linear-gradient(90deg,rgba(9,10,9,.96) 0,rgba(9,10,9,.83) 48%,rgba(9,10,9,.28) 100%)}.error-main .min-vh-100{min-height:calc(100vh - 86px)!important}.error-main small,.error-links small{font-size:11px;letter-spacing:.2em;color:#bf9560}.error-main h1,.error-links h2{font-family:'DM Serif Display',serif}.error-main h1{font-size:clamp(51px,6vw,86px);line-height:.94;margin:18px 0 28px}.error-main h1 em,.error-links h2 em{color:#bd9057}.error-main p{max-width:700px;color:#bbb5ab;font-size:17px;line-height:1.8}.error-code{display:flex;align-items:center;gap:22px;margin-bottom:30px;color:#d0b185;font:clamp(76px,10vw,145px)/.68 'DM Serif Display',serif}.error-code i{position:relative;width:clamp(70px,9vw,130px);height:clamp(70px,9vw,130px);border:1px solid rgba(204,164,107,.55);border-radius:50%}.error-code i:before,.error-code i:after{content:'';position:absolute;background:#b7884d}.error-code i:before{left:50%;top:18%;bottom:18%;width:1px}.error-code i:after{top:50%;left:18%;right:18%;height:1px}.error-actions{display:flex;align-items:center;flex-wrap:wrap;gap:11px;margin-top:35px}.error-back-button{padding:13px 12px;border:0;border-bottom:1px solid #826943;background:transparent;color:#c4bdb2;font-size:12px}.error-back-button:hover{color:#fff;border-color:#c49a62}.error-links{padding:clamp(65px,7vw,95px) 0;background:#eee9e0;color:#211f1b}.error-links h2{font-size:clamp(40px,4.5vw,62px);line-height:.98;margin:14px 0}.error-links .col-lg-8 .row{border-top:1px solid #c4b9aa}.error-links .col-lg-8 a{position:relative;display:flex;flex-direction:column;min-height:175px;padding:27px;border-right:1px solid #c4b9aa;border-bottom:1px solid #c4b9aa;color:#211f1b;transition:background .25s,color .25s}.error-links .col-lg-8 a span{color:#a9793e;font:25px 'DM Serif Display',serif}.error-links .col-lg-8 a b{margin-top:auto;font:23px 'DM Serif Display',serif;font-weight:400}.error-links .col-lg-8 a i{position:absolute;right:24px;bottom:25px;color:#a9793e;font-style:normal;transition:transform .25s}.error-links .col-lg-8 a:hover{background:#171816;color:#fff}.error-links .col-lg-8 a:hover i{transform:translateX(5px)}
@media(max-width:767.98px){.error-main{min-height:760px}.error-main .container{padding:0 22px}.error-code{gap:14px}.error-actions .ds-ui-btn{width:100%}.error-back-button{width:100%;margin-top:5px}.error-links{padding:60px 22px}.error-links .col-lg-8 a{min-height:140px}}
/* Şehir bazlı kurumsal SEO / dönüşüm sayfası */
.local-seo-page{background:#eee9e0;color:#211f1b}.local-seo-page h1,.local-seo-page h2,.local-seo-page h3,.local-seo-page strong{font-family:'DM Serif Display',serif}.local-seo-page em{color:#b98b52}.local-seo-page small{font-size:12px;letter-spacing:.18em;color:#bb8d54}.local-hero{min-height:760px;padding:55px 0 80px;display:flex;align-items:center;color:#f3eee5;overflow:hidden}.local-hero-image,.local-hero-overlay{position:absolute;inset:0;width:100%;height:100%}.local-hero-image{object-fit:cover}.local-hero-overlay{background:linear-gradient(90deg,rgba(10,11,10,.92) 0%,rgba(10,11,10,.72) 55%,rgba(10,11,10,.42) 100%),linear-gradient(0deg,rgba(10,11,10,.55),transparent 50%)}.local-breadcrumb{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:65px;color:#b6b0a7;font-size:13px}.local-breadcrumb a{color:#b6b0a7}.local-hero h1{font-size:clamp(52px,6vw,88px);line-height:.95;margin:18px 0 27px}.local-hero .col-lg-7>p{max-width:750px;color:#cbc5bb;font-size:18px;line-height:1.75}.local-hero .btn{border-radius:0;padding:15px 22px}.local-hero-proof{padding:32px;background:rgba(18,19,17,.82);border:1px solid rgba(200,157,101,.45);backdrop-filter:blur(10px)}.local-hero-proof span,.local-hero-proof strong{display:block}.local-hero-proof span{font-size:11px;letter-spacing:.17em;color:#bd9057}.local-hero-proof strong{margin:9px 0 20px;font-size:30px;font-weight:400}.local-hero-proof ul{padding:0;margin:0 0 22px;list-style:none}.local-hero-proof li{padding:10px 0;border-bottom:1px solid rgba(255,255,255,.13);color:#c9c3ba;font-size:14px}.local-hero-proof li:before{content:'✓';margin-right:10px;color:#c79860}.local-hero-proof a{display:block;color:#d1a46d;font-size:13px}.local-trust-strip{background:#171816;color:#eee9e0;border-top:1px solid #3f3d37}.local-trust-strip .row>div{padding:24px 26px;border-right:1px solid #3f3d37}.local-trust-strip strong,.local-trust-strip span{display:block}.local-trust-strip strong{color:#c1965d;font-size:29px;font-weight:400}.local-trust-strip span{color:#9f9c94;font-size:12px}.local-intro,.local-needs,.local-process,.local-project-proof,.local-faq,.local-request{padding:clamp(70px,8vw,115px) 0}.local-intro h2,.local-needs h2,.local-process h2,.local-project-proof h2,.local-faq h2,.local-request h2,.local-service-focus h2{font-size:clamp(43px,5vw,68px);line-height:.98;margin:15px 0 25px}.local-intro p,.local-project-proof p,.local-faq .col-lg-4 p,.local-request .col-lg-5>p{color:#675f56;font-size:16px;line-height:1.8}.local-text-link{display:inline-block;margin-top:10px;padding-bottom:5px;border-bottom:1px solid #a8783f;color:#986a34}.local-needs{background:#171816;color:#eee9e0}.local-needs header,.local-process header{max-width:800px;margin:auto}.local-needs article{height:100%;padding:30px;border-top:1px solid #4b463e;border-right:1px solid #3b3c38}.local-needs article>b,.local-process article>b{color:#bd8e54;font:30px 'DM Serif Display',serif}.local-needs h3,.local-process h3{font-size:25px;margin:18px 0 10px}.local-needs article p{color:#aaa69e;font-size:14px;line-height:1.7}.local-service-focus{padding:clamp(65px,7vw,105px) 0;background:#dcd2c4}.local-service-focus figure{height:100%;min-height:610px;margin:0;overflow:hidden}.local-service-focus figure img{width:100%;height:100%;object-fit:cover;transition:transform .7s}.local-service-focus figure:hover img{transform:scale(1.04)}.local-service-focus article{height:100%;padding:clamp(42px,5vw,75px);background:#24231f;color:#eee9e0}.local-service-focus ul{padding:0;margin:25px 0 32px;list-style:none}.local-service-focus li{padding:11px 0;border-bottom:1px solid #49463f;color:#bcb7ae}.local-service-focus li:before{content:'—';margin-right:10px;color:#bd8e54}.local-service-focus .btn{border-radius:0;padding:15px 20px}.local-process{background:#eee9e0}.local-process article{position:relative;height:100%;min-height:195px;padding:27px 24px;border-top:1px solid #bba98f;border-right:1px solid #cfc5b7}.local-process article:before{content:'';position:absolute;top:-5px;left:24px;width:9px;height:9px;border-radius:50%;background:#ad7d43}.local-process p{color:#6b655c;font-size:13px;line-height:1.65}.local-project-proof{background:#ddd3c5}.local-project-proof figure{height:510px;margin:0;overflow:hidden}.local-project-proof img{width:100%;height:100%;object-fit:cover;transition:transform .7s}.local-project-proof figure:hover img{transform:scale(1.04)}.local-project-proof blockquote{margin:28px 0;padding:18px 0 18px 24px;border-left:1px solid #ac7d43;color:#4e4941;font:22px/1.5 'DM Serif Display',serif}.local-project-proof .btn{border-radius:0;padding:14px 18px}.local-faq{background:#f5f1e9}.local-faq .accordion-item{background:transparent;border-color:#c8bdae}.local-faq .accordion-button{padding:24px 0;background:transparent;box-shadow:none;color:#26231e;font:23px 'DM Serif Display',serif}.local-faq .accordion-button:not(.collapsed){color:#9b6b34}.local-faq .accordion-body{padding:0 0 25px;color:#686158;line-height:1.75}.local-request{background:#171816;color:#eee9e0}.local-contact-options{margin-top:30px;border-top:1px solid #47463f}.local-contact-options a{display:block;padding:16px 0;border-bottom:1px solid #3c3d38}.local-contact-options span,.local-contact-options strong{display:block}.local-contact-options span{color:#85837d;font-size:11px;text-transform:uppercase;letter-spacing:.13em}.local-contact-options strong{margin-top:3px;color:#d0a168;font-size:20px;font-weight:400}.local-request form{padding:35px;background:#eee9e0;color:#26231e}.local-request .form-control,.local-request .form-select{min-height:53px;border:1px solid #c9c0b3;border-radius:0;background:#f7f3eb}.local-request textarea.form-control{min-height:120px}.local-request .btn{border-radius:0;padding:16px}.local-request .form-note{display:block;margin-top:12px;color:#777169;font-size:10px;letter-spacing:0;text-align:center}.local-mobile-cta{display:none}
@media(max-width:991.98px){.local-hero{min-height:auto;padding:45px 0 70px}.local-breadcrumb{margin-bottom:50px}.local-hero-proof{margin-top:10px}.local-service-focus figure{min-height:450px}.local-trust-strip .row>div:nth-child(2){border-right:0}.local-process article{min-height:170px}}
@media(max-width:767.98px){.local-seo-page{padding-bottom:58px}.local-hero{padding:35px 20px 60px}.local-hero h1{font-size:48px}.local-hero .col-lg-7>p{font-size:16px}.local-hero .btn{width:100%}.local-trust-strip .row>div{padding:19px 14px}.local-trust-strip strong{font-size:23px}.local-intro,.local-needs,.local-process,.local-project-proof,.local-faq,.local-request,.local-service-focus{padding:60px 22px}.local-needs article,.local-process article{border-right:0}.local-service-focus .container{padding:0}.local-service-focus figure{min-height:330px}.local-service-focus article{padding:40px 25px}.local-project-proof figure{height:360px}.local-request form{padding:27px 20px}.local-mobile-cta{position:fixed;z-index:1040;left:0;right:0;bottom:0;display:flex;background:#151613;box-shadow:0 -8px 25px rgba(0,0,0,.18)}.local-mobile-cta a{flex:1;padding:15px 8px;border-right:1px solid #3e3d38;color:#eee9e0;text-align:center;font-size:12px}.local-mobile-cta a:last-child{background:#a8783f;color:#fff}}.btn-glass {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	padding: 13px 24px;

	color: #fff !important;
	background: rgba(255, 255, 255, 0.10);

	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 4px;

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

	text-decoration: none !important;

	transition:
		background-color .25s ease,
		border-color .25s ease,
		transform .25s ease;
}

.btn-glass:hover,
.btn-glass:focus {
	color: #fff !important;
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.65);

	/* transform: translateY(-2px); */
}