/* =========================================
   VALIOSA COSMETICS — Global Stylesheet
   Elegant Black + Valiosa Pink (#b5085a)
   100% Responsive · Vercel-Ready
   ========================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* === BRAND COLORS === */
    --pink: #b5085a;
    /* Valiosa signature pink — slightly desaturated for elegance */
    --pink-mid: #c40963;
    /* hover / emphasis  */
    --pink-soft: #fdf2f8;
    /* section background tint — barely pink */
    --pink-border: rgba(181, 8, 90, 0.15);

    --black: #0D0709;
    /* near-black with warm pink undertone */
    --charcoal: #1E1118;
    --white: #FFFFFF;
    --cream: #FDFDFD;
    --sand: #F7F5F5;
    --mid-gray: #6E6E6E;
    --light-gray: #E8E4E6;

    /* === TYPOGRAPHY === */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, sans-serif;

    /* === SPACING === */
    --section-pt: clamp(60px, 10vw, 120px);
    --section-pb: clamp(60px, 10vw, 120px);
    --px: clamp(20px, 5vw, 72px);

    /* === ANIMATION === */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --fast: 0.22s;
    --med: 0.46s;
    --slow: 0.78s;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* ── Utilities ─────────────────────────────── */
.text-center {
    text-align: center;
}

.text-pink {
    color: var(--pink) !important;
}

.text-white {
    color: var(--white) !important;
}

.mt-40 {
    margin-top: clamp(24px, 5vw, 40px);
}

.section-padding {
    padding: var(--section-pt) 0 var(--section-pb);
}

.bg-white {
    background: var(--white);
}

.bg-sand {
    background: var(--sand);
}

.bg-pink-soft {
    background: var(--pink-soft);
}

.bg-cream {
    background: var(--cream);
}

.bg-dark {
    background: var(--black);
}

/* ── Editorial Split ────────────────────────── */
.editorial-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 7vw, 90px);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--px);
    align-items: center;
}

@media (max-width: 900px) {
    .editorial-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── Image Placeholders ─────────────────────── */
.img-placeholder {
    width: 100%;
    background: linear-gradient(135deg, var(--sand), #ede8eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: var(--mid-gray);
    letter-spacing: 0.1em;
    border-radius: 2px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    border: 1px solid var(--pink-border);
}

.img-placeholder--dark {
    background: #150c11;
    color: #665566;
    border: 1px solid #2a1a22;
}

/* ── Sticky wrapper ─────────────────────────── */
@media (min-width: 901px) {
    .sticky-wrap {
        position: sticky;
        top: 100px;
    }
}

/* ── Typography ─────────────────────────────── */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--pink);
    display: block;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--black);
    letter-spacing: -0.01em;
}

.section-title em {
    font-style: italic;
    color: var(--pink);
}

.bg-dark .section-title {
    color: var(--white);
}

.bg-dark .section-title em {
    color: var(--pink-mid);
}

.section-subtitle {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-top: 14px;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--fast) var(--ease);
    white-space: nowrap;
}

.btn--primary {
    background: var(--black);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--pink);
    box-shadow: 0 10px 30px rgba(181, 8, 90, 0.35);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
    border-color: var(--pink);
    color: var(--pink);
    transform: translateY(-2px);
}

/* ── Scroll Animations ──────────────────────── */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease);
    will-change: opacity, transform;
}

.reveal {
    transform: translateY(36px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ── Announcement Bar ───────────────────────── */
.announcement-bar {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 9px 20px;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ── Navigation ─────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px var(--px);
    background: rgba(253, 253, 253, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: padding var(--fast);
}

.nav.scrolled {
    padding: 12px var(--px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.nav__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav__logo-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.38em;
    color: var(--black);
    line-height: 1;
}

.nav__logo-sub {
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: var(--pink);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.nav__links a {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--charcoal);
    transition: color var(--fast);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--pink);
    transition: width var(--fast) var(--ease);
}

.nav__links a:hover {
    color: var(--pink);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__links a::after {
    display: none;
}

.nav__cta {
    background: var(--black) !important;
    color: var(--white) !important;
    padding: 10px 22px;
}

.nav__cta:hover {
    background: var(--pink) !important;
}

.nav__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav__menu-btn span {
    width: 24px;
    height: 1px;
    background: var(--black);
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--med);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__close {
    position: absolute;
    top: 22px;
    right: var(--px);
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--black);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu__nav a {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 300;
    text-decoration: none;
    color: var(--black);
    transition: color var(--fast);
}

.mobile-menu__nav a:hover {
    color: var(--pink);
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__menu-btn {
        display: flex;
        position: relative;
        z-index: 10;
    }

    /* Logo stays absolute & centered, just ensure it rests above everything but below menu */
    .nav__logo {
        z-index: 5;
    }
}

/* ── HERO ────────────────────────────────────── */
.hero {
    height: 100svh;
    min-height: 560px;
    overflow: hidden;
}

/* ALWAYS 50/50 grid — never collapses to stacked */
.hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

/* LEFT: opaque content panel */
.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(24px, 6vw, 72px) clamp(16px, 4vw, 52px);
    /* Solid background — nothing bleeds through */
    background: linear-gradient(155deg, #ffffff 0%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}

/* Faint Diamond watermark */
.hero__content::before {
    content: '';
    position: absolute;
    inset: 0;
    /* PNG diamond logo provided via background-image */
    background-image: url("assets/images/diamante.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
    /* Ensure the whole diamond is visible */
    opacity: 0.05;
    /* Fade out since PNG has original colors */
    pointer-events: none;
    z-index: 0;
}

.hero__label {
    position: relative;
    z-index: 1;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 18px;
    line-height: 1.5;
}

.hero__brand-block {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.hero__brand-name {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.38em;
    color: var(--black);
    line-height: 1;
    text-transform: uppercase;
}

.hero__brand-sub {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--pink);
    margin-top: 6px;
}

.hero__actions {
    position: relative;
    z-index: 1;
}

/* RIGHT: image slider — fills its grid column */
.hero__image {
    position: relative;
    overflow: hidden;
}

.hero__slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: block;
}

.hero__slide.active {
    opacity: 1;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Responsive — vertical text on mobile to show more of the slider */
@media (max-width: 768px) {
    .hero__split {
        grid-template-columns: 80px 1fr;
    }

    .hero__content {
        padding: 0;
        /* Manage the vertical flow entirely from the parent */
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        display: flex;
        flex-direction: row-reverse;
        /* visually Top-to-Bottom */
        align-items: center;
        /* Center horizontally in the 80px space */
        justify-content: center;
        gap: 15px;
        /* Space between all elements */
    }

    /* Keep diamond upright but properly sized relative to the rotated container */
    .hero__content::before {
        transform: rotate(-180deg);
        /* Counter the container's 180deg */
        background-size: 15vh;
        opacity: 0.08;
    }

    /* Reset individual transforms since parent handles it */
    .hero__label {
        font-size: 0.5rem;
        letter-spacing: 0.15em;
        writing-mode: vertical-rl;
        transform: none;
        margin: 0;
    }

    .hero__brand-block {
        writing-mode: vertical-rl;
        transform: none;
        margin: 0;
        display: flex;
        flex-direction: row-reverse;
        /* Stack VALIOSA and ESPAÑA top-to-bottom */
        align-items: center;
        gap: 10px;
    }

    .hero__brand-name {
        font-size: 1.6rem;
        letter-spacing: 0.38em;
        writing-mode: unset;
        transform: none;
        margin: 0;
    }

    .hero__brand-sub {
        font-size: 0.55rem;
        writing-mode: unset;
        transform: none;
        margin: 0;
    }

    .hero__actions {
        display: none;
        /* Hide button on mobile to increase slider visibility */
    }
}

@media (max-width: 520px) {
    .hero__brand-name {
        font-size: clamp(1.6rem, 9vw, 2.8rem);
    }

    .hero__content {
        padding: 20px 12px;
    }

    .btn {
        padding: 13px 20px;
        font-size: 0.6rem;
    }
}

/* ── Marquee ─────────────────────────────────── */
.marquee-strip {
    background: var(--black);
    overflow: hidden;
    padding: 13px 0;
    border-top: 2px solid var(--pink);
    border-bottom: 2px solid var(--pink);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.marquee-track span {
    padding-right: 20px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── About / Historia ────────────────────────── */
.about__image-wrap {
    position: relative;
    z-index: 1;
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 55%;
    height: 55%;
    background: var(--pink-soft);
    z-index: -1;
}

.about__text {
    font-size: 0.94rem;
    color: var(--mid-gray);
    line-height: 1.9;
    margin-bottom: 28px;
}

.about__divider {
    height: 1px;
    background: var(--pink-border);
    margin: 36px 0;
}

.about__tech-title {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 18px;
}

.oils-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.oil-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--cream);
    border: 1px solid var(--light-gray);
    transition: border-color var(--fast), transform var(--fast);
}

.oil-item:hover {
    border-color: var(--pink);
    transform: translateY(-3px);
}

.oil-icon {
    font-size: 1.5rem;
}

.oil-name {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
}

@media (max-width: 480px) {
    .oils-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Features List ───────────────────────────── */
.features__list {
    list-style: none;
}

.features__list li {
    font-size: 0.9rem;
    color: var(--charcoal);
    letter-spacing: 0.03em;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.features__icon {
    color: var(--pink);
    font-weight: bold;
    flex-shrink: 0;
}

.features__highlight {
    font-weight: 700;
    color: var(--pink);
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--pink-border);
}

/* ── Dark context overrides ──────────────────── */
/* Cards/lists that appear inside a bg-dark section */
.bg-dark .diameter-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

.bg-dark .diameter-card h3 {
    color: var(--white);
}

.bg-dark .diameter-card p {
    color: rgba(255, 255, 255, 0.55);
}

.bg-dark .diameter-card:hover {
    border-color: var(--pink);
    background: rgba(181, 8, 90, 0.08);
}

.bg-dark .tool-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.bg-dark .tool-card h3 {
    color: var(--white);
}

.bg-dark .tool-card p {
    color: rgba(255, 255, 255, 0.55);
}

.bg-dark .tool-card:hover {
    border-color: var(--pink);
    background: rgba(181, 8, 90, 0.08);
}

.bg-dark .features__list li {
    color: rgba(255, 255, 255, 0.8);
}

.bg-dark .img-placeholder {
    background: #140c10;
    border-color: rgba(181, 8, 90, 0.2);
    color: rgba(255, 255, 255, 0.35);
}

/* Risk items on dark bg */
.bg-dark .risk-item {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--pink);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
}

.bg-dark .risk-item span {
    color: var(--pink);
}

/* Error items on dark bg */
.bg-dark .error-item h3 {
    color: var(--pink-mid);
}

.bg-dark .error-item p {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Diameter Cards ──────────────────────────── */
.diameters__header {
    padding: 0 var(--px);
    max-width: 1280px;
    margin: 0 auto;
}

.diameters__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.diameter-card {
    background: var(--white);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: transform var(--fast);
}

.diameter-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
    box-shadow: 0 12px 30px rgba(181, 8, 90, 0.07);
}

.diameter-card h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    margin-bottom: 14px;
    color: var(--black);
}

.diameter-card p {
    font-size: 0.82rem;
    color: var(--mid-gray);
    line-height: 1.7;
}

.diameter-card__times {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--pink);
    font-weight: 700;
}

/* ── Process Lists ───────────────────────────── */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.process-list__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-list__num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--pink);
    width: 42px;
    flex-shrink: 0;
    line-height: 1;
}

.process-list__item p {
    font-size: 0.86rem;
    line-height: 1.8;
    padding-top: 4px;
    color: rgba(255, 255, 255, 0.78);
}

.outline-list .process-list__num {
    color: var(--pink);
}

.outline-list .process-list__item p {
    color: var(--mid-gray);
}

@media (max-width: 640px) {
    .process-list__item {
        flex-direction: column;
        gap: 6px;
    }

    .process-list__num {
        font-size: 1.5rem;
    }

    .process__image .img-placeholder {
        min-height: 360px !important;
    }
}

/* ── Hair Types ──────────────────────────────── */
.hair-types__header {
    padding: 0 var(--px);
    max-width: 1280px;
    margin: 0 auto;
}

.hair-types__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.hair-type-card {
    padding: 24px;
    background: var(--white);
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: transform var(--fast);
}

.hair-type-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
    box-shadow: 0 12px 28px rgba(181, 8, 90, 0.07);
}

.hair-type-card h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.hair-type-treatment {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--pink);
}

/* ── PH Scale ────────────────────────────────── */
.ph-scale__container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.ph-bar {
    display: flex;
    height: 80px;
    gap: 4px;
    border-radius: 2px;
    overflow: hidden;
}

.ph-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
}

.ph-labels {
    display: flex;
    margin-top: 10px;
    gap: 4px;
}

.ph-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--mid-gray);
}

.ph-label--acido {
    flex: 7;
}

.ph-label--neutro {
    flex: 1;
}

.ph-label--alcalino {
    flex: 7;
}

@media (max-width: 768px) {
    .ph-bar {
        height: 50px;
        gap: 2px;
    }

    .ph-box {
        font-size: 0.8rem;
    }

    .ph-labels {
        gap: 2px;
    }

    .ph-label {
        font-size: 0.5rem;
        letter-spacing: 0.05em;
    }
}

/* ── Risks ───────────────────────────────────── */
.risks__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.risk-item {
    background: var(--white);
    padding: 22px;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    border-left: 3px solid var(--pink);
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.risk-item span {
    font-weight: 800;
    color: var(--pink);
    flex-shrink: 0;
}

/* ── Social Sales ────────────────────────────── */
.social-sales__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 540px) {
    .social-sales__gallery {
        grid-template-columns: 1fr;
    }

    .social-sales__gallery>div:last-child {
        grid-column: auto;
    }
}

/* ── Errors ──────────────────────────────────── */
.errors__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.error-item h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--pink);
    margin-bottom: 10px;
}

.error-item p {
    font-size: 0.88rem;
    line-height: 1.85;
    color: var(--mid-gray);
}

/* ── Irons VS ────────────────────────────────── */
.irons-vs__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.irons-vs__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.iron-card {
    background: var(--white);
    padding: 36px;
    text-align: center;
    border: 1px solid var(--light-gray);
}

.iron-card h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    margin-bottom: 22px;
    color: var(--black);
}

.iron-card ul {
    list-style: none;
    text-align: left;
}

.iron-card li {
    font-size: 0.83rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--charcoal);
}

.iron-card li:last-child {
    border-bottom: none;
}

.vs-badge {
    background: var(--pink);
    color: var(--white);
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-style: italic;
    box-shadow: 0 6px 18px rgba(181, 8, 90, 0.35);
}

@media (max-width: 860px) {
    .irons-vs__grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .iron-card {
        width: 100%;
        max-width: 380px;
    }
}

/* ── Tools ───────────────────────────────────── */
.tools__header {
    padding: 0 var(--px);
    max-width: 1280px;
    margin: 0 auto;
}

.tools__grid,
.tools__grid-extra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.tools__grid-extra {
    max-width: 900px;
}

.tool-card {
    background: var(--white);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: transform var(--fast);
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
    box-shadow: 0 12px 28px rgba(181, 8, 90, 0.07);
}

.tool-card h3 {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
    text-transform: uppercase;
}

.tool-card p {
    font-size: 0.78rem;
    color: var(--mid-gray);
    line-height: 1.7;
}

/* ── Contact Form ────────────────────────────── */
.contact {
    padding: var(--section-pt) var(--px) var(--section-pb);
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--charcoal);
    outline: none;
    transition: border-color var(--fast);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--pink);
}

.form-status {
    font-size: 0.85rem;
    margin-top: 16px;
    text-align: center;
}

.form-status.success {
    color: var(--pink);
}

.form-status.error {
    color: #c0392b;
}

/* ── Footer ──────────────────────────────────── */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.65);
    border-top: 3px solid var(--pink);
}

.footer__welcome {
    padding: clamp(60px, 10vw, 100px) 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.footer__welcome h2 {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.footer__welcome p {
    font-size: 0.88rem;
    letter-spacing: 0.5em;
    margin-bottom: 20px;
    color: var(--pink);
    font-weight: 700;
    text-transform: uppercase;
}

.welcome-valiosa {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-style: italic;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    color: var(--white);
    display: block;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 60px var(--px) 50px;
    max-width: 1280px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 18px;
}

.footer__logo span:first-child {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.36em;
    color: var(--white);
}

.footer__logo span:last-child {
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    color: var(--pink);
    font-weight: 600;
    text-transform: uppercase;
}

.footer__brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer__nav h4,
.footer__social h4 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 22px;
}

.footer__nav,
.footer__social-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__nav a,
.footer__social-links a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--fast);
}

.footer__nav a:hover,
.footer__social-links a:hover {
    color: var(--pink);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 26px var(--px);
    max-width: 1280px;
    margin: 0 auto;
    font-size: 0.72rem;
}

@media (max-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .footer__brand p {
        margin: 0 auto;
        max-width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Scroll Top Button ────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--white);
    color: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top svg {
    transition: transform 0.3s ease;
}

.scroll-top:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 160, 146, 0.3);
}

.scroll-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}