:root {
    --bb-dark: #191515;
    --bb-text: #342c2c;
    --bb-muted: #756b68;
    --bb-soft: #f8f1ee;
    --bb-white: #ffffff;
    --bb-primary: #b96b61;
    --bb-primary-dark: #8f4d46;
    --bb-border: rgba(25, 21, 21, 0.12);
    --bb-shadow: 0 18px 60px rgba(35, 23, 20, 0.12);
    --bb-container: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--bb-text);
    background: var(--bb-white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.bb-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.bb-container {
    width: min(var(--bb-container), calc(100% - 40px));
    margin-inline: auto;
}

/* Header */
.bb-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    color: var(--bb-white);
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.bb-header.is-scrolled {
    color: var(--bb-dark);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px);
}

.bb-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(var(--bb-container), calc(100% - 40px));
    height: 86px;
    margin-inline: auto;
}

.bb-logo {
    display: inline-flex;
    align-items: center;
    min-width: 180px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bb-logo img {
    max-height: 58px;
    width: auto;
}

.bb-logo__text {
    font-size: 26px;
}

.bb-nav__list,
.bb-footer__menu,
.bb-mobile-menu__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.bb-nav__list {
    display: flex;
    align-items: center;
    gap: 38px;
}

.bb-nav__list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.bb-nav__list a::after {
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transition: width 0.22s ease;
}

.bb-nav__list a:hover::after {
    width: 100%;
}

.bb-header__appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid currentColor;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.bb-header__appointment:hover {
    background: var(--bb-white);
    color: var(--bb-dark);
}

.bb-header.is-scrolled .bb-header__appointment:hover {
    background: var(--bb-dark);
    color: var(--bb-white);
}

.bb-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.bb-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

/* Mobile Menu */
.bb-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.44);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.bb-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: min(360px, 86vw);
    height: 100vh;
    padding: 26px;
    background: var(--bb-white);
    box-shadow: var(--bb-shadow);
    transform: translateX(-105%);
    transition: transform 0.28s ease;
}

body.bb-menu-open .bb-mobile-overlay {
    visibility: visible;
    opacity: 1;
}

body.bb-menu-open .bb-mobile-menu {
    transform: translateX(0);
}

.bb-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--bb-dark);
    padding-bottom: 22px;
    border-bottom: 1px solid var(--bb-border);
}

.bb-mobile-close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--bb-border);
    background: transparent;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.bb-mobile-menu__list {
    display: grid;
    gap: 2px;
    margin-top: 22px;
}

.bb-mobile-menu__list a {
    display: block;
    padding: 14px 0;
    color: var(--bb-dark);
    border-bottom: 1px solid rgba(25, 21, 21, 0.08);
    font-weight: 700;
}

.bb-mobile-menu__appointment {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 26px;
    color: var(--bb-white);
    background: var(--bb-primary);
    font-weight: 800;
    text-transform: uppercase;
}

/* Hero */
.bb-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: var(--bb-white);
    background: #b77b70;
    user-select: none;
}

.bb-hero__viewport {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.bb-hero__track {
    display: flex;
    min-height: 100vh;
    cursor: grab;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.bb-hero.is-dragging .bb-hero__track {
    cursor: grabbing;
    transition: none;
}

.bb-hero__slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.bb-hero__media {
    position: absolute;
    inset: 0;
    background-color: #b77b70;
    background-position: center center;
    background-size: cover;
    transform: scale(1.04);
}

.bb-hero__media--fallback {
    background:
        radial-gradient(circle at 72% 36%, rgba(255,255,255,0.42), transparent 28%),
        linear-gradient(135deg, #8d514b 0%, #dba59b 48%, #f1d9d0 100%);
}

.bb-hero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(44, 22, 20, 0.50) 0%, rgba(44, 22, 20, 0.25) 42%, rgba(44, 22, 20, 0.05) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
}

.bb-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding-top: 98px;
    padding-bottom: 90px;
}

.bb-hero__eyebrow {
    max-width: 760px;
    margin-bottom: 12px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(38px, 5vw, 78px);
    font-style: italic;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.045em;
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.bb-hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(54px, 7vw, 112px);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.07em;
    text-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.bb-hero p {
    max-width: 620px;
    margin: 30px 0 0;
    font-size: clamp(17px, 1.45vw, 22px);
    font-weight: 700;
    line-height: 1.55;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.20);
}

.bb-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 72px;
}

.bb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bb-btn:hover {
    transform: translateY(-2px);
}

.bb-btn--outline {
    color: var(--bb-white);
    border-color: var(--bb-white);
    background: rgba(255, 255, 255, 0.04);
}

.bb-btn--outline:hover {
    color: var(--bb-dark);
    background: var(--bb-white);
}

.bb-btn--light {
    color: var(--bb-dark);
    background: var(--bb-white);
    border-color: var(--bb-white);
}

.bb-btn--light:hover {
    color: var(--bb-white);
    background: transparent;
}

.bb-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.bb-hero__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.bb-hero__dot.is-active {
    width: 13px;
    height: 13px;
    background: var(--bb-white);
}

.bb-hero__dot:hover {
    transform: scale(1.2);
}

/* Sections */
.bb-section {
    padding: 110px 0;
}

.bb-section-label {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--bb-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.bb-section-head {
    max-width: 680px;
    margin-bottom: 42px;
}

.bb-section h2 {
    margin: 0;
    color: var(--bb-dark);
    font-family: Georgia, serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.bb-intro__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.bb-intro__image {
    min-height: 520px;
    background:
        linear-gradient(135deg, rgba(185, 107, 97, 0.25), rgba(248, 241, 238, 0.96)),
        linear-gradient(135deg, #ddd 0%, #aaa 100%);
}

.bb-intro__content p {
    max-width: 620px;
    color: var(--bb-muted);
    font-size: 18px;
}

.bb-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--bb-primary-dark);
    font-weight: 800;
    border-bottom: 1px solid currentColor;
}

.bb-services {
    background: var(--bb-soft);
}

.bb-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bb-service-card {
    min-height: 260px;
    padding: 36px;
    background: var(--bb-white);
    box-shadow: 0 18px 50px rgba(81, 52, 46, 0.08);
}

.bb-service-card span {
    color: var(--bb-primary);
    font-weight: 800;
}

.bb-service-card h3 {
    margin: 28px 0 12px;
    color: var(--bb-dark);
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
}

.bb-service-card p {
    margin: 0;
    color: var(--bb-muted);
}

.bb-appointment-preview {
    background: var(--bb-primary);
    color: var(--bb-white);
}

.bb-appointment-preview__box {
    max-width: 860px;
    text-align: center;
}

.bb-appointment-preview .bb-section-label,
.bb-appointment-preview h2,
.bb-appointment-preview p {
    color: var(--bb-white);
}

.bb-appointment-preview p {
    margin-inline: auto;
    max-width: 680px;
    font-size: 18px;
}

/* Blog fallback */
.bb-post-list {
    display: grid;
    gap: 24px;
}

.bb-post-card {
    padding: 28px;
    border: 1px solid var(--bb-border);
}

.bb-post-card h2 {
    margin: 0 0 12px;
}

.bb-post-card h2 a {
    color: var(--bb-dark);
}

/* Footer */
.bb-footer {
    padding: 48px 0;
    color: var(--bb-white);
    background: var(--bb-dark);
}

.bb-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.bb-footer__brand {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
}

.bb-footer p {
    margin: 0;
    color: rgba(255,255,255,0.72);
}

.bb-footer__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.bb-footer__menu a {
    color: rgba(255,255,255,0.78);
}

/* Responsive */
@media (max-width: 1024px) {
    .bb-nav,
    .bb-header__appointment {
        display: none;
    }

    .bb-mobile-toggle {
        display: block;
        color: currentColor;
    }

    .bb-header__inner {
        height: 76px;
    }

.bb-hero,
.bb-hero__viewport,
.bb-hero__track,
.bb-hero__slide,
.bb-hero__content {
    min-height: 720px;
}

    .bb-intro__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .bb-services__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bb-container {
        width: min(100% - 28px, var(--bb-container));
    }

    .bb-logo__text {
        font-size: 20px;
    }

.bb-hero,
.bb-hero__viewport,
.bb-hero__track,
.bb-hero__slide,
.bb-hero__content {
    min-height: 640px;
}

.bb-hero__media {
    background-position: center center;
    transform: scale(1.02);
}

.bb-hero__dots {
    bottom: 22px;
}

    .bb-hero__content {
        padding-top: 90px;
    }

    .bb-hero__eyebrow {
        font-size: 34px;
    }

    .bb-hero h1 {
        font-size: 48px;
    }

    .bb-hero p {
        font-size: 16px;
    }

    .bb-hero__actions {
        gap: 12px;
        margin-top: 38px;
    }

    .bb-btn {
        width: 100%;
    }

    .bb-section {
        padding: 72px 0;
    }

    .bb-intro__image {
        min-height: 360px;
    }

    .bb-service-card {
        padding: 28px;
    }

    .bb-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* Header Fix */
.bb-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 140px;
    align-items: center;
    gap: 28px;
}

.bb-logo {
    justify-self: start;
    min-width: 0;
    white-space: nowrap;
}

.bb-nav {
    justify-self: center;
    min-width: 0;
}

.bb-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.bb-nav__list > li {
    position: relative;
    display: flex;
    align-items: center;
}

.bb-nav__list a {
    color: currentColor;
    white-space: nowrap;
}

.bb-header__appointment {
    justify-self: end;
}

/* Header dropdown hazırlığı */
.bb-nav__list .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 210px;
    padding: 14px;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 55px rgba(25, 21, 21, 0.14);
    transform: translateX(-50%) translateY(12px);
    transition: all 0.22s ease;
}

.bb-nav__list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.bb-nav__list .sub-menu a {
    display: block;
    min-height: auto;
    padding: 10px 12px;
    color: var(--bb-dark);
    font-size: 12px;
}

.bb-nav__list .sub-menu a::after {
    display: none;
}

/* Mobile Menu Fix */
.bb-mobile-menu {
    width: min(390px, 88vw);
    padding: 28px 26px;
}

.bb-mobile-menu__head {
    gap: 18px;
}

.bb-mobile-menu__head strong {
    color: var(--bb-dark);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.bb-mobile-menu__nav {
    margin-top: 22px;
}

.bb-mobile-menu__list,
.bb-mobile-menu__list ul,
.bb-mobile-menu__list li {
    display: block;
    width: 100%;
}

.bb-mobile-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bb-mobile-menu__list li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bb-mobile-menu__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 14px 0;
    color: var(--bb-dark);
    border-bottom: 1px solid rgba(25, 21, 21, 0.08);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.bb-mobile-menu__list .sub-menu {
    display: block;
    margin: 0;
    padding: 6px 0 10px 16px;
    list-style: none;
    background: transparent;
}

.bb-mobile-menu__list .sub-menu a {
    min-height: 40px;
    padding: 9px 0;
    color: var(--bb-muted);
    border-bottom: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
}

.bb-mobile-menu__appointment {
    min-height: 54px;
    margin-top: 28px;
    border-radius: 0;
    background: var(--bb-primary);
    box-shadow: 0 16px 40px rgba(185, 107, 97, 0.22);
}

/* Hero içerik hizası daha referansa yakın */
.bb-hero__content {
    padding-left: 4px;
}

.bb-hero h1 {
    max-width: 900px;
}

/* Responsive Header Fix */
@media (max-width: 1200px) {
    .bb-header__inner {
        grid-template-columns: 220px minmax(0, 1fr) 130px;
        gap: 20px;
    }

    .bb-nav__list {
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .bb-header__inner {
        display: flex;
        height: 76px;
    }

    .bb-logo {
        font-size: 20px;
    }

    .bb-nav,
    .bb-header__appointment {
        display: none !important;
    }

.bb-mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: auto;
}
}

@media (max-width: 640px) {
    .bb-mobile-menu {
        width: min(356px, 86vw);
        padding: 26px 22px;
    }

    .bb-mobile-menu__list a {
        min-height: 48px;
        font-size: 13px;
    }

    .bb-mobile-menu__appointment {
        width: 100%;
    }
}
/* Mobile Hamburger Fix */
.bb-mobile-toggle {
    position: relative;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
}

.bb-mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

@media (max-width: 1024px) {
    .bb-mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-left: auto;
    }
}
/* Logo Switch */
.bb-logo {
    position: relative;
    min-height: 58px;
}

.bb-logo__img {
    display: block;
    width: auto;
    max-width: 230px;
    max-height: 62px;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.bb-logo__img--dark {
    position: absolute;
    left: 0;
    top: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%);
}

.bb-logo__img--white {
    opacity: 1;
    visibility: visible;
}

.bb-header.is-scrolled .bb-logo__img--white {
    opacity: 0;
    visibility: hidden;
}

.bb-header.is-scrolled .bb-logo__img--dark {
    opacity: 1;
    visibility: visible;
}

.bb-header.is-scrolled .bb-logo__img--white:only-child {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 640px) {
    .bb-logo {
        min-height: 48px;
    }

    .bb-logo__img {
        max-width: 190px;
        max-height: 50px;
    }
}
/* Dynamic Services */
.bb-section-head--center {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.bb-section-head--center p {
    max-width: 620px;
    margin: 18px auto 0;
    color: var(--bb-muted);
    font-size: 17px;
}

.bb-services__grid--dynamic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.bb-service-item {
    position: relative;
    overflow: hidden;
    background: var(--bb-white);
    box-shadow: 0 22px 70px rgba(81, 52, 46, 0.10);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.bb-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 90px rgba(81, 52, 46, 0.16);
}

.bb-service-item__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #ead8d2, #f8f1ee);
}

.bb-service-item__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.bb-service-item:hover .bb-service-item__media img {
    transform: scale(1.07);
}

.bb-service-item__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 72% 20%, rgba(255,255,255,0.65), transparent 25%),
        linear-gradient(135deg, #d8aaa2, #f5e6e1);
}

.bb-service-item__body {
    padding: 30px;
}

.bb-service-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.bb-service-item__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    color: var(--bb-primary-dark);
    background: rgba(185, 107, 97, 0.10);
    border: 1px solid rgba(185, 107, 97, 0.18);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.bb-service-item h3 {
    margin: 0;
    color: var(--bb-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 31px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.bb-service-item h3 a {
    color: inherit;
}

.bb-service-item p {
    margin: 15px 0 0;
    color: var(--bb-muted);
    font-size: 15px;
    line-height: 1.7;
}

.bb-service-item__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--bb-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bb-service-item__link::after {
    content: "→";
    color: var(--bb-primary);
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.bb-service-item__link:hover::after {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .bb-services__grid--dynamic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .bb-services__grid--dynamic {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bb-service-item__body {
        padding: 26px;
    }

    .bb-service-item h3 {
        font-size: 28px;
    }
}
/* Service Detail Page */
.bb-page-hero {
    padding: 170px 0 80px;
    color: var(--bb-dark);
    background: var(--bb-soft);
}

.bb-page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(46px, 6vw, 82px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.06em;
}

.bb-page-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.bb-page-hero__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    color: var(--bb-primary-dark);
    background: rgba(185, 107, 97, 0.12);
    border: 1px solid rgba(185, 107, 97, 0.18);
    font-size: 13px;
    font-weight: 800;
}

.bb-service-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 56px;
    align-items: start;
}

.bb-service-detail__image {
    overflow: hidden;
    margin-bottom: 34px;
    background: var(--bb-soft);
}

.bb-service-detail__image img {
    display: block;
    width: 100%;
    height: auto;
}

.bb-service-detail__text {
    color: var(--bb-text);
    font-size: 18px;
    line-height: 1.8;
}

.bb-service-detail__text h2,
.bb-service-detail__text h3 {
    color: var(--bb-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.bb-service-detail__text h2 {
    font-size: 42px;
}

.bb-service-detail__text h3 {
    font-size: 32px;
}

.bb-service-detail__sidebar {
    position: sticky;
    top: 110px;
}

.bb-service-detail__box {
    padding: 32px;
    background: var(--bb-white);
    border: 1px solid var(--bb-border);
    box-shadow: 0 22px 70px rgba(81, 52, 46, 0.10);
}

.bb-service-detail__box h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.bb-service-detail__box p {
    margin: 16px 0 0;
    color: var(--bb-muted);
}

.bb-service-detail__box ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 24px 0;
    list-style: none;
}

.bb-service-detail__box li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(25, 21, 21, 0.08);
}

.bb-btn--dark {
    width: 100%;
    color: var(--bb-white);
    background: var(--bb-dark);
    border-color: var(--bb-dark);
}

.bb-btn--dark:hover {
    color: var(--bb-dark);
    background: transparent;
}

@media (max-width: 900px) {
    .bb-service-detail__grid {
        grid-template-columns: 1fr;
    }

    .bb-service-detail__sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .bb-page-hero {
        padding: 130px 0 60px;
    }

    .bb-service-detail__text {
        font-size: 16px;
    }

    .bb-service-detail__text h2 {
        font-size: 34px;
    }
}
/* Non Homepage Solid Header */
.bb-header--solid {
    color: var(--bb-dark);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px);
}

.bb-header--solid .bb-logo__img--white {
    opacity: 0;
    visibility: hidden;
}

.bb-header--solid .bb-logo__img--dark {
    opacity: 1;
    visibility: visible;
}

.bb-header--solid .bb-header__appointment:hover {
    color: var(--bb-white);
    background: var(--bb-dark);
}

/* Ana sayfa dışındaki sayfalarda header altında içerik ezilmesin */
body:not(.home) .bb-main {
    padding-top: 0;
}