/* ============================================================
   VARIABLES
============================================================ */
:root {
    --orange:          #E07535;
    --orange-dark:     #C4612A;
    --orange-light:    #F2A070;
    --orange-xlight:   #FDF1E8;

    --cream:           #FAF8F5;
    --cream-dark:      #F2EDE5;
    --cream-darker:    #E8E1D7;

    --dark:            #1A1A1A;
    --dark-2:          #2C2C2C;
    --gray:            #686868;
    --gray-light:      #9A9A9A;
    --border:          #DDD7CE;

    --white:           #FFFFFF;

    --font-serif:      'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --max-width:       1200px;
    --gutter:          clamp(1.25rem, 5vw, 2.5rem);

    --radius-s:        8px;
    --radius-m:        14px;
    --radius-l:        22px;

    --shadow-s:        0 2px 10px rgba(0,0,0,.05);
    --shadow-m:        0 8px 32px rgba(0,0,0,.08);
    --shadow-l:        0 24px 64px rgba(0,0,0,.10);

    --ease:            cubic-bezier(.25,.46,.45,.94);
    --header-h:        72px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   LAYOUT
============================================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-sans);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .75rem;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.section-title em {
    font-style: italic;
    color: var(--orange);
}

.section-subtitle {
    margin-top: .75rem;
    font-size: 1rem;
    color: var(--gray);
    max-width: 52ch;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-header .section-eyebrow { justify-content: center; }
.section-header .section-subtitle { margin-inline: auto; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-sans);
    font-size: .9rem;
    font-weight: 500;
    padding: .75rem 1.5rem;
    border-radius: 50px;
    transition: all .25s var(--ease);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.btn--primary {
    background: var(--orange);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224,117,53,.35);
}

.btn--outline {
    background: transparent;
    color: var(--orange);
    border: 1.5px solid var(--orange);
}

.btn--outline:hover {
    background: var(--orange-xlight);
    transform: translateY(-2px);
}

.btn--ghost {
    background: rgba(255,255,255,.15);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.4);
    backdrop-filter: blur(4px);
}

.btn--ghost:hover {
    background: rgba(255,255,255,.25);
    transform: translateY(-2px);
}

.btn--nav {
    background: var(--orange);
    color: var(--white) !important;
    padding: .55rem 1.25rem;
    font-size: .85rem;
}

.btn--nav:hover {
    background: var(--orange-dark);
}

.btn--ig {
    gap: .6rem;
}

/* ============================================================
   HEADER / NAV
============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    background: var(--cream);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.header--scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav__logo-img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gray);
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: .25rem;
}

.nav__logo-text strong {
    font-size: 1.45rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: .01em;
    text-transform: none;
    color: var(--orange);
    line-height: 1;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: clamp(.5rem, 2vw, 1.75rem);
}

/* ---- Dropdown trigger ---- */
.nav__item {
    position: relative;
}

.nav__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .875rem;
    font-weight: 400;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-sans);
    transition: color .2s;
    position: relative;
}

.nav__dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--orange);
    transition: width .25s var(--ease);
}

.nav__dropdown-trigger:hover,
.nav__dropdown-trigger[aria-expanded="true"] {
    color: var(--orange);
}

.nav__dropdown-trigger:hover::after,
.nav__dropdown-trigger[aria-expanded="true"]::after {
    width: 100%;
}

.nav__chevron {
    transition: transform .25s var(--ease);
    flex-shrink: 0;
}

.nav__dropdown-trigger[aria-expanded="true"] .nav__chevron {
    transform: rotate(180deg);
}

/* ---- Dropdown panel ---- */
.nav__dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    width: 520px;
    background: var(--white);
    border-radius: var(--radius-l);
    box-shadow: 0 8px 16px rgba(0,0,0,.06), 0 24px 64px rgba(0,0,0,.12);
    border: 1px solid var(--border);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
    z-index: 200;
}

.nav__dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__dropdown-trigger[aria-expanded="true"] + .nav__dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .25rem;
    padding: .75rem;
}

.nav__dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .75rem .875rem;
    border-radius: var(--radius-s);
    transition: background .18s, color .18s;
    text-decoration: none;
    color: var(--dark);
}

.nav__dropdown-item:hover {
    background: var(--orange-xlight);
}

.nav__dropdown-item--highlight .nav__dropdown-name {
    color: var(--orange-dark);
}

.nav__dropdown-item--highlight:hover {
    background: var(--orange-xlight);
}

.nav__dropdown-icon {
    width: 20px;
    height: 20px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 1px;
}

.nav__dropdown-name {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: .15rem;
}

.nav__dropdown-desc {
    display: block;
    font-size: .75rem;
    color: var(--gray-light);
    line-height: 1.4;
}

.nav__dropdown-footer {
    border-top: 1px solid var(--cream-darker);
    padding: .625rem 1rem;
}

.nav__dropdown-all {
    font-size: .8rem;
    font-weight: 600;
    color: var(--orange);
    transition: gap .2s, color .2s;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}

.nav__dropdown-all:hover { color: var(--orange-dark); }

.nav__link {
    font-size: .875rem;
    font-weight: 400;
    color: var(--dark);
    transition: color .2s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--orange);
    transition: width .25s var(--ease);
}

.nav__link:hover { color: var(--orange); }
.nav__link:hover::after { width: 100%; }

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 110;
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all .3s var(--ease);
    transform-origin: center;
}

.nav__hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
    padding-top: var(--header-h);
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 8vw, 6rem) clamp(1.5rem, 8vw, 5rem);
    max-width: 680px;
}

.hero__eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.25rem;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.hero__title em {
    font-style: italic;
    color: var(--orange);
}

.hero__subtitle {
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    color: var(--gray);
    line-height: 1.7;
    max-width: 42ch;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2rem;
}

.hero__actions .btn--ghost {
    color: var(--dark);
    background: transparent;
    border-color: var(--border);
}

.hero__actions .btn--ghost:hover {
    background: var(--cream-dark);
    border-color: var(--orange);
    color: var(--orange);
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.5rem;
}

.hero__trust li {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 500;
    color: var(--gray);
}

.hero__trust svg { color: var(--orange); flex-shrink: 0; }

.hero__visual {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f5e2c4 0%, #e8b88a 35%, #d4855a 70%, #bf6a3a 100%);
}

.hero__visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: var(--radius-m);
    background: var(--cream);
    border: 1.5px solid var(--cream-darker);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-m);
    border-color: var(--orange-light);
}

.service-card--accent {
    background: var(--orange-xlight);
    border-color: rgba(224,117,53,.2);
}

.service-card--highlight {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.service-card--highlight .service-card__desc { color: rgba(255,255,255,.65); }
.service-card--highlight .service-card__link { color: var(--orange-light); }
.service-card--highlight .service-card__link:hover { color: var(--white); }
.service-card--highlight .service-card__icon { color: rgba(255,255,255,.8); }

.service-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .25rem .6rem;
    border-radius: 50px;
    background: var(--orange);
    color: var(--white);
}

.service-card__tag {
    display: inline-block;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .6rem;
}

.service-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--orange);
    flex-shrink: 0;
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .4rem;
    line-height: 1.3;
}

.service-card__desc {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    font-size: .8rem;
    font-weight: 600;
    color: var(--orange);
    transition: gap .2s, color .2s;
    gap: .25rem;
}

.service-card__link:hover { gap: .5rem; color: var(--orange-dark); }

.services__cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================================
   WHY
============================================================ */
.why {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--cream);
}

.why__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
}

.why__content .section-title {
    margin-bottom: 1.25rem;
}

.why__lead {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 44ch;
}

.why__features {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.why-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.why-item__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-s);
    background: var(--orange-xlight);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
}

.why-item__icon svg { width: 20px; height: 20px; }

.why-item__title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .25rem;
}

.why-item__desc {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.gallery__item {
    border-radius: var(--radius-m);
    overflow: hidden;
    background: var(--cream-dark);
    position: relative;
}

.gallery__item--tall {
    grid-row: 1 / 3;
}

.gallery__item--wide {
    grid-column: 2 / 4;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.gallery__item:hover img { transform: scale(1.04); }

/* Placeholder when images are missing */
.gallery__item:not(:has(img[src])),
.gallery__item:has(img[src="images/gallery-1.jpg"]:not([style*="none"])) {
    background: linear-gradient(135deg, var(--cream-dark), var(--cream-darker));
}

.gallery__ig-cta {
    text-align: center;
}

/* ============================================================
   PRODUCTS
============================================================ */
.products {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--cream);
}

.products__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.product-card {
    flex: 0 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    border-radius: var(--radius-l);
    overflow: hidden;
    background: var(--white);
    border: 1.5px solid var(--cream-darker);
    transition: transform .3s var(--ease), box-shadow .3s;
    display: flex;
    flex-direction: row;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-m);
}

.product-card__visual {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.product-card__visual--natura {
    background: linear-gradient(150deg, #f7f2e9 0%, #edf5e6 100%);
    border-right: 1.5px solid #e4ddd0;
}

.product-card__visual--just {
    background: linear-gradient(150deg, #eef4fb 0%, #e0ecf8 100%);
    border-right: 1.5px solid #d4e3f0;
}

.product-card__visual--lidherma {
    background: linear-gradient(150deg, #fbeef4 0%, #f5dfe9 100%);
    border-right: 1.5px solid #f0d4e0;
}

.product-card__body {
    padding: 1.75rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card__title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: .75rem;
}

.product-card__desc {
    font-size: .9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ============================================================
   GIFT CARD
============================================================ */
.giftcard {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--cream-dark);
}

.giftcard__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.giftcard__visual {
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-m);
}

.giftcard__visual img {
    width: 100%;
    height: auto;
    display: block;
}

.giftcard__text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin: 1rem 0 2rem;
}

@media (max-width: 800px) {
    .giftcard__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--dark);
}

.testimonials .section-eyebrow { color: var(--orange-light); }
.testimonials .section-eyebrow::before { background: var(--orange-light); }
.testimonials .section-title { color: var(--white); }

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.reviews-cta {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-l);
    padding: clamp(2rem, 5vw, 3rem);
}

.reviews-cta__stars {
    color: #F5B638;
    font-size: 1.5rem;
    letter-spacing: .2rem;
    margin-bottom: 1rem;
}

.reviews-cta__perk {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: .4rem;
}

.reviews-cta__perk strong { color: var(--orange-light); }

.reviews-cta__note {
    color: rgba(255,255,255,.55);
    font-size: .85rem;
    margin-bottom: 1.75rem;
}

.reviews-cta__actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    padding: 2rem 1.75rem;
    border-radius: var(--radius-m);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
}

.testimonial-card--featured {
    background: var(--orange);
    border-color: var(--orange);
}

.testimonial-card__stars {
    font-size: 1rem;
    color: #FFD166;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.testimonial-card__text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,.85);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: .875rem;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-card--featured .testimonial-card__avatar {
    background: rgba(255,255,255,.25);
}

.testimonial-card__name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
}

.testimonial-card__service {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    margin-top: .1rem;
}

/* ============================================================
   REVIEWS CAROUSEL
============================================================ */
.reviews-carousel {
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
}

.reviews-carousel__viewport { overflow: hidden; }

.reviews-carousel__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: .25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.reviews-carousel__track::-webkit-scrollbar { display: none; }
.reviews-carousel__track.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }

.review-card {
    flex: 0 0 calc((100% - 2.5rem) / 3);
    scroll-snap-align: start;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-m);
    padding: 2rem 1.75rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.review-card__stars {
    font-size: 1rem;
    color: #FFD166;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.review-card__text {
    font-family: var(--font-serif);
    font-size: .98rem;
    font-style: italic;
    color: rgba(255,255,255,.85);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex: 1;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: .875rem;
    margin-top: auto;
}

.review-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: var(--white);
    flex-shrink: 0;
}

.review-card__name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
    display: block;
}

.review-card__source {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    display: block;
    margin-top: .1rem;
}

.reviews-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.75rem;
}

.reviews-carousel__arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.reviews-carousel__arrow:hover { background: rgba(255,255,255,.18); }

.reviews-carousel__dots {
    display: flex;
    gap: .5rem;
}

.reviews-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.reviews-carousel__dot.is-active {
    background: var(--orange-light);
    transform: scale(1.35);
}

.reviews-carousel__cta { margin-top: 2rem; }

@media (max-width: 900px) {
    .review-card { flex: 0 0 calc((100% - 1.25rem) / 2); }
}

@media (max-width: 600px) {
    .review-card { flex: 0 0 100%; }
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: var(--cream);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}

.contact__lead {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 44ch;
}

.contact__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item__icon {
    width: 22px;
    height: 22px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: .1rem;
}

.contact-item__label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: .2rem;
}

.contact-item__value {
    font-size: .95rem;
    color: var(--dark);
    line-height: 1.6;
}

.contact-item__link {
    color: var(--orange);
    font-weight: 500;
    transition: color .2s;
}

.contact-item__link:hover { color: var(--orange-dark); }

.contact__map {
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-m);
    border: 1.5px solid var(--cream-darker);
    min-height: 440px;
}

.contact__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 440px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: var(--dark-2);
    color: rgba(255,255,255,.7);
    padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__logo img {
    height: 80px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}
.footer__logo span {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--white);
}
.footer__logo strong { color: var(--orange-light); }

.footer__tagline {
    font-size: .875rem;
    margin-top: .75rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: .75rem;
}

.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    transition: background .2s, color .2s, transform .2s;
}

.footer__social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.footer__heading {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer__links li + li { margin-top: .65rem; }

.footer__links a {
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    transition: color .2s;
}

.footer__links a:hover { color: var(--orange-light); }

.footer__address p {
    font-size: .875rem;
    margin-bottom: .65rem;
    line-height: 1.6;
    color: rgba(255,255,255,.6);
}

.footer__address a {
    font-size: .875rem;
    color: var(--orange-light);
    font-weight: 500;
    transition: color .2s;
}

.footer__address a:hover { color: var(--white); }

.footer__bottom {
    padding: 1.25rem 0;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    text-align: center;
}

.footer__legal {
    margin-bottom: .4rem;
}

.footer__legal a {
    color: rgba(255,255,255,.55);
    transition: color .2s;
}

.footer__legal a:hover { color: var(--orange-light); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: .6rem;
    background: #25D366;
    color: var(--white);
    padding: .875rem 1.25rem .875rem 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    transition: transform .3s var(--ease), box-shadow .3s;
    animation: wa-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(37,211,102,.5);
    animation: none;
}

.whatsapp-float__label {
    font-size: .875rem;
    font-weight: 600;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
    50% { box-shadow: 0 6px 32px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.services__grid .reveal:nth-child(2) { transition-delay: .08s; }
.services__grid .reveal:nth-child(3) { transition-delay: .16s; }
.services__grid .reveal:nth-child(4) { transition-delay: .04s; }
.services__grid .reveal:nth-child(5) { transition-delay: .12s; }
.services__grid .reveal:nth-child(6) { transition-delay: .2s; }
.services__grid .reveal:nth-child(7) { transition-delay: .08s; }
.services__grid .reveal:nth-child(8) { transition-delay: .16s; }
.services__grid .reveal:nth-child(9) { transition-delay: .24s; }

.why__features .reveal:nth-child(2) { transition-delay: .1s; }
.why__features .reveal:nth-child(3) { transition-delay: .2s; }
.why__features .reveal:nth-child(4) { transition-delay: .3s; }

.testimonials__grid .reveal:nth-child(2) { transition-delay: .1s; }
.testimonials__grid .reveal:nth-child(3) { transition-delay: .2s; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(3, 1fr); }
    .why__inner { gap: 3rem; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {

    /* Nav */
    .nav__hamburger { display: flex; }

    .nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        background: var(--cream);
        transform: translateX(100%);
        transition: transform .4s var(--ease);
        z-index: 105;
        overflow-y: auto;
        padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    }

    .nav__menu.is-open { transform: translateX(0); }

    .nav__menu > li {
        border-bottom: 1px solid var(--border);
    }

    .nav__menu > li:last-child {
        border-bottom: none;
        padding-top: 1.5rem;
        margin-top: .5rem;
    }

    .nav__link,
    .nav__dropdown-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 500;
        padding: 1rem 0;
        color: var(--dark);
    }

    .nav__dropdown-trigger::after { display: none; }

    .btn--nav {
        font-size: 1rem;
        padding: .875rem 2rem;
        justify-content: center;
        width: 100%;
        border-radius: var(--radius-m);
    }

    /* Dropdown → acordeón en mobile */
    .nav__dropdown {
        position: static;
        transform: none !important;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: transparent;
        opacity: 1;
        pointer-events: all;
        display: none;
        padding: 0;
    }

    .nav__dropdown::before { display: none; }

    .nav__dropdown.is-open { display: block; }

    .nav__dropdown-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 0 .75rem 0;
    }

    .nav__dropdown-item {
        padding: .625rem .5rem;
        border-radius: var(--radius-s);
    }

    .nav__dropdown-footer {
        border-top: none;
        padding: .25rem .5rem .5rem;
    }

    .nav__chevron {
        /* stay visible to show open/close state */
    }

    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__content {
        padding: 2.5rem var(--gutter) 2.5rem;
        max-width: 100%;
    }

    .hero__title { font-size: clamp(2.2rem, 8vw, 3rem); }

    .hero__visual {
        height: 55vw;
        min-height: 240px;
        order: -1;
    }

    .hero__actions { flex-direction: column; align-items: flex-start; }
    .hero__actions .btn { width: 100%; justify-content: center; }

    /* Services */
    .services__grid { grid-template-columns: 1fr 1fr; }

    /* Why */
    .why__inner { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery__item--tall { grid-row: auto; }
    .gallery__item--wide { grid-column: auto; }

    /* Products */
    .product-card { flex-direction: column; flex-basis: 100%; max-width: 100%; }
    .product-card__visual { width: 100%; height: 160px; border-right: none; border-bottom: 1.5px solid #e4ddd0; }
    .product-card__visual--just { border-bottom-color: #d4e3f0; }
    .product-card__visual--lidherma { border-bottom-color: #f0d4e0; }

    /* Testimonials */
    .testimonials__grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact__inner { grid-template-columns: 1fr; }
    .contact__map { min-height: 300px; }
    .contact__map iframe { min-height: 300px; }

    /* Footer */
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

    /* WhatsApp float */
    .whatsapp-float__label { display: none; }
    .whatsapp-float { padding: 1rem; border-radius: 50%; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
============================================================ */
@media (max-width: 480px) {
    .services__grid { grid-template-columns: 1fr; }
    .hero__trust { flex-direction: column; gap: .5rem; }
}

/* ============================================================
   INSTAGRAM FEED CAROUSEL
============================================================ */
.ig-feed {
    padding: 4rem 0;
    background: var(--white);
}
.ig-feed__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.ig-feed__brand {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.ig-feed__icon {
    width: 42px;
    height: 42px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ig-feed__username {
    display: block;
    font-weight: 600;
    font-size: .95rem;
    color: var(--dark);
    line-height: 1.2;
}
.ig-feed__label {
    font-size: .78rem;
    color: var(--gray-light);
}
.ig-feed__follow {
    background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff !important;
    padding: .5rem 1.25rem;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    transition: opacity .2s;
    white-space: nowrap;
}
.ig-feed__follow:hover { opacity: .85; }
.ig-feed__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.ig-feed__track::-webkit-scrollbar { height: 4px; }
.ig-feed__track::-webkit-scrollbar-track { background: transparent; }
.ig-feed__track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.ig-feed__item {
    flex: 0 0 320px;
    scroll-snap-align: start;
    border-radius: var(--radius-m);
    overflow: hidden;
    box-shadow: var(--shadow-s);
    background: #fff;
    min-height: 320px;
}
.ig-feed__item .instagram-media {
    margin: 0 !important;
    min-width: unset !important;
    width: 100% !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
.ig-feed__item blockquote > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 2rem;
    text-decoration: none;
    color: var(--gray);
    font-size: .82rem;
    font-family: var(--font-sans);
    text-align: center;
    gap: .875rem;
}
.ig-feed__item blockquote > a::before {
    content: '';
    display: block;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 10px;
}
@media (max-width: 768px) {
    .ig-feed__item { flex: 0 0 280px; }
    .ig-feed__follow { display: none; }
}

/* ============================================================
   SECCIÓN ALISADO & PELO (index)
============================================================ */
.hair-section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--white);
}

.hair-section__intro {
    max-width: 680px;
    margin: 0 auto 1rem;
    text-align: center;
}

.hair-section__intro p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hair-section__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hair-section__tags span {
    padding: .4rem 1rem;
    background: var(--orange-xlight);
    color: var(--orange-dark);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
}

/* ============================================================
   BUSCADOR (header)
============================================================ */
.site-search {
    position: relative;
    flex: 0 1 250px;
    min-width: 0;
    margin-left: clamp(1rem, 4vw, 2.5rem);
    margin-right: auto;
}

.site-search__field {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    height: 40px;
    padding: 0 .9rem;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    transition: border-color .25s var(--ease), background .25s var(--ease);
}

.site-search.is-open .site-search__field,
.site-search__field:focus-within {
    border-color: var(--orange);
    background: var(--white);
}

.site-search__field svg {
    flex-shrink: 0;
    color: var(--gray-light);
}

.site-search__input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: .9rem;
    color: var(--dark);
    outline: none;
}

.site-search__input::placeholder { color: var(--gray-light); }

.site-search__results {
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    width: min(380px, 88vw);
    max-height: 70vh;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-l);
    padding: .4rem;
    z-index: 120;
    display: none;
}

.site-search.is-open .site-search__results { display: block; }

.site-search__result {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 .75rem;
    padding: .7rem .85rem;
    border-radius: var(--radius-s);
    text-decoration: none;
    transition: background .15s var(--ease);
}

.site-search__result:hover,
.site-search__result.is-active {
    background: var(--orange-xlight);
}

.site-search__result-name {
    font-weight: 600;
    font-size: .92rem;
    color: var(--dark);
}

.site-search__result-type {
    align-self: center;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--orange-dark);
    background: var(--orange-xlight);
    border: 1px solid var(--orange-light);
    border-radius: 999px;
    padding: .15rem .55rem;
}

.site-search__result-desc {
    grid-column: 1 / -1;
    font-size: .8rem;
    color: var(--gray);
    line-height: 1.4;
    margin-top: .15rem;
}

.site-search__empty {
    padding: 1rem .85rem;
    font-size: .88rem;
    color: var(--gray);
    text-align: center;
}

@media (max-width: 768px) {
    .site-search {
        flex: 1 1 auto;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .site-search__field { height: 38px; }
    .site-search__results { width: min(380px, calc(100vw - 2rem)); }
}

@media (max-width: 380px) {
    .site-search__field { padding: 0 .65rem; }
    .site-search__input { font-size: .82rem; }
}
