:root {
    --salmon: #f4a99a;
    --salmon-light: #fdf0ed;
    --salmon-mid: #f7c4ba;
    --salmon-dark: #c46f5e;
    --salmon-deep: #8b3d30;
    --dark: #1e1e1e;
    --dark-mid: #2e2323;
    --white: #ffffff;
    --bg: #faf6f4;
    --text-muted: #9a7060;
    --text-body: #5a3d35;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
}

/* ─────────────────────────────────────────
       HERO BANNER
    ───────────────────────────────────────── */
.svc-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, #1a0e0e 0%, #2d1510 35%, #3d1f18 65%, #1a0e0e 100%);
    padding: 80px 5% 70px;
}

/* Decorative circles */
.svc-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 169, 154, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.svc-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 196, 186, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

/* Floating petal shapes */
.hero-petal {
    position: absolute;
    border-radius: 50% 0 50% 0;
    opacity: 0.07;
    pointer-events: none;
}

.hero-petal-1 {
    width: 180px;
    height: 180px;
    background: var(--salmon);
    top: 12%;
    left: 8%;
    transform: rotate(20deg);
    animation: floatPetal 8s ease-in-out infinite;
}

.hero-petal-2 {
    width: 120px;
    height: 120px;
    background: var(--salmon-mid);
    top: 60%;
    right: 10%;
    transform: rotate(-30deg);
    animation: floatPetal 10s ease-in-out infinite reverse;
}

.hero-petal-3 {
    width: 80px;
    height: 80px;
    background: var(--salmon-light);
    top: 20%;
    right: 20%;
    transform: rotate(45deg);
    animation: floatPetal 7s ease-in-out infinite 2s;
}

@keyframes floatPetal {

    0%,
    100% {
        transform: translateY(0) rotate(20deg);
    }

    50% {
        transform: translateY(-18px) rotate(25deg);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.2s;
}

.hero-eyebrow span {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--salmon);
}

.hero-eyebrow p {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--salmon);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-title em {
    font-style: italic;
    color: var(--salmon);
}

.hero-caption {
    font-size: clamp(14px, 1.8vw, 17px);
    font-weight: 300;
    color: rgba(253, 240, 237, 0.75);
    letter-spacing: 0.06em;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-divider div {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--salmon-mid));
}

.hero-divider div:last-child {
    background: linear-gradient(90deg, var(--salmon-mid), transparent);
}

.hero-divider span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--salmon);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────────────────────────────────
       SERVICES GRID
    ───────────────────────────────────────── */
.svc-main {
    padding: 80px 6% 90px;
    max-width: 1200px;
    margin: 0 auto;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* Full-width card for Body Polishing (3rd item) */
.svc-card:nth-child(3) {
    grid-column: 1 / -1;
}

/* ── Card ── */
.svc-card {
    background: var(--white);
    border: 1px solid rgba(244, 169, 154, 0.2);
    border-radius: 20px;
    padding: 40px 40px 36px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    opacity: 0;
    transform: translateY(30px);
}

.svc-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(196, 111, 94, 0.14), 0 4px 16px rgba(0, 0, 0, 0.05);
    border-color: var(--salmon-mid);
}

/* Corner accent */
.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(244, 169, 154, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Bottom accent bar */
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--salmon-mid), var(--salmon), var(--salmon-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 0 0 20px 20px;
}

.svc-card:hover::after {
    transform: scaleX(1);
}

/* Card header row */
.svc-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 22px;
}

/* Icon box */
.svc-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--salmon-light);
    border: 1.5px solid var(--salmon-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
}

.svc-card:hover .svc-icon-box {
    background: var(--salmon-mid);
    border-color: var(--salmon);
    transform: rotate(6deg) scale(1.08);
}

/* Card title block */
.svc-card-title-wrap {
    flex: 1;
}

.svc-card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--salmon);
    margin-bottom: 4px;
}

.svc-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.svc-card h2 em {
    font-style: italic;
    color: var(--salmon-dark);
}

/* Divider */
.svc-card-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.svc-card-divider div {
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, var(--salmon), transparent);
}

.svc-card-divider span {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--salmon);
    font-weight: 500;
}

/* Description */
.svc-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.85;
    letter-spacing: 0.02em;
}

/* Highlights list */
.svc-highlights {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.svc-highlights li {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--salmon-dark);
    background: var(--salmon-light);
    border: 1px solid rgba(244, 169, 154, 0.3);
    padding: 5px 14px;
    border-radius: 40px;
}

/* ── Special wide card (Body Polishing) ── */
.svc-card.wide-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.svc-card.wide-card .svc-card-right {
    padding-left: 10px;
    border-left: 1px solid rgba(244, 169, 154, 0.22);
}

.svc-card.wide-card .svc-card-right-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--salmon-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.svc-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-body);
}

.svc-benefits li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--salmon);
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
       BOTTOM PREMIUM BANNER
    ───────────────────────────────────────── */
.svc-footer-banner {
    background: linear-gradient(135deg, #2d1510 0%, #3d1f18 50%, #2d1510 100%);
    padding: 52px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.svc-footer-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(244, 169, 154, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.svc-footer-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 740px;
    margin: 0 auto;
}

.svc-footer-gem {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
}

.svc-footer-banner p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 400;
    color: rgba(253, 240, 237, 0.9);
    line-height: 1.65;
    letter-spacing: 0.02em;
}

.svc-footer-banner p em {
    color: var(--salmon);
    font-style: normal;
}

.svc-footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 22px 0;
}

.svc-footer-divider div {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 169, 154, 0.5));
}

.svc-footer-divider div:last-child {
    background: linear-gradient(90deg, rgba(244, 169, 154, 0.5), transparent);
}

.svc-footer-divider span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--salmon);
}

.svc-footer-cta {
    display: inline-block;
    margin-top: 28px;
    padding: 13px 40px;
    background: var(--salmon);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(244, 169, 154, 0.35);
}

.svc-footer-cta:hover {
    background: var(--salmon-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196, 111, 94, 0.4);
}

/* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
@media (max-width: 900px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-card:nth-child(3) {
        grid-column: 1;
    }

    .svc-card.wide-card {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .svc-card.wide-card .svc-card-right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(244, 169, 154, 0.22);
        padding-top: 24px;
    }
}

@media (max-width: 600px) {
    .svc-main {
        padding: 56px 5% 70px;
    }

    .svc-card {
        padding: 28px 24px 26px;
    }

    .svc-hero {
        min-height: 52vh;
        padding: 70px 5% 60px;
    }

    .svc-card-header {
        gap: 14px;
    }

    .svc-icon-box {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}