
/* ═══════════════════════════════════════════════════
   GRACE BEAUTIQ — CSS ORIGINAL din gracebeautiq.ro
   Exact variabilele, clasele și stilurile de pe site-ul mamă
   ═══════════════════════════════════════════════════ */

:root {
    --ink: #2a0016;
    --bg: #D6A7BA;
    --card: #fdf5f8;
    --price-color: #450028;
    --blush: #c48fa8;
    --gray: #7a4d62;
    --light: #eeccd9;
    --accent: #450028;
    --ivory: #FFFCEF;
    --deep: #2A0018;
    --on-dark-accent: #D6A7BA;
    --on-light-muted: #6B003A;
    --line: #B07090;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Montserrat', 'Garet', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--price-color);
    line-height: 1.15;
}
h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 24px; }
h1 em { font-style: italic; opacity: 0.65; display: block; }
h2 { font-size: clamp(26px, 4vw, 44px); margin-bottom: 24px; }
h2 em { font-style: italic; opacity: 0.7; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
p { font-size: 15px; color: var(--gray); line-height: 1.8; }

/* ── TOPBAR ── */
.topbar {
    background: var(--price-color);
    color: rgba(255,255,255,.75);
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .04em;
    padding: 8px 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .4rem;
}
.topbar strong { color: #fff; font-weight: 600; }
.topbar a { color: #f0c8a0; text-decoration: none; }
.topbar-r { display: flex; align-items: center; gap: .75rem; }

/* ── HEADER ── */
.hdr {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #FFFFFF;
    box-shadow: 0 3px 6px rgba(0,0,0,.06);
}
.hdr-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 64px;
}
.logo { flex-shrink: 0; display: block; text-decoration: none; }
.logo img { height: 42px; width: auto; }
.nav-desk { display: flex; align-items: center; gap: 4px; }
.nav-desk a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: #141414;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all .25s;
    letter-spacing: .05em;
    white-space: nowrap;
    text-decoration: none;
}
.nav-desk a:hover, .nav-desk a.act {
    background: rgba(69,0,40,.06);
    color: var(--price-color);
}
.hdr-btns { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ham {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    cursor: pointer;
    background: #FEF5F8;
    border-radius: 8px;
    border: 1px solid rgba(69,0,40,.15);
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}
.ham span {
    display: block; width: 20px; height: 2px;
    background: var(--price-color); border-radius: 2px;
    transition: all .3s ease;
}
.ham.on span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.on span:nth-child(2) { opacity: 0; }
.ham.on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9998;
    background: #FFFFFF;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}
.mob-nav.on { transform: translateX(0); }
.mob-nav-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 1.5rem;
    border-bottom: 1px solid rgba(69,0,40,.1);
    background: #FEF5F8;
    position: sticky; top: 0; z-index: 1;
}
.mob-nav-head img { height: 38px; width: auto; }
.mob-close {
    width: 40px; height: 40px;
    background: #fff; border-radius: 8px;
    border: 1px solid rgba(69,0,40,.12);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--price-color);
    -webkit-tap-highlight-color: transparent;
}
.mob-nav-links { padding: 1.5rem 1.5rem 2rem; }
.mob-nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .06em;
    color: #141414; display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(69,0,40,.08);
    transition: color .2s;
    text-decoration: none;
}
.mob-nav-links a:last-of-type { border-bottom: none; }
.mob-nav-links a:active { color: var(--price-color); }
.mob-nav-cta {
    display: flex; flex-direction: column; gap: .75rem;
    margin-top: 1.5rem; padding-top: 1.5rem;
    border-top: 2px solid rgba(69,0,40,.12);
}
.mob-nav-cta .btn { width: 100%; justify-content: center; }
body.nav-open { overflow: hidden; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: all .3s; cursor: pointer;
    white-space: nowrap; min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}
.btn-p { background: var(--price-color); color: #fff; }
.btn-p:hover { background: #6B003A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(69,0,40,.3); }
.btn-o { background: transparent; color: var(--price-color); border-color: var(--price-color); }
.btn-o:hover { background: rgba(69,0,40,.05); }
.btn-w { background: #25D366; color: #fff; }
.btn-w:hover { background: #1ea952; }
.btn-w svg { fill: #fff; }
.btn-sm { padding: 10px 20px !important; font-size: 10px !important; min-height: 40px !important; }
.btn-lg { padding: 18px 48px !important; font-size: 11px !important; }
.btn-grace {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--price-color);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-grace:hover { background: var(--light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.btn-primary {
    display: inline-block; padding: 18px 48px;
    background: white; color: var(--price-color);
    text-decoration: none; border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; letter-spacing: 3px;
    text-transform: uppercase; font-weight: 500;
    transition: all 0.3s;
}
.btn-primary:hover { background: var(--light); transform: translateY(-3px); }
.btn-outline {
    display: inline-block; padding: 18px 48px;
    background: transparent; color: white;
    text-decoration: none; border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; letter-spacing: 3px;
    text-transform: uppercase; font-weight: 500;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: white; transform: translateY(-3px); color: white; }
.btn-ghost {
    display: inline-block; padding: 18px 48px;
    background: transparent; color: rgba(255,255,255,.9);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; letter-spacing: 3px;
    text-transform: uppercase; font-weight: 500;
    border: 1px solid rgba(255,255,255,.4);
    transition: all 0.3s; text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: white; transform: translateY(-2px); }

/* ── WA FLOAT ── */
.wa-float {
    position: fixed; bottom: 28px; right: 24px; z-index: 9997;
    display: flex; align-items: center; gap: 10px;
    background: #25D366; color: #fff;
    padding: 0 22px; height: 52px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(37,211,102,.42);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: .04em;
    animation: wapulse 2.8s infinite;
    -webkit-tap-highlight-color: transparent;
    transition: transform .2s;
}
.wa-float:active { transform: scale(.97); }
.wa-float svg { fill: #fff; width: 22px; height: 22px; flex-shrink: 0; }
.wa-label { color: #fff; white-space: nowrap; }
@keyframes wapulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.42); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.09); }
}

/* ── LAYOUT ── */
.page-wrap { max-width: 1100px; margin: 0 auto; padding: 0 32px 80px; }

/* ── HERO — EXACT din site-ul mamă ── */
.hero-section {
    position: relative;
    height: 80vh; min-height: 500px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    margin-bottom: 80px;
}
.hero-video-bg {
    position: absolute; top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto; z-index: 0;
    transform: translate(-50%, -50%); object-fit: cover;
    object-position: center 15%;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(42,0,22,0.55) 0%, rgba(42,0,22,0.50) 50%, rgba(42,0,22,0.50) 100%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; color: white;
    padding: 20px; max-width: 700px;
}
.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem; letter-spacing: 0.5em;
    text-transform: uppercase; color: var(--on-dark-accent);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 16px; justify-content: center;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--on-dark-accent); }
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 7vw, 64px); font-weight: 400;
    margin-bottom: 24px; line-height: 1.1; color: white;
}
.hero-content h1 em { font-style: italic; color: var(--ivory); display: block; }
.hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; color: rgba(255,252,239,0.85);
    max-width: 560px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stars { margin-top: 28px; font-size: 13px; color: rgba(255,252,239,.65); }
.hero-stars span { color: #f0c8a0; letter-spacing: 3px; }

/* ── TRUST BAR ── */
.trust-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin: 64px 0;
}
.trust-item { text-align: center; padding: 32px 16px; }
.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; color: var(--price-color);
    font-weight: 400; line-height: 1; margin-bottom: 8px;
}
.trust-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--on-light-muted);
}

/* ── INTRO STRIP ── */
.intro-strip {
    background: #FEF5F8;
    border-radius: 32px; padding: 64px;
    margin-bottom: 64px;
    box-shadow: 0 15px 45px rgba(69,0,40,0.1);
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-text {
    font-size: 1.15rem; line-height: 1.6;
    color: var(--price-color);
    font-family: 'Playfair Display', serif;
}

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 56px; text-align: center; }
.sec-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--on-light-muted);
    margin-bottom: 16px; display: block;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400; font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2; color: var(--price-color);
}
.section-title em { font-style: italic; opacity: 0.8; }

/* ═══════════════════════════════════════════════
   SERVICE CARDS — EXACT ca pe site-ul mamă
   Background: --ivory (#FFFCEF)
   Border radius: 20px
   Hover: translateY(-8px) + shadow
   ═══════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-card {
    background: var(--ivory);
    border: 1px solid rgba(69,0,40,0.08);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
    /* Înălțime uniformă */
    min-height: 280px;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(69,0,40,0.08);
    border-color: rgba(69,0,40,0.15);
}
.card-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--on-light-muted);
    margin-bottom: 20px; opacity: 0.8;
    /* Înălțime fixă pentru uniformitate */
    min-height: 20px;
    display: flex; align-items: center;
}
.card-title {
    font-family: 'Playfair Display', serif !important;
    /* DIMENSIUNE UNIFORMĂ — fix pentru Glass Skin și toate cardurile */
    font-size: 1.5rem !important;
    font-weight: 400;
    color: var(--price-color);
    /* Înălțime fixă pentru aliniere perfectă */
    min-height: 72px;
    display: flex; align-items: flex-start;
    margin-bottom: 16px;
    line-height: 1.25;
}
.card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem; color: var(--price-color);
    opacity: 0.85; line-height: 1.7;
    margin-bottom: 32px; flex-grow: 1;
}
.card-cta {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--price-color);
    font-weight: 500; transition: gap 0.3s;
    margin-top: auto;
}
.service-card:hover .card-cta { gap: 18px; }

/* ═══════════════════════════════════════════════
   PROTO CARDS — Header bordo + body alb
   Exact ca în screenshot-ul cu cele 3 carduri tarife
   ═══════════════════════════════════════════════ */
.proto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}
.proto-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(69,0,40,0.12);
    transition: box-shadow .3s, transform .3s;
    display: flex;
    flex-direction: column;
}
.proto-card:hover {
    box-shadow: 0 8px 40px rgba(69,0,40,0.15);
    transform: translateY(-4px);
}
.proto-header {
    /* ÎNĂLȚIME FIXĂ pentru uniformitate perfectă */
    background: var(--price-color);
    padding: 20px 24px;
    /* Înălțime minimă egală pentru toate cardurile */
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.proto-badge {
    font-family: 'Montserrat', sans-serif;
    display: block;
    font-size: 10px; letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(214,167,186,.8);
    margin-bottom: 6px; font-weight: 500;
}
.proto-header h3 {
    font-family: 'Playfair Display', serif !important;
    /* DIMENSIUNE UNIFORMĂ */
    font-size: 1.4rem !important;
    color: #fff !important;
    font-weight: 400 !important;
    line-height: 1.2;
    margin-bottom: 0;
}
.proto-body {
    padding: 20px 24px;
    flex: 1;
    background: #fff;
}
.proto-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid rgba(69,0,40,0.07);
    gap: .5rem;
}
.proto-row:last-child { border-bottom: none; }
.proto-row-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; color: var(--gray);
    line-height: 1.4; flex: 1;
}
.proto-row-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; color: var(--blush);
    white-space: nowrap; margin: 0 8px;
}
.proto-row-price {
    font-family: 'Playfair Display', serif;
    font-size: 16px; color: var(--price-color);
    font-weight: 400; white-space: nowrap; flex-shrink: 0;
}
.proto-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(69,0,40,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.proto-from {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; color: var(--blush);
    text-transform: uppercase; letter-spacing: .08em;
}
.proto-price-big {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem; color: var(--price-color);
    font-weight: 400;
}
.proto-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; color: var(--price-color);
    font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: letter-spacing .3s;
}
.proto-card:hover .proto-cta { letter-spacing: .15em; }

/* ── TARIFE TABLE ── */
.price-table {
    width: 100%; border-collapse: collapse;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 20px rgba(69,0,40,.08);
    margin-bottom: 32px;
}
.price-table thead tr { background: var(--price-color); }
.price-table thead th {
    padding: 14px 18px; text-align: left;
    color: #fff; font-size: 11px;
    font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.price-table thead th:not(:first-child) { text-align: center; }
.price-table tbody tr { background: #fff; }
.price-table tbody tr:nth-child(even) { background: #FFFCEF; }
.price-table tbody tr:hover { background: #fef5f8; }
.price-table td { padding: 13px 18px; border-bottom: 1px solid rgba(69,0,40,.07); vertical-align: top; }
.price-table td:not(:first-child) { text-align: center; color: var(--price-color); font-family: 'Playfair Display', serif; font-size: 16px; white-space: nowrap; }
.td-name { font-size: 13.5px; font-weight: 500; color: var(--price-color); display: block; margin-bottom: 3px; }
.td-desc { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ── PHILOSOPHY ── */
.philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 40px; }
.phil-item { border-left: 2px solid var(--blush); padding-left: 24px; }

/* ── IMAGE GALLERY ── */
.image-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 64px 0; }
.img-wrap { border-radius: 20px; overflow: hidden; height: 500px; border: 8px solid white; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.img-wrap:hover img { transform: scale(1.05); }

/* ── REVIEWS ── */
.reviews-section {
    margin: 80px 0; text-align: center;
    background: #ffffff; border-radius: 32px;
    padding: 64px; box-shadow: 0 15px 45px rgba(69,0,40,.1);
}

/* ── CONTACT STRIP ── */
.contact-strip {
    background: var(--deep); border-radius: 32px;
    padding: 64px; display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; color: white; margin-top: 64px;
}
.contact-strip h2 { color: white; }
.contact-detail { margin-bottom: 24px; }
.contact-label { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--on-dark-accent); margin-bottom: 8px; display: block; }
.contact-value { font-size: 1rem; color: rgba(255,252,239,0.9); line-height: 1.6; }
.contact-value a { color: var(--on-dark-accent); text-decoration: none; }
.contact-value a:hover { opacity: 0.7; }

/* ── FAQ — EXACT ca site-ul mamă ── */
.faq-section { margin-top: 64px; padding-bottom: 80px; }
.faq-wrapper { max-width: 900px; margin: 0 auto; }
details {
    background: var(--ivory); margin-bottom: 12px;
    border: 1px solid var(--blush); border-radius: 4px;
}
summary {
    padding: 24px 32px; cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; list-style: none;
    position: relative; color: var(--price-color);
}
summary::-webkit-details-marker { display: none; }
summary::after {
    content: '+'; position: absolute; right: 32px;
    color: var(--on-light-muted); font-size: 1.5rem;
    top: 50%; transform: translateY(-50%);
}
details[open] summary::after { content: '−'; }
.faq-answer { padding: 0 32px 32px; font-size: 0.9rem; opacity: 0.9; color: var(--price-color); line-height: 1.8; }

/* ── CTA ── */
.cta-quote { font-size: 0.95rem; font-style: italic; color: white; opacity: 0.85; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
footer { background: var(--price-color); color: rgba(255,255,255,.65); padding-top: 4rem; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-logo { display: block; margin-bottom: 1.25rem; }
.ft-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.ft-desc { font-size: 12.5px; color: rgba(255,255,255,.45); line-height: 1.75; margin-bottom: 1.4rem; }
.ft-soc { display: flex; gap: 7px; }
.ft-soc a { width: 33px; height: 33px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all .25s; }
.ft-soc a:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.ft-soc svg { width: 13px; height: 13px; fill: currentColor; }
.ft-col h4 { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #f0c8a0; margin-bottom: .9rem; }
.ft-col a { display: block; font-size: 12.5px; color: rgba(255,255,255,.45); margin-bottom: 5px; transition: color .25s; line-height: 1.4; text-decoration: none; }
.ft-col a:hover { color: #fff; }
.ft-cr { display: flex; flex-direction: column; gap: 9px; }
.ft-cri { display: flex; gap: 8px; align-items: flex-start; font-size: 12.5px; color: rgba(255,255,255,.45); line-height: 1.5; }
.ft-cri svg { width: 12px; height: 12px; flex-shrink: 0; margin-top: 3px; stroke: rgba(255,255,255,.5); fill: none; stroke-width: 1.5; }
.ft-cri a { color: rgba(255,255,255,.72); text-decoration: none; }
.ft-bot { padding: 1.1rem 0; }
.ft-bi { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255,255,255,.28); flex-wrap: wrap; gap: .6rem; }
.ft-leg { display: flex; gap: .85rem; }
.ft-leg a { color: rgba(255,255,255,.28); transition: color .25s; text-decoration: none; }
.ft-leg a:hover { color: rgba(255,255,255,.65); }

/* ── PAGE HERO (pagini interioare) ── */
.page-hero { background: var(--bg); padding: 4rem 0 5rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 11.5px; color: var(--blush); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--blush); text-decoration: none; }
.breadcrumb a:hover { color: var(--price-color); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 400; color: var(--price-color); line-height: 1.1; margin-top: 1rem; }
.page-hero h1 em { font-style: italic; }
.page-hero p { font-size: 16px; color: var(--gray); max-width: 600px; line-height: 1.8; margin-top: 1rem; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ── GOOGLE REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.review-card {
    background: var(--ivory); border: 1px solid rgba(69,0,40,.08);
    border-radius: 16px; padding: 1.75rem;
    display: flex; flex-direction: column; gap: .7rem;
    transition: transform .3s;
}
.review-card:hover { transform: translateY(-3px); }
.review-stars { color: #b8956a; font-size: 14px; letter-spacing: 3px; }
.review-card blockquote { font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic; color: var(--price-color); line-height: 1.75; }
.review-card cite { font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 500; color: var(--price-color); font-style: normal; }
.review-src { font-family: 'Montserrat', sans-serif; font-size: 11px; color: var(--blush); }

/* ── SEC-INTRO ── */
.sec-intro { margin-top: 56px; margin-bottom: 28px; }
.sec-intro h2 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 3.5vw, 34px); font-weight: 400; color: var(--price-color); line-height: 1.2; margin-bottom: 6px; }
.sec-intro h2 em { font-style: italic; opacity: .65; }
.sec-intro p { font-size: 14px; color: var(--gray); line-height: 1.75; max-width: 680px; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .nav-desk { display: none; }
    .hdr-btns { display: none; }
    .ham { display: flex !important; }
    .ft-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .trust-bar { grid-template-columns: repeat(2,1fr); }
    .contact-strip { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .image-gallery { grid-template-columns: 1fr; }
}
@media(max-width:640px) {
    .hdr-in { padding: 8px 1rem; min-height: 56px; }
    .logo img { height: 34px; }
    .topbar-r { display: none; }
    .topbar { padding: 6px 1rem; font-size: 10.5px; }
    .page-wrap { padding: 0 16px 60px; }
    .intro-strip { padding: 40px 24px; border-radius: 20px; }
    .contact-strip { padding: 40px 24px; border-radius: 20px; }
    .hero-section { height: 70vh; border-radius: 0 0 24px 24px; margin-bottom: 48px; }
    .services-grid { grid-template-columns: 1fr; }
    .proto-grid { grid-template-columns: 1fr; }
    .trust-bar { grid-template-columns: 1fr 1fr; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .btn-outline, .btn-ghost { width: 100%; max-width: 320px; text-align: center; }
    .ft-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-section { padding: 40px 20px; border-radius: 20px; }
    .img-wrap { height: 350px; }
    .wa-float { bottom: 20px; right: 16px; height: 46px; padding: 0 16px; font-size: 12px; }
    .card-title { font-size: 1.3rem !important; min-height: auto; }
    .proto-header { min-height: auto; }
}
@media(max-width:380px) {
    .hero-content h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
}
