body {
    background-color: #f6f1ee;
}


/* =========================================================
   NEWSLETTER COMPONENT
   ========================================================= */

.newsletter {
    background: #ffffff;
    padding: 160px 0 180px;
}

.newsletter-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}


/* ---------- TITLE ---------- */

.newsletter-title {
    font-family: "Roslindale", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5;
    color: #3a2f2a;
    margin-bottom: 64px;
}


/* ---------- FORM ---------- */

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.newsletter-form input {
    width: 520px;
    height: 64px;
    padding: 0 32px;
    border-radius: 999px;
    border: 1px solid rgba(184, 91, 62, 0.6);
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b85b3e;
}

.newsletter-form input::placeholder {
    color: #b85b3e;
}


/* ---------- BUTTON ---------- */

.newsletter-form button {
    height: 64px;
    padding: 0 64px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #b85b3e;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* ---------- CONSENT ---------- */

.newsletter-consent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    margin-top: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #3a2f2a;
}

.newsletter-consent input {
    width: 14px;
    height: 14px;
    accent-color: #b85b3e;
}


/* =========================================================
   NEXT PAGE WIDGET
   ========================================================= */

.next-page {
    position: relative;
    height: 520px;
    width: 100%;
    overflow: hidden;
}

.next-page-link {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    color: #ffffff;
}


/* ---------- BACKGROUND IMAGE ---------- */

.next-page-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s ease;
}


/* ---------- OVERLAY ---------- */

.next-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 0, 0, .35), rgba(0, 0, 0, .15));
}


/* ---------- CONTENT ---------- */

.next-page-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* YATAY ORTALA */
    text-align: center;
    /* METİN ORTALA */
}


/* ---------- EYEBROW ---------- */

.next-page-eyebrow {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    opacity: .85;
    margin-bottom: 24px;
}


/* ---------- TITLE ---------- */

.next-page-title {
    font-family: "Roslindale", serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 48px;
}


/* ---------- CTA ---------- */

.next-page-cta {
    width: 96px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background .3s ease, transform .3s ease;
}


/* ---------- HOVER ---------- */

.next-page-link:hover .next-page-bg {
    transform: scale(1.05);
}

.next-page-link:hover .next-page-cta {
    background: rgba(255, 255, 255, .15);
    transform: translateX(6px);
}


/* =========================================================
   IMAGE NAVIGATION
   ========================================================= */

.image-nav {
    display: flex;
    max-width: var(--container);
    /* sayfa container */
    margin: 120px auto;
    /* ortala */
    height: 420px;
    gap: 32px;
    /* görseller arası boşluk */
}


/* ---------- ITEM ---------- */

.image-nav-item {
    position: relative;
    flex: 1 1 33.333%;
    overflow: hidden;
    transition: flex 0.6s ease;
}


/* Hovered item grows */

.image-nav-item:hover {
    flex: 1 1 50%;
}


/* Non-hovered items shrink */

.image-nav:hover .image-nav-item:not(:hover) {
    flex: 1 1 25%;
}


/* ---------- BACKGROUND ---------- */

.image-nav-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease, filter .6s ease;
}


/* Dim non-hover */

.image-nav:hover .image-nav-item:not(:hover) .image-nav-bg {
    filter: brightness(0.6);
}


/* Zoom hover */

.image-nav-item:hover .image-nav-bg {
    transform: scale(1.05);
}


/* ---------- CONTENT ---------- */

.image-nav-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}


/* ---------- TITLE ---------- */

.image-nav-content h3 {
    font-family: "Roslindale", serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0;
    white-space: nowrap;
    /* SATIR KIRILMASIN */
    text-align: center;
    transition: .3s all linear;
}


/* Move title up on hover */

.image-nav-item:hover h3 {
    transform: translateY(-24px);
}


/* ---------- ARROW ---------- */

.image-nav-arrow {
    opacity: 0;
    margin-top: 24px;
    width: 72px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: opacity .3s ease, transform .3s ease;
}


/* Show arrow on hover */

.image-nav-item:hover .image-nav-arrow {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   CENTER COPY (Watermark + Eyebrow + Centered Text)
   ========================================================= */

.center-copy {
    position: relative;
    background: #f6f1ee;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
}


/* watermark */

.center-copy::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    background-image: var(--wm);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .08;
    pointer-events: none;
}

.center-copy__inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

.center-copy__eyebrow {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #b85b3e;
    margin-bottom: 18px;
}


/* ----- Small paragraph variant ----- */

.center-copy--small .center-copy__text {
    font-family: "Roslindale", serif;
    font-size: 22px;
    line-height: 1.65;
    color: rgba(27, 27, 27, .72);
    margin: 0 auto;
    max-width: 920px;
}


/* ----- Large headline variant ----- */

.center-copy--large .center-copy__headline {
    font-family: "Roslindale", serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.05;
    color: rgba(27, 27, 27, .78);
    margin: 0 auto;
    max-width: 980px;
}


/* Responsive */

@media (max-width: 1024px) {
    .center-copy {
        padding: 110px 0;
    }
    .center-copy::before {
        width: 360px;
        height: 360px;
        top: 10px;
    }
    .center-copy--large .center-copy__headline {
        font-size: 52px;
    }
}

@media (max-width: 640px) {
    .center-copy {
        padding: 90px 0;
    }
    .center-copy::before {
        width: 280px;
        height: 280px;
    }
    .center-copy--small .center-copy__text {
        font-size: 18px;
    }
    .center-copy--large .center-copy__headline {
        font-size: 38px;
    }
}


/* =========================================================
   SPLIT FEATURE (DOM order controls left/right)
   ========================================================= */

.split-feature {
    background: #f6f1ee;
    padding: 140px 0;
}

.split-feature__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: flex-start;
    gap: 140px;
}


/* Text */

.split-feature__content {
    flex: 1 1 auto;
    padding-top: 10px;
    min-width: 0;
}

.split-feature__eyebrow {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #b85b3e;
    margin-bottom: 34px;
}

.split-feature__title {
    font-family: "Roslindale", serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: rgba(27, 27, 27, .78);
    margin: 0 0 44px;
}

.split-feature__text {
    max-width: 520px;
}

.split-feature__text p {
    margin: 0 0 18px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(27, 27, 27, .55);
}

.split-feature__text p:last-child {
    margin-bottom: 0;
}


/* Image */

.split-feature__media {
    flex: 0 0 560px;
    /* sabit görsel kolon genişliği */
    margin: 0;
    height: 560px;
    overflow: hidden;
    background: #fff;
}

.split-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}


/* Media position modifiers */

.split-feature--media-left .split-feature__media {
    order: -1;
}

.split-feature--media-right .split-feature__media {
    order: 1;
}


/* Responsive */

@media (max-width:1200px) {
    .split-feature__inner {
        padding: 0 40px;
        gap: 80px;
    }
    .split-feature__media {
        flex-basis: 480px;
        height: 520px;
    }
    .split-feature__title {
        font-size: 60px;
    }
}

@media (max-width:1023px) {
    .split-feature {
        padding: 100px 0;
    }
    .split-feature__inner {
        flex-direction: column;
        gap: 36px;
    }
    .split-feature__media {
        flex-basis: auto;
        width: 100%;
        height: 420px;
    }
    /* Media-right: görsel üstte olsun (order: -1) */
    .split-feature--media-right .split-feature__media {
        order: -1;
    }
    .split-feature--media-right .split-feature__content {
        order: 1;
    }
    .split-feature__title {
        font-size: 44px;
    }
    .split-feature__text {
        max-width: 100%;
    }
}


/* =========================================================
   PROMO HERO (Inner Pages) - 100vh + Parallax
   ========================================================= */

.promo-hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: #0f0f10;
    /* image yüklenene kadar */
}


/* Background image layer */

.promo-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.promo-hero__bg img {
    width: 100%;
    height: 120%;
    /* parallax kaymada boşluk vermesin */
    object-fit: cover;
    object-position: center;
    display: block;
    transform: translate3d(0, -8%, 0);
    /* default biraz yukarı; daha sinematik */
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}


/* Overlay */

.promo-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .35) 45%, rgba(0, 0, 0, .55) 100%);
}


/* Content */

.promo-hero__inner {
    position: relative;
    z-index: 3;
    height: 100%;
    display: grid;
    place-items: center;
    padding-top: clamp(120px, 14vh, 200px);
    /* header iki satır üstte olduğu için */
    padding-bottom: 70px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.promo-hero__content {
    text-align: center;
    max-width: 90%;
}

.promo-hero__kicker {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 18px;
}

.promo-hero__title {
    font-family: "Roslindale", serif;
    font-weight: 400;
    font-size: clamp(52px, 5.5vw, 92px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 18px;
}

.promo-hero__desc {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .78);
    margin: 0 auto;
    max-width: 640px;
}


/* Scroll pill */

.promo-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    width: 170px;
    height: 62px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    color: #fff;
    transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.promo-hero__scroll:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .65);
    transform: translateX(-50%) translateY(2px);
}

.promo-hero__scroll-icon {
    display: grid;
    place-items: center;
}


/* Responsive */

@media (max-width: 860px) {
    .promo-hero {
        min-height: 640px;
    }
    .promo-hero__inner {
        padding-top: 140px;
    }
    .promo-hero__scroll {
        width: 150px;
        height: 56px;
    }
}


/* =========================================================
   IMAGE + TWO COLUMN TEXT
   ========================================================= */

.image-text-two-col {
    background: #f6f1ee;
    padding: 140px 0;
}

.image-text-two-col__inner {
    display: block;
}


/* IMAGE */

.image-text-two-col__image {
    margin: 0 auto 80px;
    max-width: 100%;
}

.image-text-two-col__image img {
    width: 100%;
    height: auto;
    display: block;
}


/* CONTENT */

.image-text-two-col__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    max-width: 1000px;
    margin: 0 auto;
}


/* TEXT COLUMN */

.image-text-two-col__col p {
    margin: 0 0 22px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(27, 27, 27, .55);
}

.image-text-two-col__col p:last-child {
    margin-bottom: 0;
}

.image-text-two-col__title {
    font-family: "Roslindale", serif;
    font-size: 32px;
    font-weight: 400;
    color: #3a2f2a;
    margin: 0 0 32px;
}


/* RESPONSIVE */

@media (max-width: 1024px) {
    .image-text-two-col {
        padding: 110px 0;
    }
    .image-text-two-col__content {
        gap: 80px;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .image-text-two-col {
        padding: 90px 0;
    }
    .image-text-two-col__image {
        margin-bottom: 50px;
    }
    .image-text-two-col__content {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.image-text-two-col__container {
    width: var(--container);
    margin: 0px auto;
}


/* =========================================================
   RITUALS – TWO COLUMN FLOATING CARDS
   ========================================================= */

.rituals-grid {
    background: #f6f1ee;
    padding: 100px 0 160px;
}

.rituals-grid__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}


/* CARD BASE */

.ritual-card {
    position: relative;
    border: 1px solid rgba(184, 91, 62, .35);
    padding: 120px 60px;
    background: transparent;
}


/* CONTENT */

.ritual-card__content {
    max-width: 420px;
}

.ritual-card__title {
    font-family: "Roslindale", serif;
    font-size: 36px;
    font-weight: 400;
    color: #b85b3e;
    margin: 0 0 22px;
}

.ritual-card__text {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(27, 27, 27, .55);
    margin: 0;
}


/* MEDIA */

.ritual-card__media {
    position: absolute;
    width: 70%;
    height: 240px;
    background: #fff;
}

.ritual-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* LEFT CARD – IMAGE FROM TOP */

.ritual-card--left {
    padding-top: 180px;
}

.ritual-card__media--top {
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
}


/* RIGHT CARD – IMAGE FROM BOTTOM */

.ritual-card--right {
    padding-bottom: 180px;
}

.ritual-card__media--bottom {
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
}


/* RESPONSIVE */

@media (max-width: 1024px) {
    .rituals-grid {
        padding: 120px 0;
    }
    .rituals-grid__inner {
        gap: 80px;
    }
    .ritual-card {
        padding: 100px 40px;
    }
}

@media (max-width: 768px) {
    .rituals-grid {
        padding: 90px 0;
    }
    .rituals-grid__inner {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    .ritual-card {
        padding: 100px 32px;
    }
    .ritual-card__media {
        position: relative;
        width: 100%;
        top: auto;
        bottom: auto;
        left: auto;
        transform: none;
        margin-bottom: 24px;
    }
    .ritual-card--right .ritual-card__media {
        margin-top: 24px;
        margin-bottom: 0;
    }
}


/* =========================================================
   LEGAL CONTENT SECTION
   ========================================================= */

.legal-content {
    background: #fff;
    padding: 120px 0 160px;
}

.legal-content__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.legal-content__body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #3a2f2a;
}

.legal-content__body h2 {
    font-family: "Roslindale", serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.3;
    color: #3a2f2a;
    margin-bottom: 48px;
    margin-top: 80px;
}

.legal-content__body h2:first-child {
    margin-top: 0;
}

.legal-content__body h3 {
    font-family: "Roslindale", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    color: #3a2f2a;
    margin-top: 64px;
    margin-bottom: 24px;
}

.legal-content__body p {
    margin-bottom: 24px;
}

.legal-content__body strong {
    font-weight: 600;
    color: #2d2520;
}

.legal-content__body a {
    color: #b85b3e;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.legal-content__body a:hover {
    opacity: 0.7;
}

.legal-content__body ul,
.legal-content__body ol {
    margin-bottom: 32px;
    padding-left: 32px;
}

.legal-content__body li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-content__body ul li {
    list-style-type: disc;
}

.legal-content__body ol li {
    list-style-type: decimal;
}


/* Responsive */

@media (max-width: 768px) {
    .legal-content {
        padding: 80px 0 100px;
    }
    .legal-content__inner {
        padding: 0 24px;
    }
    .legal-content__body {
        font-size: 15px;
    }
    .legal-content__body h2 {
        font-size: 32px;
        margin-bottom: 32px;
        margin-top: 60px;
    }
    .legal-content__body h3 {
        font-size: 22px;
        margin-top: 48px;
        margin-bottom: 20px;
    }
}


/* =========================================================
   RESTAURANT INFO SECTION
   ========================================================= */

.restaurant-info {
    background: var(--color-bg);
    padding: 100px 0;
}

.restaurant-info__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.restaurant-info-card {
    background: #ffffff;
    padding: 20px 0;
}

.restaurant-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 60px;
    border-bottom: 1px solid rgba(184, 91, 62, 0.15);
}

.restaurant-info-row:last-child {
    border-bottom: none;
}

.restaurant-info-row__label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: "Roslindale", serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
}

.restaurant-info-row__label svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.restaurant-info-row__value {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-muted);
    text-align: right;
    max-width: 500px;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
    .restaurant-info {
        padding: 80px 0;
    }
    .restaurant-info-row {
        padding: 24px 40px;
    }
    .restaurant-info-row__label {
        font-size: 18px;
    }
    .restaurant-info-row__value {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .restaurant-info {
        padding: 60px 0;
    }
    .restaurant-info-card {
        padding: 10px 0;
    }
    .restaurant-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 24px;
    }
    .restaurant-info-row__label {
        font-size: 17px;
    }
    .restaurant-info-row__value {
        font-size: 13px;
        text-align: left;
        padding-left: 36px;
        max-width: 100%;
    }
}


/* =========================================================
   LONGEVITY SECTION
   ========================================================= */

.longevity-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: var(--color-cream, #f7f4f2);
}

.longevity-section__bg {
    position: relative;
    overflow: hidden;
}

.longevity-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.longevity-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    max-width: 520px;
}

.longevity-section__title {
    font-family: "Roslindale", serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0 0 40px;
}

.longevity-section__text {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.longevity-section__text p {
    margin: 0 0 24px;
}

.longevity-section__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .longevity-section {
        min-height: 500px;
    }
    .longevity-section__content {
        padding: 60px;
    }
    .longevity-section__title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .longevity-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .longevity-section__bg {
        height: 300px;
    }
    .longevity-section__content {
        padding: 50px 24px;
        max-width: 100%;
    }
    .longevity-section__title {
        font-size: 32px;
        margin-bottom: 28px;
    }
    .longevity-section__text {
        font-size: 15px;
    }
}


/* =========================================================
   DETOX SECTION (Legacy)
   ========================================================= */

.detox-section {
    background: #ffffff;
    padding: 140px 0;
}

.detox-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* ---------- CONTENT ---------- */

.detox-content__title {
    font-family: "Roslindale", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0 0 40px;
}

.detox-content__text {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.detox-content__text p {
    margin: 0 0 24px;
}

.detox-content__text p:last-child {
    margin-bottom: 0;
}


/* ---------- IMAGES ---------- */

.detox-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.detox-images__large {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.detox-images__large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detox-images__small {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 320px;
    height: 240px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.detox-images__small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
    .detox-section {
        padding: 100px 0;
    }
    .detox-section__inner {
        gap: 60px;
    }
    .detox-content__title {
        font-size: 40px;
    }
    .detox-images__large {
        height: 380px;
    }
    .detox-images__small {
        width: 280px;
        height: 200px;
        bottom: -30px;
        right: -30px;
    }
}

@media (max-width: 768px) {
    .detox-section {
        padding: 80px 0;
    }
    .detox-section__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .detox-content__title {
        font-size: 34px;
        margin-bottom: 28px;
    }
    .detox-content__text {
        font-size: 15px;
    }
    .detox-images__large {
        height: 320px;
    }
    .detox-images__small {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 240px;
        margin-top: -60px;
        margin-left: 20px;
        max-width: 320px;
    }
}


/* =========================================================
   PROMO HERO SOCIAL ICONS
   ========================================================= */

.promo-hero__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.promo-hero__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(58, 47, 42, 0.7);
    border: 1px solid rgba(58, 47, 42, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.promo-hero__social a:hover {
    background: rgba(58, 47, 42, 0.95);
    border-color: rgba(58, 47, 42, 1);
    transform: translateY(-3px);
}

.promo-hero__social img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .promo-hero__social {
        gap: 12px;
        margin-top: 24px;
    }
    .promo-hero__social a {
        width: 44px;
        height: 44px;
    }
    .promo-hero__social img {
        width: 18px;
        height: 18px;
    }
}