/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", Arial, sans-serif;
    color: #111;
    background: #fff;
    overflow-x: hidden;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Fraunces", Georgia, serif;
}

body,
p,
a,
button,
span,
li {
    font-family: "Open Sans", Arial, sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

button,
a {
    font-family: inherit;
}


/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.announcement-bar {
    width: 100%;
    height: 26px;

    background: #7d0000;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2px;

    text-align: center;
}

.announcement-icon {
    font-size: 18px;
    line-height: 1;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 1000;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    height: 98px;

    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.header-socials {
    width: 150px;

    display: flex;
    align-items: center;
    gap: 18px;
}

.header-socials a {
    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #111;
}

.header-socials svg {
    width: 15px;
    height: 15px;

    fill: currentColor;
    stroke: currentColor;

    stroke-width: 1.5;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 34px;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-navigation > a {
    color: #111;
    text-decoration: none;

    font-size: 12px;
    font-weight: 400;

    white-space: nowrap;

    transition: color 0.25s ease;
}

.main-navigation > a:not(.nav-logo):hover {
    color: #7d0000;
}


/* =========================================================
   CENTER LOGO
========================================================= */

.nav-logo {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #251c1e;
    color: #fff !important;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    margin: 0 2px;
}

.logo-top {
    font-family: "Ballet", cursive;
    font-size: 15px;
    line-height: 13px;
}

.logo-bottom {
    font-size: 5px;
    letter-spacing: 1px;
    line-height: 8px;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button {
    display: none;

    width: 38px;
    height: 38px;

    border: 0;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.mobile-menu-button span {
    display: block;

    width: 22px;
    height: 1px;

    background: #111;

    transition: 0.3s ease;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation {
    display: none;
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    width: 100%;

    min-height: 170px;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    scroll-margin-top: 100px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 25px 20px 20px;
}


/* =========================================================
   STUDIO NAME
========================================================= */

.studio-name {
    margin: 0 0 25px;

    color: #790000;

    font-family: "Ballet", cursive;

    font-size: clamp(48px, 6vw, 68px);

    font-weight: 400;
    line-height: 0.9;

    white-space: nowrap;
}


/* =========================================================
   PRICING BUTTON
========================================================= */

.pricing-button {
    border: 0;
    outline: none;

    background: #790000;
    color: #fff;

    min-width: 175px;
    min-height: 34px;

    padding: 8px 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    cursor: pointer;

    font-size: 10px;
    font-weight: 400;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.pricing-button:hover {
    background: #580000;
    transform: translateY(-2px);
}

.button-arrow {
    font-size: 20px;
    line-height: 10px;
}


/* =========================================================
   BANNER
========================================================= */

.banner-section {
    width: 100%;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #e7c8ae 0%,
            #d39d89 50%,
            #e6c3a8 100%
        );
}

.banner-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /*
       If there is no image yet, the gradient background
       of .banner-section will remain visible.
    */
}


/* =========================================================
   FUTURE SECTIONS
========================================================= */

.future-section {
    width: 100%;
    min-height: 500px;

    padding: 80px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    scroll-margin-top: 100px;
}

.future-section:nth-child(even) {
    background: #f8f4f1;
}

.future-section h2 {
    font-size: 36px;
    font-weight: 500;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .header-container {
        height: 85px;
        padding: 0 25px;
    }

    .header-socials {
        width: 100px;
    }

    .main-navigation {
        gap: 20px;
    }

    .main-navigation > a {
        font-size: 11px;
    }

    .nav-logo {
        width: 44px;
        height: 44px;
    }

    .hero-section {
        min-height: 165px;
    }

    
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    /* Announcement */

    .announcement-bar {
        height: 30px;

        padding: 0 10px;

        gap: 8px;

        font-size: 8px;
    }

    .announcement-icon {
        font-size: 14px;
    }


    /* Header */

    .header-container {
        height: 70px;
        padding: 0 18px;
    }

    .header-socials {
        width: auto;
        gap: 12px;
    }

    .header-socials svg {
        width: 14px;
        height: 14px;
    }


    /* Hide desktop navigation */

    .main-navigation {
        display: none;
    }


    /* Show mobile button */

    .mobile-menu-button {
        display: flex;
    }


    /* Mobile menu */

    .mobile-navigation {
        display: flex;

        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        background: #fff;

        flex-direction: column;

        padding: 10px 20px 20px;

        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .mobile-navigation.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .mobile-navigation a {
        color: #111;

        text-decoration: none;

        font-size: 13px;

        padding: 13px 5px;

        border-bottom: 1px solid #eee;
    }

    .mobile-navigation a:last-child {
        border-bottom: 0;
    }


    /* Hero */

    .hero-section {
        min-height: 155px;
    }

    .hero-content {
        padding: 25px 15px 20px;
    }

    .studio-name {
        font-size: clamp(42px, 13vw, 58px);

        margin-bottom: 22px;
    }

    .pricing-button {
        min-width: 165px;

        font-size: 9px;

        min-height: 34px;
    }


    /* Banner */

    


    /* Future sections */

    .future-section {
        min-height: 400px;
        padding: 60px 20px;
    }

    .future-section h2 {
        font-size: 28px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .announcement-bar {
        font-size: 7px;
    }

    .header-container {
        padding: 0 14px;
    }

    .hero-section {
        min-height: 145px;
    }

    .studio-name {
        font-size: 42px;
    }

    .pricing-button {
        min-width: 155px;
    }

    
}

/* =========================================================
   ABOUT US SECTION
========================================================= */

.about-section {
    width: 100%;

    background: #fff;

    padding: 48px 20px 52px;

    text-align: center;

    scroll-margin-top: 80px;
}


/* PHONE NUMBERS */

.about-contact {
    color: #790000;

    font-size: 18px;
    font-weight: 600;

    margin-bottom: 16px;

    line-height: 1.4;
}

.about-contact a {
    color: inherit;
    text-decoration: none;
}


/* SECTION LABEL */

.section-label {
    color: #555;

    font-size: 9px;
    font-weight: 400;

    margin-bottom: 5px;
}


/* SCRIPT HEADINGS */

.script-heading {
    margin: 0;

    color: #790000;

    font-family: "Ballet", cursive;

    font-size: clamp(25px, 3vw, 34px);

    font-weight: 400;

    line-height: 1.15;
}


/* =========================================================
   ABOUT IMAGE GALLERY
========================================================= */

.about-gallery {
    width: 100%;
    /* max-width: 560px; */

    margin: 22px auto 0;

    display: grid;

    grid-template-columns:
        1fr
        2.05fr
        1fr;

    gap: 10px;

    align-items: stretch;
}


/* LEFT AND RIGHT COLUMNS */

.gallery-column {
    display: grid;

    grid-template-rows: 1fr 1fr;

    gap: 10px;

    min-width: 0;
}


/* ALL IMAGE WRAPPERS */

.gallery-image-wrapper,
.gallery-center {
    width: 100%;

    overflow: hidden;
}


/* SIDE IMAGES */

/* .gallery-image-wrapper {
    aspect-ratio: 1 / 0.82;
} */


/* CENTER IMAGE */

.gallery-center {
    aspect-ratio: 0.91 / 1;
}


/* IMAGES */

.about-gallery img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}


/* SMALL IMAGE HOVER */

.gallery-image-wrapper:hover img,
.gallery-center:hover img {
    transform: scale(1.03);
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    width: 100%;

    background: #fff;

    padding: 48px 20px 50px;

    text-align: center;

    scroll-margin-top: 80px;
}


/* SERVICES DESCRIPTION */

.services-description {
    width: 100%;
    max-width: 470px;

    margin: 10px auto 0;

    color: #666;

    font-size: 8px;

    line-height: 1.55;

    font-weight: 400;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
    width: 100%;
    /* max-width: 560px; */

    margin: 32px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    align-items: stretch;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    background: #fde9e9;

    padding: 14px 12px;

    min-width: 0;
}


/* INNER BORDER */

.service-card-inner {
    height: 100%;

    min-height: 135px;

    border: 1px solid rgba(121, 0, 0, 0.12);

    padding: 25px 12px 12px;

    display: flex;

    flex-direction: column;

    align-items: center;
}


/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {
    position: absolute;

    top: -14px;
    left: 50%;

    transform: translateX(-50%);

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #fff;

    border: 1px solid #222;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 2;
}

.service-icon svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke: #111;

    stroke-width: 1.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   SERVICE TITLE
========================================================= */

.service-card h3 {
    margin: 0 0 9px;

    color: #222;

    font-size: 11px;

    font-weight: 500;

    line-height: 1.3;
}


/* =========================================================
   SERVICE DESCRIPTION
========================================================= */

.service-card p {
    margin: 0;

    color: #666;

    font-size: 7px;

    line-height: 1.45;

    max-width: 145px;
}


/* =========================================================
   READ MORE
========================================================= */

.read-more {
    margin-top: auto;
    padding-top: 10px;

    color: #111;

    text-decoration: none;

    font-size: 7px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    transition: color 0.2s ease;
}

.read-more span {
    font-size: 14px;

    line-height: 8px;

    transition: transform 0.2s ease;
}

.read-more:hover {
    color: #790000;
}

.read-more:hover span {
    transform: translateX(3px);
}


/* =========================================================
   PRICING / CONTACT TEMPORARY SECTIONS
========================================================= */

.pricing-placeholder,
.contact-placeholder {
    width: 100%;

    min-height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f8f4f1;

    scroll-margin-top: 80px;
}

.contact-placeholder {
    background: #fff;
}

.pricing-placeholder h2,
.contact-placeholder h2 {
    font-size: 32px;

    font-weight: 400;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .about-section {
        padding-top: 40px;
    }

    .about-contact {
        font-size: 17px;
    }

    .about-gallery {
        max-width: 600px;

        gap: 8px;
    }

    .gallery-column {
        gap: 8px;
    }

    .services-grid {
        max-width: 600px;

        gap: 8px;
    }

    .service-card {
        padding: 13px 9px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .about-section {
        padding: 38px 15px 45px;
    }


    /* PHONE */

    .about-contact {
        font-size: 16px;

        margin-bottom: 14px;
    }


    /* TITLE */

    .script-heading {
        font-size: clamp(24px, 7vw, 32px);
    }


    /* GALLERY */

    .about-gallery {
        max-width: 500px;

        margin-top: 20px;

        grid-template-columns: 1fr 1fr;

        gap: 7px;
    }


    /*
       Center image takes full width
       on mobile.
    */

    .gallery-center {
        grid-column: 1 / -1;

        grid-row: 1;

        aspect-ratio: 1.35 / 1;
    }


    .gallery-column {
        grid-row: 2;

        gap: 7px;
    }


    .gallery-column:last-child {
        grid-column: 2;
    }


    .gallery-image-wrapper {
        aspect-ratio: 1 / 0.9;
    }


    /* SERVICES */

    .services-section {
        padding: 42px 15px 45px;
    }

    .services-description {
        max-width: 340px;

        font-size: 8px;

        line-height: 1.5;
    }


    /*
       Horizontal scrolling cards on mobile
    */

    .services-grid {
        width: calc(100% + 30px);

        margin-left: -15px;

        padding:
            18px 15px 10px;

        display: flex;

        overflow-x: auto;

        gap: 10px;

        justify-content: flex-start;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }


    .service-card {
        flex: 0 0 75%;

        min-width: 75%;

        scroll-snap-align: start;

        padding: 14px 12px;
    }


    .service-card-inner {
        min-height: 150px;

        padding-left: 15px;
        padding-right: 15px;
    }


    .service-card h3 {
        font-size: 12px;
    }


    .service-card p {
        font-size: 8px;

        max-width: 190px;
    }


    .read-more {
        font-size: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .about-contact {
        font-size: 14px;
    }

    .about-gallery {
        gap: 5px;
    }

    .gallery-column {
        gap: 5px;
    }

    .service-card {
        flex-basis: 78%;

        min-width: 78%;
    }

}
/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-choose-section {
    width: 100%;

    background: #fff;

    padding: 55px 20px 65px;

    scroll-margin-top: 80px;
}


/* =========================================================
   CONTAINER
========================================================= */

.why-choose-container {
    width: 100%;
    /* max-width: 560px; */

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.why-choose-header {
    width: 100%;

    text-align: center;

    margin-bottom: 28px;
}

.why-choose-header .section-label {
    margin-bottom: 4px;
}

.why-choose-title {
    margin: 0;

    color: #111;

    font-family: "Ballet", cursive;

    font-size: clamp(26px, 3.2vw, 35px);

    font-weight: 400;

    line-height: 1.1;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.why-choose-content {
    width: 100%;

    display: grid;

    grid-template-columns: 2fr 3fr;

    gap: 22px;

    align-items: start;
}


/* =========================================================
   LEFT INFORMATION
========================================================= */

.why-choose-info {
    width: 100%;
}

.why-choose-info > h3 {
    margin: 35px 0 9px;

    color: #111;

    font-size: 18px;

    line-height: 1.15;

    font-weight: 400;
}


/* INTRO PARAGRAPHS */

.why-intro {
    margin: 0 0 11px;

    color: #666;

    font-size: 7px;

    line-height: 1.55;
}


/* =========================================================
   FEATURE BOX
========================================================= */

.why-feature {
    width: 100%;

    min-height: 66px;

    margin-top: 10px;

    padding: 9px 8px;

    border: 1px solid #e6e6e6;

    display: flex;

    align-items: flex-start;

    gap: 8px;

    background: #fff;
}


/* FEATURE ICON */

.feature-icon {
    flex: 0 0 22px;

    width: 22px;
    height: 22px;

    border: 1px solid #777;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;
}

.feature-icon span {
    font-size: 10px;

    line-height: 1;
}


/* FEATURE CONTENT */

.feature-content {
    min-width: 0;
}

.feature-content h4 {
    margin: 0 0 3px;

    color: #222;

    font-size: 10px;

    font-weight: 400;

    line-height: 1.15;
}

.feature-content p {
    margin: 0;

    color: #666;

    font-size: 6.5px;

    line-height: 1.45;
}


/* =========================================================
   DROPDOWN
========================================================= */

.why-dropdown {
    width: 100%;

    height: 24px;

    margin-top: 10px;

    padding: 0 10px;

    border: 1px solid #e6e6e6;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;
}

.dropdown-arrow {
    font-size: 14px;

    line-height: 1;

    transition: transform 0.3s ease;
}

.why-dropdown:hover .dropdown-arrow {
    transform: translateY(2px);
}


/* =========================================================
   BOOK NOW BUTTON
========================================================= */

.book-now-button {
    width: fit-content;

    min-width: 78px;

    height: 25px;

    margin-top: 10px;

    padding: 0 10px;

    background: #790000;

    color: #fff;

    text-decoration: none;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    font-size: 7px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.book-now-button:hover {
    background: #580000;

    transform: translateY(-2px);
}

.book-arrow {
    font-size: 15px;

    line-height: 1;
}


/* =========================================================
   BEFORE / AFTER GRID
========================================================= */

.before-after-grid {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    grid-template-rows: 1fr 1fr;

    gap: 12px 0;

    overflow: hidden;
}


/* IMAGE ITEM */

.before-after-item {
    width: 100%;

    height: 244px;

    overflow: hidden;

    position: relative;

    background: #f7f7f7;
}


/*
    Black vertical divider between
    before and after images.
*/

.before-after-item:nth-child(1)::after,
.before-after-item:nth-child(3)::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 4px;
    height: 100%;

    background: #111;

    z-index: 2;
}


/* IMAGES */

.before-after-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.before-after-item:hover img {
    transform: scale(1.02);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .why-choose-section {
        padding: 50px 20px 55px;
    }

    .why-choose-container {
        max-width: 650px;
    }

    .why-choose-content {
        grid-template-columns: 190px 1fr;

        gap: 20px;
    }

    .before-after-item {
        height: 230px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .why-choose-section {
        padding: 45px 15px 50px;
    }


    /* HEADER */

    .why-choose-header {
        margin-bottom: 25px;
    }

    .why-choose-title {
        font-size: clamp(25px, 7vw, 32px);
    }


    /* STACK CONTENT */

    .why-choose-content {
        display: flex;

        flex-direction: column;

        gap: 30px;
    }


    /* LEFT CONTENT */

    .why-choose-info {
        width: 100%;

        max-width: 380px;

        margin: 0 auto;
    }

    .why-choose-info > h3 {
        margin-top: 0;

        font-size: 22px;
    }

    .why-intro {
        font-size: 8px;

        line-height: 1.55;
    }


    /* FEATURES */

    .why-feature {
        min-height: 70px;

        padding: 10px;
    }

    .feature-content h4 {
        font-size: 11px;
    }

    .feature-content p {
        font-size: 7px;
    }


    /* BOOK BUTTON */

    .book-now-button {
        height: 30px;

        min-width: 90px;

        font-size: 8px;
    }


    /* IMAGE GRID */

    .before-after-grid {
        width: 100%;

        max-width: 500px;

        margin: 0 auto;

        gap: 8px 0;
    }

    .before-after-item {
        height: 210px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .why-choose-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .why-choose-info > h3 {
        font-size: 20px;
    }

    .before-after-item {
        height: 175px;
    }

    .before-after-item:nth-child(1)::after,
    .before-after-item:nth-child(3)::after {
        width: 3px;
    }

}
/* =========================================================
   OUR GALLERY SECTION
========================================================= */

.gallery-section {
    width: 100%;

    background: #fff;

    padding: 48px 0 55px;

    scroll-margin-top: 80px;
}


/* =========================================================
   GALLERY HEADER
========================================================= */

.gallery-header {
    width: 100%;

    text-align: center;

    padding: 0 20px;

    margin-bottom: 17px;
}

.gallery-header .section-label {
    margin-bottom: 4px;
}

.gallery-title {
    margin: 0;

    color: #111;

    font-family: "Ballet", cursive;

    font-size: clamp(25px, 3vw, 34px);

    font-weight: 400;

    line-height: 1.1;
}


/* =========================================================
   GALLERY TABS
========================================================= */

.gallery-tabs {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-bottom: 18px;

    padding: 0 15px;
}

.gallery-tab {
    border: 0;

    background: #f3f5f7;

    color: #222;

    padding: 5px 9px;

    min-height: 18px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 7px;

    font-weight: 400;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;
}


/* ACTIVE TAB */

.gallery-tab.active {
    background: #efd0c1;

    color: #790000;
}


/* HOVER */

.gallery-tab:hover {
    transform: translateY(-1px);
}


/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-grid {
    width: 100%;

    max-width: 680px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    grid-template-rows: 230px 230px;

    gap: 8px;

    padding: 0;
}


/* =========================================================
   GALLERY ITEMS
========================================================= */

.gallery-item {
    width: 100%;

    height: 100%;

    overflow: hidden;

    position: relative;

    background: #f5f5f5;
}


/* =========================================================
   IMAGE
========================================================= */

.gallery-item img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        opacity 0.3s ease;
}


/* =========================================================
   GALLERY HOVER
========================================================= */

.gallery-item:hover img {
    transform: scale(1.035);
}


/* =========================================================
   GRID LAYOUT
========================================================= */

/*
    First image:
    Narrow left image
*/

.gallery-item:nth-child(1) {
    grid-column: 1;

    grid-row: 1;

    width: 72%;
}


/*
    Second image:
    Large right image
*/

.gallery-item:nth-child(2) {
    grid-column: 2;

    grid-row: 1;

    width: 100%;

    margin-left: -28%;
}


/*
    Third image
*/

.gallery-item:nth-child(3) {
    grid-column: 1;

    grid-row: 2;

    width: 100%;
}


/*
    Fourth image
*/

.gallery-item:nth-child(4) {
    grid-column: 2;

    grid-row: 2;

    width: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .gallery-section {
        padding-top: 45px;
    }

    .gallery-grid {
        max-width: 650px;

        grid-template-rows:
            215px
            215px;

        gap: 7px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .gallery-section {
        padding: 40px 0 45px;
    }


    /* HEADER */

    .gallery-header {
        padding: 0 15px;

        margin-bottom: 18px;
    }

    .gallery-title {
        font-size: clamp(24px, 7vw, 31px);
    }


    /* TABS */

    .gallery-tabs {
        width: 100%;

        justify-content: flex-start;

        overflow-x: auto;

        scrollbar-width: none;

        padding: 0 15px;

        gap: 6px;

        margin-bottom: 15px;
    }

    .gallery-tabs::-webkit-scrollbar {
        display: none;
    }

    .gallery-tab {
        flex: 0 0 auto;

        font-size: 8px;

        padding: 6px 10px;
    }


    /* GALLERY */

    .gallery-grid {
        width: 100%;

        padding: 0 8px;

        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            175px
            175px;

        gap: 5px;
    }


    /*
       Reset desktop image sizing
       on mobile.
    */

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        width: 100%;

        margin-left: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .gallery-grid {
        grid-template-rows:
            145px
            145px;

        gap: 4px;

        padding: 0 5px;
    }

    .gallery-tab {
        font-size: 7px;

        padding: 5px 8px;
    }

}

/* =========================================================
   PRICING SECTION
========================================================= */

.pricing-section {
    width: 100%;

    background: #fff;

    padding: 48px 20px 60px;

    scroll-margin-top: 80px;
}


/* =========================================================
   PRICING HEADER
========================================================= */

.pricing-header {
    width: 100%;

    text-align: center;

    margin-bottom: 25px;
}

.pricing-header .section-label {
    margin-bottom: 5px;
}

.pricing-title {
    margin: 0;

    color: #111;

    font-family: "Ballet", cursive;

    font-size: clamp(26px, 3vw, 34px);

    font-weight: 400;

    line-height: 1.1;
}


/* =========================================================
   PRICING GRID
========================================================= */

.pricing-grid {
    width: 100%;

    max-width: 515px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 11px;

    align-items: stretch;
}


/* =========================================================
   PRICING CARD
========================================================= */

.pricing-card {
    width: 100%;

    min-width: 0;

    border: 1px solid #e8e8e8;

    background: #fff;

    padding: 12px 10px 10px;

    display: flex;

    flex-direction: column;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.07);
}


/* =========================================================
   CARD TOP
========================================================= */

.pricing-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;
}


/* =========================================================
   PRICE
========================================================= */

.price-wrapper {
    display: flex;

    align-items: flex-start;

    line-height: 1;
}

.price {
    color: #111;

    font-family: "Ballet", cursive;

    font-size: 34px;

    font-weight: 400;

    line-height: 0.9;
}

.currency {
    color: #111;

    font-family: Arial, sans-serif;

    font-size: 12px;

    margin-left: 1px;

    margin-top: -2px;
}


/* =========================================================
   PLAN NAME
========================================================= */

.pricing-card-top h3 {
    margin: 0;

    color: #222;

    font-family: "Ballet", cursive;

    font-size: 20px;

    font-weight: 400;

    white-space: nowrap;
}


/* =========================================================
   BILLING
========================================================= */

.billing {
    margin-top: 5px;

    color: #666;

    font-size: 6px;

    line-height: 1;
}


/* =========================================================
   DIVIDER
========================================================= */

.pricing-divider {
    width: 100%;

    height: 1px;

    background: #eeeeee;

    margin: 10px 0 8px;
}


/* =========================================================
   FEATURES
========================================================= */

.pricing-features {
    list-style: none;

    padding: 0;

    margin: 0;

    display: flex;

    flex-direction: column;

    gap: 7px;
}

.pricing-features li {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 5px;

    font-size: 6.5px;

    line-height: 1.2;
}


/* INCLUDED */

.pricing-features li.included {
    color: #333;
}


/* EXCLUDED */

.pricing-features li.excluded {
    color: #bcbcbc;
}


/* =========================================================
   STATUS ICON
========================================================= */

.feature-status {
    flex: 0 0 11px;

    width: 11px;
    height: 11px;

    border: 1px solid currentColor;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 7px;

    line-height: 1;
}

.included .feature-status {
    color: #222;
}

.excluded .feature-status {
    color: #c5c5c5;
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.pricing-book-button {
    width: 100%;

    min-height: 22px;

    margin-top: 12px;

    padding: 4px 9px;

    background: #790000;

    color: #fff;

    text-decoration: none;

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 6.5px;

    line-height: 1;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.pricing-book-button:hover {
    background: #580000;

    transform: translateY(-1px);
}

.pricing-book-button span:last-child {
    font-size: 13px;

    line-height: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .pricing-section {
        padding: 45px 20px 55px;
    }

    .pricing-grid {
        max-width: 620px;

        gap: 9px;
    }

    .pricing-card {
        padding: 11px 9px 9px;
    }

    .price {
        font-size: 31px;
    }

    .pricing-card-top h3 {
        font-size: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .pricing-section {
        padding: 42px 0 50px;
    }


    /* HEADER */

    .pricing-header {
        padding: 0 15px;

        margin-bottom: 22px;
    }

    .pricing-title {
        font-size: clamp(25px, 7vw, 32px);
    }


    /*
       Horizontal scrolling pricing cards.
       This keeps the next card partially visible.
    */

    .pricing-grid {
        width: 100%;

        max-width: none;

        padding:
            10px 15px 15px;

        display: flex;

        overflow-x: auto;

        gap: 10px;

        justify-content: flex-start;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
    }


    .pricing-card {
        flex: 0 0 78%;

        min-width: 78%;

        scroll-snap-align: start;

        padding: 14px 12px 12px;
    }


    .price {
        font-size: 38px;
    }

    .currency {
        font-size: 13px;
    }

    .pricing-card-top h3 {
        font-size: 23px;
    }

    .billing {
        font-size: 7px;
    }

    .pricing-features {
        gap: 8px;
    }

    .pricing-features li {
        font-size: 8px;
    }

    .feature-status {
        width: 13px;
        height: 13px;

        flex-basis: 13px;

        font-size: 8px;
    }

    .pricing-book-button {
        min-height: 28px;

        font-size: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .pricing-card {
        flex-basis: 82%;

        min-width: 82%;
    }

    .price {
        font-size: 35px;
    }

    .pricing-card-top h3 {
        font-size: 21px;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;

    background: #e5c2aa;

    color: #790000;

    padding: 48px 20px 18px;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {
    width: 100%;

    max-width: 500px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}


/* =========================================================
   DECORATIVE ICON
========================================================= */

.footer-decoration {
    color: #790000;

    font-size: 25px;

    line-height: 1;

    margin-bottom: 5px;

    transform: rotate(180deg);
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo {
    color: #790000;

    font-family: "Ballet", cursive;

    font-size: 30px;

    font-weight: 400;

    line-height: 1;

    margin-bottom: 22px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.footer-description {
    width: 100%;

    max-width: 285px;

    margin: 0 auto;

    color: #777;

    font-size: 8px;

    line-height: 1.45;

    font-weight: 400;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-socials {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 17px;
}


/* SOCIAL LINK */

.footer-social {
    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: #790000;

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.footer-social:hover {
    background: #580000;

    transform: translateY(-2px);
}


/* SOCIAL SVG */

.footer-social svg {
    width: 7px;
    height: 7px;

    fill: currentColor;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/*
   X icon needs no fill
*/

.footer-social[aria-label="X"] svg {
    fill: none;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer-copyright {
    margin-top: 31px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 8px;

    line-height: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .site-footer {
        padding-top: 45px;
    }

    .footer-logo {
        font-size: 29px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .site-footer {
        padding:
            42px 15px 18px;
    }


    .footer-container {
        max-width: 380px;
    }


    .footer-decoration {
        font-size: 23px;
    }


    .footer-logo {
        font-size: 28px;

        margin-bottom: 20px;
    }


    .footer-description {
        max-width: 300px;

        font-size: 8px;

        line-height: 1.5;
    }


    .footer-socials {
        margin-top: 16px;

        gap: 9px;
    }


    .footer-social {
        width: 15px;
        height: 15px;
    }


    .footer-social svg {
        width: 8px;
        height: 8px;
    }


    .footer-copyright {
        margin-top: 29px;

        font-size: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .site-footer {
        padding-top: 38px;
    }

    .footer-logo {
        font-size: 26px;
    }

    .footer-description {
        max-width: 280px;
    }

}

/* =========================================================
   FINAL SPACING + TYPOGRAPHY FIX
   Add this at the VERY BOTTOM of style.css
========================================================= */

/* ---------- GLOBAL ---------- */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}


/* ---------- SECTION COMMON ---------- */

.section-label {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 6px;
}

.script-heading,
.why-choose-title,
.gallery-title,
.pricing-title {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    min-height: 210px;
}

.hero-content {
    padding: 30px 20px 25px;
}

.studio-name {
    font-size: clamp(48px, 5vw, 68px);
    line-height: 1;
    margin-bottom: 22px;
    white-space: normal;
}

.pricing-button {
    min-width: 195px;
    min-height: 38px;
    padding: 9px 16px;
    font-size: 12px;
}


/* =========================================================
   BANNER
========================================================= */




/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 35px 20px 38px;
}

.about-contact {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.script-heading {
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.15;
}

.about-gallery {
    margin-top: 20px;
    gap: 8px;
}

.gallery-column {
    gap: 8px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 35px 20px 38px;
}

.services-description {
    max-width: 620px;
    margin: 8px auto 0;
    font-size: 12px;
    line-height: 1.55;
}

.services-grid {
    max-width: 850px;
    margin: 28px auto 0;
    gap: 14px;
}

.service-card {
    padding: 15px 14px;
}

.service-card-inner {
    min-height: 185px;
    padding: 30px 18px 15px;
}

.service-card h3 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.service-card p {
    max-width: 220px;
    font-size: 12px;
    line-height: 1.5;
}

.read-more {
    font-size: 12px;
    padding-top: 12px;
}

.read-more span {
    font-size: 17px;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-choose-section {
    padding: 38px 20px 42px;
}

.why-choose-header {
    margin-bottom: 22px;
}

.why-choose-title {
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.15;
}

.why-choose-content {
    gap: 20px;
}

.why-choose-info > h3 {
    margin: 20px 0 10px;
    font-size: 22px;
    line-height: 1.2;
}

.why-intro {
    font-size: 11px;
    line-height: 1.55;
    margin-bottom: 10px;
}

.why-feature {
    min-height: 70px;
    margin-top: 9px;
    padding: 10px;
}

.feature-content h4 {
    font-size: 12px;
    line-height: 1.2;
}

.feature-content p {
    font-size: 10px;
    line-height: 1.45;
}

.why-dropdown {
    height: 28px;
    margin-top: 9px;
}

.book-now-button {
    height: 32px;
    min-width: 95px;
    margin-top: 9px;
    font-size: 10px;
}


/* =========================================================
   BEFORE / AFTER
========================================================= */

.before-after-grid {
    gap: 10px 0;
}

.before-after-item {
    height: 235px;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
    padding: 38px 0 42px;
}

.gallery-header {
    margin-bottom: 14px;
}

.gallery-title {
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.15;
}

.gallery-tabs {
    gap: 8px;
    margin-bottom: 15px;
}

.gallery-tab {
    padding: 6px 11px;
    min-height: 24px;
    font-size: 11px;
}

.gallery-grid {
    max-width: 900px;
    grid-template-rows: 280px 280px;
    gap: 8px;
}

/* =========================================================
   ORCHID STUDIO - PRICE CATALOGUE
========================================================= */

.pricing-section {
    width: 100%;
    background: #fff;
    padding: 75px 20px 85px;
    scroll-margin-top: 80px;
}


/* =========================================================
   HEADER
========================================================= */

.pricing-header {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.pricing-header .section-label {
    color: #790000;
    letter-spacing: 2px;
    font-size: 10px;
    margin-bottom: 8px;
}

.pricing-title {
    margin: 0;
    color: #111;
    font-family: "Ballet", cursive;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 400;
    line-height: 1;
}

.pricing-subtitle {
    max-width: 500px;
    margin: 14px auto 0;
    color: #777;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   CATEGORY TABS
========================================================= */

.pricing-tabs-wrapper {
    width: 100%;
    margin-bottom: 38px;
}

.pricing-tabs {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.pricing-tab {
    border: 1px solid #e5d9d3;
    background: #fff;
    color: #555;

    padding: 9px 15px;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 9px;
    letter-spacing: .3px;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.pricing-tab:hover {
    transform: translateY(-2px);
    border-color: #790000;
    color: #790000;
}

.pricing-tab.active {
    background: #790000;
    border-color: #790000;
    color: #fff;
}


/* =========================================================
   CATEGORY
========================================================= */

.pricing-category {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    display: none;
}

.pricing-category.active {
    display: block;
}


/* =========================================================
   CATEGORY HEADING
========================================================= */

.pricing-category-heading {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 22px;

    border-bottom: 1px solid #eee;
    padding-bottom: 14px;
}

.pricing-category-heading > span {
    color: #790000;

    font-family: "Ballet", cursive;
    font-size: 30px;
    line-height: 1;
}

.pricing-category-heading small {
    display: block;

    color: #999;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 8px;

    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.pricing-category-heading h3 {
    margin: 0;

    color: #222;

    font-family: "Fraunces", Georgia, serif;
    font-size: 25px;
    font-weight: 400;
}


/* =========================================================
   PRICE LIST
========================================================= */

.price-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 22px;
}

.price-item {
    min-height: 66px;

    padding: 13px 3px;

    border-bottom: 1px solid #eee;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    transition:
        padding .25s ease,
        background .25s ease;
}

.price-item:hover {
    padding-left: 8px;
    padding-right: 8px;
    background: #fcf8f6;
}

.price-item h4 {
    margin: 0;

    color: #292929;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;

    line-height: 1.4;
}

.price-item p {
    margin: 3px 0 0;

    color: #999;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 8px;
}

.price-item strong {
    flex-shrink: 0;

    color: #790000;

    font-family: "Fraunces", Georgia, serif;
    font-size: 18px;
    font-weight: 500;

    white-space: nowrap;
}


/* FEATURED PRICE */

.price-item.featured-price {
    background: #fff7f3;
}

.price-item.featured-price strong {
    font-size: 20px;
}


/* =========================================================
   TWO COLUMN GROUPS
========================================================= */

.pricing-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.pricing-service-group {
    min-width: 0;
}

.group-title {
    margin: 0 0 8px;

    color: #790000;

    font-family: "Fraunces", Georgia, serif;
    font-size: 17px;
    font-weight: 400;
}


/* =========================================================
   THREADING
========================================================= */

.threading-section {
    margin-top: 45px;
}

.threading-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 22px;
}


/* =========================================================
   MEN
========================================================= */

.men-price-list {
    grid-template-columns: repeat(2, 1fr);
}


/* =========================================================
   MAKEUP
========================================================= */

.makeup-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.makeup-price-card {
    position: relative;

    min-height: 235px;

    padding: 27px 22px 20px;

    border: 1px solid #eadfd9;

    background: #fff;

    display: flex;
    flex-direction: column;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.makeup-price-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, .08);
}

.makeup-price-card.premium {
    background: #fff8f4;
}

.makeup-price-card.special {
    background: #f9eeee;
    border-color: #e4caca;
}

.makeup-tag {
    color: #790000;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 7px;

    letter-spacing: 1.5px;
}

.makeup-price-card h3 {
    margin: 18px 0 6px;

    color: #222;

    font-family: "Fraunces", Georgia, serif;
    font-size: 20px;
    font-weight: 400;
}

.makeup-price-card p {
    margin: 0 0 8px;

    color: #888;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 8px;
}

.makeup-price-card strong {
    margin-top: auto;

    color: #790000;

    font-family: "Ballet", cursive;
    font-size: 38px;
    font-weight: 400;
}


/* =========================================================
   BOOK / ENQUIRE BUTTON
========================================================= */

.catalogue-book-button {
    width: 100%;

    margin-top: 15px;

    min-height: 36px;

    border: 0;

    background: #790000;
    color: #fff;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 9px;
    letter-spacing: .3px;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;
}

.catalogue-book-button:hover {
    background: #580000;
    transform: translateY(-2px);
}


/* =========================================================
   MEMBERSHIP
========================================================= */

.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.membership-card {
    padding: 30px 22px;

    border: 1px solid #e7ddd8;

    background: #fff;

    text-align: center;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.membership-card:hover,
.membership-card.featured {
    transform: translateY(-4px);

    background: #fff7f3;

    box-shadow:
        0 12px 30px rgba(121, 0, 0, .08);
}

.membership-card > span {
    color: #790000;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 8px;

    letter-spacing: 1.5px;
}

.membership-card strong {
    display: block;

    margin: 12px 0 2px;

    color: #790000;

    font-family: "Ballet", cursive;
    font-size: 48px;
    font-weight: 400;
}

.membership-card h3 {
    margin: 0;

    color: #222;

    font-family: "Fraunces", Georgia, serif;
    font-size: 20px;
    font-weight: 400;
}

.membership-card p {
    margin: 5px 0 12px;

    color: #888;

    font-size: 9px;
}


/* =========================================================
   NOTE
========================================================= */

.pricing-note {
    max-width: 650px;

    margin: 38px auto 0;

    padding-top: 18px;

    border-top: 1px solid #eee;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    gap: 10px;

    text-align: center;
}

.pricing-note span {
    color: #790000;
    font-size: 12px;
}

.pricing-note p {
    margin: 0;

    color: #999;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 8px;
    line-height: 1.6;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .pricing-section {
        padding: 60px 20px 70px;
    }

    .pricing-two-column {
        gap: 25px;
    }

    .makeup-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .membership-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .pricing-section {
        padding: 50px 15px 60px;
    }


    .pricing-header {
        margin-bottom: 25px;
    }


    .pricing-title {
        font-size: clamp(34px, 10vw, 48px);
    }


    .pricing-subtitle {
        font-size: 9px;
        max-width: 320px;
    }


    /* TABS */

    .pricing-tabs-wrapper {
        width: calc(100% + 30px);
        margin-left: -15px;

        overflow-x: auto;

        scrollbar-width: none;

        margin-bottom: 30px;
    }

    .pricing-tabs-wrapper::-webkit-scrollbar {
        display: none;
    }

    .pricing-tabs {
        width: max-content;

        padding: 0 15px;

        justify-content: flex-start;

        flex-wrap: nowrap;
    }

    .pricing-tab {
        flex: 0 0 auto;

        padding: 9px 13px;

        font-size: 8px;
    }


    /* HEADING */

    .pricing-category-heading {
        gap: 10px;
        margin-bottom: 15px;
    }

    .pricing-category-heading > span {
        font-size: 25px;
    }

    .pricing-category-heading h3 {
        font-size: 21px;
    }


    /* PRICE LIST */

    .price-list {
        grid-template-columns: 1fr;
    }

    .price-item {
        min-height: 60px;
        padding: 12px 0;
    }

    .price-item h4 {
        font-size: 10px;
    }

    .price-item p {
        font-size: 7px;
    }

    .price-item strong {
        font-size: 17px;
    }


    /* TWO COLUMNS */

    .pricing-two-column {
        grid-template-columns: 1fr;
        gap: 32px;
    }


    /* THREADING */

    .threading-grid {
        grid-template-columns: 1fr;
    }


    /* MAKEUP */

    .makeup-feature-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .makeup-price-card {
        min-height: 210px;
    }


    /* MEMBERSHIP */

    .membership-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .membership-card {
        padding: 25px 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .pricing-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .pricing-title {
        font-size: 34px;
    }

    .pricing-tab {
        padding: 8px 11px;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 35px 20px 25px;
}

.footer-description {
    max-width: 420px;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .hero-section {
        min-height: 190px;
    }

    .about-section,
    .services-section,
    .why-choose-section,
    .gallery-section,
    .pricing-section {
        padding-top: 32px;
        padding-bottom: 35px;
    }

    .services-grid {
        gap: 10px;
    }

    .service-card h3 {
        font-size: 14px;
    }

    .service-card p {
        font-size: 10px;
    }

    .why-intro {
        font-size: 10px;
    }

    .feature-content p {
        font-size: 9px;
    }

    .before-after-item {
        height: 220px;
    }

    .gallery-grid {
        grid-template-rows: 240px 240px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* Header */

    .header-container {
        height: 65px;
    }

    .announcement-bar {
        height: 30px;
        font-size: 10px;
    }


    /* Hero */

    .hero-section {
        min-height: 175px;
    }

    .hero-content {
        padding: 25px 15px 20px;
    }

    .studio-name {
        font-size: clamp(42px, 12vw, 58px);
        line-height: 1;
        margin-bottom: 18px;
    }

    .pricing-button {
        min-width: 185px;
        min-height: 36px;
        font-size: 11px;
    }


    /* Banner */

    


    /* About */

    .about-section {
        padding: 30px 15px 32px;
    }

    .about-contact {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .section-label {
        font-size: 11px;
    }

    .script-heading {
        font-size: clamp(25px, 7vw, 32px);
        line-height: 1.15;
    }

    .about-gallery {
        margin-top: 17px;
    }


    /* Services */

    .services-section {
        padding: 30px 15px 32px;
    }

    .services-description {
        max-width: 360px;
        font-size: 11px;
        line-height: 1.5;
    }

    .services-grid {
        margin-top: 24px;
        padding-top: 16px;
        padding-bottom: 5px;
    }

    .service-card {
        flex: 0 0 78%;
        min-width: 78%;
        padding: 13px 12px;
    }

    .service-card-inner {
        min-height: 165px;
        padding: 28px 15px 13px;
    }

    .service-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .service-card p {
        max-width: 210px;
        font-size: 11px;
        line-height: 1.45;
    }

    .read-more {
        font-size: 11px;
    }


    /* Why Choose */

    .why-choose-section {
        padding: 30px 15px 35px;
    }

    .why-choose-header {
        margin-bottom: 20px;
    }

    .why-choose-title {
        font-size: clamp(25px, 7vw, 32px);
    }

    .why-choose-content {
        gap: 22px;
    }

    .why-choose-info > h3 {
        font-size: 21px;
        margin-top: 0;
    }

    .why-intro {
        font-size: 10px;
        line-height: 1.5;
    }

    .feature-content h4 {
        font-size: 11px;
    }

    .feature-content p {
        font-size: 9px;
    }

    .before-after-item {
        height: 195px;
    }


    /* Gallery */

    .gallery-section {
        padding: 30px 0 35px;
    }

    .gallery-header {
        padding: 0 15px;
        margin-bottom: 14px;
    }

    .gallery-title {
        font-size: clamp(25px, 7vw, 32px);
        line-height: 1.15;
    }

    .gallery-tabs {
        margin-bottom: 12px;
    }

    .gallery-tab {
        font-size: 10px;
        padding: 6px 10px;
    }

    .gallery-grid {
        grid-template-rows: 175px 175px;
        gap: 5px;
    }


    /* Pricing */

    .pricing-section {
        padding: 30px 15px 35px;
    }

    .pricing-header {
        margin-bottom: 18px;
    }

    .pricing-title {
        font-size: clamp(25px, 7vw, 32px);
        line-height: 1.15;
    }

    .pricing-grid {
        gap: 8px;
    }

    .pricing-card {
        padding: 10px 8px;
    }

    .pricing-features {
        font-size: 9px;
    }

    .pricing-book-button {
        font-size: 9px;
    }


    /* Footer */

    .site-footer {
        padding: 30px 15px 22px;
    }

    .footer-description {
        font-size: 10px;
        line-height: 1.45;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .announcement-bar {
        font-size: 8px;
    }

    .studio-name {
        font-size: 40px;
    }

    .about-contact {
        font-size: 15px;
    }

    .services-description {
        font-size: 10px;
    }

    .service-card h3 {
        font-size: 14px;
    }

    .service-card p {
        font-size: 10px;
    }

    .why-intro {
        font-size: 9px;
    }

    .feature-content p {
        font-size: 8px;
    }

    .before-after-item {
        height: 170px;
    }

    .gallery-grid {
        grid-template-rows: 145px 145px;
    }

    .pricing-features {
        font-size: 8px;
    }
}

/* =========================================================
   PRICING TEXT VISIBILITY FIX
========================================================= */

.pricing-card {
    overflow: visible;
}

.pricing-card-top {
    width: 100%;
    align-items: flex-start;
}

.pricing-card-top h3 {
    min-width: 0;
    max-width: 100%;
    white-space: normal !important;
    overflow: visible;
    text-overflow: unset;
    word-break: normal;
    overflow-wrap: break-word;

    font-size: 20px;
    line-height: 1.15;
}

.price-wrapper {
    flex-shrink: 0;
}

.billing {
    font-size: 10px !important;
    line-height: 1.3;
}

.pricing-features {
    width: 100%;
}

.pricing-features li {
    font-size: 11px !important;
    line-height: 1.4;
    align-items: flex-start;
}

.pricing-features li span {
    min-width: 0;
}

.feature-status {
    flex-shrink: 0;
}

.pricing-book-button {
    font-size: 11px !important;
    min-height: 32px;
    line-height: 1.2;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .pricing-card-top {
        gap: 8px;
    }

    .pricing-card-top h3 {
        font-size: 19px;
        line-height: 1.15;
        white-space: normal !important;
    }

    .price {
        font-size: 35px !important;
    }

    .currency {
        font-size: 12px;
    }

    .billing {
        font-size: 9px !important;
    }

    .pricing-features li {
        font-size: 10px !important;
        line-height: 1.4;
    }

    .pricing-book-button {
        font-size: 10px !important;
        min-height: 30px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .pricing-card-top h3 {
        font-size: 17px;
    }

    .price {
        font-size: 32px !important;
    }

    .pricing-features li {
        font-size: 9px !important;
    }

    .pricing-book-button {
        font-size: 9px !important;
    }
}

/* =========================================================
   ORCHID STUDIO — FINAL DESIGN OVERRIDES
   Beige + Brown premium theme / readable typography
========================================================= */
:root{
  --cream:#f7f0e6;
  --beige:#eadcc9;
  --sand:#d8c3a9;
  --brown:#6b4934;
  --brown-dark:#3f2a20;
  --brown-soft:#8a6850;
  --coffee:#5a3b2a;
  --white:#fffdf9;
  --line:#d9c9b7;
  --muted:#705f52;
}
html{scroll-behavior:smooth}
body{font-family:"Open Sans",Arial,sans-serif!important;color:var(--brown-dark)!important;background:var(--cream)!important;font-size:16px;line-height:1.6}
h1,h2,h3,h4,h5,h6{font-family:"Fraunces",Georgia,serif!important;color:var(--brown-dark)}
p,a,button,span,li{font-family:"Open Sans",Arial,sans-serif}
button{font-size:15px}

.announcement-bar{height:36px!important;background:var(--brown-dark)!important;color:var(--white)!important;font-size:12px!important;letter-spacing:1px!important}
.site-header{background:rgba(255,253,249,.98)!important;border-bottom:1px solid var(--line);position:sticky!important;top:0}
.header-container{max-width:1280px!important;height:88px!important;padding:0 32px!important;display:grid!important;grid-template-columns:180px 1fr 250px;align-items:center;gap:20px}
.header-logo{display:flex;align-items:center;width:max-content}
.header-logo .logo{width:76px;height:76px;object-fit:contain}
.main-navigation{position:static!important;transform:none!important;display:flex!important;justify-content:center;gap:34px!important}
.main-navigation>a{color:var(--brown-dark)!important;font-size:14px!important;font-weight:500!important;letter-spacing:.2px}
.main-navigation>a:hover{color:var(--brown)!important}
.header-right{display:flex;align-items:center;justify-content:flex-end;gap:18px}
.header-socials{width:auto!important;display:flex;gap:12px!important}
.header-socials a{color:var(--brown)!important}
.header-socials svg{width:17px;height:17px}
.header-book-button,.mobile-book-button,.footer-book-button{border:0;background:var(--brown)!important;color:#fff!important;padding:12px 18px!important;font-size:13px!important;font-weight:600;cursor:pointer;transition:.25s ease}
.header-book-button:hover,.mobile-book-button:hover,.footer-book-button:hover{background:var(--brown-dark)!important;transform:translateY(-1px)}
.mobile-menu-button{display:none}
.mobile-navigation{display:none}

.hero-section{min-height:270px!important;background:var(--cream)!important}
.hero-content{padding:50px 20px 45px!important}
.studio-name{color:var(--brown)!important;font-size:clamp(54px,7vw,82px)!important;line-height:1!important;margin-bottom:26px!important}
.pricing-button{background:var(--brown)!important;color:#fff!important;min-height:48px!important;padding:12px 22px!important;font-size:14px!important;border-radius:2px}
.pricing-button:hover{background:var(--brown-dark)!important}
.banner-section{background:var(--beige)!important}

.about-section,.services-section,.why-choose-section,.gallery-section,.pricing-section,.testimonials-section{background:var(--white)!important}
.about-section,.services-section,.why-choose-section,.gallery-section,.pricing-section,.testimonials-section{padding-top:85px!important;padding-bottom:90px!important}
.section-label{color:var(--brown-soft)!important;font-size:12px!important;font-weight:600!important;letter-spacing:2px!important;text-transform:uppercase;margin-bottom:10px!important}
.script-heading,.why-choose-title,.gallery-title,.pricing-title{color:var(--brown)!important;font-size:clamp(34px,4vw,52px)!important;line-height:1.15!important}
.about-contact{color:var(--brown)!important;font-size:18px!important;margin-bottom:18px!important}
.about-gallery{margin-top:35px!important;gap:14px!important}
.about-gallery img{border-radius:3px}

.services-description{max-width:700px!important;color:var(--muted)!important;font-size:16px!important;line-height:1.75!important;margin:16px auto 0!important}
.service-tabs{display:flex;justify-content:center;flex-wrap:wrap;gap:9px;margin:30px auto 34px}
.service-tab,.gallery-tab,.pricing-tab{border:1px solid var(--line)!important;background:transparent!important;color:var(--brown)!important;padding:10px 18px!important;font-size:13px!important;font-weight:600!important;cursor:pointer;border-radius:999px;transition:.25s ease}
.service-tab.active,.service-tab:hover,.gallery-tab.active,.gallery-tab:hover,.pricing-tab.active,.pricing-tab:hover{background:var(--brown)!important;color:#fff!important;border-color:var(--brown)!important}
.services-grid{max-width:1100px!important;grid-template-columns:repeat(3,1fr)!important;gap:18px!important;margin-top:0!important}
.service-card{background:var(--beige)!important;padding:16px!important;border-radius:3px}
.service-card-inner{min-height:245px!important;border:1px solid rgba(107,73,52,.22)!important;padding:38px 24px 24px!important}
.service-icon{background:var(--white)!important;border-color:var(--brown)!important;color:var(--brown);font-size:18px;width:46px;height:46px}
.service-card h3{font-size:21px!important;color:var(--brown-dark)!important;margin:0 0 12px!important}
.service-card p{font-size:14px!important;color:var(--muted)!important;line-height:1.65!important;max-width:260px!important}
.read-more{border:0;background:none;color:var(--brown)!important;font-size:13px!important;font-weight:700;cursor:pointer}

.why-choose-info>h3{font-size:28px!important}.why-intro{font-size:14px!important;color:var(--muted)!important;line-height:1.75!important}.feature-content h4{font-size:16px!important;color:var(--brown-dark)!important}.feature-content p{font-size:13px!important;color:var(--muted)!important}.why-feature{border-color:var(--line)!important;background:var(--cream)!important}.feature-icon{border-color:var(--brown)!important;color:var(--brown)}.book-now-button{background:var(--brown)!important;font-size:13px!important;padding:10px 16px!important;min-width:130px!important;height:auto!important}

.gallery-header{text-align:center}.gallery-tabs{gap:9px!important}.gallery-grid{max-width:1000px!important;grid-template-rows:300px 300px!important;gap:12px!important}.gallery-item{background:var(--beige)!important;border-radius:3px}.gallery-item img{object-fit:cover!important}

.pricing-section{padding-left:24px!important;padding-right:24px!important}.pricing-header{max-width:720px;margin-left:auto;margin-right:auto}.pricing-subtitle{font-size:15px!important;color:var(--muted)!important;line-height:1.7!important}.pricing-tabs{gap:9px!important}.pricing-category{max-width:1100px!important}.pricing-category-heading h3{font-size:28px!important;color:var(--brown-dark)!important}.pricing-category-heading>span{color:var(--brown)!important}.group-title{font-size:21px!important;color:var(--brown)!important}.price-item{min-height:74px!important;border-color:var(--line)!important}.price-item h4{font-size:14px!important;color:var(--brown-dark)!important}.price-item p{font-size:12px!important;color:var(--muted)!important}.price-item strong{font-size:20px!important;color:var(--brown)!important}.price-item.featured-price{background:#f2e6d8!important}.makeup-price-card,.membership-card{border-color:var(--line)!important;background:var(--cream)!important}.makeup-price-card h3,.membership-card h3{font-size:24px!important}.makeup-price-card strong,.membership-card strong{color:var(--brown)!important}.catalogue-book-button{background:var(--brown)!important;font-size:13px!important;min-height:42px!important}.pricing-note p{font-size:12px!important;color:var(--muted)!important}

.testimonials-section{padding-left:20px!important;padding-right:20px!important}.testimonials-header{text-align:center;max-width:700px;margin:0 auto 38px}.testimonials-header>p{font-size:15px;color:var(--muted);line-height:1.7;margin-top:12px}.testimonials-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.testimonial-card{background:var(--cream);border:1px solid var(--line);padding:25px 20px;display:flex;flex-direction:column}.stars{color:#9a6f45;letter-spacing:3px;font-size:14px;margin-bottom:14px}.testimonial-card p{font-size:13px;color:var(--muted);line-height:1.7;margin:0}.testimonial-card h3{font-family:"Open Sans",Arial,sans-serif!important;font-size:14px;font-weight:700;color:var(--brown-dark);margin-top:auto;margin-bottom:2px}.testimonial-card span{font-size:11px;color:var(--brown-soft)}

.site-footer{background:var(--brown-dark)!important;color:#f7eee3!important;padding:70px 30px 24px!important}.footer-container{max-width:1200px!important;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:50px;text-align:left}.footer-brand{max-width:380px}.footer-logo-image{width:68px;height:68px;object-fit:contain;margin-bottom:12px;filter:none}.footer-logo-text{font-family:"Fraunces",Georgia,serif;font-size:30px;color:#fff7ee;margin-bottom:10px}.footer-brand p{font-size:14px;line-height:1.7;color:#dccbbc;margin-bottom:18px}.footer-column{display:flex;flex-direction:column;gap:9px}.footer-column h3{font-family:"Open Sans",Arial,sans-serif!important;font-size:13px;text-transform:uppercase;letter-spacing:1.5px;color:#fff7ee;margin-bottom:8px}.footer-column a,.footer-column span{font-size:13px;color:#d9c8b8;text-decoration:none}.footer-column a:hover{color:#fff}.footer-book-button{margin-top:2px;background:#d8b995!important;color:var(--brown-dark)!important}.footer-socials{display:flex;flex-direction:column;gap:9px}.footer-bottom{max-width:1200px;margin:45px auto 0;padding-top:18px;border-top:1px solid rgba(255,255,255,.16);display:flex;justify-content:space-between;gap:20px;color:#bda998;font-size:11px}

@media(max-width:900px){.header-container{grid-template-columns:100px 1fr 220px!important;padding:0 20px!important}.main-navigation{gap:20px!important}.main-navigation>a{font-size:12px!important}.header-socials{display:none}.services-grid{grid-template-columns:repeat(2,1fr)!important}.testimonials-grid{grid-template-columns:repeat(2,1fr)}.footer-container{grid-template-columns:2fr 1fr 1fr}.footer-column:last-child{grid-column:auto}}
@media(max-width:700px){
  body{font-size:15px}.announcement-bar{height:34px!important;font-size:10px!important}.header-container{height:72px!important;display:flex!important;justify-content:space-between;padding:0 15px!important}.header-logo .logo{width:58px;height:58px}.main-navigation,.header-right .header-book-button{display:none!important}.header-right{margin-left:auto}.mobile-menu-button{display:flex!important;width:40px;height:40px;border:0;background:transparent;flex-direction:column;gap:5px;align-items:center;justify-content:center}.mobile-menu-button span{width:24px;height:2px;background:var(--brown-dark)}.mobile-navigation{display:flex!important;position:absolute;top:72px;left:0;width:100%;background:var(--white);padding:10px 16px 18px;flex-direction:column;opacity:0;visibility:hidden;transform:translateY(-8px);transition:.25s ease;box-shadow:0 12px 25px rgba(63,42,32,.12);z-index:1001}.mobile-navigation.active{opacity:1;visibility:visible;transform:none}.mobile-navigation a{padding:12px 5px;border-bottom:1px solid var(--line);color:var(--brown-dark);text-decoration:none;font-size:14px}.mobile-book-button{margin-top:12px;width:100%;border-radius:2px}
  .hero-section{min-height:240px!important}.hero-content{padding:45px 15px!important}.studio-name{font-size:clamp(48px,14vw,64px)!important}.pricing-button{font-size:13px!important;min-height:46px!important}
  .about-section,.services-section,.why-choose-section,.gallery-section,.pricing-section,.testimonials-section{padding-top:58px!important;padding-bottom:62px!important}.section-label{font-size:10px!important;letter-spacing:1.6px!important}.script-heading,.why-choose-title,.gallery-title,.pricing-title{font-size:clamp(31px,8vw,42px)!important}.about-contact{font-size:15px!important}.services-description{font-size:14px!important;line-height:1.7!important;padding:0 4px}.service-tabs{justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap;padding:0 2px 5px;scrollbar-width:none}.service-tabs::-webkit-scrollbar{display:none}.service-tab{flex:0 0 auto;padding:9px 15px!important;font-size:12px!important}.services-grid{width:100%!important;margin:0!important;display:flex!important;overflow-x:auto;gap:12px!important;padding:22px 2px 12px!important;scroll-snap-type:x mandatory;scrollbar-width:none}.services-grid::-webkit-scrollbar{display:none}.service-card{flex:0 0 82%!important;min-width:82%!important;scroll-snap-align:start}.service-card-inner{min-height:235px!important;padding:38px 20px 22px!important}.service-card h3{font-size:20px!important}.service-card p{font-size:13px!important}.read-more{font-size:13px!important}
  .why-choose-content{grid-template-columns:1fr!important}.why-choose-info>h3{font-size:25px!important}.why-intro{font-size:13px!important}.feature-content h4{font-size:15px!important}.feature-content p{font-size:12px!important}.before-after-grid{grid-template-columns:1fr 1fr!important}.before-after-item{height:190px!important}
  .gallery-tabs{justify-content:flex-start!important;overflow-x:auto!important;flex-wrap:nowrap!important;padding:0 15px 5px!important;scrollbar-width:none}.gallery-tabs::-webkit-scrollbar{display:none}.gallery-tab{flex:0 0 auto!important;font-size:12px!important}.gallery-grid{grid-template-columns:1fr 1fr!important;grid-template-rows:180px 180px!important;gap:7px!important;padding:0 10px!important}.gallery-item:nth-child(1),.gallery-item:nth-child(2),.gallery-item:nth-child(3),.gallery-item:nth-child(4){width:100%!important;margin-left:0!important}
  .pricing-section{padding-left:15px!important;padding-right:15px!important}.pricing-tabs{justify-content:flex-start!important;overflow-x:auto!important;flex-wrap:nowrap!important;padding-bottom:5px;scrollbar-width:none}.pricing-tabs::-webkit-scrollbar{display:none}.pricing-tab{flex:0 0 auto!important;font-size:12px!important}.pricing-category-heading h3{font-size:23px!important}.pricing-two-column{grid-template-columns:1fr!important;gap:30px}.price-list{grid-template-columns:1fr!important}.price-item h4{font-size:13px!important}.price-item p{font-size:11px!important}.price-item strong{font-size:18px!important}.makeup-feature-grid,.membership-grid{grid-template-columns:1fr!important}.makeup-price-card h3,.membership-card h3{font-size:22px!important}
  .testimonials-grid{grid-template-columns:1fr!important;gap:12px}.testimonial-card{padding:22px 18px}.testimonial-card p{font-size:13px}
  .footer-container{grid-template-columns:1fr!important;gap:30px;text-align:center}.footer-brand{max-width:none}.footer-logo-image{margin-left:auto;margin-right:auto}.footer-socials{align-items:center}.footer-bottom{margin-top:35px;flex-direction:column;text-align:center;gap:7px}.site-footer{padding:55px 20px 20px!important}
}
@media(max-width:400px){.studio-name{font-size:46px!important}.script-heading,.why-choose-title,.gallery-title,.pricing-title{font-size:30px!important}.service-card{flex-basis:88%!important;min-width:88%!important}.gallery-grid{grid-template-rows:155px 155px!important}.price-item{min-height:66px!important}}

/* =========================================================
   FINAL ORCHID STUDIO REFINEMENT
   Beige + Coffee Brown / 1150px layout / compact spacing
========================================================= */
:root {
    --orchid-cream: #f7f0e7;
    --orchid-beige: #eee1d1;
    --orchid-sand: #e3d0ba;
    --orchid-brown: #6a4a35;
    --orchid-dark: #3d2b20;
    --orchid-soft-brown: #8a6b55;
    --orchid-line: #d9c8b5;
    --orchid-white: #fffdf9;
}

html { scroll-padding-top: 90px; }
body {
    background: var(--orchid-cream);
    color: var(--orchid-dark);
    font-size: 15px;
}

/* Keep every real content section within 1150px; banner stays full width. */
.hero-section,
.about-section,
.services-section,
.why-choose-section,
.gallery-section,
.testimonials-section,
.pricing-section,
.site-footer {
    width: min(1150px, 100%);
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
}

.announcement-bar {
    background: var(--orchid-dark) !important;
    color: var(--orchid-cream) !important;
    height: 30px;
    font-size: 11px !important;
}

.site-header {
    background: rgba(255,253,249,.98) !important;
    border-bottom: 1px solid var(--orchid-line);
}

.header-container {
    max-width: 1150px !important;
    height: 82px !important;
    padding: 0 28px !important;
}

.logo { max-height: 52px; width: auto; }

.main-navigation a,
.mobile-navigation a {
    color: var(--orchid-dark) !important;
    font-size: 13px !important;
    font-weight: 500;
}
.main-navigation a:hover,
.mobile-navigation a:hover { color: var(--orchid-brown) !important; }

.header-socials { width: auto !important; gap: 10px !important; }
.header-socials a {
    width: 29px !important;
    height: 29px !important;
    border: 1px solid var(--orchid-line);
    border-radius: 50%;
    color: var(--orchid-brown) !important;
    background: var(--orchid-cream);
    transition: .2s ease;
}
.header-socials a:hover {
    background: var(--orchid-brown);
    color: #fff !important;
    border-color: var(--orchid-brown);
    transform: translateY(-2px);
}
.header-socials svg { width: 14px !important; height: 14px !important; }

.header-book-button,
.mobile-book-button,
.pricing-button,
.book-now-button,
.footer-book-button,
.catalogue-book-button {
    background: var(--orchid-brown) !important;
    color: #fff !important;
    border-color: var(--orchid-brown) !important;
}
.header-book-button:hover,
.mobile-book-button:hover,
.pricing-button:hover,
.book-now-button:hover,
.footer-book-button:hover,
.catalogue-book-button:hover {
    background: var(--orchid-dark) !important;
}

/* Compact section rhythm */
.hero-section { min-height: 590px; }
.about-section,
.services-section,
.why-choose-section,
.gallery-section,
.testimonials-section,
.pricing-section {
    padding-top: 38px !important;
    padding-bottom: 42px !important;
}

.banner-section {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.about-contact { color: var(--orchid-brown) !important; font-size: 15px !important; margin-bottom: 10px !important; }
.section-label {
    color: var(--orchid-soft-brown) !important;
    font-size: 11px !important;
    letter-spacing: 1.8px;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}
.script-heading,
.why-choose-title,
.gallery-title,
.pricing-title {
    color: var(--orchid-dark) !important;
    font-family: "Fraunces", Georgia, serif !important;
    font-size: clamp(32px, 4vw, 48px) !important;
    line-height: 1.12 !important;
    font-weight: 400 !important;
}

/* About */
.about-gallery { margin-top: 20px !important; }

/* Services: no tabs, comfortable readable cards */
.services-description {
    max-width: 680px !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: var(--orchid-soft-brown) !important;
}
.services-grid {
    max-width: 1050px !important;
    margin-top: 25px !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
}
.service-card {
    background: var(--orchid-beige) !important;
    border: 1px solid var(--orchid-line);
    padding: 12px !important;
    border-radius: 2px;
}
.service-card-inner {
    min-height: 245px !important;
    padding: 34px 22px 20px !important;
    border-color: rgba(106,74,53,.25) !important;
}
.service-icon {
    background: var(--orchid-white) !important;
    border-color: var(--orchid-brown) !important;
    color: var(--orchid-brown);
}
.service-card h3 {
    color: var(--orchid-dark) !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
}
.service-card p {
    color: var(--orchid-soft-brown) !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
    max-width: 260px !important;
}
.service-extra {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--orchid-line);
}
.service-card.is-expanded .service-extra { display: block; }
.read-more {
    border: 0 !important;
    background: transparent !important;
    color: var(--orchid-brown) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer;
    padding: 12px 0 0 !important;
}
.read-more span { font-size: 16px; margin-left: 4px; }

/* Why choose */
.why-choose-container { max-width: 1050px !important; }
.why-choose-content { gap: 38px !important; }
.why-intro,
.feature-content p { font-size: 13px !important; line-height: 1.65 !important; color: var(--orchid-soft-brown) !important; }
.why-choose-info > h3 { font-size: 25px !important; color: var(--orchid-dark) !important; }
.why-feature { border-color: var(--orchid-line) !important; background: var(--orchid-white) !important; }
.feature-content h4 { font-size: 15px !important; color: var(--orchid-dark) !important; }
.feature-icon { border-color: var(--orchid-brown) !important; color: var(--orchid-brown) !important; }
.book-now-button {
    border: 0 !important;
    cursor: pointer;
    font-size: 13px !important;
    padding: 12px 20px !important;
}

/* Gallery */
.gallery-header { margin-bottom: 20px !important; }
.gallery-tabs { margin-bottom: 20px !important; }
.gallery-tab {
    color: var(--orchid-brown) !important;
    border-color: var(--orchid-line) !important;
    background: var(--orchid-white) !important;
    font-size: 11px !important;
    padding: 9px 16px !important;
}
.gallery-tab.active { background: var(--orchid-brown) !important; color: #fff !important; }
.gallery-grid { max-width: 900px !important; }
.gallery-item { background: var(--orchid-beige) !important; }

/* Testimonials */
.testimonials-section { background: var(--orchid-white) !important; }
.testimonials-header p { font-size: 14px !important; color: var(--orchid-soft-brown) !important; line-height: 1.7; max-width: 620px; margin: 10px auto 0; }
.testimonials-grid {
    max-width: 1050px;
    margin: 25px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.testimonial-card {
    background: var(--orchid-cream) !important;
    border: 1px solid var(--orchid-line) !important;
    padding: 22px 18px !important;
    text-align: left;
}
.testimonial-card .stars { color: var(--orchid-brown) !important; letter-spacing: 2px; font-size: 12px; }
.testimonial-card p { color: var(--orchid-soft-brown) !important; font-size: 12px !important; line-height: 1.65 !important; margin: 12px 0 16px; }
.testimonial-card h3 { color: var(--orchid-dark) !important; font-size: 15px !important; }
.testimonial-card span { color: #967d69 !important; font-size: 10px !important; }

/* Pricing */
.pricing-section { background: var(--orchid-cream) !important; }
.pricing-header { margin-bottom: 25px !important; }
.pricing-subtitle { font-size: 13px !important; line-height: 1.65 !important; color: var(--orchid-soft-brown) !important; }
.pricing-tabs { gap: 8px !important; }
.pricing-tab { font-size: 10px !important; border-color: var(--orchid-line) !important; color: var(--orchid-brown) !important; background: var(--orchid-white) !important; }
.pricing-tab.active { background: var(--orchid-brown) !important; color: #fff !important; border-color: var(--orchid-brown) !important; }
.price-item { border-color: var(--orchid-line) !important; }
.price-item h4 { font-size: 13px !important; color: var(--orchid-dark) !important; }
.price-item p { font-size: 10px !important; color: var(--orchid-soft-brown) !important; }
.price-item strong { color: var(--orchid-brown) !important; }
.pricing-category-heading h3 { color: var(--orchid-dark) !important; }
.group-title { color: var(--orchid-brown) !important; }

/* Footer */
.site-footer {
    background: var(--orchid-dark) !important;
    color: var(--orchid-cream) !important;
    padding: 42px 28px 18px !important;
}
.footer-container {
    max-width: 1050px !important;
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
    gap: 35px !important;
    align-items: start !important;
    text-align: left !important;
}
.footer-logo-text,
.footer-logo { color: var(--orchid-cream) !important; }
.footer-brand p,
.footer-description { color: #d7c6b7 !important; font-size: 12px !important; line-height: 1.7 !important; }
.footer-column h3 { color: var(--orchid-cream) !important; font-size: 15px !important; margin-bottom: 12px; }
.footer-column a,
.footer-column span { color: #d7c6b7 !important; font-size: 12px !important; line-height: 1.8; }
.footer-follow { text-align: left !important; align-items: flex-start !important; }
.footer-socials {
    justify-content: flex-start !important;
    align-items: flex-start !important;
    margin-top: 5px !important;
    gap: 18px !important;
}
.footer-social-text {
    display: inline-block !important;
    color: var(--orchid-cream) !important;
    text-decoration: none;
}
.footer-bottom {
    max-width: 1050px !important;
    margin: 25px auto 0 !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(247,240,231,.2) !important;
    color: #bfae9f !important;
    font-size: 10px !important;
}

/* Remove legacy service tabs if any old markup remains */
.service-tabs { display: none !important; }

/* Mobile */
@media (max-width: 800px) {
    .header-container { height: 72px !important; padding: 0 16px !important; }
    .header-socials { display: none !important; }
    .header-book-button { display: none !important; }
    .hero-section { min-height: 520px; }
    .about-section,
    .services-section,
    .why-choose-section,
    .gallery-section,
    .testimonials-section,
    .pricing-section { padding: 30px 15px 34px !important; }
    .script-heading,
    .why-choose-title,
    .gallery-title,
    .pricing-title { font-size: clamp(29px, 8vw, 40px) !important; }
    .services-description { font-size: 12px !important; }
    .services-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        margin-top: 20px !important;
    }
    .service-card { padding: 8px !important; }
    .service-card-inner { min-height: 235px !important; padding: 32px 14px 15px !important; }
    .service-card h3 { font-size: 15px !important; }
    .service-card p { font-size: 11px !important; }
    .service-extra p { font-size: 10px !important; }
    .why-choose-content { grid-template-columns: 1fr !important; gap: 20px !important; }
    .why-choose-info > h3 { margin-top: 0 !important; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .testimonial-card { padding: 17px 14px !important; }
    .testimonial-card p { font-size: 11px !important; }
    .footer-container { grid-template-columns: 1fr 1fr !important; gap: 25px 18px !important; }
}

@media (max-width: 520px) {
    .services-grid { grid-template-columns: 1fr !important; }
    .service-card-inner { min-height: 0 !important; }
    .testimonials-grid { grid-template-columns: 1fr !important; }
    .footer-container { grid-template-columns: 1fr !important; }
    .footer-follow { text-align: left !important; }
    .footer-socials { justify-content: flex-start !important; }
}
/* Hide the old decorative Why Choose accordion control; the visible CTA is the WhatsApp Book Now button. */
.why-dropdown { display: none !important; }

/* =========================================================
   FINAL LAYOUT FIXES - ORCHID STUDIO
========================================================= */

/* Keep the page itself neutral. Individual sections control their own surfaces. */
html,
body {
    background: #ffffff !important;
}

body {
    overflow-x: hidden;
}

/* All main sections use a controlled content width.
   The banner remains full width by design. */
main > section:not(.banner-section) {
    width: 100% !important;
    max-width: 1150px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
}

/* First section: no background colour. */
.hero-section {
    background: transparent !important;
}

/* Banner intentionally stays full viewport width. */
.banner-section {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Compact vertical rhythm between sections. */
main > section:not(.banner-section) {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
}

.hero-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
}

/* Keep internal content comfortably aligned inside the 1150px section. */
main > section:not(.banner-section) > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Do not constrain full-width gallery/image elements accidentally. */
.gallery-grid,
.pricing-tabs-wrapper,
.pricing-category,
.testimonials-grid {
    width: 100%;
}

/* Footer background spans the entire viewport while its contents stay constrained. */
.site-footer {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box;
    background: var(--brown-dark) !important;
    padding: 58px 24px 22px !important;
}

.site-footer .footer-container,
.site-footer .footer-bottom {
    width: 100%;
    max-width: 1150px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
}

.site-footer .footer-bottom {
    margin-top: 35px !important;
}

/* Footer social links are left aligned. */
.footer-socials {
    align-items: flex-start !important;
    text-align: left !important;
}

.footer-socials a,
.footer-socials span {
    justify-content: flex-start !important;
    text-align: left !important;
}

@media (max-width: 600px) {
    main > section:not(.banner-section) {
        padding-top: 42px !important;
        padding-bottom: 42px !important;
    }

    .hero-section {
        padding-top: 38px !important;
        padding-bottom: 38px !important;
    }

    .site-footer {
        padding: 45px 18px 20px !important;
    }

    .site-footer .footer-container {
        width: 100%;
    }
}

/* =========================================================
   SERVICES - READ MORE SPACING FIX
   Keep Read More directly after the service content.
========================================================= */
.service-card-inner {
    justify-content: flex-start !important;
}

.service-card-inner .read-more {
    margin-top: 10px !important;
    padding-top: 0 !important;
    align-self: flex-start !important;
}

.service-card-inner .service-extra {
    margin-top: 8px !important;
    padding-top: 10px !important;
}

/* Expanded cards should naturally grow instead of reserving empty space. */
.service-card.is-expanded .service-card-inner {
    min-height: 0 !important;
}

@media (max-width: 700px) {
    .service-card-inner {
        min-height: 0 !important;
    }

    .service-card-inner .read-more {
        margin-top: 9px !important;
    }
}

/* =========================================================
   SERVICES - REMOVE ALL SPACE AFTER READ MORE
========================================================= */
.service-card,
.service-card-inner {
    height: auto !important;
    min-height: 0 !important;
}

.service-card {
    align-self: start !important;
}

.service-card-inner {
    align-self: start !important;
    justify-content: flex-start !important;
}

.service-card-inner .read-more {
    display: inline-flex !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 10px 0 0 !important;
    padding: 0 !important;
}

.service-card-inner .service-extra {
    height: auto !important;
    margin: 8px 0 0 !important;
    padding: 10px 0 0 !important;
}

@media (max-width: 700px) {
    .service-card,
    .service-card-inner {
        height: auto !important;
        min-height: 0 !important;
    }
}

/* =========================================================
   FINAL SPACING REFINEMENT V6
   Compact first section + tighter section rhythm
========================================================= */

/* First / hero section: remove excessive vertical empty space. */
.hero-section {
    min-height: 330px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.hero-content {
    padding: 34px 20px 30px !important;
}

.studio-name {
    margin-bottom: 18px !important;
}

/* Tighten the gap between all content sections. */
.about-section,
.services-section,
.why-choose-section,
.gallery-section,
.testimonials-section,
.pricing-section {
    padding-top: 28px !important;
    padding-bottom: 32px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Keep the full-width banner directly between sections. */
.banner-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Reduce large internal gaps that visually separate sections. */
.about-gallery {
    margin-top: 16px !important;
}

.services-grid {
    margin-top: 18px !important;
}

.why-choose-header,
.gallery-header,
.testimonials-header,
.pricing-header {
    margin-bottom: 18px !important;
}

.gallery-tabs,
.pricing-tabs-wrapper {
    margin-bottom: 18px !important;
}

@media (max-width: 700px) {
    .hero-section {
        min-height: 270px !important;
    }

    .hero-content {
        padding: 28px 15px 24px !important;
    }

    .studio-name {
        margin-bottom: 15px !important;
    }

    .about-section,
    .services-section,
    .why-choose-section,
    .gallery-section,
    .testimonials-section,
    .pricing-section {
        padding-top: 24px !important;
        padding-bottom: 28px !important;
    }
}

@media (max-width: 400px) {
    .hero-section {
        min-height: 245px !important;
    }

    .hero-content {
        padding: 24px 12px 20px !important;
    }

    .about-section,
    .services-section,
    .why-choose-section,
    .gallery-section,
    .testimonials-section,
    .pricing-section {
        padding-top: 21px !important;
        padding-bottom: 25px !important;
    }
}

/* =========================================================
   FINAL ULTRA-COMPACT SECTION RHYTHM
   Removes accumulated spacing from earlier overrides.
========================================================= */

/* Keep the page itself neutral. */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
}

/* Banner stays full width. */
.banner-section {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* All normal sections use a tight rhythm. */
.about-section,
.services-section,
.why-choose-section,
.gallery-section,
.testimonials-section,
.pricing-section {
    width: 100% !important;
    max-width: 1150px !important;
    margin: 0 auto !important;
    padding-top: 18px !important;
    padding-bottom: 22px !important;
    box-sizing: border-box !important;
}

/* Hero is compact too. */
.hero-section {
    width: 100% !important;
    max-width: 1150px !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.hero-content {
    padding: 22px 20px 20px !important;
}

.studio-name {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}

/* Reduce internal header gaps. */
.about-contact,
.services-header,
.why-choose-header,
.gallery-header,
.testimonials-header,
.pricing-header {
    margin-bottom: 12px !important;
}

.about-gallery {
    margin-top: 12px !important;
}

.services-grid {
    margin-top: 12px !important;
}

.gallery-tabs,
.pricing-tabs-wrapper {
    margin-bottom: 12px !important;
}

/* Keep content blocks from creating accidental vertical gaps. */
.why-choose-content,
.pricing-category,
.testimonials-grid,
.gallery-grid {
    margin-top: 0 !important;
}

/* Footer remains full-bleed, with constrained inner content. */
.site-footer {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.footer-container,
.footer-bottom {
    max-width: 1150px !important;
}

@media (max-width: 700px) {
    .about-section,
    .services-section,
    .why-choose-section,
    .gallery-section,
    .testimonials-section,
    .pricing-section {
        padding: 15px 15px 18px !important;
    }

    .hero-content {
        padding: 18px 15px 16px !important;
    }

    .studio-name {
        margin-bottom: 10px !important;
    }

    .about-contact,
    .services-header,
    .why-choose-header,
    .gallery-header,
    .testimonials-header,
    .pricing-header {
        margin-bottom: 10px !important;
    }

    .about-gallery,
    .services-grid {
        margin-top: 10px !important;
    }

    .gallery-tabs,
    .pricing-tabs-wrapper {
        margin-bottom: 10px !important;
    }
}

@media (max-width: 400px) {
    .about-section,
    .services-section,
    .why-choose-section,
    .gallery-section,
    .testimonials-section,
    .pricing-section {
        padding: 13px 12px 16px !important;
    }

    .hero-content {
        padding: 16px 12px 14px !important;
    }
}

/* =========================================================
   FINAL SPACING FIX — NO SECTION TOP/BOTTOM PADDING
========================================================= */
.about-section,
.services-section,
.why-choose-section,
.gallery-section,
.testimonials-section,
.pricing-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.hero-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.hero-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Keep only small, intentional spacing inside sections. */
.about-contact,
.services-header,
.why-choose-header,
.gallery-header,
.testimonials-header,
.pricing-header {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

.about-gallery,
.services-grid {
    margin-top: 8px !important;
}

.gallery-tabs,
.pricing-tabs-wrapper {
    margin-bottom: 8px !important;
}

@media (max-width: 700px) {
    .about-section,
    .services-section,
    .why-choose-section,
    .gallery-section,
    .testimonials-section,
    .pricing-section,
    .hero-section,
    .hero-content {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .about-contact,
    .services-header,
    .why-choose-header,
    .gallery-header,
    .testimonials-header,
    .pricing-header {
        margin-bottom: 8px !important;
    }
}
