:root {
    --pink: #dc0d5b;
    --pink-dark: #c30c50;
    --pink-soft: #fde7ef;
    --gold: #c99323;
    --ink: #202022;
    --muted: #666;
    --line: #d69c27;
    --paper: #fffdfc;
    --shadow: 0 12px 24px rgba(58, 26, 32, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: #fdf8f7;
    font-family: "Inter", Arial, sans-serif;
}

a { color: inherit; }

.anniversary-page {
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 26%, rgba(255,255,255,.97), rgba(255,250,250,.94) 44%, rgba(252,240,243,.82) 100%);
}

.hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px 36px;
    overflow: hidden;
    background-image: url("../images/anniversary/anniversary-hero-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-bottom: 1px solid rgba(219, 13, 91, 0.09);
}

.hero-inner {
    position: relative;
    z-index: 4;
    width: min(100%, 760px);
    text-align: center;
}

.brand-lockup { margin-bottom: 16px; }
.lotus {
    color: var(--gold);
    font-size: 28px;
    line-height: 1;
}
.brand-name {
    display: inline-block;
    position: relative;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1;
    letter-spacing: .12em;
}
.brand-name::before,
.brand-name::after {
    content: "";
    position: absolute;
    width: 62px;
    height: 1px;
    background: var(--gold);
    top: 50%;
}
.brand-name::before { right: calc(100% + 14px); }
.brand-name::after  { left: calc(100% + 14px); }
.brand-subtitle {
    margin-top: 5px;
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 15px;
    letter-spacing: .08em;
}

/* =========================================================
   ANNIVERSARY TITLE
   ========================================================= */
.anniversary-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
}


/* 1st */
.ordinal {
    position: relative;
    display: block;
    width: 79px;
    height: 104px;
    flex: 0 0 79px;
    color: var(--pink);
}


.ordinal-number {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 112px;
    font-weight: 400;
    line-height: 0.80;
    color: var(--pink);
}


.ordinal-suffix {
    position: absolute;
    left: 50px;
    top: 3px;
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    color: var(--pink);
}

/* ANNIVERSARY */
.anniversary-title .word {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(58px, 6.4vw, 82px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.02em;
    white-space: nowrap;
    color: var(--ink);
}

.script-title {
    margin-top: -2px;
    color: var(--pink);
    font-family: "Allura", cursive;
    font-size: clamp(74px, 10vw, 105px);
    line-height: .82;
    transform: rotate(-2deg);
}

.hero-copy {
    margin: 22px auto 14px;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 500;
}

.date-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 22px;
    color: #fff;
    background: linear-gradient( 180deg, #df1661 0%, #cc0b52 100% );
    border-radius: 7px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 18px rgba(201, 19, 85, 0.15);
}

.calendar-icon {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    color: #ffffff;
}

.content-shell {
    width: min(100% - 34px, 730px);
    margin: 0 auto;
    padding: 28px 0 18px;
}

.offers-section { margin: 0 0 26px; }

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
    align-items: center;
    gap: 18px;
}
.section-heading-row h2,
.cta-section h2,
.sunbed-copy h2 {
    margin: 0;
    color: var(--pink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(23px, 4vw, 30px);
    font-weight: 700;
    text-align: center;
}
.rule {
    display: block;
    height: 1px;
    background: var(--line);
}
.section-subtitle {
    margin: 4px 0 18px;
    text-align: center;
    font-size: 14px;
}

.laser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 18px;
}
.laser-card {
    position: relative;
    min-height: 275px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 38px 28px 20px;
    background: #fff;
    border: 1px solid #ecd8d2;
    border-radius: 9px;
    box-shadow: var(--shadow);
    text-align: center;
}
.area-icon {
    position: absolute;
    top: -28px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    transform: translateX(-50%);
    border: 1px solid #deb972;
    border-radius: 50%;
    color: var(--pink);
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    z-index: 3;
}

.laser-area-svg {
    width: 34px;
    height: 34px;
    display: block;
    color: var(--pink);
}
.area-chip {
    width: 138px;
    max-width: 92%;
    min-height: 28px;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 2px 8px 3px;
    border-radius: 5px;
    color: #ffffff;
    background: linear-gradient( 180deg, #e71b68, #cf0c53 );
    font-family: "Cormorant Garamond", Georgia, serif;
}


/* Make 1 / 2 / 3 visibly larger */
.area-number {
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}


/* AREA / AREAS slightly smaller */
.area-text {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}
.area-chip-light {
    color: var(--pink);
    background: #ffffff;
}
.discount {
    margin-top: 10px;
    color: var(--pink);
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: .8;
}
.discount strong {
    font-size: clamp(68px, 8vw, 88px);
    font-weight: 700;
}
.discount span {
    font-size: 42px;
    font-weight: 700;
}
.off {
    margin-top: -2px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    line-height: 1;
}
.laser-card p {
    margin: 18px 0 15px;
    font-size: 14px;
}
.popular-ribbon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 125px;
    padding: 7px 18px 6px;
    color: #fff;
    background: linear-gradient(180deg, #d6ad54, #b88923);
    clip-path: polygon(8% 0,92% 0,100% 50%,92% 100%,8% 100%,0 50%);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    /* ABOVE round icon */
    z-index: 5;
}
.popular {
    padding-top: 38px;
}

.popular .area-icon {
    top: -29px;
}

.laser-card-featured {
    border-color: #dd2969;
    color: #fff;
    background: linear-gradient(160deg, #df145e, #d70c58);
}
.laser-card-featured .area-icon { color: var(--pink); background: #fff; }
.laser-card-featured .discount,
.laser-card-featured .off { color: #fff; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(207,12,83,.16);
}
.btn-pink {
    width: 100%;
    color: #fff;
    background: linear-gradient(180deg, #e71b68, #cf0c53);
}
.btn-white {
    width: 100%;
    color: var(--pink);
    background: #fff;
}
.btn-outline {
    min-width: 192px;
    border: 1.5px solid var(--pink);
    color: var(--pink);
    background: #fff;
}

.beauty-section { margin-top: 26px; }
.beauty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    margin-top: 16px;
}
.beauty-card {
    overflow: hidden;
    border: 1px solid #ebdad5;
    border-radius: 9px;
    background: #fff;
    box-shadow: var(--shadow);
}
.beauty-card img {
    display: block;
    width: 100%;
    height: 154px;
    object-fit: cover;
}
.beauty-card-body {
    padding: 10px 52px 14px;
    text-align: center;
}
.beauty-card h3 {
    min-height: 44px;
    margin: 0 0 7px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 19px;
    line-height: 1.05;
}
.only {
    color: var(--pink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
}
.price {
    margin: -2px 0 10px;
    color: var(--pink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 35px;
    font-weight: 700;
}

.paraffin-offer {
    display: grid;
    grid-template-columns: 240px 1fr 80px;
    align-items: stretch;
    min-height: 155px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 64% 40%, rgba(255,255,255,.08), transparent 32%),
        linear-gradient(110deg, #0e0f10, #26282a 58%, #111214);
    box-shadow: var(--shadow);
}
.paraffin-offer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.paraffin-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 16px 10px;
}
.paraffin-copy h2 {
    margin: 0 0 5px;
    color: #d7ad4a;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 27px;
}
.paraffin-copy div {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 17px;
}
.paraffin-copy strong {
    margin-top: 2px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 21px;
}
.paraffin-copy em {
    color: #d7ad4a;
    font-family: "Allura", cursive;
    font-size: 36px;
    line-height: .85;
}
.feet-line-art {
    display: grid;
    place-items: center;
    color: #d7ad4a;
    font-size: 25px;
    letter-spacing: 3px;
}

.sunbed-offer {
    display: grid;
    grid-template-columns: 78px 1fr auto;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    padding: 16px 22px;
    border: 1.5px solid #ef8dab;
    border-radius: 9px;
    background: rgba(255,255,255,.72);
}
.sun-icon {
    color: var(--pink);
    font-size: 48px;
    text-align: center;
}
.sunbed-copy h2 { text-align: left; font-size: 22px; }
.sunbed-copy p {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.35;
}

.cta-section {
    margin-top: 24px;
    padding: 0 8px 10px;
    text-align: center;
}
.cta-section h2 { font-size: 24px; }
.cta-section > p {
    margin: 4px 0 14px;
    font-size: 13px;
}
.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.cta-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 65px;
    padding: 9px 13px;
    border-radius: 7px;
    text-decoration: none;
}

.cta-card span:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.cta-card strong { font-size: 13px; }
.cta-card small { font-size: 12px; margin-top: 2px; }
.cta-pink { color: #fff; background: linear-gradient(180deg,#e71965,#cf0c53); }
.cta-dark { color: #fff; background: linear-gradient(180deg,#242426,#151517); }
.cta-outline { color: var(--pink); border: 1.5px solid var(--pink); background: #fff; }
.cta-outline small { color: #333; }

.terms {
    border-top: 1px solid rgba(219,13,91,.08);
    background: linear-gradient(180deg,#f9e5ea,#f6e0e7);
}
.terms-inner {
    width: min(100% - 34px, 730px);
    min-height: 84px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 28px;
}
.info-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 2px solid #222;
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 22px;
}
.terms p {
    margin: 0;
    font-size: 10.5px;
    line-height: 1.35;
}

.cta-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
}

.cta-svg {
    width: 30px;
    height: 30px;
    display: block;
}


/* BOOK ONLINE - WHITE */
.cta-pink .cta-icon,
.cta-pink .cta-svg {
    color: #ffffff;
}


/* WHATSAPP - WHITE */
.cta-dark .cta-icon,
.cta-dark .cta-svg {
    color: #ffffff;
}


/* CALL - ELEGANCE PINK */
.cta-outline .cta-icon,
.cta-outline .cta-svg {
    color: var(--pink);
}

/* =========================================================
   FREE KIDS FACE PAINT OFFER
   ========================================================= */

.facepaint-offer {
    position: relative;
    display: grid;
    grid-template-columns: 210px 1fr 90px;
    align-items: stretch;
    min-height: 145px;
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid #e6b458;
    border-radius: 9px;
    background: radial-gradient( circle at 65% 30%, rgba(255, 255, 255, 0.95), transparent 42% ), linear-gradient( 110deg, #fff5f8 0%, #fde6ee 48%, #fff8f4 100% );
    box-shadow: 0 10px 22px rgba(104, 37, 62, 0.08);
}


/* IMAGE */

.facepaint-image {
    overflow: hidden;
}

    .facepaint-image img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 145px;
        object-fit: cover;
        object-position: center;
    }


/* CONTENT */

.facepaint-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    text-align: center;
}


.facepaint-small-title {
    margin-bottom: 2px;
    color: #b78a2d;
    font-family: "Inter", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


.facepaint-content h2 {
    margin: 0;
    color: var(--pink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}


.facepaint-subtitle {
    margin-top: 1px;
    color: #242124;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
}


.facepaint-content p {
    max-width: 340px;
    margin: 8px auto 6px;
    color: #444;
    font-size: 11.5px;
    line-height: 1.35;
}


    .facepaint-content p strong {
        color: var(--pink);
    }


.facepaint-date {
    display: inline-flex;
    padding: 4px 13px;
    border-radius: 20px;
    color: #ffffff;
    background: var(--pink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}


/* DECORATIVE STARS */

.facepaint-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c99631;
}


.facepaint-stars-svg {
    width: 66px;
    height: 66px;
}


@media (max-width: 760px) {
    .hero {
        min-height: 430px;
        padding: 24px 18px 34px;
        background-position: center center;
        background-size: cover;
    }
    .brand-name::before, .brand-name::after { width: 35px; }

    .script-title { font-size: 76px; margin-top: 6px; }
    .hero-copy { font-size: 15px; }
    .date-pill { font-size: 18px; }
    .content-shell { width: min(100% - 26px, 730px); }
    .laser-grid { grid-template-columns: 1fr; gap: 44px; }
    .laser-card { max-width: 430px; width: 100%; margin: 0 auto; }
    .beauty-grid { grid-template-columns: 1fr; gap: 20px; }
    .beauty-card { max-width: 520px; width: 100%; margin: 0 auto; }
    .beauty-card img { height: 220px; }
    .paraffin-offer { grid-template-columns: 150px 1fr; }
    .feet-line-art { display: none; }
    .paraffin-copy h2 { font-size: 22px; }
    .paraffin-copy strong { font-size: 17px; }
    .sunbed-offer { grid-template-columns: 58px 1fr; }
    .sunbed-offer .btn { grid-column: 1 / -1; width: 100%; }
    .cta-grid { grid-template-columns: 1fr; gap: 10px; }
    .terms-inner { padding-inline: 8px; }


    .anniversary-title {
        gap: 5px;
    }

    .ordinal {
        width: 82px;
        height: 88px;
        flex: 0 0 82px;
    }

    .ordinal-number {
        left: 0;
        bottom: 0;
        font-size: 90px;
        line-height: 0.82;
    }

    .ordinal-suffix {
        top: 7px;
        right: 0;
        font-size: 30px;
    }

    .anniversary-title .word {
        font-size: 58px;
    }

    .script-title {
        font-size: 76px;
        margin-top: 6px;
    }

    .date-pill {
        padding: 11px 18px;
        font-size: 18px;
    }

    .calendar-icon {
        width: 21px;
        height: 21px;
        flex-basis: 21px;
    }
    
}

@media (max-width: 520px) {
    .hero {
        min-height: 430px;
        background-position: center center;
    }
    .brand-name { font-size: 31px; }
    .brand-name::before, .brand-name::after { display: none; }
    .anniversary-title {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .ordinal {
        width: 57px;
        height: 67px;
        flex: 0 0 57px;
    }

    .ordinal-number {
        left: 0;
        bottom: 0;
        font-size: 70px;
        line-height: 0.82;
    }

    .ordinal-suffix {
        top: 5px;
        right: -1px;
        font-size: 22px;
    }

    .anniversary-title .word {
        font-size: clamp(35px, 10.5vw, 47px);
        white-space: nowrap;
    }

    .script-title {
        font-size: 65px;
    }
    .script-title { font-size: 65px; }
    .desktop-only { display: none; }
    .section-heading-row { grid-template-columns: 34px 1fr 34px; gap: 9px; }
    .section-heading-row h2 { font-size: 21px; }
    .beauty-card-body { padding-inline: 22px; }
    .paraffin-offer { grid-template-columns: 1fr; }
    .paraffin-offer img { height: 170px; }
    .sunbed-offer { padding: 14px; }

    .facepaint-offer {
        grid-template-columns: 1fr;
    }

    .facepaint-image {
        height: 170px;
    }

    .facepaint-image img {
        min-height: 170px;
    }

    .facepaint-content {
        padding: 18px;
    }

    .facepaint-content h2 {
        font-size: 28px;
    }

    .facepaint-content p {
        font-size: 12px;
    }

}