/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Inter', sans-serif;
    background: #faf6ef;
    color: #3a2418;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    height: auto
}

a {
    color: inherit;
    text-decoration: none;
    transition: .3s
}

ul {
    list-style: none
}

button {
    font-family: inherit;
    cursor: pointer
}

:root {
    --burgundy: #6b1f3a;
    --burgundy-dark: #4a1428;
    --burgundy-light: #8a2c50;
    --gold: #c9a86a;
    --gold-light: #e0c896;
    --gold-dark: #a68850;
    --rose: #d4a574;
    --blush: #f4e4d6;
    --cream: #faf6ef;
    --cream-warm: #f3ead9;
    --ivory: #fffaf0;
    --brown: #3a2418;
    --brown-soft: #6b4838;
    --text-muted: #8a6f5c;
    --serif: 'Cormorant Garamond', serif;
    --shadow-sm: 0 4px 14px rgba(107, 31, 58, .06);
    --shadow-md: 0 14px 40px rgba(107, 31, 58, .1);
    --shadow-lg: 0 30px 80px rgba(107, 31, 58, .15);
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    color: var(--burgundy);
    font-weight: 500;
    line-height: 1.1
}

em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--rose) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px
    }
}

/* ===== ORNAMENTS (her section içinde) ===== */
.has-orn {
    position: relative;
    overflow: hidden
}

.has-orn > .container {
    position: relative;
    z-index: 3
}

.orn {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    color: var(--gold-dark);
    will-change: transform;
    animation: ornDrift 12s ease-in-out infinite;
}

/* === SOL TARAFTAN İÇERİ KADEMELİ === */
/* Kenarda büyük & belirgin */
.orn-l1 {
    top: 8%;
    left: 2%;
    width: 110px;
    height: 110px;
    opacity: .30;
    animation-delay: 0s
}

/* Biraz içeride orta boy */
.orn-l2 {
    top: 35%;
    left: 14%;
    width: 80px;
    height: 80px;
    opacity: .22;
    color: var(--rose);
    animation-delay: -3s
}

/* Daha içeride küçük */
.orn-l3 {
    top: 62%;
    left: 26%;
    width: 60px;
    height: 60px;
    opacity: .15;
    color: var(--burgundy);
    animation-delay: -6s
}

/* Alt sol kenarda büyük */
.orn-l4 {
    bottom: 10%;
    left: 4%;
    width: 100px;
    height: 100px;
    opacity: .28;
    animation-delay: -9s
}

/* === SAĞ TARAFTAN İÇERİ KADEMELİ === */
.orn-r1 {
    top: 12%;
    right: 3%;
    width: 100px;
    height: 100px;
    opacity: .28;
    color: var(--gold);
    animation-delay: -2s
}

.orn-r2 {
    top: 42%;
    right: 15%;
    width: 75px;
    height: 75px;
    opacity: .20;
    color: var(--gold-dark);
    animation-delay: -5s
}

.orn-r3 {
    top: 68%;
    right: 28%;
    width: 55px;
    height: 55px;
    opacity: .14;
    color: var(--rose);
    animation-delay: -8s
}

.orn-r4 {
    bottom: 12%;
    right: 5%;
    width: 95px;
    height: 95px;
    opacity: .26;
    color: var(--burgundy);
    animation-delay: -1s
}

/* === ORTA HAFİF === */
.orn-c1 {
    top: 22%;
    left: 42%;
    width: 50px;
    height: 50px;
    opacity: .10;
    animation-delay: -4s
}

.orn-c2 {
    bottom: 24%;
    right: 45%;
    width: 55px;
    height: 55px;
    opacity: .12;
    color: var(--rose);
    animation-delay: -7s
}

@keyframes ornDrift {
    0%, 100% {
        transform: translate(0, var(--ty, 0px)) rotate(0deg)
    }
    50% {
        transform: translate(8px, calc(var(--ty, 0px) - 18px)) rotate(8deg)
    }
}

/* Tablet — orta seviye azaltma */
@media (max-width: 1100px) {
    .orn-l3, .orn-r3 {
        display: none
    }

    .orn-l2 {
        left: 8%
    }

    .orn-r2 {
        right: 8%
    }
}

/* Mobile — sadece kenar ornament'leri kalsın */
@media (max-width: 768px) {
    .orn {
        width: 55px !important;
        height: 55px !important;
        opacity: .14 !important
    }

    .orn-l2, .orn-l3, .orn-r2, .orn-r3, .orn-c1, .orn-c2 {
        display: none
    }
}

/* Koyu bölümler için renk */
.stats-band .orn, .footer .orn {
    color: var(--gold-light) !important;
    opacity: .14 !important;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 239, .7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 31, 58, .06);
    transition: .4s;
}

.navbar.scrolled {
    background: rgba(255, 250, 240, .95);
    box-shadow: 0 4px 30px rgba(107, 31, 58, .08);
}

.nav-container {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 30px;
    gap: 16px;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
    transition: .3s
}

.navbar.scrolled .logo img {
    height: 48px
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-size: 12.5px;
    letter-spacing: .4px;
    color: var(--brown);
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--gold);
    transition: .3s;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--burgundy)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px
}

.lang-switch a,
.lang-switch span.active {
    padding: 4px 2px;
    color: var(--brown);
    font-weight: 600;
}

.lang-switch a {
    opacity: .45;
    transition: opacity .3s;
}

.lang-switch a:hover {
    opacity: 1;
}

.lang-switch span.active {
    opacity: 1;
    color: var(--burgundy);
    cursor: default;
}

.lang-switch .sep {
    opacity: .25;
    padding: 0;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .6px;
    box-shadow: 0 6px 22px rgba(107, 31, 58, .25);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 31, 58, .4)
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 30px;
    height: 24px;
    position: relative
}

.nav-toggle span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: .3s
}

.nav-toggle span:nth-child(1) {
    top: 2px
}

.nav-toggle span:nth-child(2) {
    top: 11px
}

.nav-toggle span:nth-child(3) {
    top: 20px
}

.nav-toggle.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg)
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0
}

.nav-toggle.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg)
}

@media (max-width: 1200px) {
    .nav-links {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: rgba(255, 250, 240, .98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        gap: 0;
        padding: 14px 0;
        transform: translateY(-130%);
        transition: .4s;
        border-bottom: 1px solid rgba(107, 31, 58, .08);
        box-shadow: 0 14px 30px rgba(107, 31, 58, .1);
    }

    .nav-links.open {
        transform: translateY(0)
    }

    .nav-links a {
        padding: 14px 24px;
        font-size: 15px;
        border-bottom: 1px solid rgba(107, 31, 58, .05)
    }

    .nav-toggle {
        display: block
    }

    .btn-call span {
        display: none
    }

    .btn-call {
        padding: 10px 14px
    }

    .logo img {
        height: 46px
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(107, 31, 58, .2) 0%, rgba(74, 20, 40, .55) 60%, rgba(58, 36, 24, .75) 100%),
    linear-gradient(180deg, rgba(58, 36, 24, .2) 0%, rgba(58, 36, 24, .5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeUp 1.4s ease both
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 28px;
    padding: 9px 24px;
    border: 1px solid rgba(224, 200, 150, .35);
    border-radius: 30px;
    background: rgba(255, 250, 240, .06);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(54px, 9vw, 118px);
    font-weight: 400;
    line-height: .95;
    color: #fffaf0;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

.hero-title em {
    font-weight: 300
}

.hero-sub {
    font-size: clamp(15px, 1.6vw, 19px);
    color: #f4e4d6;
    max-width: 640px;
    margin: 0 auto 42px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 54px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 13.5px;
    letter-spacing: 1.2px;
    font-weight: 600;
    transition: .4s;
    text-transform: uppercase;
    border: 0;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: #fff;
    box-shadow: 0 10px 30px rgba(107, 31, 58, .35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(107, 31, 58, .5)
}

.btn-ghost {
    background: rgba(255, 250, 240, .1);
    color: #fffaf0;
    border: 1px solid rgba(255, 250, 240, .3);
    backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    background: rgba(255, 250, 240, .2);
    border-color: var(--gold-light)
}

.btn-outline {
    background: transparent;
    color: var(--burgundy);
    border: 1.5px solid var(--burgundy);
}

.btn-outline:hover {
    background: var(--burgundy);
    color: #fff
}

.btn-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .3);
}

.btn-wa:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, .5)
}

.hero-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: #f4e4d6;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px
}

.hero-meta i {
    color: var(--gold-light)
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 1.5px solid var(--gold-light);
    border-radius: 20px;
    z-index: 2;
}

.hero-scroll span {
    display: block;
    width: 4px;
    height: 8px;
    background: var(--gold-light);
    border-radius: 2px;
    margin: 8px auto 0;
    animation: scroll 1.8s infinite
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1
    }
    100% {
        transform: translateY(15px);
        opacity: 0
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ===== STATS BAND ===== */
.stats-band {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.stats-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 106, .15), transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 3
}

@media (max-width: 700px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px
    }
}

.stat-item {
    text-align: center;
    color: #fff
}

.stat-num {
    font-family: var(--serif);
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-lbl {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f4e4d6;
    font-weight: 500
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 2
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0
    }
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 3
}

@media (max-width: 768px) {
    .section-head {
        margin-bottom: 50px
    }
}

.eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding: 0 30px;
}

.eyebrow::before, .eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.eyebrow::before {
    left: 0
}

.eyebrow::after {
    right: 0
}

.eyebrow.light {
    color: var(--gold-light)
}

.eyebrow.light::before, .eyebrow.light::after {
    background: var(--gold-light)
}

h2 {
    font-size: clamp(36px, 5vw, 62px);
    letter-spacing: -1px;
    margin-bottom: 18px
}

.lead {
    font-size: 17px;
    color: var(--brown-soft);
    font-weight: 300;
    line-height: 1.75
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px
    }
}

/* ===== EXPERIENCE ===== */
.section-experience {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%)
}

.section-experience > .container:has(.steps-grid) {
    max-width: 1400px;
}

.section-wide > .container {
    max-width: 1400px;
}

.exp-image {
    position: relative
}

.exp-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    object-fit: cover
}

.exp-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 50px;
    background: rgba(255, 250, 240, .95);
    backdrop-filter: blur(20px);
    box-shadow: 0 14px 30px rgba(107, 31, 58, .18);
    color: var(--burgundy);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
}

.exp-image-badge i {
    color: var(--gold-dark);
    font-size: 16px
}

.exp-text .lead {
    margin: 24px 0 32px
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    color: var(--brown);
    font-size: 15.5px;
    border-bottom: 1px solid rgba(107, 31, 58, .08);
}

.feature-list li:last-child {
    border: 0
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blush), var(--cream-warm));
    border: 1px solid rgba(201, 168, 106, .25);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* ===== SERVICES ===== */
.section-services {
    background: var(--ivory)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 3
}

.service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .4s;
    border: 1px solid rgba(107, 31, 58, .04);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg)
}

.service-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s
}

.service-card:hover .service-img img {
    transform: scale(1.08)
}

.service-duration {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 30px;
    background: rgba(255, 250, 240, .95);
    backdrop-filter: blur(10px);
    color: var(--burgundy);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}

.service-duration i {
    color: var(--gold-dark)
}

.service-body {
    padding: 28px 26px
}

.service-body h3 {
    font-size: 24px;
    color: var(--burgundy);
    margin-bottom: 10px
}

.service-body p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.7;
    margin-bottom: 18px
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--burgundy);
    transition: .3s;
}

.service-link i {
    transition: .3s
}

.service-link:hover {
    color: var(--gold-dark)
}

.service-link:hover i {
    transform: translateX(5px)
}

/* ===== BRIDAL ===== */
.section-bridal {
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--blush) 100%)
}

.bridal-featured {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    border-radius: 32px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 168, 106, .18);
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    z-index: 3;
}

.bridal-featured::before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(201, 168, 106, .1), transparent 70%);
    border-radius: 50%;
}

@media (max-width: 900px) {
    .bridal-featured {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 30px;
        margin-bottom: 40px
    }
}

.bridal-featured-img {
    position: relative;
    border-radius: 22px;
    overflow: hidden
}

.bridal-featured-img img {
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%
}

.bridal-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(107, 31, 58, .35);
}

.bridal-tag i {
    color: var(--gold-light)
}

.bridal-featured-body {
    position: relative;
    z-index: 1
}

.bridal-featured-body h3 {
    font-size: clamp(30px, 4vw, 46px);
    margin: 14px 0 18px
}

.bridal-featured-body > p {
    font-size: 15.5px;
    color: var(--brown-soft);
    line-height: 1.8;
    margin-bottom: 24px
}

.bridal-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 3
}

.bridal-mini {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 168, 106, .15);
    text-align: center;
    transition: .4s;
    overflow: hidden;
}

.bridal-mini::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(212, 165, 116, .15), transparent 70%);
    border-radius: 50%;
    transition: .4s;
}

.bridal-mini:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md)
}

.bridal-mini:hover::before {
    transform: scale(1.4)
}

.bridal-mini-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(107, 31, 58, .08);
    color: var(--burgundy);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.bridal-mini-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blush), var(--cream-warm));
    border: 1px solid rgba(201, 168, 106, .3);
    color: var(--burgundy);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.bridal-mini h3 {
    font-size: 24px;
    color: var(--burgundy);
    margin-bottom: 10px;
    position: relative;
    z-index: 1
}

.bridal-mini p {
    font-size: 14px;
    color: var(--brown-soft);
    line-height: 1.7;
    margin-bottom: 22px;
    position: relative;
    z-index: 1
}

.bridal-mini-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--burgundy);
    transition: .3s;
    position: relative;
    z-index: 1;
}

.bridal-mini-link i {
    transition: .3s
}

.bridal-mini-link:hover {
    color: var(--gold-dark)
}

.bridal-mini-link:hover i {
    transform: translateX(5px)
}

/* ===== PACKAGE ===== */
.section-packages {
    background: var(--cream)
}

.package-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    border-radius: 32px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 168, 106, .15);
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.package-featured::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 106, .1), transparent 70%);
    border-radius: 50%;
}

@media (max-width: 900px) {
    .package-featured {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 30px
    }
}

.package-image {
    position: relative;
    border-radius: 22px;
    overflow: hidden
}

.package-image img {
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%
}

.badge-discount {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(107, 31, 58, .35);
}

.badge-discount i {
    color: var(--gold-light)
}

.package-info {
    position: relative;
    z-index: 1
}

.package-info h3 {
    font-size: clamp(30px, 4vw, 44px);
    margin: 14px 0 24px
}

.package-list {
    margin-bottom: 28px
}

.package-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 11px 0;
    color: var(--brown);
    font-size: 15px;
    border-bottom: 1px solid rgba(107, 31, 58, .06);
}

.package-list i {
    color: var(--gold-dark);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0
}

.package-price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding: 22px 26px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blush), var(--cream-warm));
    border: 1px solid rgba(201, 168, 106, .25);
}

.price-label {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
    font-weight: 600
}

.price-amount {
    font-family: var(--serif);
    font-size: 54px;
    color: var(--burgundy);
    font-weight: 500;
    line-height: 1
}

.price-amount small {
    font-size: 24px;
    color: var(--gold-dark);
    margin-left: 4px
}

.package-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* ===== GALLERY ===== */
.section-gallery {
    background: var(--ivory);
    padding-bottom: 120px
}

.section-gallery .section-head {
    margin-bottom: 40px
}

.gallery-marquee {
    overflow: hidden;
    padding: 0 24px;
    position: relative;
    z-index: 3
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: marquee 40s linear infinite
}

.gallery-track:hover {
    animation-play-state: paused
}

.gallery-item {
    flex-shrink: 0;
    width: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    aspect-ratio: 3/4;
    object-fit: cover;
    width: 100%;
    transition: .5s
}

.gallery-item:hover img {
    transform: scale(1.06)
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 250, 240, .95);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transition: .3s;
    box-shadow: 0 8px 22px rgba(107, 31, 58, .25);
}

.gallery-item:hover .gallery-zoom {
    opacity: 1
}

@media (max-width: 768px) {
    .gallery-item {
        width: 260px
    }

    .gallery-zoom {
        opacity: .85;
        width: 42px;
        height: 42px;
        font-size: 14px
    }
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }
    to {
        transform: translateX(-50%)
    }
}

/* ===== REELS ===== */
.section-videos {
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%)
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
    z-index: 3
}

@media (max-width: 1024px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }
}

@media (max-width: 600px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }
}

.reel {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    background: #000;
    transition: .4s;
}

.reel:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
}

.reel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s;
}

.reel:hover .reel-overlay {
    opacity: 1
}

.reel-play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 250, 240, .95);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding-left: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

.reel-muted {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

@media (max-width: 600px) {
    .reel-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, .3) 100%)
    }

    .reel-play {
        width: 50px;
        height: 50px;
        font-size: 16px;
        opacity: .85
    }
}

/* ===== TESTIMONIALS ===== */
.section-testimonials {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%)
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    position: relative;
    z-index: 3
}

.testi-card {
    position: relative;
    padding: 36px 30px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: .3s;
    border: 1px solid rgba(107, 31, 58, .05);
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.testi-quote {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 46px;
    color: var(--blush);
    line-height: 1
}

.stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 18px;
    letter-spacing: 3px
}

.testi-card p {
    color: var(--brown);
    line-height: 1.85;
    font-size: 14.5px;
    font-style: italic;
    margin-bottom: 22px;
    position: relative;
    z-index: 1
}

.testi-name {
    color: var(--burgundy);
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700
}

/* ===== CONTACT ===== */
.section-contact {
    background: var(--ivory)
}

.contact-info .lead {
    margin: 24px 0 30px
}

.contact-list {
    margin-bottom: 30px
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(107, 31, 58, .06);
}

.contact-list small {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 4px;
    font-weight: 600
}

.contact-list a, .contact-list span {
    font-size: 15.5px;
    color: var(--brown);
    font-weight: 500
}

.contact-list a:hover {
    color: var(--burgundy)
}

.cnt-ico {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(107, 31, 58, .25);
}

.cnt-ico i {
    color: #fff !important
}

.contact-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.contact-map iframe {
    border-radius: 24px;
    box-shadow: var(--shadow-md)
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--burgundy-dark) 0%, #2d0d1a 100%);
    padding: 80px 0 30px;
    color: #f4e4d6;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.footer::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 106, .08), transparent 70%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 3
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px
    }
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px
}

.footer-logo img {
    height: 72px;
    width: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(98%) sepia(20%) saturate(400%) hue-rotate(330deg) brightness(105%);
}

.footer-about {
    font-size: 14.5px;
    color: #d4b08a;
    line-height: 1.7;
    max-width: 340px
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 250, 240, .08);
    border: 1px solid rgba(255, 250, 240, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    transition: .3s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--burgundy-dark);
    transform: translateY(-3px)
}

.footer h4 {
    font-size: 20px;
    color: var(--gold-light);
    margin-bottom: 22px;
    font-family: var(--serif)
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #d4b08a
}

.footer-links li i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
    text-align: center
}

.footer-links a {
    color: #d4b08a
}

.footer-links a:hover {
    color: var(--gold-light)
}

.footer-links-plain li {
    display: block
}

/* ===== FOOTER BOTTOM + TTI SIGNATURE ===== */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 250, 240, .08);
    font-size: 13px;
    color: #a08866;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}

.footer-copyright {
    margin: 0
}

/* TTİ Yazılım İmza */
.tti-sig-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 4px;
    background: transparent;
    border: none;
    border-radius: 100px;
    text-decoration: none !important;
    color: rgba(244, 228, 214, .55) !important;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .3px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: color 0.4s ease, background 0.4s ease;
    white-space: nowrap;
    line-height: 1;
}

.tti-sig-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
    rgba(201, 168, 106, .18),
    rgba(212, 165, 116, .18));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.tti-sig-link:hover {
    color: var(--gold-light) !important;
}

.tti-sig-link:hover::before {
    opacity: 1;
}

/* Logo */
.tti-sig-logo {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    z-index: 2;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.tti-sig-link:hover .tti-sig-logo {
    transform: rotate(360deg);
}

.tti-sig-logo svg {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(201, 168, 106, .25);
    transition: box-shadow 0.4s ease;
}

.tti-sig-link:hover .tti-sig-logo svg {
    box-shadow: 0 2px 12px rgba(224, 200, 150, .5);
}

/* Metin — iki satır, hover'da yer değiştirir */
.tti-sig-text {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 20px;
    overflow: hidden;
    z-index: 2;
}

.tti-sig-default,
.tti-sig-hover {
    display: inline-flex;
    align-items: center;
    height: 20px;
    line-height: 1;
    padding: 2px 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
    white-space: nowrap;
}

.tti-sig-default {
    transform: translateY(0);
    opacity: 1;
}

.tti-sig-default strong {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-right: 4px;
}

.tti-sig-hover {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    opacity: 0;
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tti-sig-link:hover .tti-sig-default {
    transform: translateY(-100%);
    opacity: 0;
}

.tti-sig-link:hover .tti-sig-hover {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-copyright {
        width: 100%;
        text-align: center;
    }

    .tti-sig-link {
        font-size: 11.5px;
        padding: 3px 10px 3px 3px;
        gap: 7px;
    }

    .tti-sig-logo {
        width: 22px;
        height: 22px;
    }

    .tti-sig-text,
    .tti-sig-default,
    .tti-sig-hover {
        height: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tti-sig-link,
    .tti-sig-logo,
    .tti-sig-default,
    .tti-sig-hover {
        transition: color 0.2s, opacity 0.2s !important;
    }

    .tti-sig-link:hover .tti-sig-logo {
        transform: none;
    }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08)
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, .45)
    }
    50% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, .8)
    }
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(255, 250, 240, .97);
    backdrop-filter: blur(20px);
    padding: 12px 14px;
    border-top: 1px solid rgba(107, 31, 58, .1);
    box-shadow: 0 -8px 30px rgba(107, 31, 58, .1);
    gap: 10px;
}

.mobile-cta .m-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
}

.m-cta-btn.call {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: #fff
}

.m-cta-btn.wa {
    background: #25D366;
    color: #fff
}

@media (max-width: 768px) {
    .mobile-cta {
        display: flex
    }

    .whatsapp-float {
        display: none
    }

    body {
        padding-bottom: 70px
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(20, 8, 12, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    padding: 60px 20px;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto
}

.lb-stage {
    position: relative;
    max-width: min(90vw, 1100px);
    max-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-stage img, .lb-stage video {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    display: block;
}

.lb-stage video {
    width: auto;
    max-width: min(80vh * 9 / 16, 90vw)
}

.lb-close, .lb-nav {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 250, 240, .15);
    color: #fff;
    border: 1px solid rgba(255, 250, 240, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    backdrop-filter: blur(10px);
    transition: .3s;
    z-index: 2;
}

.lb-close:hover, .lb-nav:hover {
    background: rgba(255, 250, 240, .3);
    transform: scale(1.08)
}

.lb-close {
    top: 20px;
    right: 20px
}

.lb-nav {
    top: 50%;
    transform: translateY(-50%)
}

.lb-prev {
    left: 20px
}

.lb-next {
    right: 20px
}

.lb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f4e4d6;
    font-size: 13px;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, .5);
    padding: 8px 18px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

@media (max-width: 600px) {
    .lb-close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        font-size: 15px
    }

    .lb-nav {
        width: 40px;
        height: 40px
    }

    .lb-prev {
        left: 10px
    }

    .lb-next {
        right: 10px
    }
}

/* ===== FADE-IN ===== */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: var(--d, 0s)
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width: 600px) {
    .hero {
        padding: 100px 18px 80px
    }

    .hero-meta {
        gap: 18px;
        font-size: 11px;
        letter-spacing: 1px
    }

    .btn {
        padding: 14px 22px;
        font-size: 12.5px
    }

    .package-featured, .bridal-featured {
        padding: 22px
    }

    .price-amount {
        font-size: 42px
    }

    .service-body {
        padding: 22px 20px
    }

    .testi-card {
        padding: 30px 24px
    }

    .bridal-mini {
        padding: 30px 22px 24px
    }

    .footer {
        padding: 60px 0 90px
    }
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    background: rgba(255, 250, 240, .7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(107, 31, 58, .06);
    padding: 100px 0 18px;
    position: relative;
    z-index: 2;
}

.breadcrumb-list {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    letter-spacing: .5px;
    color: var(--text-muted);
}

.breadcrumb-list li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: var(--gold-dark);
    opacity: .6;
}

.breadcrumb-list a {
    color: var(--brown-soft);
    transition: .3s;
}

.breadcrumb-list a:hover {
    color: var(--burgundy)
}

.breadcrumb-list li[aria-current] {
    color: var(--burgundy);
    font-weight: 600;
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    padding: 80px 0 70px;
    text-align: center;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
    z-index: 2;
    overflow: hidden;
}

.page-hero .eyebrow {
    margin-bottom: 16px
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(34px, 5.5vw, 64px);
    font-weight: 500;
    color: var(--burgundy);
    line-height: 1.05;
    letter-spacing: -1px;
    max-width: 900px;
    margin: 0 auto 22px;
}

.page-hero .lead {
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: 17px;
}

.page-hero-meta {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--brown-soft);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 250, 240, .8);
    border: 1px solid rgba(201, 168, 106, .25);
}

.page-hero-meta i {
    color: var(--gold-dark);
    font-size: 15px
}

@media (max-width: 600px) {
    .page-hero {
        padding: 60px 0 50px
    }

    .page-hero-meta {
        gap: 10px
    }

    .page-hero-meta span {
        font-size: 11px;
        padding: 6px 12px
    }
}

/* ===== STEPS GRID ===== */
.steps-grid {
    display: grid;
    /* 5 öğeyi tek satırda hizalamak için sabit sütun şeması */
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
}

/* Geniş ekran ama 5 sığmıyorsa: 3+2 dengeli kır */
@media (max-width: 1200px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Son 2 öğeyi ortala */
    .steps-grid .step-card:nth-last-child(1):nth-child(3n+2) {
        grid-column-start: 2
    }

    .steps-grid .step-card:nth-last-child(2):nth-child(3n+1) {
        grid-column-start: 1
    }
}

/* Tablet: 2 sütun, son öğeyi ortala */
@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .steps-grid .step-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Mobil: tek sütun */
@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid .step-card:last-child:nth-child(odd) {
        max-width: 100%;
    }
}

.step-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 50px 28px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 168, 106, .15);
    text-align: center;
    transition: .4s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.step-num {
    position: absolute;
    top: 18px;
    left: 22px;
    font-family: var(--serif);
    font-size: 38px;
    font-style: italic;
    color: var(--blush);
    line-height: 1;
    font-weight: 500;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blush), var(--cream-warm));
    border: 1px solid rgba(201, 168, 106, .3);
    color: var(--burgundy);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 168, 106, .15);
    overflow: hidden;
    transition: .3s;
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 56px 22px 26px;
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    color: var(--burgundy);
    position: relative;
    transition: .3s;
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blush), var(--cream-warm));
    color: var(--burgundy);
    font-size: 22px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.faq-item[open] summary::after {
    content: "−";
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: #fff;
    transform: translateY(-50%) rotate(180deg);
}

.faq-item summary:hover {
    color: var(--gold-dark)
}

.faq-item p {
    padding: 0 26px 24px;
    color: var(--brown-soft);
    font-size: 14.5px;
    line-height: 1.8;
}

.faq-item a {
    color: var(--burgundy);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(201, 168, 106, .4);
}

@media (max-width: 600px) {
    .faq-item summary {
        font-size: 16px;
        padding: 18px 50px 18px 20px
    }

    .faq-item summary::after {
        right: 18px;
        width: 26px;
        height: 26px;
        font-size: 18px
    }

    .faq-item p {
        padding: 0 20px 20px;
        font-size: 14px
    }
}

/* ===== CTA BAND ===== */
.cta-band {
    position: relative;
    padding: 90px 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: #fff;
    overflow: hidden;
    z-index: 2;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 106, .15), transparent 50%);
}

.cta-band .container {
    position: relative;
    z-index: 3
}

.cta-band h2 {
    color: #fffaf0;
    font-size: clamp(32px, 4.5vw, 54px);
    margin-bottom: 16px;
}

.cta-band p {
    color: #f4e4d6;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 32px;
    font-weight: 300;
}

.cta-band-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-band .orn {
    color: var(--gold-light) !important;
    opacity: .18 !important
}

@media (max-width: 600px) {
    .cta-band {
        padding: 70px 18px
    }
}

/* ===================================================
   BRIDAL PAGE — Özel düğün davetiyesi tasarımı
   =================================================== */

/* === BRIDAL HERO === */
.bridal-hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 140px 24px 100px;
}

.bridal-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bridal-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(1.1);
}

.bridal-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(74, 20, 40, .3) 0%, rgba(74, 20, 40, .75) 70%, rgba(45, 13, 26, .9) 100%),
    linear-gradient(180deg, rgba(58, 36, 24, .2), rgba(58, 36, 24, .6));
}

/* Henna ornament'ler */
.bridal-ornaments {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bridal-orn {
    position: absolute;
    color: var(--gold-light);
    opacity: .25;
    animation: bridalRotate 30s linear infinite;
}

.bridal-orn-1 {
    top: 8%;
    left: 5%;
    width: 180px;
    height: 180px
}

.bridal-orn-2 {
    bottom: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    animation-direction: reverse
}

.bridal-orn-3 {
    top: 30%;
    right: 10%;
    width: 100px;
    height: 100px;
    opacity: .3
}

.bridal-orn-4 {
    bottom: 25%;
    left: 8%;
    width: 90px;
    height: 90px;
    opacity: .3;
    animation-direction: reverse
}

@keyframes bridalRotate {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

/* Garland'lar */
.bridal-hero-garland-top,
.bridal-hero-garland-bottom {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    height: 40px;
    color: var(--gold-light);
    opacity: .5;
}

.bridal-hero-garland-top {
    top: 80px
}

.bridal-hero-garland-bottom {
    bottom: 20px;
    transform: scaleY(-1)
}

.bridal-hero-garland-top svg, .bridal-hero-garland-bottom svg {
    width: 100%;
    height: 40px;
}

.bridal-hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    animation: fadeUp 1.4s ease both;
}

.bridal-crown {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--burgundy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 20px 50px rgba(201, 168, 106, .4);
    border: 2px solid rgba(255, 250, 240, .3);
}

.bridal-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 20px;
    padding: 9px 26px;
    border: 1px solid rgba(224, 200, 150, .4);
    border-radius: 30px;
    background: rgba(255, 250, 240, .05);
    backdrop-filter: blur(10px);
}

.bridal-hero-title {
    font-family: var(--serif);
    font-size: clamp(54px, 10vw, 130px);
    font-weight: 400;
    line-height: .95;
    color: #fffaf0;
    letter-spacing: -1px;
    margin-bottom: 18px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, .4);
}

.bridal-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 22px 0 28px;
    color: var(--gold-light);
}

.bridal-divider-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.bridal-hero-divider i {
    font-size: 14px
}

.bridal-hero-sub {
    font-size: clamp(15px, 1.7vw, 19px);
    color: #f4e4d6;
    max-width: 680px;
    margin: 0 auto 30px;
    line-height: 1.75;
    font-weight: 300;
}

.bridal-hero-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(17px, 2vw, 22px);
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
    position: relative;
    padding: 20px 0;
}

.bridal-hero-quote::before, .bridal-hero-quote::after {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 12px auto;
}

.bridal-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-bridal {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--burgundy-dark);
    box-shadow: 0 10px 30px rgba(201, 168, 106, .4);
}

.btn-bridal:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(201, 168, 106, .6);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-bridal-light {
    background: rgba(255, 250, 240, .95);
    color: var(--burgundy);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.btn-bridal-light:hover {
    transform: translateY(-3px);
    background: #fff;
}

/* === BRIDAL INTRO — kart === */
.bridal-intro {
    padding: 120px 24px;
    position: relative;
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}

.bridal-intro-card {
    max-width: 880px;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 168, 106, .2);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.bridal-intro-decor {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    opacity: .4;
}

.bridal-intro-decor-tl {
    top: 20px;
    left: 20px;
    border-right: 0;
    border-bottom: 0;
    border-radius: 16px 0 0 0
}

.bridal-intro-decor-tr {
    top: 20px;
    right: 20px;
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 16px 0 0
}

.bridal-intro-decor-bl {
    bottom: 20px;
    left: 20px;
    border-right: 0;
    border-top: 0;
    border-radius: 0 0 0 16px
}

.bridal-intro-decor-br {
    bottom: 20px;
    right: 20px;
    border-left: 0;
    border-top: 0;
    border-radius: 0 0 16px 0
}

.bridal-mandala-deco {
    position: absolute;
    top: 50%;
    right: -80px;
    width: 280px;
    height: 280px;
    color: var(--blush);
    opacity: .35;
    transform: translateY(-50%);
    animation: bridalRotate 60s linear infinite;
}

.bridal-mandala-deco svg {
    width: 100%;
    height: 100%
}

.bridal-intro-card .eyebrow {
    margin-bottom: 18px
}

.bridal-intro-card h2 {
    margin-bottom: 30px;
    position: relative;
    z-index: 1
}

.bridal-intro-text {
    font-size: 16px;
    color: var(--brown-soft);
    line-height: 1.9;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .bridal-intro {
        padding: 80px 18px
    }

    .bridal-intro-card {
        padding: 50px 28px
    }

    .bridal-mandala-deco {
        width: 200px;
        height: 200px;
        right: -60px;
        opacity: .2
    }
}

/* === BRIDAL FEATURES — kutu kartlar === */
.bridal-features {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--blush) 0%, var(--cream-warm) 100%);
    position: relative;
    overflow: hidden;
}

.bridal-features::before, .bridal-features::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 106, .12), transparent 70%);
    z-index: 0;
}

.bridal-features::before {
    top: -100px;
    left: -100px
}

.bridal-features::after {
    bottom: -100px;
    right: -100px
}

.bridal-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .bridal-features-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 600px) {
    .bridal-features-grid {
        grid-template-columns: 1fr
    }
}

.bridal-feat-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px 30px 30px;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 168, 106, .15);
    text-align: center;
    transition: .4s;
}

.bridal-feat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.bridal-feat-num {
    position: absolute;
    top: 18px;
    left: 24px;
    font-family: var(--serif);
    font-size: 24px;
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 2px;
}

.bridal-feat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 12px 30px rgba(107, 31, 58, .25);
}

.bridal-feat-card h3 {
    font-size: 23px;
    color: var(--burgundy);
    margin-bottom: 12px;
}

.bridal-feat-card p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.75;
}

/* === BRIDAL TIMELINE === */
.bridal-timeline {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 30px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg,
    transparent 0%,
    var(--gold) 10%,
    var(--gold) 90%,
    transparent 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0
}

.timeline-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--burgundy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(201, 168, 106, .35);
    grid-column: 2;
    border: 3px solid #fff;
    z-index: 2;
    position: relative;
}

.timeline-content {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 168, 106, .15);
    grid-column: 1;
    text-align: right;
    position: relative;
}

.timeline-content::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 0;
    height: 0;
    border-left: 12px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: translateY(-50%);
}

.timeline-item-right .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-item-right .timeline-content::after {
    right: auto;
    left: -10px;
    border-left: 0;
    border-right: 12px solid #fff;
}

.timeline-time {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 22px;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .timeline-marker {
        grid-column: 1
    }

    .timeline-content,
    .timeline-item-right .timeline-content {
        grid-column: 2;
        text-align: left;
    }

    .timeline-content::after,
    .timeline-item-right .timeline-content::after {
        left: -10px;
        right: auto;
        border-left: 0;
        border-right: 12px solid #fff;
    }
}

/* === BRIDAL TESTIMONIALS === */
.bridal-testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
    position: relative;
    overflow: hidden;
}

.bridal-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 900px) {
    .bridal-testi-grid {
        grid-template-columns: 1fr
    }
}

.bridal-testi-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 168, 106, .2);
    overflow: hidden;
}

.bridal-testi-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.bridal-testi-mandala {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    color: var(--blush);
    opacity: .35;
    transform: rotate(15deg);
}

.bridal-testi-mandala svg {
    width: 100%;
    height: 100%
}

.bridal-testi-card p {
    color: var(--brown);
    line-height: 1.85;
    font-size: 14.5px;
    font-style: italic;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.bridal-testi-author {
    position: relative;
    z-index: 1
}

.bridal-testi-author strong {
    display: block;
    color: var(--burgundy);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.bridal-testi-author small {
    color: var(--text-muted);
    font-size: 12px;
}

/* === BRIDAL EXTRAS === */
.bridal-extras {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--blush) 0%, var(--cream-warm) 100%);
    position: relative;
}

.bridal-extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .bridal-extras-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 600px) {
    .bridal-extras-grid {
        grid-template-columns: 1fr
    }
}

.bridal-extra-card {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid rgba(201, 168, 106, .25);
    text-align: center;
    transition: .4s;
}

.bridal-extra-card:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.bridal-extra-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--burgundy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.bridal-extra-card h3 {
    font-size: 19px;
    color: var(--burgundy);
    margin-bottom: 8px;
}

.bridal-extra-card p {
    font-size: 13.5px;
    color: var(--brown-soft);
    line-height: 1.7;
}

/* === FİYAT BANDI === */
.bridal-price-band {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
}

.bridal-price-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    border-radius: 32px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(107, 31, 58, .35);
}

.bridal-price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 106, .15), transparent 60%);
}

.bridal-price-decor-top, .bridal-price-decor-bottom {
    position: absolute;
    left: 30px;
    right: 30px;
    height: 40px;
    color: var(--gold-light);
    opacity: .5;
    z-index: 1;
}

.bridal-price-decor-top {
    top: 20px
}

.bridal-price-decor-bottom {
    bottom: 20px;
    transform: scaleY(-1)
}

.bridal-price-decor-top svg, .bridal-price-decor-bottom svg {
    width: 100%;
    height: 40px
}

.bridal-price-card > * {
    position: relative;
    z-index: 2
}

.bridal-price-card h2 {
    color: #fffaf0;
    margin-bottom: 18px
}

.bridal-price-card > p {
    color: #f4e4d6;
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto 30px;
    line-height: 1.8;
    font-weight: 300;
}

.bridal-price-features {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.bridal-price-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
}

.bridal-price-features i {
    color: var(--gold)
}

.bridal-price-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .bridal-price-card {
        padding: 60px 28px
    }

    .bridal-price-decor-top, .bridal-price-decor-bottom {
        left: 20px;
        right: 20px
    }
}

/* === FİNAL CTA === */
.bridal-final-cta {
    padding: 120px 24px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bridal-final-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.bridal-final-heart {
    font-size: 38px;
    color: var(--burgundy);
    margin-bottom: 22px;
    animation: bridalHeart 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes bridalHeart {
    0%, 100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.15)
    }
}

.bridal-final-content h2 {
    font-size: clamp(34px, 5vw, 56px);
    margin-bottom: 22px;
}

.bridal-final-content p {
    font-size: 17px;
    color: var(--brown-soft);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.bridal-final-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .bridal-hero {
        padding: 120px 18px 80px;
        min-height: 90vh
    }

    .bridal-crown {
        width: 64px;
        height: 64px;
        font-size: 26px
    }

    .bridal-hero-quote {
        font-size: 16px
    }

    .bridal-hero-quote::before, .bridal-hero-quote::after {
        width: 80px
    }

    .bridal-features {
        padding: 80px 0
    }

    .bridal-timeline {
        padding: 80px 0
    }

    .bridal-testimonials {
        padding: 80px 0
    }

    .bridal-extras {
        padding: 80px 0
    }

    .bridal-final-cta {
        padding: 80px 18px
    }
}

/* ===================================================
   ABOUT PAGE — Cinematic book-story design
   =================================================== */

/* === ABOUT HERO === */
.about-hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 140px 24px 100px;
    background: linear-gradient(135deg, #1a0a13 0%, #2d0d1a 100%);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
    filter: blur(2px) saturate(0.8);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(74, 20, 40, .4) 0%, rgba(26, 10, 19, .9) 80%),
    linear-gradient(180deg, rgba(26, 10, 19, .5), rgba(26, 10, 19, .85));
}

.about-hero-arch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    color: var(--gold);
    opacity: .12;
    z-index: 1;
    pointer-events: none;
}

.about-hero-arch svg {
    width: 100%;
    height: 100%
}

.about-hero-corners {
    position: absolute;
    inset: 40px;
    z-index: 1;
    pointer-events: none;
}

.about-hero-corners .corner {
    position: absolute;
    width: 60px;
    height: 60px;
    color: var(--gold);
    opacity: .35;
}

.corner-tl {
    top: 0;
    left: 0
}

.corner-tr {
    top: 0;
    right: 0;
    transform: scaleX(-1)
}

.corner-bl {
    bottom: 0;
    left: 0;
    transform: scaleY(-1)
}

.corner-br {
    bottom: 0;
    right: 0;
    transform: scale(-1, -1)
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeUp 1.6s ease both;
}

.about-eyebrow {
    display: inline-block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--gold-light);
    letter-spacing: 6px;
    margin-bottom: 28px;
}

.about-hero-title {
    font-family: var(--serif);
    color: #fffaf0;
    font-size: clamp(50px, 9vw, 110px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, .5);
}

.about-h1-line {
    display: block;
}

.about-hero-title em {
    font-weight: 300;
    margin: 8px 0;
}

.about-hero-divider {
    margin: 32px auto;
    width: 240px;
    height: 40px;
    color: var(--gold-light);
    opacity: .7;
}

.about-hero-divider svg {
    width: 100%;
    height: 100%
}

.about-hero-sub {
    font-size: clamp(15px, 1.7vw, 18px);
    color: #f4e4d6;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.85;
    font-weight: 300;
    font-style: italic;
}

.about-scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 46px;
    border: 1.5px solid var(--gold-light);
    border-radius: 20px;
    z-index: 3;
    opacity: .8;
}

.about-scroll-cue span {
    display: block;
    width: 4px;
    height: 10px;
    background: var(--gold-light);
    border-radius: 2px;
    margin: 8px auto 0;
    animation: scroll 1.8s infinite;
}

@media (max-width: 600px) {
    .about-hero-arch {
        width: 300px;
        height: 300px
    }

    .about-hero-corners {
        inset: 20px
    }

    .about-hero-corners .corner {
        width: 40px;
        height: 40px
    }
}

/* === ABOUT STORY (kitap) === */
.about-story {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #fcf5e8 100%);
    position: relative;
    overflow: hidden;
}

.about-story::before, .about-story::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 106, .08), transparent 70%);
}

.about-story::before {
    top: -150px;
    left: -150px
}

.about-story::after {
    bottom: -150px;
    right: -150px
}

.story-book {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #fffdf6, #faf3e3);
    border-radius: 24px;
    box-shadow: 0 40px 90px rgba(107, 31, 58, .15),
    inset 0 0 0 1px rgba(201, 168, 106, .25);
    position: relative;
    overflow: hidden;
}

.story-book-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
    transparent 0%,
    rgba(201, 168, 106, .3) 20%,
    rgba(201, 168, 106, .5) 50%,
    rgba(201, 168, 106, .3) 80%,
    transparent 100%);
    transform: translateX(-50%);
    z-index: 2;
}

.story-book-spine::before, .story-book-spine::after {
    content: "";
    position: absolute;
    left: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .5;
}

.story-book-spine::before {
    top: 10%
}

.story-book-spine::after {
    bottom: 10%
}

.story-page {
    padding: 70px 60px;
    position: relative;
}

.story-page-left {
    border-right: 0
}

.story-folio {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--gold-dark);
    letter-spacing: 4px;
    margin-bottom: 24px;
    text-align: center;
    opacity: .8;
}

.story-title {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 22px;
    text-align: center;
}

.story-dropcap {
    font-size: 16px;
    color: var(--brown);
    line-height: 1.9;
    margin-bottom: 18px;
}

.dropcap {
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 500;
    float: left;
    line-height: 0.9;
    margin: 4px 12px 0 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.story-page p:not(.story-dropcap) {
    font-size: 15.5px;
    color: var(--brown-soft);
    line-height: 1.9;
    margin-bottom: 14px;
}

@media (max-width: 900px) {
    .story-book {
        grid-template-columns: 1fr
    }

    .story-book-spine {
        left: 0;
        right: 0;
        top: 50%;
        width: auto;
        height: 2px;
        background: linear-gradient(90deg,
        transparent 0%, rgba(201, 168, 106, .3) 20%,
        rgba(201, 168, 106, .5) 50%, rgba(201, 168, 106, .3) 80%,
        transparent 100%);
        transform: translateY(-50%);
    }

    .story-book-spine::before, .story-book-spine::after {
        left: auto;
        top: -3px
    }

    .story-book-spine::before {
        left: 10%
    }

    .story-book-spine::after {
        right: 10%;
        bottom: auto
    }

    .story-page {
        padding: 50px 32px
    }
}

/* === MANIFESTO === */
.about-manifesto {
    padding: 130px 0;
    background: linear-gradient(135deg, var(--burgundy-dark), #1a0a13);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fffaf0;
}

.about-manifesto-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.manifesto-medal {
    position: absolute;
    color: var(--gold);
    opacity: .08;
    animation: bridalRotate 80s linear infinite;
}

.manifesto-medal-1 {
    top: 5%;
    left: 5%;
    width: 220px;
    height: 220px
}

.manifesto-medal-2 {
    bottom: 5%;
    right: 5%;
    width: 280px;
    height: 280px;
    animation-direction: reverse
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.manifesto-title {
    color: #fffaf0;
    font-size: clamp(36px, 5vw, 62px);
    margin-bottom: 20px;
}

.manifesto-divider {
    width: 200px;
    height: 40px;
    margin: 0 auto 40px;
    color: var(--gold);
    opacity: .7;
}

.manifesto-divider svg {
    width: 100%;
    height: 100%
}

.manifesto-paragraphs p {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(19px, 2.2vw, 26px);
    line-height: 1.6;
    color: #f4e4d6;
    margin-bottom: 22px;
    font-weight: 300;
}

.manifesto-paragraphs p em {
    font-weight: 400;
}

.manifesto-signature {
    margin-top: 40px;
    color: var(--gold-light);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: .8;
}

/* === PILLARS === */
.about-pillars {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
    position: relative;
    overflow: hidden;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }
}

@media (max-width: 500px) {
    .pillars-grid {
        grid-template-columns: 1fr
    }
}

.pillar-card {
    background: #fff;
    border-radius: 24px;
    padding: 60px 28px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 168, 106, .2);
    position: relative;
    transition: .4s;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
}

.pillar-roman {
    font-family: var(--serif);
    font-style: italic;
    font-size: 56px;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 500;
}

.pillar-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.pillar-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 12px 30px rgba(107, 31, 58, .25);
    position: relative;
}

.pillar-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    opacity: .3;
}

.pillar-card h3 {
    font-size: 24px;
    color: var(--burgundy);
    margin-bottom: 14px;
}

.pillar-card p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.75;
}

/* === JOURNEY === */
.about-journey {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--blush) 100%);
    position: relative;
    overflow: hidden;
}

.journey-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 30px 24px 60px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.journey-track::-webkit-scrollbar {
    height: 6px
}

.journey-track::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.journey-track::-webkit-scrollbar-track {
    background: rgba(201, 168, 106, .15)
}

.journey-line {
    position: absolute;
    top: 95px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg,
    transparent, var(--gold) 5%, var(--gold) 95%, transparent);
    z-index: 0;
}

.journey-stop {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 24px;
    padding: 50px 26px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 168, 106, .2);
    position: relative;
    z-index: 1;
    margin-top: 60px;
    transition: .4s;
}

.journey-stop:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.journey-year {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: var(--gold-light);
    padding: 10px 22px;
    border-radius: 30px;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(107, 31, 58, .3);
    white-space: nowrap;
    border: 2px solid #fff;
}

.journey-medal {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    color: var(--gold-dark);
}

.journey-medal svg {
    width: 100%;
    height: 100%
}

.journey-stop h3 {
    font-size: 20px;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.journey-stop p {
    font-size: 14px;
    color: var(--brown-soft);
    line-height: 1.7;
}

/* === TEAM === */
.about-team {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr
    }
}

.team-card {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 30px 36px;
    border: 1px solid rgba(201, 168, 106, .25);
    text-align: center;
    transition: .4s;
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.team-card-featured {
    background: linear-gradient(135deg, #fff, #fef9ed);
    border: 1.5px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.team-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--burgundy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 14px 30px rgba(201, 168, 106, .35);
}

.team-card h3 {
    font-size: 23px;
    color: var(--burgundy);
    margin-bottom: 12px;
}

.team-card p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.75;
    margin-bottom: 20px;
}

.team-card-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(107, 31, 58, .08);
    color: var(--burgundy);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.team-note {
    max-width: 720px;
    margin: 50px auto 0;
    padding: 22px 28px;
    background: rgba(255, 255, 255, .6);
    border-radius: 16px;
    border-left: 4px solid var(--gold);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.team-note i {
    color: var(--gold-dark);
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.team-note p {
    font-size: 14px;
    color: var(--brown-soft);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* === PLACE === */
.about-place {
    padding: 130px 0;
    background: var(--ivory);
}

.place-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

@media (max-width: 900px) {
    .place-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }
}

.place-text .eyebrow {
    margin-bottom: 18px
}

.place-text h2 {
    margin-bottom: 24px
}

.place-text p {
    font-size: 16px;
    color: var(--brown-soft);
    line-height: 1.85;
    margin-bottom: 16px;
}

.place-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

@media (max-width: 500px) {
    .place-features {
        grid-template-columns: 1fr
    }
}

.place-feat {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 106, .2);
    transition: .3s;
}

.place-feat:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.place-feat i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.place-feat strong {
    display: block;
    color: var(--burgundy);
    font-family: var(--serif);
    font-size: 18px;
    margin-bottom: 2px;
}

.place-feat small {
    color: var(--text-muted);
    font-size: 12.5px;
    letter-spacing: .3px;
}

.place-image {
    position: relative;
}

.place-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.place-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 250, 240, .95);
    backdrop-filter: blur(20px);
    padding: 14px 22px;
    border-radius: 50px;
    color: var(--burgundy);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 14px 30px rgba(107, 31, 58, .18);
}

.place-image-badge i {
    color: var(--gold-dark)
}

/* === NUMBERS === */
.about-numbers {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    position: relative;
    overflow: hidden;
}

.about-numbers::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 106, .15), transparent 50%);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 700px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }
}

.number-item {
    text-align: center;
    color: #fff
}

.number-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    color: var(--gold-light);
}

.number-icon i {
    font-size: 38px
}

.number-icon svg {
    width: 100%;
    height: 100%
}

.number-value {
    font-family: var(--serif);
    font-size: clamp(44px, 5.5vw, 66px);
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
}

.number-value sup {
    font-size: 0.5em;
    color: var(--gold);
    margin-left: 2px;
}

.number-label {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #f4e4d6;
    font-weight: 500;
}

/* === CLOSING === */
.about-closing {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-arch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    color: var(--gold-dark);
    opacity: .1;
    pointer-events: none;
}

.closing-arch svg {
    width: 100%;
    height: 100%
}

.closing-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.closing-content h2 {
    font-size: clamp(34px, 5vw, 58px);
    margin-bottom: 22px;
}

.closing-content p {
    font-size: 17px;
    color: var(--brown-soft);
    line-height: 1.85;
    margin-bottom: 36px;
}

.closing-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .about-story {
        padding: 80px 0
    }

    .about-manifesto {
        padding: 80px 0
    }

    .about-pillars {
        padding: 80px 0
    }

    .about-journey {
        padding: 80px 0
    }

    .about-team {
        padding: 80px 0
    }

    .about-place {
        padding: 80px 0
    }

    .about-numbers {
        padding: 70px 0
    }

    .about-closing {
        padding: 80px 0
    }

    .closing-arch {
        width: 400px;
        height: 400px
    }
}

/* ===================================================
   TURKISH BATH PAGE — Magazine cover & spread design
   =================================================== */

/* === HAMAM HERO === */
.hamam-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 140px 24px 100px;
}

.hamam-hero-marble {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #2d1820 0%, #1a0a13 50%, #2d1820 100%);
}

.hamam-hero-marble::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 20% 30%, rgba(201, 168, 106, .12) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(212, 165, 116, .08) 0%, transparent 40%),
    repeating-linear-gradient(45deg,
            transparent 0,
            transparent 20px,
            rgba(201, 168, 106, .02) 20px,
            rgba(201, 168, 106, .02) 22px);
}

.hamam-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .25;
}

.hamam-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) saturate(0.7);
}

.hamam-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(26, 10, 19, .7) 80%);
}

.hamam-hero-dome {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 800px;
    height: 600px;
    color: var(--gold);
    opacity: .1;
    z-index: 2;
    pointer-events: none;
}

.hamam-hero-dome svg {
    width: 100%;
    height: 100%
}

.hamam-hero-stars {
    position: absolute;
    width: 200px;
    height: 60px;
    color: var(--gold-light);
    opacity: .5;
    z-index: 2;
}

.hamam-hero-stars-l {
    top: 25%;
    left: 8%
}

.hamam-hero-stars-r {
    bottom: 25%;
    right: 8%
}

.hamam-hero-stars svg {
    width: 100%;
    height: 100%
}

.hamam-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    animation: fadeUp 1.4s ease both;
}

.hamam-hero-edition {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(201, 168, 106, .4);
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 6px;
    margin-bottom: 30px;
    background: rgba(255, 250, 240, .05);
    backdrop-filter: blur(10px);
    border-radius: 4px;
}

.hamam-hero-title {
    font-family: var(--serif);
    font-size: clamp(64px, 12vw, 160px);
    font-weight: 400;
    line-height: .9;
    color: #fffaf0;
    letter-spacing: -2px;
    margin-bottom: 24px;
    text-shadow: 0 6px 50px rgba(0, 0, 0, .5);
}

.hamam-hero-title em {
    font-weight: 300;
    font-style: italic;
}

.hamam-hero-divider {
    width: 400px;
    max-width: 80%;
    height: 60px;
    margin: 20px auto 30px;
    color: var(--gold);
    opacity: .7;
}

.hamam-hero-divider svg {
    width: 100%;
    height: 100%
}

.hamam-hero-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(17px, 2vw, 22px);
    color: #f4e4d6;
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-weight: 300;
}

.hamam-hero-meta {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: #f4e4d6;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hamam-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 250, 240, .15);
    border-radius: 30px;
    background: rgba(255, 250, 240, .04);
    backdrop-filter: blur(8px);
}

.hamam-hero-meta i {
    color: var(--gold-light)
}

.hamam-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 46px;
    border: 1.5px solid var(--gold-light);
    border-radius: 20px;
    z-index: 3;
    opacity: .7;
}

.hamam-hero-scroll span {
    display: block;
    width: 4px;
    height: 10px;
    background: var(--gold-light);
    border-radius: 2px;
    margin: 8px auto 0;
    animation: scroll 1.8s infinite;
}

@media (max-width: 600px) {
    .hamam-hero {
        padding: 120px 18px 80px
    }

    .hamam-hero-dome {
        width: 500px;
        height: 400px
    }

    .hamam-hero-stars {
        display: none
    }

    .hamam-hero-meta {
        gap: 12px
    }

    .hamam-hero-meta span {
        padding: 6px 12px;
        font-size: 11px
    }
}

/* === HISTORY SPREAD — magazine === */
.hamam-history {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #fcf5e8 100%);
    position: relative;
}

.hamam-spread {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .hamam-spread {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.hamam-spread-left {
    position: sticky;
    top: 100px;
    padding: 30px 0;
}

.hamam-folio {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--gold-dark);
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: .8;
}

.hamam-spread-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hamam-spread-lede {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--brown-soft);
    line-height: 1.7;
    padding-left: 24px;
    border-left: 3px solid var(--gold);
}

.hamam-spread-right {
    position: relative;
    background: rgba(255, 250, 240, .5);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 106, .2);
}

.hamam-spread-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    opacity: .6;
}

.hamam-corner-tl {
    top: 10px;
    left: 10px;
    border-right: 0;
    border-bottom: 0
}

.hamam-corner-tr {
    top: 10px;
    right: 10px;
    border-left: 0;
    border-bottom: 0
}

.hamam-corner-bl {
    bottom: 10px;
    left: 10px;
    border-right: 0;
    border-top: 0
}

.hamam-corner-br {
    bottom: 10px;
    right: 10px;
    border-left: 0;
    border-top: 0
}

.hamam-spread-tile {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--gold-dark);
    opacity: .8;
}

.hamam-spread-tile svg {
    width: 100%;
    height: 100%
}

.hamam-spread-right p {
    font-size: 15.5px;
    color: var(--brown);
    line-height: 1.85;
    margin-bottom: 18px;
}

.hamam-spread-right p:last-child {
    margin-bottom: 0
}

.hamam-spread-right p strong {
    font-family: var(--serif);
    font-style: italic;
    color: var(--burgundy);
    font-weight: 600;
}

/* === CHAMBERS === */
.hamam-chambers {
    padding: 130px 0;
    background: linear-gradient(180deg, #fcf5e8 0%, var(--cream-warm) 100%);
}

.chambers-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .chambers-row {
        grid-template-columns: 1fr
    }
}

.chamber-card {
    position: relative;
    padding: 60px 30px 36px;
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
    transition: .4s;
}

.chamber-card:hover {
    transform: translateY(-10px)
}

.chamber-cold {
    background: linear-gradient(180deg, #e8f1f5 0%, #d6e7ee 100%);
    color: #2c4858;
}

.chamber-warm {
    background: linear-gradient(180deg, #faf3e3 0%, #f5e7c4 100%);
    color: #6b4838;
}

.chamber-hot {
    background: linear-gradient(180deg, #f5e0d4 0%, #e8c2a8 100%);
    color: #7a2f1f;
}

.chamber-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.chamber-cold .chamber-icon {
    color: #4a7a96
}

.chamber-warm .chamber-icon {
    color: #b8902a
}

.chamber-hot .chamber-icon {
    color: #a8421f
}

.chamber-temp {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: .8;
}

.chamber-card h3 {
    font-family: var(--serif);
    font-size: 32px;
    color: inherit;
    margin-bottom: 8px;
    font-weight: 500;
}

.chamber-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 30px;
    background: rgba(0, 0, 0, .08);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}

.chamber-card p {
    font-size: 14.5px;
    line-height: 1.75;
    opacity: .9;
}

.chamber-step {
    position: absolute;
    top: 20px;
    right: 26px;
    font-family: var(--serif);
    font-size: 50px;
    font-style: italic;
    font-weight: 500;
    color: currentColor;
    opacity: .15;
}

/* === RITUAL — büyük numara === */
.hamam-ritual {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
    position: relative;
}

.ritual-stack {
    max-width: 850px;
    margin: 0 auto;
    counter-reset: ritual;
}

.ritual-step {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(201, 168, 106, .25);
    position: relative;
}

.ritual-step:last-child {
    border-bottom: 0
}

.ritual-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 400;
    line-height: 0.85;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--rose));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.ritual-body h3 {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--burgundy);
    margin-bottom: 12px;
}

.ritual-body p {
    font-size: 16px;
    color: var(--brown-soft);
    line-height: 1.85;
}

@media (max-width: 700px) {
    .ritual-step {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center
    }

    .ritual-num {
        text-align: center
    }
}

/* === BENEFITS === */
.hamam-benefits {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 500px) {
    .benefits-grid {
        grid-template-columns: 1fr
    }
}

.benefit-tile {
    background: #fff;
    padding: 36px 26px 30px;
    border-radius: 18px;
    border: 1px solid rgba(201, 168, 106, .18);
    text-align: center;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.benefit-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: .35s;
    transform-origin: left;
}

.benefit-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.benefit-tile:hover::before {
    transform: scaleX(1)
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blush), var(--cream-warm));
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid rgba(201, 168, 106, .25);
}

.benefit-tile h3 {
    font-size: 19px;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.benefit-tile p {
    font-size: 13.5px;
    color: var(--brown-soft);
    line-height: 1.7;
}

/* === COMPARE TABLE === */
.hamam-compare {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--blush) 0%, var(--cream-warm) 100%);
}

.compare-table {
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 168, 106, .2);
}

.compare-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    border-bottom: 1px solid rgba(201, 168, 106, .15);
    align-items: center;
}

.compare-row:last-child {
    border-bottom: 0
}

.compare-row > div {
    padding: 22px 26px;
}

.compare-header {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: #fff;
}

.compare-header > div {
    padding: 28px 26px;
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: .5px;
}

.compare-header .compare-col-esma {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--burgundy-dark);
}

.compare-feature {
    background: rgba(244, 228, 214, .4);
    font-weight: 600;
    color: var(--burgundy);
    font-size: 14.5px;
}

.compare-col-trad {
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
}

.compare-col-esma {
    color: var(--burgundy);
    font-size: 14.5px;
    font-weight: 600;
    background: rgba(201, 168, 106, .06);
}

.compare-col-esma i {
    color: var(--gold-dark);
    margin-right: 8px;
}

@media (max-width: 700px) {
    .compare-row {
        grid-template-columns: 1fr
    }

    .compare-row > div {
        padding: 14px 20px
    }

    .compare-header {
        display: none
    }

    .compare-feature {
        background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
        color: #fff;
        font-family: var(--serif);
        font-size: 17px;
    }

    .compare-col-trad::before {
        content: "Geleneksel: ";
        color: var(--gold-dark);
        font-weight: 600
    }

    .compare-col-esma::before {
        content: "Esma Sultan: ";
        color: var(--gold-dark);
        font-weight: 600
    }
}

/* === DOME BAND === */
.hamam-dome-band {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 130px 24px;
}

.hamam-dome-band-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0a13 0%, #2d0d1a 50%, #1a0a13 100%);
}

.hamam-dome-band-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(201, 168, 106, .15) 0%, transparent 60%);
}

.hamam-dome-band-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    color: #fff;
}

.hamam-dome-big {
    width: 280px;
    height: 200px;
    margin: 0 auto 20px;
    color: var(--gold);
    display: block;
}

.hamam-dome-band-content h2 {
    color: #fffaf0;
    font-size: clamp(34px, 5vw, 56px);
    margin: 18px 0 20px;
}

.hamam-dome-band-content p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    line-height: 1.7;
    color: #f4e4d6;
    font-weight: 300;
}

/* === TIPS === */
.hamam-tips {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 900px) {
    .tips-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 500px) {
    .tips-grid {
        grid-template-columns: 1fr
    }
}

.tip-card {
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 36px 28px 28px;
    border: 1px solid rgba(201, 168, 106, .2);
    position: relative;
    transition: .4s;
}

.tip-card:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.tip-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 42px;
    color: var(--blush);
    line-height: 1;
    font-weight: 500;
}

.tip-card h4 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--burgundy);
    margin-bottom: 10px;
    margin-right: 50px;
}

.tip-card p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.75;
}

/* === FINAL CTA === */
.hamam-final {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
}

.hamam-final-marble {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #faf3e3 0%, #fef9ed 50%, #faf3e3 100%);
}

.hamam-final-marble::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(201, 168, 106, .15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(212, 165, 116, .12) 0%, transparent 50%),
    repeating-linear-gradient(135deg,
            transparent 0,
            transparent 30px,
            rgba(201, 168, 106, .04) 30px,
            rgba(201, 168, 106, .04) 32px);
}

.hamam-final-card {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 40px 90px rgba(107, 31, 58, .2);
    border: 1px solid rgba(201, 168, 106, .25);
}

.hamam-final-fountain {
    width: 70px;
    height: 90px;
    margin: 0 auto 16px;
    color: var(--gold-dark);
    display: block;
}

.hamam-final-card h2 {
    font-size: clamp(34px, 5vw, 52px);
    margin: 14px 0 20px;
}

.hamam-final-card p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--brown-soft);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 32px;
}

.hamam-final-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .hamam-final-card {
        padding: 50px 28px
    }

    .hamam-history {
        padding: 80px 0
    }

    .hamam-chambers {
        padding: 80px 0
    }

    .hamam-ritual {
        padding: 80px 0
    }

    .hamam-benefits {
        padding: 80px 0
    }

    .hamam-compare {
        padding: 80px 0
    }

    .hamam-tips {
        padding: 80px 0
    }

    .hamam-final {
        padding: 80px 0
    }
}

/* ===================================================
   FOAM RITUAL PAGE — Bubble & water aesthetic
   =================================================== */

/* === KESE HERO === */
.kese-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 140px 24px 100px;
}

.kese-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #e8f2f5 0%, #c4dde6 40%, #a8c9d6 100%);
}

.kese-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
}

.kese-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .35;
}

.kese-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) saturate(0.8);
}

.kese-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(168, 201, 214, 0.6) 80%);
}

/* Köpük baloncukları */
.kese-bubbles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    will-change: transform;
    bottom: -100px;
    animation: bubbleRise linear infinite;
}

.bubble-1 {
    width: 60px;
    height: 60px;
    left: 8%;
    animation-duration: 14s;
    animation-delay: 0s
}

.bubble-2 {
    width: 35px;
    height: 35px;
    left: 18%;
    animation-duration: 11s;
    animation-delay: -3s
}

.bubble-3 {
    width: 80px;
    height: 80px;
    left: 32%;
    animation-duration: 17s;
    animation-delay: -7s
}

.bubble-4 {
    width: 45px;
    height: 45px;
    left: 48%;
    animation-duration: 13s;
    animation-delay: -2s
}

.bubble-5 {
    width: 25px;
    height: 25px;
    left: 58%;
    animation-duration: 10s;
    animation-delay: -5s
}

.bubble-6 {
    width: 70px;
    height: 70px;
    left: 70%;
    animation-duration: 16s;
    animation-delay: -8s
}

.bubble-7 {
    width: 40px;
    height: 40px;
    left: 82%;
    animation-duration: 12s;
    animation-delay: -1s
}

.bubble-8 {
    width: 55px;
    height: 55px;
    left: 92%;
    animation-duration: 15s;
    animation-delay: -4s
}

.bubble-9 {
    width: 30px;
    height: 30px;
    left: 12%;
    animation-duration: 13s;
    animation-delay: -6s
}

.bubble-10 {
    width: 65px;
    height: 65px;
    left: 78%;
    animation-duration: 18s;
    animation-delay: -9s
}

@keyframes bubbleRise {
    0% {
        transform: translate3d(0, 0, 0) scale(0.3);
        opacity: 0;
    }
    10% {
        opacity: 0.7
    }
    50% {
        transform: translate3d(20px, -50vh, 0) scale(1);
        opacity: 0.9;
    }
    90% {
        opacity: 0.5
    }
    100% {
        transform: translate3d(-30px, -110vh, 0) scale(0.6);
        opacity: 0;
    }
}

.kese-hero-cloud {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
    animation: cloudFloat 6s ease-in-out infinite;
}

.kese-hero-cloud svg {
    width: 100%;
    height: 100%
}

@keyframes cloudFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0)
    }
    50% {
        transform: translateX(-50%) translateY(-15px)
    }
}

.kese-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    animation: fadeUp 1.4s ease both;
}

.kese-hero-meta {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(107, 31, 58, 0.3);
    color: var(--burgundy);
    font-size: 11px;
    letter-spacing: 6px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    font-weight: 600;
}

.kese-hero-title {
    font-family: var(--serif);
    font-size: clamp(60px, 11vw, 140px);
    font-weight: 400;
    line-height: 0.95;
    color: var(--burgundy-dark);
    letter-spacing: -2px;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(255, 255, 255, 0.5);
}

.kese-hero-title em {
    font-weight: 300;
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-dark), var(--rose));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.kese-hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.tagline-word {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(17px, 2vw, 22px);
    color: var(--burgundy);
    font-weight: 500;
}

.tagline-dot {
    color: var(--gold-dark);
    font-size: 14px;
}

.kese-hero-sub {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--brown);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.85;
    font-weight: 400;
}

.kese-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    box-shadow: 0 20px 50px rgba(107, 31, 58, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
}

.kese-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(201, 168, 106, 0.4);
}

.kese-stat-value {
    font-family: var(--serif);
    font-size: 30px;
    color: var(--burgundy);
    font-weight: 500;
    line-height: 1;
}

.kese-stat-label {
    font-size: 11px;
    color: var(--brown-soft);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.kese-hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 40px;
    color: var(--burgundy);
    opacity: 0.6;
    z-index: 3;
    animation: dropFall 2s ease-in-out infinite;
}

.kese-hero-scroll svg {
    width: 100%;
    height: 100%
}

@keyframes dropFall {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.6
    }
    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 1
    }
}

@media (max-width: 600px) {
    .kese-hero {
        padding: 120px 18px 80px
    }

    .kese-hero-cloud {
        width: 400px;
        height: 200px
    }

    .kese-hero-stats {
        gap: 20px;
        padding: 16px 24px
    }

    .kese-stat-value {
        font-size: 24px
    }
}

/* === ANATOMY === */
.kese-anatomy {
    padding: 130px 0;
    background: linear-gradient(180deg, #f5fafb 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.anatomy-stage {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 600px;
}

.anatomy-mitt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 340px;
    color: var(--burgundy);
}

.anatomy-mitt svg {
    width: 100%;
    height: 100%
}

.anatomy-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
}

.anatomy-label-tl {
    top: 8%;
    left: 0
}

.anatomy-label-tr {
    top: 8%;
    right: 0;
    flex-direction: row-reverse
}

.anatomy-label-bl {
    bottom: 8%;
    left: 0
}

.anatomy-label-br {
    bottom: 8%;
    right: 0;
    flex-direction: row-reverse
}

.anatomy-label-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(201, 168, 106, 0.25),
    0 0 0 16px rgba(201, 168, 106, 0.1);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.anatomy-label-card {
    width: 260px;
    background: #fff;
    padding: 20px 22px 22px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 168, 106, 0.2);
    position: relative;
}

.anatomy-label-num {
    position: absolute;
    top: -14px;
    left: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 16px;
}

.anatomy-label-tr .anatomy-label-num {
    left: auto;
    right: 18px
}

.anatomy-label-br .anatomy-label-num {
    left: auto;
    right: 18px
}

.anatomy-label-card h4 {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--burgundy);
    margin: 6px 0 8px;
}

.anatomy-label-card p {
    font-size: 13.5px;
    color: var(--brown-soft);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) {
    .anatomy-stage {
        height: auto;
        padding-top: 380px
    }

    .anatomy-mitt {
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 220px;
        height: 270px;
    }

    .anatomy-label {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 0 auto 16px;
        max-width: 360px;
        flex-direction: row !important;
    }
}

/* === SOAPS === */
.kese-soaps {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.soaps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

@media (max-width: 900px) {
    .soaps-grid {
        grid-template-columns: 1fr
    }
}

.soap-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 30px;
    text-align: center;
    border: 1px solid rgba(201, 168, 106, 0.2);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.soap-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(201, 168, 106, 0.08), transparent);
}

.soap-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.soap-olive::before {
    background: linear-gradient(180deg, rgba(154, 188, 122, 0.15), transparent)
}

.soap-laurel::before {
    background: linear-gradient(180deg, rgba(101, 142, 96, 0.18), transparent)
}

.soap-lavender::before {
    background: linear-gradient(180deg, rgba(167, 101, 168, 0.15), transparent)
}

.soap-illustration {
    position: relative;
    width: 180px;
    height: 110px;
    margin: 0 auto 24px;
    color: var(--burgundy);
}

.soap-illustration svg {
    width: 100%;
    height: 100%
}

.soap-leaf {
    position: absolute;
    top: -10px;
    right: -8px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b8a3f, #98b56b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 6px 14px rgba(107, 138, 63, 0.3);
}

.soap-leaf-green {
    background: linear-gradient(135deg, #3d6b35, #6a9658)
}

.soap-leaf-purple {
    background: linear-gradient(135deg, #735687, #a685c5)
}

.soap-card h3 {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--burgundy);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.soap-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 30px;
    background: rgba(107, 31, 58, 0.08);
    color: var(--burgundy);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.soap-card p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.75;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.soap-features {
    list-style: none;
    text-align: left;
    max-width: 220px;
    margin: 0 auto;
    padding: 0;
}

.soap-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 13.5px;
    color: var(--brown);
}

.soap-features li i {
    color: var(--gold-dark);
    font-size: 12px;
}

.soap-note {
    max-width: 720px;
    margin: 50px auto 0;
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border-left: 4px solid var(--gold);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.soap-note i {
    color: var(--gold-dark);
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.soap-note p {
    font-size: 14px;
    color: var(--brown-soft);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* === FLOW === */
.kese-flow {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream-warm) 0%, #f5fafb 100%);
    position: relative;
    overflow: hidden;
}

.flow-river {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    padding: 30px 0;
}

.flow-droplets {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 60px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    pointer-events: none;
    opacity: 0.15;
    color: var(--burgundy);
}

.flow-droplets svg {
    width: 30px;
    height: 40px;
    animation: dropFall 2.5s ease-in-out infinite;
}

.flow-droplets svg:nth-child(2) {
    animation-delay: -0.5s
}

.flow-droplets svg:nth-child(3) {
    animation-delay: -1s
}

.flow-droplets svg:nth-child(4) {
    animation-delay: -1.5s
}

.flow-droplets svg:nth-child(5) {
    animation-delay: -2s
}

.flow-stage {
    background: #fff;
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 168, 106, 0.2);
    position: relative;
    margin-bottom: 24px;
    z-index: 1;
    transition: 0.4s;
}

.flow-stage:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.flow-time {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: #fff;
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    margin-right: 10px;
}

.flow-temp {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(201, 168, 106, 0.15);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.flow-stage h3 {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.flow-stage p {
    font-size: 15px;
    color: var(--brown-soft);
    line-height: 1.8;
    margin: 0;
}

/* === SKIN === */
.kese-skin {
    padding: 130px 0;
    background: linear-gradient(180deg, #f5fafb 0%, var(--cream) 100%);
}

.skin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .skin-content {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.skin-diagram {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 168, 106, 0.2);
}

.skin-diagram svg {
    width: 100%;
    height: auto
}

.skin-lead {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    color: var(--burgundy);
    line-height: 1.7;
    margin-bottom: 26px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

.skin-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 26px 0;
}

.skin-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    border-left: 4px solid var(--gold-dark);
}

.skin-stat-num {
    font-family: var(--serif);
    font-size: 38px;
    color: var(--burgundy);
    font-weight: 500;
    line-height: 1;
    min-width: 100px;
}

.skin-stat-num small {
    font-size: 14px;
    color: var(--gold-dark);
    margin-left: 4px;
    font-style: italic;
}

.skin-stat-text {
    font-size: 14px;
    color: var(--brown-soft);
    line-height: 1.6;
}

.skin-text > p:last-child {
    font-size: 15.5px;
    color: var(--brown);
    line-height: 1.85;
}

.skin-text em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
}

/* === CLOUD BAND === */
.kese-cloud-band {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 130px 24px;
}

.cloud-band-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d4e8f0 0%, #b8d6e0 50%, #a8c9d6 100%);
}

.cloud-band-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.6) 0%, transparent 50%);
}

.cloud-band-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cb-bubble {
    position: absolute;
    bottom: -100px;
    animation: bubbleRise linear infinite;
}

.cb-b1 {
    width: 60px;
    height: 60px;
    left: 5%;
    animation-duration: 15s
}

.cb-b2 {
    width: 40px;
    height: 40px;
    left: 18%;
    animation-duration: 11s;
    animation-delay: -3s
}

.cb-b3 {
    width: 80px;
    height: 80px;
    left: 32%;
    animation-duration: 18s;
    animation-delay: -8s
}

.cb-b4 {
    width: 50px;
    height: 50px;
    left: 48%;
    animation-duration: 13s;
    animation-delay: -2s
}

.cb-b5 {
    width: 30px;
    height: 30px;
    left: 62%;
    animation-duration: 10s;
    animation-delay: -5s
}

.cb-b6 {
    width: 70px;
    height: 70px;
    left: 75%;
    animation-duration: 16s;
    animation-delay: -7s
}

.cb-b7 {
    width: 45px;
    height: 45px;
    left: 88%;
    animation-duration: 12s;
    animation-delay: -1s
}

.cb-b8 {
    width: 35px;
    height: 35px;
    left: 95%;
    animation-duration: 14s;
    animation-delay: -4s
}

.cloud-band-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.cloud-band-quote-mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 120px;
    color: var(--burgundy);
    opacity: 0.2;
    line-height: 0.7;
    margin-bottom: 0;
}

.cloud-band-content p {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(22px, 3vw, 32px);
    color: var(--burgundy-dark);
    line-height: 1.5;
    font-weight: 300;
    margin: 0 auto 28px;
}

.cloud-band-divider {
    width: 80px;
    height: 2px;
    background: var(--burgundy);
    margin: 0 auto 16px;
    opacity: 0.4;
}

.cloud-band-caption {
    font-size: 13px;
    color: var(--burgundy);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

/* === MISTAKES === */
.kese-mistakes {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 900px) {
    .mistakes-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 500px) {
    .mistakes-grid {
        grid-template-columns: 1fr
    }
}

.mistake-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 26px;
    border: 1px solid rgba(201, 168, 106, 0.15);
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

.mistake-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mistake-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
}

.mistake-do {
    border-top: 4px solid #6b8a3f;
}

.mistake-do .mistake-icon {
    background: linear-gradient(135deg, #6b8a3f, #98b56b);
    color: #fff;
}

.mistake-dont {
    border-top: 4px solid #a8421f;
}

.mistake-dont .mistake-icon {
    background: linear-gradient(135deg, #a8421f, #c95838);
    color: #fff;
}

.mistake-card h4 {
    font-family: var(--serif);
    font-size: 21px;
    color: var(--burgundy);
    margin-bottom: 8px;
}

.mistake-card p {
    font-size: 14px;
    color: var(--brown-soft);
    line-height: 1.7;
    margin: 0;
}

/* === KESE FINAL === */
.kese-final {
    position: relative;
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #f0f6f8 100%);
    overflow: hidden;
}

.kese-final-water {
    position: absolute;
    top: 40px;
    right: 8%;
    z-index: 1;
    opacity: 0.2;
    color: var(--burgundy);
    display: flex;
    gap: 20px;
}

.kese-final-water svg {
    width: 40px;
    height: 56px;
    animation: dropFall 2.5s ease-in-out infinite;
}

.kese-final-water svg:nth-child(2) {
    animation-delay: -0.7s
}

.kese-final-water svg:nth-child(3) {
    animation-delay: -1.4s
}

.kese-final-card {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 40px 90px rgba(107, 31, 58, 0.18);
    border: 1px solid rgba(201, 168, 106, 0.25);
}

.kese-final-icon {
    width: 80px;
    height: 100px;
    margin: 0 auto 18px;
    color: var(--burgundy);
}

.kese-final-icon svg {
    width: 100%;
    height: 100%
}

.kese-final-card h2 {
    font-size: clamp(34px, 5vw, 54px);
    margin: 14px 0 20px;
}

.kese-final-card p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--brown-soft);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 32px;
}

.kese-final-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .kese-anatomy {
        padding: 80px 0
    }

    .kese-soaps {
        padding: 80px 0
    }

    .kese-flow {
        padding: 80px 0
    }

    .kese-skin {
        padding: 80px 0
    }

    .kese-mistakes {
        padding: 80px 0
    }

    .kese-final {
        padding: 80px 0
    }

    .kese-final-card {
        padding: 50px 28px
    }

    .kese-final-water {
        display: none
    }
}

/* ===================================================
   MASSAGE PAGE — Touch & Flow aesthetic
   =================================================== */

/* === MASAJ HERO — Cinematic Oil Flow === */
.masaj-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 24px 100px;
    background: #0f0408;
    isolation: isolate;
}

/* Layer 0 — Background image with dramatic treatment */
.masaj-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.masaj-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: blur(2px) saturate(1.3) contrast(1.1);
    animation: bgBreath 20s ease-in-out infinite;
}

@keyframes bgBreath {
    0%, 100% {
        transform: scale(1.05);
        filter: blur(2px) saturate(1.3) contrast(1.1)
    }
    50% {
        transform: scale(1.12);
        filter: blur(3px) saturate(1.4) contrast(1.15)
    }
}

/* Layer 1 — Vignette + dramatic overlay */
.masaj-hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 4, 8, 0.5) 60%, rgba(15, 4, 8, 0.92) 100%),
    linear-gradient(180deg, rgba(45, 24, 32, 0.4) 0%, transparent 30%, transparent 70%, rgba(15, 4, 8, 0.7) 100%);
}

/* Layer 2 — Animated gold particles (aroma) */
.masaj-hero-aroma {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.aroma-particle {
    position: absolute;
    bottom: -50px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 200, 150, 0.9) 0%, rgba(201, 168, 106, 0.3) 60%, transparent 100%);
    filter: blur(1px);
    animation: aromaRise linear infinite;
}

.aroma-particle:nth-child(1) {
    left: 8%;
    width: 8px;
    height: 8px;
    animation-duration: 12s;
    animation-delay: 0s
}

.aroma-particle:nth-child(2) {
    left: 18%;
    width: 4px;
    height: 4px;
    animation-duration: 9s;
    animation-delay: -2s
}

.aroma-particle:nth-child(3) {
    left: 28%;
    width: 10px;
    height: 10px;
    animation-duration: 14s;
    animation-delay: -5s
}

.aroma-particle:nth-child(4) {
    left: 42%;
    width: 5px;
    height: 5px;
    animation-duration: 11s;
    animation-delay: -3s
}

.aroma-particle:nth-child(5) {
    left: 55%;
    width: 7px;
    height: 7px;
    animation-duration: 13s;
    animation-delay: -7s
}

.aroma-particle:nth-child(6) {
    left: 68%;
    width: 4px;
    height: 4px;
    animation-duration: 10s;
    animation-delay: -1s
}

.aroma-particle:nth-child(7) {
    left: 78%;
    width: 9px;
    height: 9px;
    animation-duration: 15s;
    animation-delay: -8s
}

.aroma-particle:nth-child(8) {
    left: 88%;
    width: 5px;
    height: 5px;
    animation-duration: 12s;
    animation-delay: -4s
}

.aroma-particle:nth-child(9) {
    left: 35%;
    width: 6px;
    height: 6px;
    animation-duration: 13s;
    animation-delay: -6s
}

.aroma-particle:nth-child(10) {
    left: 62%;
    width: 8px;
    height: 8px;
    animation-duration: 11s;
    animation-delay: -9s
}

@keyframes aromaRise {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0) scale(0.4)
    }
    10% {
        opacity: 0.9;
        transform: translateX(5px) scale(1)
    }
    50% {
        transform: translateX(-15px) scale(1.1)
    }
    90% {
        opacity: 0.5;
        transform: translateX(20px) scale(0.9)
    }
    100% {
        bottom: 105%;
        opacity: 0;
        transform: translateX(-10px) scale(0.6)
    }
}

/* Layer 3 — Oil drop columns (3 channels, parallax) */
.masaj-hero-drops {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.drop-channel {
    position: absolute;
    top: -10%;
    bottom: 0;
    width: 30px;
}

.drop-channel-1 {
    left: 12%;
}

.drop-channel-2 {
    left: 28%;
}

.drop-channel-3 {
    right: 14%;
}

.drop-channel-4 {
    right: 30%;
}

.drop-channel .oil-drop-anim {
    position: absolute;
    left: 0;
    width: 16px;
    height: 26px;
    color: var(--gold);
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(201, 168, 106, 0.6));
    animation: oilFall 6s ease-in infinite;
}

.drop-channel-1 .oil-drop-anim:nth-child(1) {
    animation-delay: 0s
}

.drop-channel-1 .oil-drop-anim:nth-child(2) {
    animation-delay: 2.5s
}

.drop-channel-2 .oil-drop-anim:nth-child(1) {
    animation-delay: 1.2s;
    width: 12px;
    height: 20px
}

.drop-channel-2 .oil-drop-anim:nth-child(2) {
    animation-delay: 3.8s;
    width: 12px;
    height: 20px
}

.drop-channel-3 .oil-drop-anim:nth-child(1) {
    animation-delay: 0.6s
}

.drop-channel-3 .oil-drop-anim:nth-child(2) {
    animation-delay: 3.2s
}

.drop-channel-4 .oil-drop-anim:nth-child(1) {
    animation-delay: 1.8s;
    width: 12px;
    height: 20px
}

.drop-channel-4 .oil-drop-anim:nth-child(2) {
    animation-delay: 4.4s;
    width: 12px;
    height: 20px
}

.oil-drop-anim svg {
    width: 100%;
    height: 100%;
}

@keyframes oilFall {
    0% {
        top: -5%;
        opacity: 0;
        transform: scale(0.4)
    }
    12% {
        opacity: 0.95;
        transform: scale(1)
    }
    85% {
        opacity: 0.85;
        transform: scale(1.05)
    }
    100% {
        top: 105%;
        opacity: 0;
        transform: scale(0.7)
    }
}

/* Layer 4 — Flowing gold lines (left & right side decorations) */
.masaj-hero-flow-l,
.masaj-hero-flow-r {
    position: absolute;
    top: 50%;
    width: 220px;
    height: 400px;
    color: var(--gold);
    opacity: 0.3;
    z-index: 3;
    pointer-events: none;
}

.masaj-hero-flow-l {
    left: 3%;
    transform: translateY(-50%);
}

.masaj-hero-flow-r {
    right: 3%;
    transform: translateY(-50%) scaleX(-1);
}

.masaj-hero-flow-l svg,
.masaj-hero-flow-r svg {
    width: 100%;
    height: 100%;
}

.flow-line-path {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: flowDraw 4s ease-out forwards;
}

.masaj-hero-flow-r .flow-line-path {
    animation-delay: 0.5s;
}

@keyframes flowDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Layer 5 — Big touching hand (left bottom) */
.masaj-hero-hand-bottom {
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 320px;
    height: 380px;
    color: var(--gold);
    opacity: 0.35;
    z-index: 3;
    filter: drop-shadow(0 0 20px rgba(201, 168, 106, 0.3));
    animation: handPulse 5s ease-in-out infinite;
}

.masaj-hero-hand-bottom svg {
    width: 100%;
    height: 100%;
    transform: rotate(-15deg);
}

@keyframes handPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(0, 0)
    }
    50% {
        opacity: 0.45;
        transform: translate(8px, -8px)
    }
}

/* Layer 5b — Smaller pouring hand (right) */
.masaj-hero-hand-pouring {
    position: absolute;
    top: 18%;
    right: 5%;
    width: 200px;
    height: 240px;
    color: var(--gold-light);
    opacity: 0.4;
    z-index: 3;
    filter: drop-shadow(0 0 15px rgba(224, 200, 150, 0.4));
    animation: handFloat 7s ease-in-out infinite;
}

.masaj-hero-hand-pouring svg {
    width: 100%;
    height: 100%;
    transform: rotate(20deg);
}

@keyframes handFloat {
    0%, 100% {
        transform: translateY(0) rotate(20deg)
    }
    50% {
        transform: translateY(-18px) rotate(22deg)
    }
}

/* Layer 6 — Oil bottle in corner */
.masaj-hero-bottle {
    position: absolute;
    top: 15%;
    left: 6%;
    width: 90px;
    height: 130px;
    color: var(--gold);
    opacity: 0.4;
    z-index: 3;
    animation: bottleSway 6s ease-in-out infinite;
}

.masaj-hero-bottle svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 12px rgba(201, 168, 106, 0.4));
}

@keyframes bottleSway {
    0%, 100% {
        transform: rotate(-3deg)
    }
    50% {
        transform: rotate(3deg)
    }
}

/* Layer 7 — Rotating stamp */
.masaj-hero-stamp {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 130px;
    height: 130px;
    color: var(--gold);
    opacity: 0.4;
    z-index: 4;
    animation: stampRotate 50s linear infinite;
}

.masaj-hero-stamp svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(201, 168, 106, 0.3));
}

@keyframes stampRotate {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

/* Layer 8 — Top decorative ornament */
.masaj-hero-top-ornament {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 40px;
    color: var(--gold);
    opacity: 0.45;
    z-index: 4;
}

.masaj-hero-top-ornament svg {
    width: 100%;
    height: 100%;
}

/* Main content — z-index above everything */
.masaj-hero-content {
    position: relative;
    z-index: 5;
    max-width: 880px;
    text-align: center;
    animation: heroFadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.masaj-hero-edition {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 24px;
    border: 1px solid rgba(201, 168, 106, 0.4);
    border-radius: 40px;
    background: rgba(15, 4, 8, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 32px;
}

.masaj-hero-edition::before,
.masaj-hero-edition::after {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--gold);
}

.masaj-hero-title {
    font-family: var(--serif);
    font-size: clamp(58px, 10vw, 132px);
    font-weight: 400;
    line-height: 0.92;
    color: #fffaf0;
    letter-spacing: -2px;
    margin-bottom: 24px;
    text-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
}

.masaj-hero-title em {
    font-weight: 300;
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--rose) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.masaj-hero-title em::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.masaj-hero-divider-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 28px auto 30px;
    width: 380px;
    max-width: 90%;
    color: var(--gold-light);
}

.masaj-hero-divider-line .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.masaj-hero-divider-line .ornament {
    font-size: 12px;
    opacity: 0.7;
}

.masaj-hero-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(17px, 2vw, 22px);
    color: #f4e4d6;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
    font-weight: 300;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.masaj-hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.masaj-tagline-word {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

.masaj-tagline-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
}

.masaj-hero-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 580px;
    margin: 0 auto 40px;
}

.masaj-hero-pillar {
    padding: 22px 16px;
    background: rgba(255, 250, 240, 0.05);
    border: 1px solid rgba(201, 168, 106, 0.25);
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: 0.4s;
}

.masaj-hero-pillar:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 106, 0.08);
    transform: translateY(-4px);
}

.masaj-hero-pillar-num {
    font-family: var(--serif);
    font-size: 30px;
    color: var(--gold-light);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.masaj-hero-pillar-lbl {
    font-size: 11px;
    color: #f4e4d6;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}

.masaj-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bottom scroll indicator with aroma */
.masaj-hero-bottom {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
}

.masaj-hero-bottom-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.6;
}

.masaj-hero-bottom-icon {
    width: 24px;
    height: 38px;
    border: 1.5px solid var(--gold-light);
    border-radius: 20px;
    opacity: 0.7;
    position: relative;
}

.masaj-hero-bottom-icon::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold-light);
    border-radius: 2px;
    animation: scroll 1.8s infinite;
}

/* ===== Mobile adjustments ===== */
@media (max-width: 1100px) {
    .masaj-hero-hand-bottom {
        width: 240px;
        height: 280px;
        bottom: -30px;
        left: -50px;
    }

    .masaj-hero-hand-pouring {
        width: 150px;
        height: 180px;
        right: 2%;
    }

    .masaj-hero-flow-l,
    .masaj-hero-flow-r {
        width: 140px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .masaj-hero {
        padding: 120px 18px 80px;
        min-height: 100vh;
    }

    .masaj-hero-stamp {
        width: 80px;
        height: 80px;
        top: 100px;
        right: 20px;
    }

    .masaj-hero-bottle {
        width: 60px;
        height: 90px;
        top: 100px;
        left: 20px;
    }

    .masaj-hero-hand-bottom,
    .masaj-hero-hand-pouring,
    .masaj-hero-flow-l,
    .masaj-hero-flow-r {
        display: none;
    }

    .drop-channel-2,
    .drop-channel-4 {
        display: none;
    }

    .masaj-hero-top-ornament {
        width: 200px;
        top: 78px;
    }

    .masaj-hero-pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .masaj-hero-pillar {
        padding: 14px 8px;
    }

    .masaj-hero-pillar-num {
        font-size: 22px;
    }

    .masaj-hero-pillar-lbl {
        font-size: 9.5px;
        letter-spacing: 1px;
    }

    .masaj-tagline-word {
        font-size: 13px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .masaj-hero-edition {
        font-size: 10px;
        padding: 8px 18px;
        letter-spacing: 3px;
    }

    .masaj-hero-edition::before,
    .masaj-hero-edition::after {
        width: 14px;
    }

    .masaj-hero-divider-line {
        width: 260px;
    }
}

.masaj-hero-stamp svg {
    width: 100%;
    height: 100%
}

@keyframes stampRotate {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

@media (max-width: 768px) {
    .masaj-hero-stamp {
        width: 70px;
        height: 70px;
        top: 20px;
        right: 20px
    }

    .masaj-hero-hand {
        width: 160px;
        height: 180px
    }
}

/* === INTRO — magazine pull-quote === */
.masaj-intro {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #fcf5e8 100%);
    position: relative;
    overflow: hidden;
}

.masaj-intro::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1), transparent 70%);
}

.masaj-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 1000px) {
    .masaj-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }
}

.masaj-intro-quote {
    position: relative;
    padding: 50px 0;
}

.masaj-intro-quote-mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 180px;
    line-height: 0.8;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: 0;
    left: -10px;
}

.masaj-intro-quote-text {
    position: relative;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.45;
    color: var(--burgundy);
    font-weight: 400;
    z-index: 1;
    padding-left: 40px;
}

.masaj-intro-quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    padding-left: 40px;
    color: var(--gold-dark);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.masaj-intro-quote-author::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.masaj-intro-text > .eyebrow {
    margin-bottom: 14px
}

.masaj-intro-text h2 {
    margin-bottom: 24px
}

.masaj-intro-text p {
    font-size: 16px;
    color: var(--brown-soft);
    line-height: 1.9;
    margin-bottom: 18px;
}

.masaj-intro-text p strong {
    color: var(--burgundy);
    font-weight: 600;
}

/* === DURATIONS — pricing-like cards === */
.masaj-durations {
    padding: 130px 0;
    background: linear-gradient(180deg, #fcf5e8 0%, var(--cream-warm) 100%);
}

.durations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .durations-grid {
        grid-template-columns: 1fr
    }
}

.duration-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 44px 32px 36px;
    border: 1px solid rgba(201, 168, 106, 0.2);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: 0.4s;
    overflow: hidden;
}

.duration-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.duration-card-featured {
    background: linear-gradient(180deg, #fff 0%, #fef9ed 100%);
    border: 2px solid var(--gold);
    transform: scale(1.04);
}

.duration-card-featured:hover {
    transform: scale(1.04) translateY(-12px);
}

.duration-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: #fff;
    border-radius: 30px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(107, 31, 58, 0.3);
}

.duration-time {
    font-family: var(--serif);
    font-size: 70px;
    font-weight: 500;
    color: var(--burgundy);
    line-height: 1;
    margin: 30px 0 6px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--rose));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.duration-card-featured .duration-time {
    font-size: 88px;
}

.duration-unit {
    font-size: 13px;
    color: var(--gold-dark);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 22px;
}

.duration-card h3 {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--burgundy);
    margin-bottom: 14px;
}

.duration-card p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.75;
    margin-bottom: 24px;
}

.duration-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    padding: 0;
}

.duration-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--brown);
    border-bottom: 1px solid rgba(201, 168, 106, 0.15);
}

.duration-features li:last-child {
    border-bottom: 0
}

.duration-features li i {
    color: var(--gold-dark);
    font-size: 13px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* === BODY MAP — pressure points === */
.masaj-bodymap {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--blush) 100%);
    position: relative;
    overflow: hidden;
}

.bodymap-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .bodymap-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.bodymap-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.bodymap-figure {
    position: relative;
    width: 320px;
    height: 540px;
    color: var(--burgundy);
}

.bodymap-figure svg {
    width: 100%;
    height: 100%
}

/* Pressure points */
.bodymap-point {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(201, 168, 106, 0.3),
    0 0 0 14px rgba(201, 168, 106, 0.15),
    0 0 0 22px rgba(201, 168, 106, 0.05);
    cursor: pointer;
    z-index: 3;
    animation: pointPulse 2.5s ease-in-out infinite;
}

@keyframes pointPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(201, 168, 106, 0.3),
        0 0 0 14px rgba(201, 168, 106, 0.15),
        0 0 0 22px rgba(201, 168, 106, 0.05);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 9px rgba(201, 168, 106, 0.35),
        0 0 0 18px rgba(201, 168, 106, 0.2),
        0 0 0 28px rgba(201, 168, 106, 0.08);
    }
}

.bodymap-point-1 {
    top: 14%;
    left: 50%;
    transform: translateX(-50%)
}

.bodymap-point-2 {
    top: 22%;
    left: 32%;
    animation-delay: 0.3s
}

.bodymap-point-3 {
    top: 22%;
    right: 32%;
    animation-delay: 0.6s
}

.bodymap-point-4 {
    top: 36%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.9s
}

.bodymap-point-5 {
    top: 50%;
    left: 38%;
    animation-delay: 1.2s
}

.bodymap-point-6 {
    top: 50%;
    right: 38%;
    animation-delay: 1.5s
}

.bodymap-point-7 {
    top: 68%;
    left: 42%;
    animation-delay: 1.8s
}

.bodymap-point-8 {
    top: 68%;
    right: 42%;
    animation-delay: 2.1s
}

.bodymap-list {
    list-style: none;
    padding: 0;
    counter-reset: bm;
}

.bodymap-list li {
    counter-increment: bm;
    display: flex;
    gap: 22px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 168, 106, 0.2);
    align-items: flex-start;
}

.bodymap-list li:last-child {
    border-bottom: 0
}

.bodymap-list li::before {
    content: counter(bm, decimal-leading-zero);
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 6px 14px rgba(201, 168, 106, 0.3);
}

.bodymap-list-text h4 {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--burgundy);
    margin-bottom: 6px;
}

.bodymap-list-text p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.7;
    margin: 0;
}

/* === OILS — apothecary cards === */
.masaj-oils {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
    position: relative;
}

.oils-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

@media (max-width: 1000px) {
    .oils-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 500px) {
    .oils-grid {
        grid-template-columns: 1fr
    }
}

.oil-bottle-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 22px 26px;
    text-align: center;
    border: 1px solid rgba(201, 168, 106, 0.18);
    box-shadow: var(--shadow-sm);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.oil-bottle-card::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--oil-color, rgba(201, 168, 106, 0.15)), transparent 70%);
}

.oil-bottle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.oil-lavender {
    --oil-color: rgba(167, 101, 168, 0.18)
}

.oil-rose {
    --oil-color: rgba(208, 113, 132, 0.18)
}

.oil-eucalyptus {
    --oil-color: rgba(101, 142, 96, 0.18)
}

.oil-coconut {
    --oil-color: rgba(212, 165, 116, 0.18)
}

.oil-bottle-illustration {
    position: relative;
    width: 90px;
    height: 130px;
    margin: 0 auto 18px;
    z-index: 1;
}

.oil-bottle-illustration svg {
    width: 100%;
    height: 100%
}

.oil-bottle-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--burgundy);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.oil-bottle-latin {
    font-family: var(--serif);
    font-style: italic;
    font-size: 12px;
    color: var(--gold-dark);
    letter-spacing: 1px;
    margin-bottom: 14px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.oil-bottle-card p {
    font-size: 13.5px;
    color: var(--brown-soft);
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.oil-bottle-tags {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.oil-bottle-tag {
    padding: 4px 10px;
    border-radius: 30px;
    background: rgba(201, 168, 106, 0.12);
    color: var(--burgundy);
    font-size: 10.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* === JOURNEY — horizontal timeline === */
.masaj-journey {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
    position: relative;
    overflow: hidden;
}

.journey-flow {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

.journey-flow-line {
    position: absolute;
    top: 100px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: repeating-linear-gradient(90deg,
    var(--gold) 0,
    var(--gold) 8px,
    transparent 8px,
    transparent 14px);
    opacity: 0.5;
    z-index: 0;
}

.journey-flow-stops {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .journey-flow-stops {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .journey-flow-line {
        display: none
    }
}

.journey-stop-massage {
    text-align: center;
    position: relative;
}

.journey-stop-dot {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--burgundy);
    box-shadow: 0 10px 26px rgba(107, 31, 58, 0.15);
    position: relative;
    z-index: 2;
    transition: 0.4s;
}

.journey-stop-massage:hover .journey-stop-dot {
    transform: translateY(-6px) scale(1.05);
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: var(--gold-light);
}

.journey-stop-time {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201, 168, 106, 0.15);
    color: var(--gold-dark);
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.journey-stop-massage h4 {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--burgundy);
    margin-bottom: 8px;
}

.journey-stop-massage p {
    font-size: 13.5px;
    color: var(--brown-soft);
    line-height: 1.65;
    margin: 0;
}

/* === BENEFITS — split column === */
.masaj-benefits {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--blush) 100%);
}

.benefits-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .benefits-split {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.benefits-column h3 {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--burgundy);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 14px;
}

.benefits-column h3 i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.benefits-column ul {
    list-style: none;
    padding: 0;
}

.benefits-column li {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(201, 168, 106, 0.2);
    align-items: flex-start;
}

.benefits-column li:last-child {
    border-bottom: 0
}

.benefits-column li i:first-child {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(201, 168, 106, 0.15);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.benefits-column-body strong {
    display: block;
    color: var(--burgundy);
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 4px;
}

.benefits-column-body span {
    color: var(--brown-soft);
    font-size: 14px;
    line-height: 1.7;
}

/* === FOR WHO — categorized cards === */
.masaj-for-who {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .who-grid {
        grid-template-columns: 1fr
    }
}

.who-card {
    background: #fff;
    border-radius: 20px;
    padding: 38px 28px 30px;
    border: 1px solid rgba(201, 168, 106, 0.2);
    box-shadow: var(--shadow-sm);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.who-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--rose));
}

.who-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.who-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blush), var(--cream-warm));
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    border: 1px solid rgba(201, 168, 106, 0.25);
}

.who-card h3 {
    font-family: var(--serif);
    font-size: 21px;
    color: var(--burgundy);
    margin-bottom: 12px;
}

.who-card p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.75;
}

/* === QUOTE BAND === */
.masaj-quote-band {
    position: relative;
    padding: 130px 24px;
    background: linear-gradient(135deg, var(--burgundy-dark), #1a0a13);
    overflow: hidden;
    text-align: center;
}

.masaj-quote-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 168, 106, 0.18), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(212, 165, 116, 0.12), transparent 60%);
}

.masaj-quote-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    color: #fffaf0;
}

.masaj-quote-hands {
    width: 100px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--gold);
    opacity: 0.7;
}

.masaj-quote-hands svg {
    width: 100%;
    height: 100%
}

.masaj-quote-content blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.5;
    color: #f4e4d6;
    margin-bottom: 26px;
    font-weight: 300;
}

.masaj-quote-content blockquote em {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 400;
}

.masaj-quote-cite {
    color: var(--gold-light);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* === PROTOCOL === */
.masaj-protocol {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .protocol-grid {
        grid-template-columns: 1fr
    }
}

.protocol-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 28px 26px;
    border-left: 4px solid var(--gold);
    transition: 0.4s;
}

.protocol-card:hover {
    background: #fff;
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.protocol-card-before {
    border-left-color: var(--gold-dark)
}

.protocol-card-after {
    border-left-color: var(--rose)
}

.protocol-card h4 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--burgundy);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.protocol-card h4 i {
    color: var(--gold-dark)
}

.protocol-card ul {
    list-style: none;
    padding: 0;
}

.protocol-card li {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    font-size: 14.5px;
    color: var(--brown);
    line-height: 1.65;
}

.protocol-card li i {
    color: var(--gold-dark);
    font-size: 11px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* === FINAL CTA === */
.masaj-final {
    position: relative;
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--blush) 100%);
    overflow: hidden;
}

.masaj-final::before {
    content: "";
    position: absolute;
    top: 10%;
    right: 5%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.15), transparent 70%);
}

.masaj-final::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.12), transparent 70%);
}

.masaj-final-card {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 40px 90px rgba(107, 31, 58, 0.18);
    border: 1px solid rgba(201, 168, 106, 0.25);
}

.masaj-final-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--burgundy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 18px 40px rgba(201, 168, 106, 0.35);
}

.masaj-final-card h2 {
    font-size: clamp(34px, 5vw, 52px);
    margin: 16px 0 20px;
}

.masaj-final-card p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--brown-soft);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 32px;
}

.masaj-final-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .masaj-intro {
        padding: 80px 0
    }

    .masaj-durations {
        padding: 80px 0
    }

    .masaj-bodymap {
        padding: 80px 0
    }

    .masaj-oils {
        padding: 80px 0
    }

    .masaj-journey {
        padding: 80px 0
    }

    .masaj-benefits {
        padding: 80px 0
    }

    .masaj-for-who {
        padding: 80px 0
    }

    .masaj-protocol {
        padding: 80px 0
    }

    .masaj-final {
        padding: 80px 0
    }

    .masaj-final-card {
        padding: 50px 28px
    }
}

/* ===================================================
   POOL PAGE — Water, Light, Silence
   =================================================== */

/* === POOL HERO — Cinematic Water === */
.havuz-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 24px 100px;
    background: linear-gradient(180deg, #0a1f2e 0%, #1a3a52 40%, #2d5a7a 100%);
    isolation: isolate;
}

/* Caustic light pattern */
.havuz-hero-caustics {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 60% 40% at 20% 30%, rgba(255, 255, 255, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 30% at 70% 60%, rgba(224, 200, 150, 0.1), transparent 60%),
    radial-gradient(ellipse 40% 25% at 40% 80%, rgba(255, 255, 255, 0.08), transparent 60%);
    animation: causticsShift 20s ease-in-out infinite;
}

@keyframes causticsShift {
    0%, 100% {
        transform: scale(1) translate(0, 0)
    }
    50% {
        transform: scale(1.1) translate(-20px, -15px)
    }
}

/* Background image with depth */
.havuz-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.4;
}

.havuz-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px) saturate(1.2) brightness(0.7) hue-rotate(-5deg);
    animation: bgFloat 18s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% {
        transform: scale(1.05)
    }
    50% {
        transform: scale(1.12)
    }
}

.havuz-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 31, 46, 0.4) 60%, rgba(10, 31, 46, 0.85) 100%),
    linear-gradient(180deg, rgba(10, 31, 46, 0.5) 0%, transparent 40%, transparent 70%, rgba(10, 31, 46, 0.7) 100%);
}

/* Animated water waves at bottom */
.havuz-hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.havuz-hero-waves svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    animation: waveSlide 16s linear infinite;
}

.havuz-hero-waves svg:nth-child(2) {
    animation-duration: 22s;
    opacity: 0.5;
    bottom: -10px;
}

.havuz-hero-waves svg:nth-child(3) {
    animation-duration: 28s;
    opacity: 0.3;
    bottom: -20px;
}

@keyframes waveSlide {
    from {
        transform: translateX(0)
    }
    to {
        transform: translateX(-50%)
    }
}

/* Light rays from top */
.havuz-hero-rays {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.4;
}

.havuz-hero-rays svg {
    width: 100%;
    height: 100%;
    animation: raysPulse 8s ease-in-out infinite;
}

@keyframes raysPulse {
    0%, 100% {
        opacity: 0.3
    }
    50% {
        opacity: 0.55
    }
}

/* Floating bubbles rising */
.havuz-hero-bubbles {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.water-bubble {
    position: absolute;
    bottom: -60px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9) 0%, rgba(224, 240, 255, 0.4) 50%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.6),
    0 0 8px rgba(255, 255, 255, 0.3);
    animation: bubbleAscend linear infinite;
}

.water-bubble:nth-child(1) {
    left: 8%;
    width: 18px;
    height: 18px;
    animation-duration: 11s;
    animation-delay: 0s
}

.water-bubble:nth-child(2) {
    left: 16%;
    width: 10px;
    height: 10px;
    animation-duration: 9s;
    animation-delay: -3s
}

.water-bubble:nth-child(3) {
    left: 26%;
    width: 22px;
    height: 22px;
    animation-duration: 14s;
    animation-delay: -5s
}

.water-bubble:nth-child(4) {
    left: 38%;
    width: 12px;
    height: 12px;
    animation-duration: 10s;
    animation-delay: -2s
}

.water-bubble:nth-child(5) {
    left: 48%;
    width: 16px;
    height: 16px;
    animation-duration: 13s;
    animation-delay: -7s
}

.water-bubble:nth-child(6) {
    left: 58%;
    width: 8px;
    height: 8px;
    animation-duration: 8s;
    animation-delay: -4s
}

.water-bubble:nth-child(7) {
    left: 68%;
    width: 20px;
    height: 20px;
    animation-duration: 15s;
    animation-delay: -8s
}

.water-bubble:nth-child(8) {
    left: 78%;
    width: 11px;
    height: 11px;
    animation-duration: 11s;
    animation-delay: -1s
}

.water-bubble:nth-child(9) {
    left: 88%;
    width: 15px;
    height: 15px;
    animation-duration: 12s;
    animation-delay: -6s
}

.water-bubble:nth-child(10) {
    left: 32%;
    width: 9px;
    height: 9px;
    animation-duration: 10s;
    animation-delay: -9s
}

.water-bubble:nth-child(11) {
    left: 64%;
    width: 13px;
    height: 13px;
    animation-duration: 13s;
    animation-delay: -10s
}

.water-bubble:nth-child(12) {
    left: 92%;
    width: 7px;
    height: 7px;
    animation-duration: 9s;
    animation-delay: -5s
}

@keyframes bubbleAscend {
    0% {
        bottom: -60px;
        opacity: 0;
        transform: translateX(0) scale(0.5)
    }
    10% {
        opacity: 0.85;
        transform: translateX(8px) scale(1)
    }
    50% {
        transform: translateX(-12px) scale(1.05)
    }
    90% {
        opacity: 0.7;
        transform: translateX(15px) scale(0.95)
    }
    100% {
        bottom: 105%;
        opacity: 0;
        transform: translateX(-8px) scale(0.6)
    }
}

/* Lotus/water flower decorations */
.havuz-hero-lotus {
    position: absolute;
    color: rgba(224, 200, 150, 0.4);
    z-index: 4;
    pointer-events: none;
    animation: lotusFloat 6s ease-in-out infinite;
}

.havuz-hero-lotus svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.havuz-hero-lotus-1 {
    top: 18%;
    left: 6%;
    width: 90px;
    height: 90px;
    animation-delay: 0s;
}

.havuz-hero-lotus-2 {
    top: 22%;
    right: 8%;
    width: 70px;
    height: 70px;
    animation-delay: -2s;
}

.havuz-hero-lotus-3 {
    bottom: 25%;
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: -4s;
}

@keyframes lotusFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg)
    }
    50% {
        transform: translateY(-12px) rotate(8deg)
    }
}

/* Pool dimension badge */
.havuz-hero-dim-badge {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(10, 31, 46, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(224, 200, 150, 0.3);
    border-radius: 20px;
    padding: 22px 20px;
    text-align: center;
    color: var(--gold-light);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.havuz-hero-dim-badge-title {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    margin-bottom: 14px;
    opacity: 0.7;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.havuz-hero-dim-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
}

.havuz-hero-dim-row strong {
    font-family: var(--serif);
    font-size: 22px;
    color: #fffaf0;
    font-weight: 500;
}

.havuz-hero-dim-row small {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

@media (max-width: 1100px) {
    .havuz-hero-dim-badge {
        display: none;
    }
}

/* Hero content */
.havuz-hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    text-align: center;
    animation: heroFadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.havuz-hero-edition {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 24px;
    border: 1px solid rgba(224, 200, 150, 0.4);
    border-radius: 40px;
    background: rgba(10, 31, 46, 0.4);
    backdrop-filter: blur(12px);
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
}

.havuz-hero-edition::before,
.havuz-hero-edition::after {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--gold);
}

.havuz-hero-title {
    font-family: var(--serif);
    font-size: clamp(58px, 10vw, 130px);
    font-weight: 400;
    line-height: 0.92;
    color: #fffaf0;
    letter-spacing: -2px;
    margin-bottom: 22px;
    text-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
}

.havuz-hero-title em {
    font-weight: 300;
    font-style: italic;
    background: linear-gradient(135deg, #b8e0ed 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.havuz-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px auto 28px;
    width: 360px;
    max-width: 85%;
    color: var(--gold-light);
}

.havuz-hero-divider .wave-line {
    flex: 1;
    height: 12px;
    color: var(--gold-light);
    opacity: 0.7;
}

.havuz-hero-divider .wave-line svg {
    width: 100%;
    height: 100%;
}

.havuz-hero-divider .center-icon {
    width: 28px;
    height: 28px;
    color: var(--gold-light);
}

.havuz-hero-divider .center-icon svg {
    width: 100%;
    height: 100%;
}

.havuz-hero-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(17px, 2vw, 21px);
    color: #d8e8f0;
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-weight: 300;
}

.havuz-hero-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.havuz-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 250, 240, 0.06);
    border: 1px solid rgba(224, 200, 150, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    color: #f4e4d6;
    font-size: 12.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.3s;
}

.havuz-hero-meta-item:hover {
    border-color: var(--gold);
    background: rgba(224, 200, 150, 0.1);
}

.havuz-hero-meta-item i {
    color: var(--gold-light);
}

.havuz-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.havuz-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
}

.havuz-hero-scroll-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.7;
}

.havuz-hero-scroll-icon {
    width: 24px;
    height: 38px;
    border: 1.5px solid var(--gold-light);
    border-radius: 20px;
    opacity: 0.7;
    position: relative;
}

.havuz-hero-scroll-icon::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold-light);
    border-radius: 2px;
    animation: scroll 1.8s infinite;
}

@media (max-width: 768px) {
    .havuz-hero {
        padding: 110px 18px 80px;
    }

    .havuz-hero-lotus-2,
    .havuz-hero-lotus-3 {
        display: none;
    }

    .havuz-hero-lotus-1 {
        width: 60px;
        height: 60px;
        top: 100px;
        left: 15px;
    }

    .havuz-hero-meta-item {
        font-size: 11px;
        padding: 8px 14px;
        letter-spacing: 1px;
    }
}

/* === INTRO — split with stats === */
.havuz-intro {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #ecf4f7 100%);
    position: relative;
    overflow: hidden;
}

.havuz-intro::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(70, 130, 180, 0.08), transparent 70%);
}

.havuz-intro::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.1), transparent 70%);
}

.havuz-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .havuz-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.havuz-intro-text .eyebrow {
    margin-bottom: 16px;
}

.havuz-intro-text h2 {
    margin-bottom: 26px;
}

.havuz-intro-text p {
    font-size: 16px;
    color: var(--brown-soft);
    line-height: 1.9;
    margin-bottom: 18px;
}

.havuz-intro-text p strong {
    color: var(--burgundy);
    font-weight: 600;
}

.havuz-intro-visual {
    position: relative;
    padding: 30px;
}

.havuz-pool-diagram {
    position: relative;
    background: linear-gradient(135deg, #3a7ba8 0%, #5099c0 50%, #6db5d4 100%);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 30px 70px rgba(58, 123, 168, 0.3),
    inset 0 2px 8px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.havuz-pool-diagram::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.25), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(255, 255, 255, 0.15), transparent 50%);
    pointer-events: none;
}

.havuz-pool-shape {
    position: relative;
    width: 100%;
    aspect-ratio: 7 / 3;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(180, 220, 240, 0.15) 100%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    margin-bottom: 26px;
    box-shadow: inset 0 4px 20px rgba(255, 255, 255, 0.3),
    inset 0 -4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.havuz-pool-shape::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 6px;
}

.havuz-pool-water-pattern {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent 0, transparent 8px, rgba(255, 255, 255, 0.06) 8px, rgba(255, 255, 255, 0.06) 9px),
    repeating-linear-gradient(-45deg, transparent 0, transparent 10px, rgba(255, 255, 255, 0.04) 10px, rgba(255, 255, 255, 0.04) 11px);
    animation: waterShimmer 8s ease-in-out infinite;
}

@keyframes waterShimmer {
    0%, 100% {
        opacity: 0.6
    }
    50% {
        opacity: 1
    }
}

.havuz-pool-dim {
    position: absolute;
    color: #fffaf0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.havuz-pool-dim-w {
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.havuz-pool-dim-w::before,
.havuz-pool-dim-w::after {
    content: "";
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

.havuz-pool-dim-h {
    left: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
}

.havuz-pool-dim-d {
    bottom: 8px;
    right: 12px;
    background: rgba(10, 31, 46, 0.4);
    padding: 6px 12px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    font-size: 13px;
}

.havuz-pool-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
    z-index: 2;
}

.havuz-pool-stat {
    text-align: center;
    padding: 14px 8px;
    background: rgba(10, 31, 46, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.havuz-pool-stat-val {
    font-family: var(--serif);
    font-size: 26px;
    color: #fffaf0;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 4px;
}

.havuz-pool-stat-val small {
    font-size: 11px;
    opacity: 0.7;
    margin-left: 2px;
}

.havuz-pool-stat-lbl {
    font-size: 10px;
    color: #d8e8f0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* === KIDS POOL — featured callout === */
.havuz-kids {
    padding: 130px 0;
    background: linear-gradient(180deg, #ecf4f7 0%, #d9e8f0 100%);
    position: relative;
    overflow: hidden;
}

.kids-pool-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 40px 90px rgba(10, 31, 46, 0.15);
    border: 1px solid rgba(201, 168, 106, 0.2);
    position: relative;
    overflow: hidden;
}

.kids-pool-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 181, 212, 0.15), transparent 70%);
}

@media (max-width: 900px) {
    .kids-pool-card {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        gap: 40px;
    }
}

.kids-pool-visual {
    position: relative;
}

.kids-pool-illustration {
    position: relative;
    background: linear-gradient(135deg, #6db5d4 0%, #8fcde1 100%);
    border-radius: 22px;
    aspect-ratio: 4 / 3;
    padding: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(58, 123, 168, 0.3),
    inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.kids-pool-illustration::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.3), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(255, 255, 255, 0.15), transparent 50%);
}

.kids-pool-shape {
    position: absolute;
    inset: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(180, 220, 240, 0.15) 100%);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: inset 0 4px 16px rgba(255, 255, 255, 0.3),
    inset 0 -4px 10px rgba(0, 0, 0, 0.12);
}

.kids-pool-shape::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent 0, transparent 6px, rgba(255, 255, 255, 0.08) 6px, rgba(255, 255, 255, 0.08) 7px);
    border-radius: 14px;
    animation: waterShimmer 6s ease-in-out infinite;
}

.kids-pool-icons {
    position: absolute;
    inset: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: #fff;
    font-size: 36px;
    z-index: 2;
}

.kids-pool-icons i {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
    animation: kidIconFloat 4s ease-in-out infinite;
}

.kids-pool-icons i:nth-child(2) {
    animation-delay: -1s;
}

.kids-pool-icons i:nth-child(3) {
    animation-delay: -2s;
}

@keyframes kidIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg)
    }
    50% {
        transform: translateY(-10px) rotate(5deg)
    }
}

.kids-pool-tag {
    position: absolute;
    top: -18px;
    left: 30px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(107, 31, 58, 0.35);
    z-index: 3;
}

.kids-pool-tag i {
    color: var(--gold-light);
    margin-right: 6px;
}

.kids-pool-body {
    position: relative;
    z-index: 1;
}

.kids-pool-body .eyebrow {
    margin-bottom: 14px;
}

.kids-pool-body h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 22px;
}

.kids-pool-body p {
    font-size: 16px;
    color: var(--brown-soft);
    line-height: 1.85;
    margin-bottom: 26px;
}

.kids-pool-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kids-pool-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 106, 0.15);
    font-size: 14.5px;
    color: var(--brown);
}

.kids-pool-features li:last-child {
    border-bottom: 0;
}

.kids-pool-features li i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6db5d4, #8fcde1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* === BENEFITS === */
.havuz-benefits {
    padding: 130px 0;
    background: linear-gradient(180deg, #d9e8f0 0%, var(--cream) 100%);
}

.havuz-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

@media (max-width: 1024px) {
    .havuz-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .havuz-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.havuz-benefit-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 38px 26px 28px;
    text-align: center;
    border: 1px solid rgba(201, 168, 106, 0.18);
    box-shadow: var(--shadow-sm);
    transition: 0.4s;
    overflow: hidden;
}

.havuz-benefit-card::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 181, 212, 0.12), transparent 70%);
    transition: 0.4s;
}

.havuz-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.havuz-benefit-card:hover::before {
    transform: translateX(-50%) scale(1.3);
}

.havuz-benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #4a8fb3, #6db5d4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 24px rgba(58, 123, 168, 0.25);
}

.havuz-benefit-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--burgundy);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.havuz-benefit-card p {
    font-size: 14px;
    color: var(--brown-soft);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* === FEATURES — luxury detail list === */
.havuz-features {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #ecf4f7 100%);
    position: relative;
}

.havuz-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 800px) {
    .havuz-features-grid {
        grid-template-columns: 1fr;
    }
}

.havuz-feature-row {
    background: #fff;
    border-radius: 18px;
    padding: 28px 28px 28px 100px;
    position: relative;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: 0.4s;
}

.havuz-feature-row:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.havuz-feature-num {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--serif);
    font-style: italic;
    font-size: 52px;
    color: var(--blush);
    line-height: 1;
    font-weight: 500;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.6;
}

.havuz-feature-row h4 {
    font-family: var(--serif);
    font-size: 21px;
    color: var(--burgundy);
    margin-bottom: 8px;
}

.havuz-feature-row p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.7;
    margin: 0;
}

/* === FLOW — pool usage ritual === */
.havuz-flow {
    padding: 130px 0;
    background: linear-gradient(180deg, #ecf4f7 0%, var(--cream-warm) 100%);
    position: relative;
}

.havuz-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 900px) {
    .havuz-flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .havuz-flow-grid {
        grid-template-columns: 1fr;
    }
}

.havuz-flow-step {
    background: #fff;
    border-radius: 22px;
    padding: 36px 22px 26px;
    text-align: center;
    border: 1px solid rgba(201, 168, 106, 0.2);
    box-shadow: var(--shadow-sm);
    transition: 0.4s;
    position: relative;
}

.havuz-flow-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.havuz-flow-step-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a8fb3, #6db5d4);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(58, 123, 168, 0.3);
    border: 3px solid #fff;
}

.havuz-flow-icon {
    width: 52px;
    height: 52px;
    margin: 14px auto 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blush), var(--cream-warm));
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(201, 168, 106, 0.25);
}

.havuz-flow-step h4 {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--burgundy);
    margin-bottom: 8px;
}

.havuz-flow-step p {
    font-size: 13.5px;
    color: var(--brown-soft);
    line-height: 1.7;
    margin: 0;
}

/* === QUOTE BAND === */
.havuz-quote-band {
    position: relative;
    padding: 130px 24px;
    background: linear-gradient(135deg, #0a1f2e 0%, #1a3a52 100%);
    overflow: hidden;
    text-align: center;
}

.havuz-quote-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(109, 181, 212, 0.2), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(224, 200, 150, 0.12), transparent 60%);
}

.havuz-quote-band-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.qb-bubble {
    position: absolute;
    bottom: -50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(224, 240, 255, 0.3) 50%, rgba(255, 255, 255, 0.05));
    animation: bubbleAscend linear infinite;
}

.qb-b1 {
    left: 10%;
    width: 16px;
    height: 16px;
    animation-duration: 12s
}

.qb-b2 {
    left: 25%;
    width: 10px;
    height: 10px;
    animation-duration: 9s;
    animation-delay: -3s
}

.qb-b3 {
    left: 42%;
    width: 20px;
    height: 20px;
    animation-duration: 14s;
    animation-delay: -6s
}

.qb-b4 {
    left: 60%;
    width: 12px;
    height: 12px;
    animation-duration: 10s;
    animation-delay: -2s
}

.qb-b5 {
    left: 78%;
    width: 18px;
    height: 18px;
    animation-duration: 13s;
    animation-delay: -8s
}

.qb-b6 {
    left: 90%;
    width: 8px;
    height: 8px;
    animation-duration: 8s;
    animation-delay: -4s
}

.havuz-quote-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    color: #fffaf0;
}

.havuz-quote-drop {
    width: 80px;
    height: 100px;
    margin: 0 auto 20px;
    color: var(--gold-light);
    opacity: 0.8;
}

.havuz-quote-drop svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 16px rgba(224, 200, 150, 0.4));
}

.havuz-quote-content blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.5;
    color: #d8e8f0;
    margin-bottom: 26px;
    font-weight: 300;
}

.havuz-quote-content blockquote em {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 400;
}

.havuz-quote-cite {
    color: var(--gold-light);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* === RULES === */
.havuz-rules {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
}

.havuz-rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .havuz-rules-grid {
        grid-template-columns: 1fr;
    }
}

.havuz-rules-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(201, 168, 106, 0.2);
    transition: 0.4s;
}

.havuz-rules-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.havuz-rules-card.do {
    border-top: 4px solid #6db5d4;
}

.havuz-rules-card.dont {
    border-top: 4px solid var(--burgundy);
}

.havuz-rules-card h4 {
    font-family: var(--serif);
    font-size: 23px;
    color: var(--burgundy);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.havuz-rules-card h4 i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.havuz-rules-card.do h4 i {
    background: linear-gradient(135deg, #4a8fb3, #6db5d4);
}

.havuz-rules-card.dont h4 i {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
}

.havuz-rules-card ul {
    list-style: none;
    padding: 0;
}

.havuz-rules-card li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    font-size: 14.5px;
    color: var(--brown);
    line-height: 1.7;
    align-items: flex-start;
}

.havuz-rules-card li i {
    color: var(--gold-dark);
    font-size: 11px;
    margin-top: 7px;
    flex-shrink: 0;
}

/* === FINAL CTA === */
.havuz-final {
    position: relative;
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #ecf4f7 100%);
    overflow: hidden;
}

.havuz-final::before {
    content: "";
    position: absolute;
    top: 10%;
    right: 5%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 181, 212, 0.18), transparent 70%);
}

.havuz-final::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.15), transparent 70%);
}

.havuz-final-card {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 40px 90px rgba(10, 31, 46, 0.15);
    border: 1px solid rgba(201, 168, 106, 0.25);
}

.havuz-final-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a8fb3, #6db5d4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 18px 40px rgba(58, 123, 168, 0.35);
}

.havuz-final-card h2 {
    font-size: clamp(34px, 5vw, 52px);
    margin: 16px 0 20px;
}

.havuz-final-card p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--brown-soft);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 32px;
}

.havuz-final-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .havuz-intro {
        padding: 80px 0
    }

    .havuz-kids {
        padding: 80px 0
    }

    .havuz-benefits {
        padding: 80px 0
    }

    .havuz-features {
        padding: 80px 0
    }

    .havuz-flow {
        padding: 80px 0
    }

    .havuz-rules {
        padding: 80px 0
    }

    .havuz-final {
        padding: 80px 0
    }

    .havuz-final-card {
        padding: 50px 28px
    }
}

/* ===================================================
   SAUNA PAGE — Fire, Wood, Steam
   =================================================== */

/* === SAUNA HERO — Dramatic Heat === */
.sauna-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 24px 100px;
    background: radial-gradient(ellipse at center, #2a0e08 0%, #150704 50%, #0a0302 100%);
    isolation: isolate;
}

/* Layer 0 — Wood plank texture background */
.sauna-hero-wood {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: repeating-linear-gradient(0deg,
    #2d1610 0px,
    #3a1d14 2px,
    #2d1610 4px,
    #3a1d14 8px,
    #1f0e08 10px,
    #2d1610 14px,
    #3a1d14 18px,
    #1f0e08 22px,
    #2d1610 28px,
    #3a1d14 32px,
    #1f0e08 36px,
    #2d1610 40px),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0.4;
}

.sauna-hero-wood::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
    transparent 0px,
    transparent 60px,
    rgba(0, 0, 0, 0.3) 60px,
    rgba(0, 0, 0, 0.3) 62px,
    transparent 62px,
    transparent 124px);
}

/* Layer 1 — Background image with fire tones */
.sauna-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.35;
}

.sauna-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1.5px) saturate(1.6) brightness(0.5) sepia(0.4) hue-rotate(-20deg);
    animation: saunaBgPulse 12s ease-in-out infinite;
}

@keyframes saunaBgPulse {
    0%, 100% {
        transform: scale(1.05);
        filter: blur(1.5px) saturate(1.6) brightness(0.5) sepia(0.4) hue-rotate(-20deg)
    }
    50% {
        transform: scale(1.12);
        filter: blur(2px) saturate(1.8) brightness(0.6) sepia(0.5) hue-rotate(-15deg)
    }
}

/* Layer 2 — Warm vignette + glow */
.sauna-hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(200, 80, 30, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse at center, transparent 0%, rgba(20, 5, 3, 0.5) 50%, rgba(10, 3, 2, 0.95) 100%),
    linear-gradient(180deg, rgba(40, 10, 5, 0.6) 0%, transparent 30%, transparent 70%, rgba(10, 3, 2, 0.85) 100%);
}

/* Layer 3 — Animated ember particles rising */
.sauna-hero-embers {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.ember {
    position: absolute;
    bottom: -40px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffb060 0%, #ff8030 40%, #d04510 80%, transparent 100%);
    filter: blur(0.5px);
    box-shadow: 0 0 8px rgba(255, 140, 50, 0.8), 0 0 16px rgba(220, 100, 30, 0.4);
    animation: emberRise linear infinite;
}

.ember:nth-child(1) {
    left: 6%;
    width: 5px;
    height: 5px;
    animation-duration: 8s;
    animation-delay: 0s
}

.ember:nth-child(2) {
    left: 14%;
    width: 7px;
    height: 7px;
    animation-duration: 11s;
    animation-delay: -3s
}

.ember:nth-child(3) {
    left: 22%;
    width: 4px;
    height: 4px;
    animation-duration: 9s;
    animation-delay: -1s
}

.ember:nth-child(4) {
    left: 32%;
    width: 8px;
    height: 8px;
    animation-duration: 13s;
    animation-delay: -5s
}

.ember:nth-child(5) {
    left: 42%;
    width: 5px;
    height: 5px;
    animation-duration: 10s;
    animation-delay: -7s
}

.ember:nth-child(6) {
    left: 52%;
    width: 9px;
    height: 9px;
    animation-duration: 12s;
    animation-delay: -2s
}

.ember:nth-child(7) {
    left: 62%;
    width: 4px;
    height: 4px;
    animation-duration: 8s;
    animation-delay: -6s
}

.ember:nth-child(8) {
    left: 72%;
    width: 6px;
    height: 6px;
    animation-duration: 11s;
    animation-delay: -4s
}

.ember:nth-child(9) {
    left: 82%;
    width: 7px;
    height: 7px;
    animation-duration: 9s;
    animation-delay: -8s
}

.ember:nth-child(10) {
    left: 92%;
    width: 5px;
    height: 5px;
    animation-duration: 10s;
    animation-delay: -1s
}

.ember:nth-child(11) {
    left: 18%;
    width: 3px;
    height: 3px;
    animation-duration: 7s;
    animation-delay: -5s
}

.ember:nth-child(12) {
    left: 38%;
    width: 6px;
    height: 6px;
    animation-duration: 12s;
    animation-delay: -9s
}

.ember:nth-child(13) {
    left: 58%;
    width: 3px;
    height: 3px;
    animation-duration: 6s;
    animation-delay: -3s
}

.ember:nth-child(14) {
    left: 78%;
    width: 8px;
    height: 8px;
    animation-duration: 14s;
    animation-delay: -10s
}

.ember:nth-child(15) {
    left: 96%;
    width: 4px;
    height: 4px;
    animation-duration: 8s;
    animation-delay: -7s
}

@keyframes emberRise {
    0% {
        bottom: -40px;
        opacity: 0;
        transform: translateX(0) scale(0.3);
    }
    8% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(-25px) scale(1.1);
        opacity: 0.9;
    }
    80% {
        opacity: 0.6;
        transform: translateX(15px) scale(0.9);
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-15px) scale(0.4);
    }
}

/* Layer 4 — Wavy steam clouds */
.sauna-hero-steam {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.steam-cloud {
    position: absolute;
    bottom: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(255, 230, 200, 0.18) 0%, rgba(255, 200, 150, 0.08) 40%, transparent 70%);
    filter: blur(20px);
    animation: steamFloat linear infinite;
}

.steam-cloud-1 {
    left: 8%;
    animation-duration: 18s;
    animation-delay: 0s;
    width: 280px;
    height: 280px
}

.steam-cloud-2 {
    left: 35%;
    animation-duration: 22s;
    animation-delay: -6s;
    width: 320px;
    height: 320px
}

.steam-cloud-3 {
    left: 65%;
    animation-duration: 20s;
    animation-delay: -3s;
    width: 260px;
    height: 260px
}

.steam-cloud-4 {
    left: 88%;
    animation-duration: 24s;
    animation-delay: -9s;
    width: 300px;
    height: 300px
}

@keyframes steamFloat {
    0% {
        bottom: -200px;
        opacity: 0;
        transform: translateX(0) scale(0.6);
    }
    15% {
        opacity: 0.7;
    }
    50% {
        transform: translateX(-40px) scale(1);
        opacity: 1;
    }
    85% {
        opacity: 0.4;
        transform: translateX(30px) scale(1.2);
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-20px) scale(1.4);
    }
}

/* Layer 5 — Sauna stones in corners */
.sauna-hero-stones {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 4;
    pointer-events: none;
}

.sauna-stones-pile {
    position: absolute;
    bottom: 0;
    width: 280px;
    height: 200px;
    color: #d04510;
    opacity: 0.25;
}

.sauna-stones-l {
    left: -40px;
    animation: stonesGlow 4s ease-in-out infinite;
}

.sauna-stones-r {
    right: -40px;
    transform: scaleX(-1);
    animation: stonesGlow 4s ease-in-out infinite reverse;
}

@keyframes stonesGlow {
    0%, 100% {
        opacity: 0.2;
        filter: drop-shadow(0 0 10px rgba(255, 100, 30, 0.4));
    }
    50% {
        opacity: 0.35;
        filter: drop-shadow(0 0 25px rgba(255, 140, 50, 0.7));
    }
}

.sauna-stones-pile svg {
    width: 100%;
    height: 100%;
}

/* Layer 6 — Hot stones glow effect at center bottom */
.sauna-hero-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center bottom, rgba(255, 140, 50, 0.4) 0%, rgba(200, 70, 20, 0.2) 30%, transparent 60%);
    filter: blur(40px);
    z-index: 3;
    pointer-events: none;
    animation: glowBreath 3s ease-in-out infinite;
}

@keyframes glowBreath {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1)
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.15)
    }
}

/* Layer 7 — Wooden ladle decoration */
.sauna-hero-ladle {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 180px;
    height: 280px;
    color: var(--gold-light);
    opacity: 0.4;
    z-index: 5;
    animation: ladleSway 7s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(201, 168, 106, 0.4));
}

@keyframes ladleSway {
    0%, 100% {
        transform: rotate(-8deg) translateY(0)
    }
    50% {
        transform: rotate(-2deg) translateY(-12px)
    }
}

.sauna-hero-ladle svg {
    width: 100%;
    height: 100%;
}

/* Layer 8 — Birch leaves (vihta) decoration */
.sauna-hero-vihta {
    position: absolute;
    bottom: 25%;
    left: 4%;
    width: 160px;
    height: 240px;
    color: var(--gold);
    opacity: 0.4;
    z-index: 5;
    animation: vihtaFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(201, 168, 106, 0.3));
}

@keyframes vihtaFloat {
    0%, 100% {
        transform: rotate(8deg) translateY(0)
    }
    50% {
        transform: rotate(12deg) translateY(-8px)
    }
}

.sauna-hero-vihta svg {
    width: 100%;
    height: 100%;
}

/* Layer 9 — Temperature display badge */
.sauna-hero-temp-badge {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    z-index: 6;
    background: linear-gradient(135deg, rgba(40, 10, 5, 0.85), rgba(80, 25, 10, 0.7));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 140, 50, 0.35);
    border-radius: 24px;
    padding: 28px 24px;
    text-align: center;
    color: var(--gold-light);
    box-shadow: 0 25px 60px rgba(255, 100, 30, 0.2),
    inset 0 1px 2px rgba(255, 200, 150, 0.15);
}

.sauna-hero-temp-label {
    font-family: var(--serif);
    font-style: italic;
    font-size: 12px;
    margin-bottom: 14px;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffb080;
}

.sauna-hero-temp-value {
    font-family: var(--serif);
    font-size: 54px;
    font-weight: 500;
    line-height: 1;
    background: linear-gradient(135deg, #ffd080 0%, #ff9050 50%, #d04510 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 140, 50, 0.3);
    margin-bottom: 4px;
}

.sauna-hero-temp-value small {
    font-size: 22px;
    opacity: 0.8;
}

.sauna-hero-temp-sublabel {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.6;
}

.sauna-hero-temp-decoration {
    margin-top: 14px;
    color: #ff9050;
    opacity: 0.6;
    font-size: 16px;
}

@media (max-width: 1100px) {
    .sauna-hero-temp-badge {
        display: none;
    }
}

/* Hero content */
.sauna-hero-content {
    position: relative;
    z-index: 7;
    max-width: 900px;
    text-align: center;
    animation: heroFadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sauna-hero-edition {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 140, 50, 0.4);
    border-radius: 40px;
    background: rgba(40, 10, 5, 0.4);
    backdrop-filter: blur(12px);
    color: #ffb080;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(255, 100, 30, 0.15);
}

.sauna-hero-edition::before,
.sauna-hero-edition::after {
    content: "";
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff9050);
}

.sauna-hero-edition::after {
    background: linear-gradient(90deg, #ff9050, transparent);
}

.sauna-hero-title {
    font-family: var(--serif);
    font-size: clamp(60px, 11vw, 140px);
    font-weight: 400;
    line-height: 0.9;
    color: #fff5e8;
    letter-spacing: -2px;
    margin-bottom: 22px;
    text-shadow: 0 8px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(255, 140, 50, 0.15);
}

.sauna-hero-title em {
    font-weight: 300;
    font-style: italic;
    background: linear-gradient(135deg, #ffd080 0%, #ff9050 40%, #d04510 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.sauna-hero-title em::after {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: -8px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff9050, transparent);
    border-radius: 2px;
    filter: blur(0.5px);
}

.sauna-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 26px auto 28px;
    width: 380px;
    max-width: 90%;
}

.sauna-hero-divider .heat-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d04510, #ff9050, #d04510, transparent);
    box-shadow: 0 0 8px rgba(255, 140, 50, 0.4);
}

.sauna-hero-divider .flame-icon {
    color: #ff9050;
    font-size: 18px;
    filter: drop-shadow(0 0 12px rgba(255, 140, 50, 0.6));
    animation: flameFlicker 0.8s ease-in-out infinite alternate;
}

@keyframes flameFlicker {
    0% {
        transform: scale(1) rotate(-2deg);
        opacity: 0.85
    }
    100% {
        transform: scale(1.08) rotate(2deg);
        opacity: 1
    }
}

.sauna-hero-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(17px, 2vw, 22px);
    color: #ffd5b0;
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-weight: 300;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.sauna-hero-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.sauna-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    background: rgba(255, 140, 50, 0.08);
    border: 1px solid rgba(255, 140, 50, 0.25);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    color: #ffd5b0;
    font-size: 12.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.3s;
}

.sauna-hero-meta-item:hover {
    border-color: #ff9050;
    background: rgba(255, 140, 50, 0.15);
    transform: translateY(-2px);
}

.sauna-hero-meta-item i {
    color: #ff9050;
    filter: drop-shadow(0 0 4px rgba(255, 140, 50, 0.5));
}

.sauna-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.sauna-hero-cta .btn-primary {
    background: linear-gradient(135deg, #c64020, #8a2a18);
    box-shadow: 0 10px 30px rgba(198, 64, 32, 0.4);
}

.sauna-hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, #d04510, #c64020);
    box-shadow: 0 16px 40px rgba(255, 100, 30, 0.5);
}

.sauna-hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ffb080;
}

.sauna-hero-scroll-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.7;
}

.sauna-hero-scroll-icon {
    width: 24px;
    height: 38px;
    border: 1.5px solid #ff9050;
    border-radius: 20px;
    opacity: 0.8;
    position: relative;
    box-shadow: 0 0 12px rgba(255, 140, 50, 0.3);
}

.sauna-hero-scroll-icon::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: #ff9050;
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(255, 140, 50, 0.8);
    animation: scroll 1.8s infinite;
}

@media (max-width: 768px) {
    .sauna-hero {
        padding: 110px 18px 80px;
    }

    .sauna-hero-ladle,
    .sauna-hero-vihta {
        display: none;
    }

    .sauna-stones-pile {
        width: 180px;
        height: 130px;
    }

    .sauna-hero-meta-item {
        font-size: 11px;
        padding: 8px 14px;
        letter-spacing: 1px;
    }
}

/* === HEAT METER === */
.sauna-heat-meter {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #f7e8d4 100%);
    position: relative;
    overflow: hidden;
}

.sauna-heat-meter::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 50, 0.12), transparent 70%);
}

.heat-meter-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .heat-meter-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.heat-meter-visual {
    position: relative;
    padding: 20px;
}

.heat-thermometer {
    position: relative;
    width: 200px;
    height: 480px;
    margin: 0 auto;
    background: linear-gradient(180deg, #faf3e3 0%, #f5e7d4 100%);
    border-radius: 100px;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.1),
    0 30px 60px rgba(255, 100, 30, 0.15),
    0 0 0 4px rgba(201, 168, 106, 0.2);
    border: 1px solid rgba(201, 168, 106, 0.3);
}

.heat-thermometer-bulb {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffd080 0%, #ff9050 40%, #c64020 80%, #8a2a18 100%);
    box-shadow: inset 0 -8px 20px rgba(0, 0, 0, 0.3),
    inset 0 4px 10px rgba(255, 220, 180, 0.5),
    0 0 30px rgba(255, 100, 30, 0.6),
    0 0 60px rgba(255, 140, 50, 0.3);
    animation: bulbPulse 3s ease-in-out infinite;
}

@keyframes bulbPulse {
    0%, 100% {
        box-shadow: inset 0 -8px 20px rgba(0, 0, 0, 0.3),
        inset 0 4px 10px rgba(255, 220, 180, 0.5),
        0 0 30px rgba(255, 100, 30, 0.6),
        0 0 60px rgba(255, 140, 50, 0.3);
    }
    50% {
        box-shadow: inset 0 -8px 20px rgba(0, 0, 0, 0.3),
        inset 0 4px 10px rgba(255, 220, 180, 0.5),
        0 0 45px rgba(255, 100, 30, 0.8),
        0 0 90px rgba(255, 140, 50, 0.5);
    }
}

.heat-thermometer-tube {
    position: absolute;
    top: 30px;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    background: #fdf6e8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(201, 168, 106, 0.3);
}

.heat-thermometer-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: linear-gradient(180deg, #ffd080 0%, #ff9050 30%, #d04510 70%, #8a2a18 100%);
    border-radius: 0 0 18px 18px;
    animation: fillPulse 3s ease-in-out infinite;
    box-shadow: inset 0 0 12px rgba(255, 200, 150, 0.4);
}

@keyframes fillPulse {
    0%, 100% {
        height: 65%
    }
    50% {
        height: 72%
    }
}

.heat-thermometer-marks {
    position: absolute;
    top: 30px;
    bottom: 110px;
    right: -50px;
    width: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: var(--gold-dark);
}

.heat-thermometer-marks span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.heat-thermometer-marks span::before {
    content: "";
    width: 8px;
    height: 1px;
    background: var(--gold-dark);
    opacity: 0.6;
}

.heat-meter-text .eyebrow {
    margin-bottom: 16px;
}

.heat-meter-text h2 {
    margin-bottom: 24px;
}

.heat-meter-text p {
    font-size: 16px;
    color: var(--brown-soft);
    line-height: 1.9;
    margin-bottom: 18px;
}

.heat-meter-text p strong {
    color: var(--burgundy);
    font-weight: 600;
}

.heat-zones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.heat-zone {
    padding: 18px 14px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s;
}

.heat-zone:hover {
    transform: translateY(-4px);
}

.heat-zone-warm {
    background: linear-gradient(180deg, #ffe8c8, #ffd098);
    color: #8a4818;
}

.heat-zone-hot {
    background: linear-gradient(180deg, #ffc080, #ff9050);
    color: #fff;
}

.heat-zone-intense {
    background: linear-gradient(180deg, #d04510, #8a2a18);
    color: #fff;
}

.heat-zone-temp {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 4px;
}

.heat-zone-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.85;
}

/* === BENEFITS — heat radial layout === */
.sauna-benefits {
    padding: 130px 0;
    background: linear-gradient(180deg, #f7e8d4 0%, #fdf0dc 100%);
    position: relative;
    overflow: hidden;
}

.sauna-benefits::before {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 50, 0.1), transparent 70%);
}

.sauna-benefits-stack {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

@media (max-width: 900px) {
    .sauna-benefits-stack {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .sauna-benefits-stack {
        grid-template-columns: 1fr;
    }
}

.sauna-benefit-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 40px 28px 28px;
    border: 1px solid rgba(255, 140, 50, 0.18);
    box-shadow: 0 10px 30px rgba(255, 100, 30, 0.08),
    var(--shadow-sm);
    transition: 0.4s;
    overflow: hidden;
}

.sauna-benefit-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 50, 0.15), transparent 70%);
    transition: 0.4s;
}

.sauna-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 100, 30, 0.18),
    var(--shadow-lg);
}

.sauna-benefit-card:hover::before {
    transform: scale(1.3);
}

.sauna-benefit-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 42px;
    line-height: 1;
    background: linear-gradient(135deg, #ffd080, #ff9050, #d04510);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.6;
    font-weight: 500;
}

.sauna-benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #d04510, #8a2a18);
    color: #ffd080;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(208, 69, 16, 0.3),
    inset 0 1px 2px rgba(255, 200, 150, 0.3);
    position: relative;
    z-index: 1;
}

.sauna-benefit-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--burgundy);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.sauna-benefit-card p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* === SAUNA TYPES — comparison === */
.sauna-types {
    padding: 130px 0;
    background: linear-gradient(180deg, #fdf0dc 0%, var(--cream-warm) 100%);
}

.sauna-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 800px) {
    .sauna-types-grid {
        grid-template-columns: 1fr;
    }
}

.sauna-type-card {
    background: #fff;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 168, 106, 0.2);
    transition: 0.4s;
    position: relative;
}

.sauna-type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.sauna-type-header {
    position: relative;
    padding: 40px 36px 30px;
    color: #fff;
    overflow: hidden;
}

.sauna-type-traditional .sauna-type-header {
    background: linear-gradient(135deg, #8a2a18 0%, #d04510 100%);
}

.sauna-type-infrared .sauna-type-header {
    background: linear-gradient(135deg, #6b1f3a 0%, #c95838 100%);
}

.sauna-type-header::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 220, 180, 0.2), transparent 70%);
}

.sauna-type-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 250, 240, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 220, 180, 0.3);
    color: #ffd080;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.sauna-type-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.sauna-type-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 250, 240, 0.15);
    border: 1px solid rgba(255, 220, 180, 0.3);
    color: #ffd080;
    border-radius: 30px;
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.sauna-type-body {
    padding: 30px 36px 36px;
}

.sauna-type-body > p {
    font-size: 15px;
    color: var(--brown-soft);
    line-height: 1.8;
    margin-bottom: 22px;
}

.sauna-type-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.sauna-type-spec {
    padding: 12px 14px;
    background: rgba(255, 140, 50, 0.06);
    border-radius: 10px;
    border-left: 3px solid #ff9050;
}

.sauna-type-spec-lbl {
    font-size: 10px;
    color: var(--gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 3px;
}

.sauna-type-spec-val {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--burgundy);
    font-weight: 500;
}

.sauna-type-features {
    list-style: none;
    padding: 0;
}

.sauna-type-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--brown);
}

.sauna-type-features li i {
    color: #ff9050;
    font-size: 13px;
    margin-top: 4px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(255, 140, 50, 0.3));
}

/* === SAUNA RITUAL — large numbered timeline === */
.sauna-ritual {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream-warm) 0%, #f7e8d4 100%);
    position: relative;
}

.ritual-pathway {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
}

.ritual-pathway-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 90px;
    width: 3px;
    background: linear-gradient(180deg,
    transparent 0%,
    #ff9050 5%,
    #d04510 30%,
    #d04510 70%,
    #ff9050 95%,
    transparent 100%);
    box-shadow: 0 0 12px rgba(255, 140, 50, 0.3);
    z-index: 0;
}

@media (max-width: 700px) {
    .ritual-pathway-line {
        left: 30px;
    }
}

.ritual-stage {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 700px) {
    .ritual-stage {
        grid-template-columns: 80px 1fr;
        gap: 20px;
        padding: 20px 0;
    }
}

.ritual-stage-marker {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ritual-stage-circle {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d04510 0%, #8a2a18 100%);
    color: #ffd080;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 15px 40px rgba(208, 69, 16, 0.4),
    0 0 0 6px rgba(255, 140, 50, 0.15),
    inset 0 2px 4px rgba(255, 220, 180, 0.3);
    z-index: 2;
}

@media (max-width: 700px) {
    .ritual-stage-circle {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

.ritual-stage-circle::after {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 140, 50, 0.4);
    animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

.ritual-stage-num {
    position: absolute;
    bottom: -14px;
    right: -10px;
    width: 36px;
    height: 36px;
    background: #fff;
    color: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #ff9050;
    z-index: 3;
}

.ritual-stage-content {
    background: #fff;
    border-radius: 18px;
    padding: 26px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 168, 106, 0.18);
    border-left: 4px solid #ff9050;
    transition: 0.4s;
}

.ritual-stage-content:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: #d04510;
}

.ritual-stage-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.ritual-stage-time {
    display: inline-block;
    padding: 5px 13px;
    background: linear-gradient(135deg, #d04510, #8a2a18);
    color: #fff;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.ritual-stage-temp {
    display: inline-block;
    padding: 5px 13px;
    background: rgba(255, 140, 50, 0.12);
    color: #d04510;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 700;
}

.ritual-stage-content h3 {
    font-family: var(--serif);
    font-size: 23px;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.ritual-stage-content p {
    font-size: 15px;
    color: var(--brown-soft);
    line-height: 1.8;
    margin: 0;
}

/* === COMPLEMENTARY — when sauna meets hammam === */
.sauna-complement {
    padding: 130px 0;
    background: linear-gradient(180deg, #f7e8d4 0%, var(--cream) 100%);
}

.complement-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(255, 100, 30, 0.12);
    border: 1px solid rgba(255, 140, 50, 0.18);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
}

@media (max-width: 900px) {
    .complement-card {
        grid-template-columns: 1fr;
    }
}

.complement-visual {
    position: relative;
    background: linear-gradient(135deg, #2a0e08 0%, #4a1a10 50%, #2a0e08 100%);
    padding: 60px 40px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.complement-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 140, 50, 0.25), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(255, 100, 30, 0.18), transparent 60%);
}

.complement-icons-meeting {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.complement-icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.15), rgba(255, 250, 240, 0.05));
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 200, 150, 0.4);
    color: #ffd080;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 2px rgba(255, 220, 180, 0.2);
    animation: iconFloat 4s ease-in-out infinite;
}

.complement-icon-circle:nth-child(3) {
    animation-delay: -2s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
}

.complement-icon-plus {
    color: #ff9050;
    font-size: 28px;
    filter: drop-shadow(0 0 12px rgba(255, 140, 50, 0.6));
    animation: plusGlow 2s ease-in-out infinite;
}

@keyframes plusGlow {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1)
    }
    50% {
        opacity: 1;
        transform: scale(1.15)
    }
}

.complement-body {
    padding: 60px 50px;
}

.complement-body .eyebrow {
    margin-bottom: 16px;
}

.complement-body h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 22px;
}

.complement-body p {
    font-size: 16px;
    color: var(--brown-soft);
    line-height: 1.85;
    margin-bottom: 22px;
}

.complement-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.complement-step {
    text-align: center;
    padding: 16px 10px;
    background: linear-gradient(180deg, #faf3e3, #f7e8d4);
    border-radius: 14px;
    border: 1px solid rgba(255, 140, 50, 0.15);
}

.complement-step-num {
    font-family: var(--serif);
    font-size: 24px;
    color: #d04510;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 6px;
}

.complement-step-label {
    font-size: 11px;
    color: var(--brown-soft);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* === FOR WHO ATCAUTIONS — split with warnings === */
.sauna-warnings {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.warnings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 800px) {
    .warnings-grid {
        grid-template-columns: 1fr;
    }
}

.warnings-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px;
    border: 1px solid rgba(201, 168, 106, 0.2);
    box-shadow: var(--shadow-sm);
    transition: 0.4s;
}

.warnings-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.warnings-card.suitable {
    border-top: 5px solid #ff9050;
}

.warnings-card.caution {
    border-top: 5px solid var(--burgundy);
}

.warnings-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(201, 168, 106, 0.2);
}

.warnings-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.warnings-card.suitable .warnings-card-icon {
    background: linear-gradient(135deg, #d04510, #ff9050);
    box-shadow: 0 8px 20px rgba(208, 69, 16, 0.3);
}

.warnings-card.caution .warnings-card-icon {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    box-shadow: 0 8px 20px rgba(107, 31, 58, 0.3);
}

.warnings-card-header h3 {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--burgundy);
    margin: 0;
}

.warnings-card-header small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.warnings-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warnings-card li {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 106, 0.1);
    align-items: flex-start;
}

.warnings-card li:last-child {
    border-bottom: 0;
}

.warnings-card li i {
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 14px;
}

.warnings-card.suitable li i {
    color: #d04510;
}

.warnings-card.caution li i {
    color: var(--burgundy);
}

.warnings-card-body strong {
    display: block;
    color: var(--burgundy);
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 3px;
}

.warnings-card-body span {
    color: var(--brown-soft);
    font-size: 13.5px;
    line-height: 1.65;
}

/* === QUOTE BAND — dark fire === */
.sauna-quote-band {
    position: relative;
    padding: 140px 24px;
    background: radial-gradient(ellipse at center, #3a1610 0%, #1a0703 70%, #0a0302 100%);
    overflow: hidden;
    text-align: center;
}

.sauna-quote-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 140, 50, 0.25), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(200, 70, 20, 0.18), transparent 60%);
}

.sauna-quote-band-embers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.qb-ember {
    position: absolute;
    bottom: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffb060 0%, #ff8030 40%, #d04510 100%);
    box-shadow: 0 0 10px rgba(255, 140, 50, 0.8);
    animation: emberRise linear infinite;
}

.qb-ember:nth-child(1) {
    left: 12%;
    width: 5px;
    height: 5px;
    animation-duration: 9s
}

.qb-ember:nth-child(2) {
    left: 28%;
    width: 7px;
    height: 7px;
    animation-duration: 11s;
    animation-delay: -3s
}

.qb-ember:nth-child(3) {
    left: 45%;
    width: 4px;
    height: 4px;
    animation-duration: 8s;
    animation-delay: -6s
}

.qb-ember:nth-child(4) {
    left: 60%;
    width: 8px;
    height: 8px;
    animation-duration: 13s;
    animation-delay: -2s
}

.qb-ember:nth-child(5) {
    left: 75%;
    width: 5px;
    height: 5px;
    animation-duration: 10s;
    animation-delay: -8s
}

.qb-ember:nth-child(6) {
    left: 90%;
    width: 6px;
    height: 6px;
    animation-duration: 12s;
    animation-delay: -4s
}

.sauna-quote-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: #fff5e8;
}

.sauna-quote-flame {
    width: 60px;
    height: 80px;
    margin: 0 auto 24px;
    color: #ff9050;
    filter: drop-shadow(0 0 24px rgba(255, 140, 50, 0.8));
    animation: flameFlicker 0.8s ease-in-out infinite alternate;
}

.sauna-quote-flame svg {
    width: 100%;
    height: 100%;
}

.sauna-quote-content blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.5;
    color: #ffd5b0;
    margin-bottom: 26px;
    font-weight: 300;
}

.sauna-quote-content blockquote em {
    background: linear-gradient(135deg, #ffd080, #ff9050);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 400;
}

.sauna-quote-cite {
    color: #ffb080;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* === PROTOCOL — 3 column do/dont/care === */
.sauna-protocol {
    padding: 130px 0;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
}

.protocol-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .protocol-grid-3 {
        grid-template-columns: 1fr;
    }
}

.protocol-col {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid rgba(201, 168, 106, 0.2);
    transition: 0.4s;
    border-top: 4px solid;
}

.protocol-col:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.protocol-col-before {
    border-top-color: #ff9050;
}

.protocol-col-during {
    border-top-color: #d04510;
}

.protocol-col-after {
    border-top-color: var(--burgundy);
}

.protocol-col-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201, 168, 106, 0.15);
}

.protocol-col-header i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.protocol-col-before .protocol-col-header i {
    background: linear-gradient(135deg, #ff9050, #d04510);
}

.protocol-col-during .protocol-col-header i {
    background: linear-gradient(135deg, #d04510, #8a2a18);
}

.protocol-col-after .protocol-col-header i {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
}

.protocol-col-header h4 {
    font-family: var(--serif);
    font-size: 21px;
    color: var(--burgundy);
    margin: 0;
}

.protocol-col-header small {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 3px;
}

.protocol-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.protocol-col li {
    display: flex;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    color: var(--brown);
    line-height: 1.65;
    align-items: flex-start;
}

.protocol-col li i {
    color: var(--gold-dark);
    font-size: 9px;
    margin-top: 7px;
    flex-shrink: 0;
}

/* === FINAL CTA === */
.sauna-final {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #f7e8d4 100%),
    radial-gradient(ellipse at center top, rgba(255, 140, 50, 0.1), transparent 60%);
    overflow: hidden;
}

.sauna-final::before {
    content: "";
    position: absolute;
    top: 8%;
    right: 4%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 50, 0.18), transparent 70%);
}

.sauna-final::after {
    content: "";
    position: absolute;
    bottom: 8%;
    left: 4%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(208, 69, 16, 0.12), transparent 70%);
}

.sauna-final-card {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 50px 100px rgba(255, 100, 30, 0.18);
    border: 1px solid rgba(255, 140, 50, 0.2);
    overflow: hidden;
}

.sauna-final-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff9050, #d04510, #ff9050);
}

.sauna-final-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d04510, #8a2a18);
    color: #ffd080;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 18px 40px rgba(208, 69, 16, 0.4),
    0 0 0 8px rgba(255, 140, 50, 0.1),
    inset 0 2px 4px rgba(255, 220, 180, 0.3);
}

.sauna-final-card h2 {
    font-size: clamp(34px, 5vw, 54px);
    margin: 14px 0 22px;
}

.sauna-final-card p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--brown-soft);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 36px;
}

.sauna-final-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.sauna-final-cta .btn-primary {
    background: linear-gradient(135deg, #c64020, #8a2a18);
    box-shadow: 0 10px 30px rgba(198, 64, 32, 0.35);
}

.sauna-final-cta .btn-primary:hover {
    background: linear-gradient(135deg, #d04510, #c64020);
    box-shadow: 0 16px 40px rgba(255, 100, 30, 0.5);
}

@media (max-width: 600px) {
    .sauna-heat-meter {
        padding: 80px 0
    }

    .sauna-benefits {
        padding: 80px 0
    }

    .sauna-types {
        padding: 80px 0
    }

    .sauna-ritual {
        padding: 80px 0
    }

    .sauna-complement {
        padding: 80px 0
    }

    .sauna-warnings {
        padding: 80px 0
    }

    .sauna-protocol {
        padding: 80px 0
    }

    .sauna-final {
        padding: 80px 0
    }

    .sauna-final-card {
        padding: 50px 28px
    }

    .complement-body {
        padding: 40px 28px
    }

    .complement-visual {
        padding: 50px 28px;
        min-height: 280px
    }

    .complement-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 28px
    }
}