:root {
    --color-primary: #ac6a63;
    --color-primary-dark: #965850;
    --color-primary-soft: #c98d86;
    --color-accent: #d3ecd9;
    --color-accent-strong: #bddcc5;
    --color-cream: #f7f3ef;
    --color-blush: #efe2dd;
    --color-white: #ffffff;
    --color-text: #3d302d;
    --color-text-soft: #7e6862;
    --color-border: rgba(172, 106, 99, 0.18);

    --font-heading: "Playfair Display", serif;
    --font-body: "Inter", sans-serif;

    --container-width: 1200px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;

    --shadow-soft: 0 10px 30px rgba(70, 42, 38, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 40px, var(--container-width));
    margin: 0 auto;
}


/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: 84vh;
    display: flex;
    align-items: center;
    background-image: url("../img/hero/hero-cake.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(58, 49, 47, 0.58) 0%,
            rgba(58, 49, 47, 0.42) 28%,
            rgba(58, 49, 47, 0.20) 56%,
            rgba(58, 49, 47, 0.06) 100%);
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero .container {
    display: flex;
    align-items: center;
}

.hero__content {
    max-width: 620px;
    padding: 84px 0 72px;
    color: var(--color-white);
}

.hero__eyebrow {
    margin-bottom: 16px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3.1rem, 5.1vw, 5.1rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
    max-width: 11ch;
    text-wrap: balance;
}

.hero__text {
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.72;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 214px;
    min-height: 56px;
    padding: 0 30px;
    border-radius: 999px;
    background-color: var(--color-primary);
    color: var(--color-accent);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(72, 46, 41, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.hero__btn:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(72, 46, 41, 0.22);
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        height: auto;
        padding-bottom: 20px;
        background-position: 68% center;
        align-items: flex-start;
    }

    .hero .container {
        align-items: flex-start;
    }

    .hero__content {
        max-width: 600px;
        padding: 40px 0 44px;
    }

    .hero__title {
        font-size: clamp(2.8rem, 6vw, 4.4rem);
        line-height: 1;
        max-width: 11ch;
    }

    .hero__text {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        height: auto;
        padding-bottom: 20px;
        align-items: flex-start;
        background-size: cover;
        background-position: 72% center;
    }

    .hero__overlay {
        background:
            linear-gradient(180deg,
                rgba(58, 49, 47, 0.22) 0%,
                rgba(58, 49, 47, 0.30) 24%,
                rgba(58, 49, 47, 0.42) 58%,
                rgba(58, 49, 47, 0.52) 100%);
    }

    .hero .container {
        align-items: flex-start;
    }

    .hero__content {
        max-width: 100%;
        padding: 36px 0 34px;
    }

    /* AIRE REAL ENTRE ELEMENTOS */
    .hero__eyebrow {
        margin-bottom: 64px;
        font-size: 0.62rem;
        letter-spacing: 0.14em;
        color: rgba(255, 255, 255, 0.78);
    }

    .hero__title {
        font-size: clamp(2.35rem, 9.2vw, 3.45rem);
        line-height: 0.98;
        letter-spacing: -0.03em;
        margin-bottom: 45px;
        /* MÁS AIRE */
        max-width: 8.5ch;
        text-wrap: initial;
        margin-top: 0;
    }

    .hero__title br {
        display: block;
    }

    .hero__text {
        max-width: 31ch;
        font-size: 0.92rem;
        line-height: 1.62;
        margin-bottom: 30px;
        /* MÁS AIRE */
        color: rgba(255, 255, 255, 0.86);
    }

    .hero__actions {
        width: 100%;
    }

    .hero__btn {
        min-width: 210px;
        min-height: 50px;
        padding: 0 24px;
        font-size: 0.74rem;
        letter-spacing: 0.11em;
        box-shadow: 0 12px 28px rgba(72, 46, 41, 0.16);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        height: auto;
        padding-bottom: 16px;
        background-position: 76% center;
    }

    .hero__content {
        padding: 28px 0 28px;
    }

    .hero__eyebrow {
        margin-bottom: 48px;
    }

    .hero__title {
        font-size: clamp(2.1rem, 9.4vw, 3rem);
        max-width: 8ch;
        margin-bottom: 40px;
        margin-top: 0;
    }

    .hero__text {
        max-width: 29ch;
        font-size: 0.9rem;
        line-height: 1.58;
        margin-bottom: 26px;
    }

    .hero__btn {
        width: 100%;
        min-width: unset;
        min-height: 50px;
    }
}

/* =========================
   EDITORIAL SECTION
========================= */
.editorial-section {
    padding: 96px 0;
    background-color: var(--color-blush);
}

.editorial {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 72px;
}

.editorial__text {
    max-width: 500px;
}

.editorial__eyebrow {
    margin: 0 0 16px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.editorial__title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--color-text);
    margin-bottom: 20px;

    max-width: 14ch;
}

.editorial__description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-soft);
    max-width: 420px;
}

/* slider */
.editorial-slider {
    position: relative;
}

.editorial-slider__track {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: 0 18px 42px rgba(70, 42, 38, 0.10);
}

.editorial-slider__slide {
    display: none;
    width: 100%;
}

.editorial-slider__slide.active {
    display: block;
}

.editorial-slider__slide img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    display: block;
}

.editorial-slider__controls {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.editorial-slider__btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(172, 106, 99, 0.22);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.55);
    color: var(--color-primary);
    font-size: 0.95rem;
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.editorial-slider__btn:hover {
    background-color: var(--color-primary);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(172, 106, 99, 0.18);
}

.editorial-slider__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.editorial-slider__dot {
    width: 9px;
    height: 9px;
    border: none;
    border-radius: 999px;
    background-color: rgba(172, 106, 99, 0.22);
    cursor: pointer;
    transition: width 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.editorial-slider__dot.active {
    width: 30px;
    background-color: var(--color-primary);
    opacity: 1;
}

@media (max-width: 991px) {
    .editorial-section {
        padding: 84px 0;
    }

    .editorial {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .editorial__text,
    .editorial__description {
        max-width: 100%;
    }

    .editorial__title {
        max-width: 12ch;
    }

    .editorial-slider__slide img {
        height: 560px;
    }
}

@media (max-width: 768px) {
    .editorial-section {
        padding: 68px 0;
    }

    .editorial {
        gap: 26px;
    }

    .editorial__eyebrow {
        margin-bottom: 12px;
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .editorial__title br {
        display: none;
    }

    .editorial__title {
        max-width: 100%;
        line-height: 1.1;
    }

    .editorial__description {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .editorial-slider__track {
        border-radius: 22px;
    }

    .editorial-slider__slide img {
        height: 420px;
    }

    .editorial-slider__controls {
        margin-top: 16px;
    }

    .editorial-slider__btn {
        width: 42px;
        height: 42px;
    }

    .editorial-slider__dot.active {
        width: 24px;
    }
}

/* =========================
   OUR CAKES
========================= */
.cakes-section {
    padding: 96px 0;
    background-color: var(--color-cream);
}

.cakes-heading {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.cakes-heading__eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.cakes-heading__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: var(--color-text);
    margin-bottom: 16px;
}

.cakes-heading__text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-soft);
    max-width: 560px;
    margin: 0 auto;
}

.cakes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 28px;
}

.cake-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease;
}

.cake-card__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background-color: var(--color-white);
    box-shadow: 0 14px 34px rgba(70, 42, 38, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cake-card__image {
    width: 100%;
    height: 370px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.cake-card:hover {
    transform: translateY(-4px);
}

.cake-card:hover .cake-card__image-wrap {
    box-shadow: 0 22px 44px rgba(70, 42, 38, 0.12);
}

.cake-card:hover .cake-card__image {
    transform: scale(1.045);
}

.cake-card__content {
    padding-top: 14px;
}

.cake-card__title {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

.cake-card__link {
    display: block;
    height: 100%;
    color: inherit;
}

@media (max-width: 991px) {
    .cakes-section {
        padding: 84px 0;
    }

    .cakes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 22px;
    }

    .cake-card__image {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .cakes-section {
        padding: 68px 0;
    }

    .cakes-heading {
        margin-bottom: 38px;
    }

    .cakes-heading__eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .cakes-heading__title {
        margin-bottom: 14px;
    }

    .cakes-heading__text {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .cakes-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cake-card__image-wrap {
        border-radius: 22px;
    }

    .cake-card__image {
        height: 320px;
    }

    .cake-card__content {
        padding-top: 12px;
    }

    .cake-card__title {
        font-size: 1.22rem;
    }
}

/* =========================
   HOW TO ORDER 
========================= */
.order-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #f6efeb 0%, #f3e8e3 100%);
    position: relative;
    overflow: hidden;
}

.order-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.46) 0%, transparent 28%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.3) 0%, transparent 24%);
    pointer-events: none;
}

.order-luxury {
    position: relative;
    z-index: 1;
}

.order-luxury__eyebrow {
    margin: 0 auto 28px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);

    text-align: center;
    display: block;
    width: fit-content;
}

.order-luxury__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 88px;
    align-items: start;
}

.order-luxury__intro {
    max-width: 430px;
}

.order-luxury__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 3.8vw, 4rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--color-text);
    margin-bottom: 20px;

    max-width: 13ch;
}

.order-luxury__text {
    max-width: 390px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-soft);
}

.order-luxury__steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 42px;
    padding-left: 42px;
}

.order-luxury__steps::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg,
            rgba(172, 106, 99, 0.08) 0%,
            rgba(172, 106, 99, 0.28) 18%,
            rgba(172, 106, 99, 0.18) 82%,
            rgba(172, 106, 99, 0.08) 100%);
}

.order-luxury-step {
    position: relative;
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 28px;
    align-items: start;
    padding: 8px 0;
    transition: transform 0.35s ease;
}

.order-luxury-step::before {
    content: "";
    position: absolute;
    left: -47px;
    top: 36px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--color-primary);
    box-shadow: 0 0 0 8px rgba(172, 106, 99, 0.08);
}

.order-luxury-step:hover {
    transform: translateX(6px);
}

.order-luxury-step:hover .order-luxury-step__number {
    color: rgba(172, 106, 99, 0.5);
}

.order-luxury-step__number {
    font-family: var(--font-heading);
    font-size: 3.1rem;
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: rgba(172, 106, 99, 0.30);
}

.order-luxury-step__content {
    padding: 8px 0 0;
    max-width: 520px;
}

.order-luxury-step__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-bottom: 10px;
}

.order-luxury-step__description {
    font-size: 1rem;
    line-height: 1.82;
    color: var(--color-text-soft);
    max-width: 46ch;
}

.order-luxury__closing {
    margin: 42px auto 0;
    max-width: 620px;

    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text-soft);

    text-align: center;
}

@media (max-width: 1100px) {
    .order-section {
        padding: 96px 0;
    }

    .order-luxury__grid {
        gap: 64px;
    }
}

@media (max-width: 991px) {
    .order-luxury__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .order-luxury__intro,
    .order-luxury__text,
    .order-luxury__closing {
        max-width: 100%;
    }

    .order-luxury__title {
        max-width: 100%;
    }

    .order-luxury__steps {
        padding-left: 34px;
        gap: 34px;
    }

    .order-luxury-step {
        grid-template-columns: 72px 1fr;
        gap: 22px;
    }

    .order-luxury-step__number {
        font-size: 2.8rem;
    }

    .order-luxury-step__title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .order-section {
        padding: 72px 0;
    }

    .order-luxury__eyebrow {
        margin-bottom: 22px;
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .order-luxury__grid {
        gap: 34px;
    }

    .order-luxury__title {
        font-size: clamp(2.2rem, 9vw, 3.3rem);
        line-height: 1.05;
        margin-bottom: 16px;
    }

    .order-luxury__text,
    .order-luxury__closing {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .order-luxury__steps {
        padding-left: 24px;
        gap: 28px;
    }

    .order-luxury-step {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
    }

    .order-luxury-step::before {
        left: -30px;
        top: 18px;
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 6px rgba(172, 106, 99, 0.08);
    }

    .order-luxury-step__number {
        font-size: 2.1rem;
        line-height: 1;
    }

    .order-luxury-step__content {
        padding-top: 0;
    }

    .order-luxury-step__title {
        font-size: 1.38rem;
        margin-bottom: 8px;
    }

    .order-luxury-step__description {
        font-size: 0.95rem;
        line-height: 1.72;
        max-width: 100%;
    }

    .order-luxury__closing {
        margin-top: 30px;
        font-size: 0.96rem;
        line-height: 1.72;
        max-width: 100%;
    }
}

/* =========================
   ABOUT
========================= */
.about-section {
    padding: 96px 0;
    background-color: var(--color-cream);
}

.about {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 76px;
}

.about__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background-color: var(--color-white);
    box-shadow: 0 18px 42px rgba(70, 42, 38, 0.10);
}

.about__image {
    width: 100%;
    height: 660px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about__image-wrap:hover .about__image {
    transform: scale(1.035);
}

.about__content {
    max-width: 490px;
}

.about__eyebrow {
    display: block;
    width: fit-content;
    margin: 0 auto 28px;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.about__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: var(--color-text);
    margin-bottom: 20px;
    max-width: 13ch;
}

.about__text {
    font-size: 1rem;
    line-height: 1.82;
    color: var(--color-text-soft);
    max-width: 44ch;
}

.about__text+.about__text {
    margin-top: 18px;
}

@media (max-width: 991px) {
    .about-section {
        padding: 84px 0;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about__content {
        max-width: 100%;
    }

    .about__title,
    .about__text {
        max-width: 100%;
    }

    .about__title br {
        display: none;
    }

    .about__image {
        height: 560px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 68px 0;
    }

    .about {
        gap: 28px;
    }

    .about__eyebrow {
        font-size: 0.68rem;
        margin: 0 auto 22px;
        letter-spacing: 0.16em;
    }

    .about__title {
        margin-bottom: 16px;
        line-height: 1.08;
        max-width: 100%;
    }

    .about__title br {
        display: none;
    }

    .about__text {
        font-size: 0.96rem;
        line-height: 1.72;
        max-width: 100%;
    }

    .about__image-wrap {
        border-radius: 22px;
    }

    .about__image {
        height: 420px;
    }
}

/* =========================
   TESTIMONIALS - PREMIUM
========================= */
.testimonials-section {
    padding: 104px 0;
    background:
        linear-gradient(180deg, #f5efeb 0%, #f2e6e0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.42) 0%, transparent 26%),
        radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.22) 0%, transparent 22%);
    pointer-events: none;
}

.testimonials-premium {
    position: relative;
    z-index: 1;
}

.testimonials-premium__header {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.testimonials-premium__eyebrow {
    margin: 0 auto 16px;
    display: block;
    width: fit-content;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.testimonials-premium__title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--color-text);
    margin-bottom: 18px;
}

.testimonials-premium__text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-soft);
}

.testimonials-premium__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.testimonial-featured {
    position: relative;
    padding: 52px 48px 42px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(172, 106, 99, 0.10);
    box-shadow: 0 20px 44px rgba(70, 42, 38, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 100%;
}

.testimonial-featured__quote {
    position: absolute;
    top: 26px;
    left: 34px;
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 1;
    color: rgba(172, 106, 99, 0.18);
}

.testimonial-featured__text {
    position: relative;
    z-index: 1;
    max-width: 28ch;
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--color-text);
    margin-bottom: 28px;
}

.testimonial-featured__author {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.testimonials-premium__side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.testimonial-soft {
    padding: 30px 28px 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(172, 106, 99, 0.10);
    box-shadow: 0 14px 30px rgba(70, 42, 38, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-soft:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(70, 42, 38, 0.09);
    border-color: rgba(172, 106, 99, 0.18);
}

.testimonial-soft__text {
    font-size: 1rem;
    line-height: 1.82;
    color: var(--color-text-soft);
    margin-bottom: 20px;
}

.testimonial-soft__author {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .testimonials-section {
        padding: 88px 0;
    }

    .testimonials-premium__header {
        margin-bottom: 42px;
    }

    .testimonials-premium__layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .testimonials-premium__side {
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .testimonial-featured__text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 72px 0;
    }

    .testimonials-premium__eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .testimonials-premium__title {
        font-size: clamp(2.2rem, 9vw, 3.4rem);
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .testimonials-premium__title br {
        display: none;
    }

    .testimonials-premium__text {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .testimonial-featured {
        padding: 38px 24px 28px;
        border-radius: 24px;
    }

    .testimonial-featured__quote {
        top: 18px;
        left: 20px;
        font-size: 4rem;
    }

    .testimonial-featured__text {
        font-size: 1.45rem;
        line-height: 1.22;
        margin-bottom: 20px;
    }

    .testimonials-premium__side {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testimonial-soft {
        padding: 24px 22px 20px;
        border-radius: 20px;
    }

    .testimonial-soft__text {
        font-size: 0.95rem;
        line-height: 1.72;
        margin-bottom: 16px;
    }
}

/* =========================
   FINAL CTA
========================= */
.final-cta-section {
    padding: 96px 0 104px;
    background-color: var(--color-blush);
}

.final-cta {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 64px;
    padding: 54px;
    border-radius: 36px;
    background:
        linear-gradient(135deg,
            rgba(172, 106, 99, 0.98) 0%,
            rgba(150, 88, 80, 0.98) 100%);
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(72, 46, 41, 0.16);
    isolation: isolate;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 28%),
        radial-gradient(circle at 85% 78%, rgba(255, 255, 255, 0.08) 0%, transparent 22%);
    pointer-events: none;
    z-index: 0;
}

.final-cta__content,
.final-cta__image-wrap {
    position: relative;
    z-index: 1;
}

.final-cta__content {
    max-width: 560px;
}

.final-cta__eyebrow {
    margin-bottom: 16px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(211, 236, 217, 0.88);
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--color-white);
    margin-bottom: 18px;
    max-width: 11ch;
}

.final-cta__text {
    font-size: 1rem;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 32px;
    max-width: 500px;
}

.final-cta__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.final-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.final-cta__btn--primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    box-shadow: 0 12px 28px rgba(61, 48, 45, 0.16);
}

.final-cta__btn--primary:hover {
    background-color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(61, 48, 45, 0.20);
}

.final-cta__btn--secondary {
    border: 1px solid rgba(211, 236, 217, 0.38);
    color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.final-cta__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.10);
    border-color: rgba(211, 236, 217, 0.60);
    transform: translateY(-2px);
}

.final-cta__image-wrap {
    overflow: hidden;
    border-radius: 28px;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.final-cta__image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.final-cta:hover .final-cta__image {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .final-cta-section {
        padding: 84px 0 92px;
    }

    .final-cta {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 40px;
    }

    .final-cta__content {
        max-width: 100%;
    }

    .final-cta__title,
    .final-cta__text {
        max-width: 100%;
    }

    .final-cta__image {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 68px 0 76px;
    }

    .final-cta {
        padding: 28px 22px;
        gap: 24px;
        border-radius: 26px;
    }

    .final-cta__eyebrow {
        display: block;
        text-align: center;
        margin: 0 auto 14px;
        width: fit-content;



        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .final-cta__title {
        margin-bottom: 16px;
        max-width: 100%;
        line-height: 1.08;
    }

    .final-cta__title br {
        display: none;
    }

    .final-cta__text {
        font-size: 0.96rem;
        line-height: 1.72;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .final-cta__actions {
        gap: 12px;
    }

    .final-cta__btn {
        width: 100%;
        min-height: 50px;
        font-size: 0.78rem;
        letter-spacing: 0.10em;
    }

    .final-cta__image-wrap {
        border-radius: 22px;
    }

    .final-cta__image {
        height: 300px;
    }
}

/* =========================
   DROPDOWN CAKES
========================= */

.navbar__item--dropdown {
    position: relative;
}

.navbar__dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
}

/* Dropdown oculto */
.navbar__dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;

    background: rgba(172, 106, 99, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 14px 0;

    display: flex;
    flex-direction: column;
    gap: 10px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.25s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Items */
.navbar__dropdown li a {
    padding: 8px 18px;
    font-size: 0.85rem;
    color: var(--color-accent);
    display: block;
    transition: background 0.2s ease;
}

.navbar__dropdown li a:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Hover desktop */
.navbar__item--dropdown:hover .navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Flechita */
.navbar__arrow {
    display: inline-block;
    margin-left: 6px;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--color-accent);
    border-bottom: 1.5px solid var(--color-accent);
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.3s ease;
}

/* Hover desktop */
.navbar__item--dropdown:hover .navbar__arrow {
    transform: rotate(225deg) translateY(1px);
}

/* Mobile abierto */
.navbar__item--dropdown.open .navbar__arrow {
    transform: rotate(225deg) translateY(1px);
}


@media (max-width: 768px) {
    .navbar__item--dropdown {
        width: 100%;
    }

    .navbar__dropdown {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 10px 0 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .navbar__item--dropdown.open .navbar__dropdown {
        display: flex;
    }

    .navbar__dropdown li a {
        padding-left: 10px;
        font-size: 0.78rem;
    }
}

/* =========================
   BEST SELLING BAKES
========================= */
.best-sellers-section {
    padding: 120px 0;
    background: linear-gradient(180deg,
            #f8f1ee 0%,
            #f5ece8 100%);
}

.best-sellers-intro {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.best-sellers-intro__eyebrow {
    margin-bottom: 14px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(104, 71, 66, 0.72);
}

.best-sellers-intro__title {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #4c302c;
}

.best-sellers-intro__text {
    margin: 0 auto;
    max-width: 58ch;
    font-size: 1.02rem;
    line-height: 1.85;
    color: rgba(76, 48, 44, 0.78);
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.best-seller-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(172, 106, 99, 0.14);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(86, 55, 49, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.best-seller-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(86, 55, 49, 0.14);
    border-color: rgba(172, 106, 99, 0.24);
}

.best-seller-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 4.5;
    background: #ead9d4;
}

.best-seller-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.best-seller-card:hover .best-seller-card__image {
    transform: scale(1.04);
}

.best-seller-card__content {
    padding: 26px 24px 28px;
}

.best-seller-card__title {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #4c302c;
}

.best-seller-card__description {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgba(76, 48, 44, 0.76);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .best-sellers-section {
        padding: 96px 0;
    }

    .best-sellers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .best-sellers-section {
        padding: 82px 0;
    }

    .best-sellers-intro {
        margin-bottom: 40px;
    }

    .best-sellers-intro__title {
        font-size: 2.2rem;
    }

    .best-sellers-intro__text {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .best-sellers-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .best-seller-card {
        border-radius: 24px;
    }

    .best-seller-card__content {
        padding: 22px 20px 24px;
    }

    .best-seller-card__title {
        font-size: 1.34rem;
    }

    .best-seller-card__description {
        font-size: 0.95rem;
        line-height: 1.72;
    }
}


/* =========================
   CATEGORY HERO / PORTION GUIDE
========================= */
.category-hero--guide {
    padding: 110px 0 100px;
    background:
        linear-gradient(180deg, #f7f1ee 0%, #f8f4f1 100%);
}

.category-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: start;
}

.category-hero__content {
    max-width: 720px;
}

.category-hero__eyebrow {
    margin: 0 0 18px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b96f61;
}

.category-hero__title {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #4a3734;
}

.category-hero__text {
    margin: 26px 0 0;
    max-width: 640px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #8e6d65;
}

/* Portion guide */
.portion-guide {
    margin-top: 42px;
}

.portion-guide__intro {
    margin-bottom: 28px;
    text-align: center;
}

.portion-guide__label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(185, 111, 97, 0.08);
    color: #b96f61;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.portion-guide__intro p {
    margin: 0 auto;
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.8;
    color: #7d635d;
}

.portion-guide__types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.portion-type {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(185, 111, 97, 0.08);
    box-shadow: 0 12px 30px rgba(95, 66, 59, 0.05);
}

.portion-type__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f3e5df;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.portion-type h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #4a3734;
}

.portion-type p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #7d635d;
}

.portion-guide__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.portion-card {
    padding: 24px;
    border-radius: 26px;
    background: #fffaf8;
    border: 1px solid rgba(185, 111, 97, 0.12);
    box-shadow: 0 18px 40px rgba(95, 66, 59, 0.06);
}

.portion-card__size {
    margin: 0 0 18px;
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    color: #4a3734;
}

.portion-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.portion-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(185, 111, 97, 0.12);
    color: #7d635d;
    font-size: 0.98rem;
}

.portion-card li:first-child {
    border-top: 0;
    padding-top: 0;
}

.portion-card li strong {
    color: #4a3734;
    font-weight: 600;
}

/* Right card / diagram */
.cake-diagram-card {
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 250, 248, 0.88);
    border: 1px solid rgba(185, 111, 97, 0.12);
    box-shadow: 0 28px 60px rgba(80, 55, 50, 0.08);
    backdrop-filter: blur(8px);
}

.cake-diagram-card__eyebrow {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b96f61;
}

.cake-diagram-card__title {
    margin: 0 0 28px;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    line-height: 1.1;
    color: #4a3734;
}

.cake-diagram {
    margin-bottom: 28px;
}

.cake-diagram__cake {
    position: relative;
    width: min(100%, 280px);
    aspect-ratio: 1 / 1;
    margin: 0 auto 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.45) 0 24%, transparent 24%),
        #efdcd5;
    border: 2px solid rgba(185, 111, 97, 0.22);
    box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.32);
}

/* 6 slices */
.cake-diagram__cake--6::before,
.cake-diagram__cake--6::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: rgba(74, 55, 52, 0.22);
}

.cake-diagram__cake--6::before {
    width: 2px;
    height: 100%;
}

.cake-diagram__cake--6::after {
    width: 100%;
    height: 2px;
}

.cake-diagram__cake--6 {
    overflow: hidden;
}

.cake-diagram__cake--6 span,
.cake-diagram__cake--10 span {
    display: block;
}

.cake-diagram__cake--6 .cake-diagram__center::before,
.cake-diagram__cake--6 .cake-diagram__center::after,
.cake-diagram__cake--10 .cake-diagram__center::before,
.cake-diagram__cake--10 .cake-diagram__center::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
}

/* extra diagonal lines for 6 */
.cake-diagram__cake--6 .cake-diagram__center::before {
    width: 2px;
    height: 100%;
    background: rgba(74, 55, 52, 0.22);
    transform: rotate(60deg);
}

.cake-diagram__cake--6 .cake-diagram__center::after {
    width: 2px;
    height: 100%;
    background: rgba(74, 55, 52, 0.22);
    transform: rotate(-60deg);
}

/* 10 slices */
.cake-diagram__cake--10::before,
.cake-diagram__cake--10::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: rgba(74, 55, 52, 0.2);
}

.cake-diagram__cake--10::before {
    width: 2px;
    height: 100%;
}

.cake-diagram__cake--10::after {
    width: 100%;
    height: 2px;
}

.cake-diagram__cake--10 .cake-diagram__center::before {
    width: 2px;
    height: 100%;
    background: rgba(74, 55, 52, 0.2);
    transform: rotate(36deg);
    box-shadow:
        0 0 0 0 rgba(0, 0, 0, 0),
        0 0 0 0 rgba(0, 0, 0, 0);
}

.cake-diagram__cake--10 .cake-diagram__center::after {
    width: 2px;
    height: 100%;
    background: rgba(74, 55, 52, 0.2);
    transform: rotate(-36deg);
}

.cake-diagram__cake--10 {
    overflow: hidden;
}

.cake-diagram__cake--10::marker {
    content: "";
}

.cake-diagram__cake--10::selection {
    background: transparent;
}

.cake-diagram__cake--10>.cake-diagram__center {
    position: absolute;
    inset: 0;
}

.cake-diagram__cake--10>.cake-diagram__center span {
    display: none;
}

/* additional 10-slice lines */
.cake-diagram__cake--10 .cake-diagram__center {
    position: absolute;
    inset: 0;
}

.cake-diagram__cake--10 .cake-diagram__center {
    background:
        linear-gradient(rgba(74, 55, 52, 0.2), rgba(74, 55, 52, 0.2)) center/2px 100% no-repeat,
        linear-gradient(rgba(74, 55, 52, 0.2), rgba(74, 55, 52, 0.2)) center/100% 2px no-repeat;
}

.cake-diagram__cake--10 {
    background:
        linear-gradient(rgba(74, 55, 52, 0.18), rgba(74, 55, 52, 0.18)) center/2px 100% no-repeat,
        linear-gradient(rgba(74, 55, 52, 0.18), rgba(74, 55, 52, 0.18)) center/100% 2px no-repeat,
        radial-gradient(circle at center, rgba(255, 255, 255, 0.45) 0 24%, transparent 24%),
        #efdcd5;
}

.cake-diagram__center {
    position: absolute;
    inset: 0;
}

.cake-diagram__legend-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cake-diagram__dot {
    width: 10px;
    height: 10px;
    margin-top: 7px;
    border-radius: 50%;
    background: #b96f61;
    flex-shrink: 0;
}

.cake-diagram__legend p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #7d635d;
}

.cake-diagram-card__note {
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(185, 111, 97, 0.12);
    font-size: 0.9rem;
    line-height: 1.7;
    color: #8e6d65;
}

/* Responsive */
@media (max-width: 991px) {
    .category-hero--guide {
        padding: 90px 0 80px;
    }

    .category-hero__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .cake-diagram-card {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .category-hero__title {
        font-size: clamp(2.8rem, 15vw, 4.3rem);
    }

    .category-hero__text {
        font-size: 1.05rem;
        line-height: 1.75;
    }

    .portion-guide__types,
    .portion-guide__cards {
        grid-template-columns: 1fr;
    }

    .cake-diagram-card__title {
        font-size: 1.7rem;
    }

    .cake-diagram__cake {
        width: min(100%, 240px);
    }
}



/* =========================
   FAQ
========================= */
.faq-section {
    padding: 110px 0;
    background: #f7f5f3;
}

.faq-container {
    max-width: 980px;
}

.faq-title {
    margin: 0 0 42px;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    line-height: 1.05;
    font-weight: 400;
    color: #2f2422;
    letter-spacing: -0.03em;
}

.faq-list {
    border-top: 1px solid rgba(47, 36, 34, 0.10);
}

.faq-item {
    border-bottom: 1px solid rgba(47, 36, 34, 0.10);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.faq-question__left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.faq-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2f2422;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

.faq-question__text {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    line-height: 1.4;
    color: #2f2422;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    color: #6e615d;
    flex-shrink: 0;
    transition: transform 0.28s ease;
}

.faq-arrow svg {
    width: 100%;
    height: 100%;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.36s ease;
}

.faq-answer__content {
    padding: 0 0 28px 38px;
    max-width: 820px;
}

.faq-answer__content p {
    margin: 0 0 14px;
    font-size: 1rem;
    line-height: 1.95;
    color: #655956;
}

.faq-answer__content p:last-child {
    margin-bottom: 0;
}

/* Hover */
.faq-question:hover .faq-question__text {
    color: #8c5b50;
}

.faq-question:hover .faq-arrow {
    color: #8c5b50;
}

/* Mobile */
@media (max-width: 767px) {
    .faq-section {
        padding: 85px 0;
    }

    .faq-title {
        margin-bottom: 28px;
        font-size: clamp(2.3rem, 12vw, 3.4rem);
    }

    .faq-question {
        padding: 18px 0;
        gap: 14px;
    }

    .faq-question__left {
        gap: 12px;
        align-items: flex-start;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        margin-top: 2px;
    }

    .faq-question__text {
        font-size: 1.02rem;
        line-height: 1.45;
    }

    .faq-answer__content {
        padding: 0 0 22px 32px;
    }

    .faq-answer__content p {
        font-size: 0.96rem;
        line-height: 1.85;
    }
}