/* =========================================================
   PECKSWEBSOLUTIONS
   NAIL SALON / BEAUTY + WELLNESS CONCEPT

   One-page premium Starter template.

   DESIGN DIRECTION:
   - Editorial
   - Sophisticated
   - Warm neutral palette
   - Oversized typography
   - Strong photography
   - Subtle motion
   - High-end boutique feel
   ========================================================= */


/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {
    /* ---------------------------------------------------------
       COLORS
       --------------------------------------------------------- */

    --ink: #171614;
    --ink-soft: #23211f;
    --ink-lifted: #2c2926;
    --ivory: #b79b91;
    --ivory-soft: #a88980;
    --paper: #8f746d;
    --stone: #75635d;
    --stone-dark: #5e504b;
    --rose: #9b655c;
    --rose-light: #9a6961;
    --rose-dark: #55342f;
    --text: #171614;
    --text-light: #f7f3ec;
    --muted: #332d2a;
    --muted-light: #b8b0a6;
    --line: rgba(23, 22, 20, 0.16);
    --line-light: rgba(255, 255, 255, 0.16);
    /* ---------------------------------------------------------
       LAYOUT
       --------------------------------------------------------- */

    --shell: 1360px;
    --page-padding: 34px;
    --header-height: 88px;
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 28px;
    /* ---------------------------------------------------------
       SHADOWS
       --------------------------------------------------------- */

    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.08);
    --shadow-deep: 0 30px 90px rgba(0, 0, 0, 0.20);
    /* ---------------------------------------------------------
       TYPOGRAPHY
       --------------------------------------------------------- */

    --font-display: "Bodoni Moda", Georgia, serif;
    --font-body: "DM Sans", Arial, sans-serif;
    /* ---------------------------------------------------------
       ANIMATION
       --------------------------------------------------------- */

    --ease: cubic-bezier(.2, .7, .2, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    background: var(--ivory);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}


    body.menu-open,
    body.modal-open {
        overflow: hidden;
    }


img {
    display: block;
    width: 100%;
    max-width: 100%;
}


button,
input,
select,
textarea {
    font: inherit;
}


button {
    color: inherit;
}


a {
    color: inherit;
    text-decoration: none;
}


p,
h1,
h2,
h3,
blockquote {
    margin-top: 0;
}


::selection {
    background: var(--rose);
    color: var(--text-light);
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 2px solid var(--rose);
    outline-offset: 5px;
}


/* =========================================================
   SITE SHELL
   ========================================================= */

.site-shell {
    width: min( calc(100% - (var(--page-padding) * 2)), var(--shell) );
    margin-inline: auto;
}


/* =========================================================
   PAGE TEXTURE
   ========================================================= */

.page-noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.45'/%3E%3C/svg%3E");
}


/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 0;
    height: 3px;
    background: var(--rose);
    transform-origin: left center;
}


/* =========================================================
   GENERAL TYPOGRAPHY
   ========================================================= */

.section-number {
    margin: 0 0 24px;
    color: var(--rose-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 70px;
}


    .section-heading h2,
    .studio-copy h2,
    .comparison-copy h2,
    .faq-intro h2,
    .visit-copy h2,
    .booking-copy h2 {
        margin: 0;
        font-family: var(--font-display);
        font-size: clamp( 50px, 6vw, 94px );
        font-weight: 400;
        line-height: 0.94;
        letter-spacing: -0.045em;
    }


        .section-heading h2 em,
        .studio-copy h2 em,
        .comparison-copy h2 em,
        .faq-intro h2 em,
        .visit-copy h2 em,
        .booking-copy h2 em {
            color: var(--rose-dark);
            font-weight: 400;
        }


        /* ---------------------------------------------------------
   LIGHT SECTION CONTRAST

   Keep the soft blush backgrounds, but make the italic
   editorial words easy to read. These are intentionally
   darker than the decorative rose used elsewhere.
   --------------------------------------------------------- */

        .process-section .section-heading h2 em,
        .comparison-copy h2 em,
        .faq-intro h2 em,
        .visit-copy h2 em,
        .final-statement h2 em {
            color: #603d37;
        }

.process-section .section-intro,
.comparison-copy p:not(.section-number),
.faq-intro > p:last-child,
.visit-copy > p:not(.section-number) {
    color: #403834;
}


.section-intro {
    max-width: 430px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}


.section-heading-light .section-number {
    color: var(--rose-light);
}


.section-heading-light h2 {
    color: var(--text-light);
}


    .section-heading-light h2 em {
        color: var(--rose-light);
    }


.section-heading-light .section-intro {
    color: var(--muted-light);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 58px;
    padding: 0 24px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}


    .button span {
        font-size: 18px;
    }


.button-dark {
    background: var(--ink);
    color: var(--text-light);
}


    .button-dark:hover {
        background: var(--rose-dark);
    }


.button-light {
    background: var(--ivory);
    color: var(--ink);
}


    .button-light:hover {
        background: var(--rose-light);
    }


.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border: 0;
    border-bottom: 1px solid currentColor;
    padding: 0 0 5px;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}


    .text-link:hover {
        gap: 21px;
        color: var(--rose-dark);
    }


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    color: var(--ink);
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}


    .site-header.is-scrolled {
        background: rgba(238, 231, 222, 0.94);
        box-shadow: 0 1px 0 rgba(23, 22, 20, 0.10);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }


.header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
    justify-self: start;
    display: flex;
    flex-direction: column;
    line-height: 1;
}


.brand-name {
    font-family: var(--font-display);
    font-size: 23px;
    font-weight: 600;
    letter-spacing: -0.025em;
}


.brand-subtitle {
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}


/* =========================================================
   DESKTOP NAV
   ========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}


    .desktop-nav a {
        position: relative;
        padding: 8px 0;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }


        .desktop-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 2px;
            width: 100%;
            height: 1px;
            background: currentColor;
            transform: scaleX(0);
            transform-origin: right center;
            transition: transform 0.3s var(--ease);
        }


        .desktop-nav a:hover::after,
        .desktop-nav a.is-active::after {
            transform: scaleX(1);
            transform-origin: left center;
        }


/* =========================================================
   HEADER CTA
   ========================================================= */

.header-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 13px 18px;
    background: var(--ink);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.25s ease, gap 0.25s ease;
}


    .header-cta:hover {
        gap: 19px;
        background: var(--rose-dark);
    }


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-button {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}


    .mobile-menu-button span {
        display: block;
        width: 26px;
        height: 1px;
        margin: 7px auto;
        background: currentColor;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }


    .mobile-menu-button.is-open span:first-child {
        transform: translateY(4px) rotate(45deg);
    }


    .mobile-menu-button.is-open span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
    flex-direction: column;
    padding: 28px var(--page-padding) 40px;
    background: var(--ivory);
    border-top: 1px solid var(--line);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.10);
}


    .mobile-nav.is-open {
        display: flex;
    }


    .mobile-nav a {
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
        font-family: var(--font-display);
        font-size: 31px;
        line-height: 1;
    }


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-height) + 65px) 0 42px;
    background: var(--ivory);
    overflow: hidden;
}


.hero-grid {
    min-height: calc(100svh - var(--header-height) - 115px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    align-items: center;
    gap: clamp( 45px, 7vw, 115px );
}


/* =========================================================
   HERO COPY
   ========================================================= */

.hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 25px;
}


.hero-eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


.hero-eyebrow-divider {
    color: var(--rose-dark);
}


.hero-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp( 72px, 8.5vw, 142px );
    font-weight: 400;
    line-height: 0.79;
    letter-spacing: -0.06em;
}


.hero-line {
    display: block;
}


.hero-line-accent {
    position: relative;
    left: clamp( 15px, 3vw, 52px );
    color: var(--rose-dark);
    font-style: italic;
}


.hero-description {
    max-width: 500px;
    margin: clamp(40px, 5vw, 65px) 0 0;
    color: var(--muted);
    font-size: clamp( 17px, 1.35vw, 20px );
    line-height: 1.7;
}


.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 34px;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    min-height: 620px;
}


.hero-image-wrap {
    position: relative;
    width: min(100%, 520px);
    height: clamp(460px, 58vh, 650px);
    margin-left: auto;
    overflow: hidden;
    background: var(--stone);
}


    .hero-image-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, transparent 65%, rgba(23, 22, 20, 0.18) );
        pointer-events: none;
    }


.hero-image {
    width: 100%;
    height: 108%;
    object-fit: cover;
    object-position: center 42%;
    transform: translateY(-4%);
}


/* =========================================================
   FLOATING HERO CARD
   ========================================================= */

.hero-floating-card {
    position: absolute;
    left: -55px;
    bottom: 12%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: var(--ink);
    color: var(--text-light);
    border-radius: 50%;
    box-shadow: var(--shadow-deep);
}


    .hero-floating-card span {
        color: var(--muted-light);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.16em;
    }


    .hero-floating-card strong {
        display: block !important;
        color: #0c0d0d !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-family: var(--font-display) !important;
        font-size: 31px !important;
        font-weight: 400 !important;
        line-height: 1 !important;
        position: relative !important;
        z-index: 2 !important;
        -webkit-text-fill-color: #0c0d0d !important;
    }


/* =========================================================
   HERO SIDE WORD
   ========================================================= */

.hero-side-word {
    position: absolute;
    top: 50%;
    right: -47px;
    color: rgba(23, 22, 20, 0.28);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.45em;
    transform: translateY(-50%) rotate(90deg);
}


/* =========================================================
   HERO SCROLL CUE
   ========================================================= */

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}


.hero-scroll-line {
    position: relative;
    width: 75px;
    height: 1px;
    overflow: hidden;
    background: rgba(23, 22, 20, 0.18);
}


    .hero-scroll-line::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--ink);
        animation: scroll-line 2.2s ease-in-out infinite;
    }


@keyframes scroll-line {

    0% {
        transform: translateX(0);
    }

    60%, 100% {
        transform: translateX(200%);
    }
}


/* =========================================================
   MARQUEE
   ========================================================= */

.marquee-section {
    overflow: hidden;
    padding: 25px 0;
    background: var(--ink);
    color: var(--text-light);
}


.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}


.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 32px;
    padding-right: 32px;
}


    .marquee-content span {
        font-family: var(--font-display);
        font-size: clamp( 25px, 2.6vw, 39px );
        font-style: italic;
    }


    .marquee-content i {
        color: var(--rose-light);
        font-size: 13px;
        font-style: normal;
    }


@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    padding: clamp(100px, 11vw, 170px) 0;
    background: var(--paper);
}


/* =========================================================
   SERVICE LIST
   ========================================================= */

.service-list {
    border-top: 1px solid var(--line);
}


.service-row {
    position: relative;
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr) 110px 100px 45px;
    align-items: center;
    gap: 22px;
    min-height: 125px;
    padding: 22px 12px;
    border-bottom: 1px solid var(--line);
    transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}


    .service-row:hover {
        padding-left: 24px;
        padding-right: 24px;
        background: var(--ivory-soft);
    }


.service-index {
    color: var(--rose-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
}


.service-name h3 {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: clamp( 27px, 2.5vw, 38px );
    font-weight: 400;
    line-height: 1;
}


.service-name p {
    max-width: 550px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}


.service-time {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


.service-price {
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 400;
}


.service-arrow {
    justify-self: end;
    font-size: 19px;
    transition: transform 0.3s var(--ease);
}


.service-row:hover .service-arrow {
    transform: translate(4px, -4px);
}


/* =========================================================
   SERVICES NOTE
   ========================================================= */

.services-note {
    display: flex;
    gap: 22px;
    max-width: 690px;
    margin-top: 38px;
    color: var(--muted);
    font-size: 13px;
}


    .services-note span {
        flex-shrink: 0;
        color: var(--ink);
        font-weight: 700;
    }


    .services-note p {
        margin: 0;
    }


/* =========================================================
   WORK / GALLERY
   ========================================================= */

.work-section {
    padding: clamp(100px, 11vw, 170px) 0;
    background: var(--ink);
    color: var(--text-light);
}


/* =========================================================
   GALLERY GRID
   ========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}


.gallery-item {
    position: relative;
    grid-column: span 5;
    grid-row: span 2;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: var(--ink-soft);
    cursor: zoom-in;
    text-align: left;
}


    .gallery-item:nth-child(2) {
        grid-column: span 7;
        grid-row: span 1;
    }


    .gallery-item:nth-child(3) {
        grid-column: span 4;
        grid-row: span 1;
    }


.gallery-item-wide {
    grid-column: span 8;
    grid-row: span 1;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out), filter 0.5s ease;
}


.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.55), transparent 55% );
    opacity: 0.75;
    transition: opacity 0.4s ease;
}


.gallery-item:hover img {
    transform: scale(1.045);
}


.gallery-item:hover::after {
    opacity: 1;
}


.gallery-label {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.gallery-open {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: rgba(238, 231, 222, 0.94);
    color: var(--ink);
    border-radius: 50%;
    font-size: 20px;
    transition: transform 0.35s var(--ease);
}


.gallery-item:hover .gallery-open {
    transform: rotate(90deg);
}


/* =========================================================
   GALLERY FOOTER
   ========================================================= */

.gallery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 38px;
    color: var(--muted-light);
    font-size: 12px;
}


    .gallery-footer a {
        display: inline-flex;
        align-items: center;
        gap: 13px;
        color: var(--text-light);
        font-weight: 600;
    }


/* =========================================================
   STUDIO
   ========================================================= */

.studio-section {
    padding: clamp(110px, 12vw, 185px) 0;
    background: var(--ivory);
}


.studio-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: clamp(70px, 10vw, 150px);
    align-items: center;
}


/* =========================================================
   STUDIO IMAGES
   ========================================================= */

.studio-visual {
    position: relative;
    min-height: 760px;
}


.studio-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 76%;
    height: 78%;
    overflow: hidden;
    background: var(--stone);
}


    .studio-image-main img,
    .studio-image-small img {
        width: 100%;
        height: 112%;
        object-fit: cover;
    }


.studio-image-small {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 48%;
    height: 43%;
    overflow: hidden;
    border: 12px solid var(--ivory);
    background: var(--stone);
    box-shadow: var(--shadow-soft);
}


.studio-caption {
    position: absolute;
    left: 2px;
    bottom: 2%;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
}


/* =========================================================
   STUDIO COPY
   ========================================================= */

.studio-copy h2 {
    margin-bottom: 38px;
}


.studio-lead {
    margin-bottom: 26px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp( 23px, 2.3vw, 31px );
    line-height: 1.35;
}


.studio-copy > p:not(.section-number):not(.studio-lead) {
    max-width: 570px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   STUDIO STATS
   ========================================================= */

.studio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 48px 0 38px;
    padding: 30px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


    .studio-stats div {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }


    .studio-stats strong {
        font-family: var(--font-display);
        font-size: clamp( 30px, 3vw, 44px );
        font-weight: 400;
        line-height: 1;
    }


    .studio-stats span {
        color: var(--muted);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }


/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
    padding: clamp(100px, 11vw, 170px) 0;
    background: var(--paper);
}


.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}


.process-card {
    min-height: 320px;
    padding: 35px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.35s var(--ease), color 0.35s var(--ease);
}


    .process-card:hover {
        background: var(--ink);
        color: var(--text-light);
    }


    .process-card > span {
        display: block;
        margin-bottom: 90px;
        color: var(--rose-dark);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.15em;
    }


    .process-card:hover > span {
        color: var(--rose-light);
    }


    .process-card h3 {
        margin: 0 0 15px;
        font-family: var(--font-display);
        font-size: 27px;
        font-weight: 400;
        line-height: 1.1;
    }


    .process-card p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.7;
        transition: color 0.35s ease;
    }


    .process-card:hover p {
        color: var(--muted-light);
    }


/* =========================================================
   BEFORE / AFTER COMPARISON
   ========================================================= */

.comparison-section {
    padding: clamp(100px, 11vw, 170px) 0;
    background: var(--rose-light);
}


.comparison-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
    align-items: center;
    gap: clamp(60px, 9vw, 135px);
}


/* =========================================================
   COMPARISON COPY
   ========================================================= */

.comparison-copy h2 {
    margin-bottom: 30px;
}


.comparison-copy p:not(.section-number) {
    max-width: 410px;
    margin-bottom: 28px;
    color: #3f3531;
    line-height: 1.75;
}


.comparison-hint {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
}


/* =========================================================
   COMPARISON COMPONENT
   ========================================================= */

.comparison {
    --comparison-position: 50%;
    position: relative;
    height: clamp( 450px, 60vw, 700px );
    max-height: 700px;
    overflow: hidden;
    background: var(--stone);
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
    box-shadow: var(--shadow-deep);
}


.comparison-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}


.comparison-before {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: var(--comparison-position);
    overflow: hidden;
}


    .comparison-before .comparison-image {
        width: calc( 100% / (var(--comparison-position) / 100%) );
        max-width: none;
    }


/*
    Fallback:
    JavaScript will also keep the before image sized correctly.
*/

.comparison-handle {
    position: absolute;
    top: 0;
    left: var(--comparison-position);
    z-index: 5;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: var(--ivory);
    color: var(--ink);
    cursor: ew-resize;
    transform: translate(-50%, -50%);
    top: 50%;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}


.comparison::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--comparison-position);
    z-index: 4;
    width: 1px;
    background: white;
    pointer-events: none;
}


.comparison-label {
    position: absolute;
    top: 18px;
    z-index: 6;
    padding: 8px 11px;
    background: rgba(23, 22, 20, 0.78);
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.comparison-label-before {
    left: 18px;
}


.comparison-label-after {
    right: 18px;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-section {
    padding: clamp(110px, 12vw, 185px) 0;
    background: var(--ink);
    color: var(--text-light);
}


.reviews-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}


    .reviews-heading .section-number {
        color: var(--rose-light);
    }


    .reviews-heading h2 {
        margin: 0;
        font-family: var(--font-display);
        font-size: clamp( 50px, 6vw, 94px );
        font-weight: 400;
        line-height: 0.94;
        letter-spacing: -0.045em;
    }


        .reviews-heading h2 em {
            color: var(--rose-light);
            font-weight: 400;
        }


/* =========================================================
   REVIEW CONTROLS
   ========================================================= */

.review-controls {
    display: flex;
    gap: 8px;
}


    .review-controls button {
        width: 54px;
        height: 54px;
        border: 1px solid var(--line-light);
        background: transparent;
        color: var(--text-light);
        cursor: pointer;
        font-size: 20px;
        transition: background 0.25s ease, color 0.25s ease;
    }


        .review-controls button:hover {
            background: var(--ivory);
            color: var(--ink);
        }


.demo-review-notice {
    margin: 0 0 28px;
    color: var(--muted-light);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =========================================================
   REVIEW SLIDER
   ========================================================= */

.review-slider {
    position: relative;
    min-height: 350px;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}


.review-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px clamp(0px, 5vw, 70px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(35px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s;
}


    .review-card.is-active {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }


.review-stars {
    margin-bottom: 25px;
    color: var(--rose-light);
    font-size: 12px;
    letter-spacing: 0.2em;
}


.review-card blockquote {
    max-width: 1000px;
    margin-bottom: 38px;
    font-family: var(--font-display);
    font-size: clamp( 31px, 4vw, 56px );
    font-weight: 400;
    line-height: 1.2;
}


.review-person {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


    .review-person strong {
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }


    .review-person span {
        color: var(--muted-light);
        font-size: 12px;
    }


/* =========================================================
   REVIEW COUNTER
   ========================================================= */

.review-counter {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 20px;
    color: var(--muted-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
    padding: clamp(105px, 11vw, 175px) 0;
    background: var(--ivory);
}


.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(60px, 10vw, 150px);
    align-items: start;
}


.faq-intro {
    position: sticky;
    top: calc( var(--header-height) + 45px );
}


    .faq-intro h2 {
        margin-bottom: 28px;
    }


    .faq-intro > p:last-child {
        max-width: 350px;
        margin: 0;
        color: var(--muted);
        line-height: 1.75;
    }


/* =========================================================
   FAQ ITEMS
   ========================================================= */

.faq-list {
    border-top: 1px solid var(--line);
}


.faq-item {
    border-bottom: 1px solid var(--line);
}


.faq-question {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 29px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: clamp( 21px, 2vw, 28px );
    line-height: 1.2;
}


.faq-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 18px;
    transition: transform 0.3s var(--ease), background 0.3s ease;
}


.faq-item.is-open .faq-icon {
    background: var(--ink);
    color: white;
    transform: rotate(45deg);
}


/* =========================================================
   FAQ ANSWERS

   JavaScript will control max-height.
   ========================================================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease);
}


    .faq-answer > div {
        padding: 0 65px 30px 0;
    }


    .faq-answer p {
        max-width: 650px;
        margin: 0;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.8;
    }


/* =========================================================
   VISIT
   ========================================================= */

.visit-section {
    padding: 0 0 clamp(100px, 11vw, 170px);
    background: var(--ivory);
}


.visit-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 540px;
    background: var(--rose-light);
}


/* =========================================================
   VISIT COPY
   ========================================================= */

.visit-copy {
    padding: clamp(45px, 6vw, 85px);
}


    .visit-copy h2 {
        margin-bottom: 30px;
    }


    .visit-copy > p:not(.section-number) {
        max-width: 380px;
        margin-bottom: 35px;
        color: #3f3531;
        line-height: 1.75;
    }


/* =========================================================
   VISIT DETAILS
   ========================================================= */

.visit-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-left: 1px solid rgba(23, 22, 20, 0.17);
}


    .visit-details > div {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: clamp(35px, 5vw, 65px);
        border-right: 1px solid rgba(23, 22, 20, 0.17);
        border-bottom: 1px solid rgba(23, 22, 20, 0.17);
    }


        .visit-details > div:nth-child(even) {
            border-right: 0;
        }


        .visit-details > div:nth-last-child(-n + 2) {
            border-bottom: 0;
        }


    .visit-details span {
        margin-bottom: 18px;
        color: #d8b86f;
        opacity: 1;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }


    .visit-details p {
        margin: 0;
        font-family: var(--font-display);
        font-size: clamp( 20px, 2vw, 27px );
        line-height: 1.35;
    }


/* =========================================================
   BOOKING SECTION
   ========================================================= */

.booking-section {
    padding: clamp(110px, 12vw, 185px) 0;
    background: var(--ink);
    color: var(--text-light);
}


.booking-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(70px, 10vw, 150px);
    align-items: start;
}


/* =========================================================
   BOOKING COPY
   ========================================================= */

.booking-copy {
    position: sticky;
    top: calc( var(--header-height) + 45px );
}


    .booking-copy .section-number {
        color: var(--rose-light);
    }


    .booking-copy h2 {
        margin-bottom: 30px;
    }


        .booking-copy h2 em {
            color: var(--rose-light);
        }


    .booking-copy > p:not(.section-number) {
        max-width: 420px;
        color: var(--muted-light);
        line-height: 1.8;
    }


/* =========================================================
   BOOKING CONTACT
   ========================================================= */

.booking-contact {
    display: grid;
    gap: 22px;
    margin-top: 45px;
}


    .booking-contact div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }


    .booking-contact span {
        color: var(--rose-light);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.16em;
    }


    .booking-contact a {
        width: fit-content;
        color: var(--text-light);
        font-family: var(--font-display);
        font-size: 21px;
    }


/* =========================================================
   BOOKING FORM
   ========================================================= */

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
    padding: clamp(32px, 5vw, 58px);
    background: var(--ink-soft);
    border: 1px solid var(--line-light);
}


/* =========================================================
   FORM FIELDS
   ========================================================= */

.form-field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.form-field-full {
    grid-column: 1 / -1;
}


.form-field label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


    .form-field label span {
        color: var(--muted-light);
        font-size: 8px;
        font-weight: 500;
    }


.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    padding: 13px 0 15px;
    background: transparent;
    color: var(--text-light);
    outline: none;
    font-size: 15px;
    transition: border-color 0.25s ease;
}


.form-field textarea {
    min-height: 125px;
    resize: vertical;
}


    .form-field input::placeholder,
    .form-field textarea::placeholder {
        color: #77736f;
    }


    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
        border-color: var(--rose-light);
    }


.form-field select {
    appearance: none;
    cursor: pointer;
    background-image: linear-gradient( 45deg, transparent 50%, var(--muted-light) 50% ), linear-gradient( 135deg, var(--muted-light) 50%, transparent 50% );
    background-position: calc(100% - 13px) 50%, calc(100% - 8px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 30px;
}


    .form-field select option {
        background: var(--ink-soft);
        color: var(--text-light);
    }


/* =========================================================
   FORM VALIDATION
   ========================================================= */

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: #ef9f91;
}


.field-error {
    margin: -2px 0 0;
    color: #efb0a5;
    font-size: 11px;
    line-height: 1.45;
}


/* =========================================================
   FORM SUBMIT
   ========================================================= */

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 10px;
}


    .form-submit p {
        max-width: 360px;
        margin: 0;
        color: var(--muted-light);
        font-size: 10px;
        line-height: 1.6;
    }


        .form-submit p a {
            color: var(--text-light);
            text-decoration: underline;
            text-underline-offset: 3px;
        }


/* =========================================================
   FINAL STATEMENT
   ========================================================= */

.final-statement {
    padding: clamp(100px, 12vw, 180px) 0;
    background: var(--rose-light);
    text-align: center;
}


    .final-statement p {
        margin-bottom: 25px;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.22em;
    }


    .final-statement h2 {
        margin: 0;
        font-family: var(--font-display);
        font-size: clamp( 65px, 10vw, 155px );
        font-weight: 400;
        line-height: 0.82;
        letter-spacing: -0.06em;
    }


        .final-statement h2 em {
            color: var(--rose-dark);
            font-weight: 400;
        }


.final-arrow {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 55px auto 0;
    border: 1px solid rgba(23, 22, 20, 0.35);
    border-radius: 50%;
    font-size: 27px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}


    .final-arrow:hover {
        background: var(--ink);
        color: white;
        transform: rotate(-45deg);
    }


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 70px 0 28px;
    background: var(--ink);
    color: var(--text-light);
}


.footer-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: start;
    padding-bottom: 70px;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


    .footer-brand strong {
        font-family: var(--font-display);
        font-size: 27px;
        font-weight: 500;
    }


    .footer-brand span {
        color: var(--muted-light);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
    }


/* =========================================================
   FOOTER NAV
   ========================================================= */

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}


    .footer-nav a {
        color: var(--muted-light);
        font-size: 11px;
        font-weight: 600;
        transition: color 0.2s ease;
    }


        .footer-nav a:hover {
            color: white;
        }


/* =========================================================
   FOOTER SOCIAL
   ========================================================= */

.footer-social {
    justify-self: end;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}


    .footer-social span {
        color: var(--rose-light);
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.15em;
    }


    .footer-social a {
        font-family: var(--font-display);
        font-size: 18px;
    }


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--line-light);
    color: var(--muted-light);
    font-size: 9px;
    letter-spacing: 0.06em;
}


    .footer-bottom div {
        display: flex;
        align-items: center;
        gap: 25px;
    }


    .footer-bottom a:hover {
        color: white;
    }


/* =========================================================
   GALLERY LIGHTBOX
   ========================================================= */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: 60px;
    background: rgba(10, 10, 9, 0.94);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


    .lightbox.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }


.lightbox-content {
    max-width: 1000px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}


    .lightbox-content img {
        max-height: 78vh;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }


    .lightbox-content p {
        margin: 0;
        color: var(--muted-light);
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }


.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 27px;
    line-height: 1;
}


/* =========================================================
   DEMO LOCATION MODAL
   ========================================================= */

.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 6000;
    display: grid;
    place-items: center;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


    .demo-modal.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }


.demo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 14, 13, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.demo-modal-card {
    position: relative;
    z-index: 2;
    width: min( 100%, 540px );
    padding: 55px 50px 48px;
    background: var(--ivory);
    color: var(--ink);
    box-shadow: var(--shadow-deep);
    transform: translateY(15px) scale(0.98);
    transition: transform 0.35s var(--ease-out);
}


.demo-modal.is-open .demo-modal-card {
    transform: translateY(0) scale(1);
}


.demo-modal-label {
    display: block;
    margin-bottom: 18px;
    color: var(--rose-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
}


.demo-modal-card h2 {
    margin-bottom: 17px;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
}


.demo-modal-card p {
    margin-bottom: 30px;
    color: var(--muted);
    line-height: 1.75;
}


.demo-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 25px;
}


/* =========================================================
   SCROLL REVEAL

   JavaScript will add .is-visible.
   ========================================================= */

[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}


    [data-reveal].is-visible {
        opacity: 1;
        transform: translateY(0);
    }


/* =========================================================
   HERO ENTRANCE

   JavaScript will add .hero-ready to body.
   ========================================================= */

[data-hero-line] {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}


[data-hero-reveal] {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}


body.hero-ready [data-hero-line] {
    opacity: 1;
    transform: translateY(0);
}


    body.hero-ready [data-hero-line]:nth-child(2) {
        transition-delay: 0.09s;
    }


    body.hero-ready [data-hero-line]:nth-child(3) {
        transition-delay: 0.18s;
    }


body.hero-ready [data-hero-reveal] {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.28s;
}


body.hero-ready .hero-visual[data-hero-reveal] {
    transition-delay: 0.12s;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    :root {
        --page-padding: 26px;
    }


    /* ---------------------------------------------------------
       HEADER
       --------------------------------------------------------- */

    .desktop-nav {
        display: none;
    }


    .header-inner {
        grid-template-columns: 1fr auto auto;
    }


    .mobile-menu-button {
        display: block;
    }


    /* ---------------------------------------------------------
       HERO
       --------------------------------------------------------- */

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
        gap: 50px;
    }


    .hero-title {
        font-size: clamp( 67px, 9.5vw, 105px );
    }


    .hero-floating-card {
        left: -35px;
        width: 125px;
        height: 125px;
    }


    /* ---------------------------------------------------------
       STUDIO
       --------------------------------------------------------- */

    .studio-grid {
        gap: 65px;
    }


    .studio-visual {
        min-height: 620px;
    }


    /* ---------------------------------------------------------
       PROCESS
       --------------------------------------------------------- */

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* ---------------------------------------------------------
       COMPARISON
       --------------------------------------------------------- */

    .comparison-grid {
        gap: 60px;
    }


    /* ---------------------------------------------------------
       VISIT
       --------------------------------------------------------- */

    .visit-card {
        grid-template-columns: 1fr;
    }


    .visit-details {
        border-top: 1px solid rgba(23, 22, 20, 0.17);
        border-left: 0;
    }


    /* ---------------------------------------------------------
       BOOKING
       --------------------------------------------------------- */

    .booking-grid {
        gap: 65px;
    }
}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 820px) {

    /* ---------------------------------------------------------
       SECTION HEADINGS
       --------------------------------------------------------- */

    .section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }


    /* ---------------------------------------------------------
       HERO
       --------------------------------------------------------- */

    .hero {
        padding-top: calc( var(--header-height) + 45px );
    }


    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 55px;
    }


    .hero-copy {
        padding-top: 40px;
    }


    .hero-title {
        max-width: 720px;
        font-size: clamp( 70px, 15vw, 115px );
    }


    .hero-visual {
        min-height: 650px;
    }


    .hero-image-wrap {
        width: 82%;
        height: 620px;
        margin: 0 auto;
    }


    .hero-floating-card {
        left: 4%;
        bottom: 10%;
    }


    .hero-side-word {
        right: 2%;
    }


    .hero-scroll {
        margin-top: 45px;
    }


    /* ---------------------------------------------------------
       SERVICE ROWS
       --------------------------------------------------------- */

    .service-row {
        grid-template-columns: 42px 1fr auto;
        gap: 15px;
        padding: 25px 5px;
    }


    .service-time {
        display: none;
    }


    .service-price {
        grid-column: 3;
        grid-row: 1;
    }


    .service-arrow {
        display: none;
    }


    /* ---------------------------------------------------------
       GALLERY
       --------------------------------------------------------- */

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 320px;
    }


    .gallery-item,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }


    .gallery-item-tall {
        grid-row: span 2;
    }


    /* ---------------------------------------------------------
       STUDIO
       --------------------------------------------------------- */

    .studio-grid {
        grid-template-columns: 1fr;
    }


    .studio-visual {
        width: min(100%, 700px);
        min-height: 720px;
    }


    /* ---------------------------------------------------------
       COMPARISON
       --------------------------------------------------------- */

    .comparison-grid {
        grid-template-columns: 1fr;
    }


    .comparison-copy {
        max-width: 600px;
    }


    /* ---------------------------------------------------------
       FAQ
       --------------------------------------------------------- */

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .faq-intro {
        position: static;
        max-width: 650px;
    }


    /* ---------------------------------------------------------
       BOOKING
       --------------------------------------------------------- */

    .booking-grid {
        grid-template-columns: 1fr;
    }


    .booking-copy {
        position: static;
        max-width: 650px;
    }


    /* ---------------------------------------------------------
       FOOTER
       --------------------------------------------------------- */

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }


    .footer-nav {
        order: 3;
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    :root {
        --page-padding: 18px;
        --header-height: 76px;
    }


    /* ---------------------------------------------------------
       HEADER
       --------------------------------------------------------- */

    .header-cta {
        display: none;
    }


    .header-inner {
        grid-template-columns: 1fr auto;
        min-height: var(--header-height);
    }


    .brand-name {
        font-size: 21px;
    }


    /* ---------------------------------------------------------
       HERO
       --------------------------------------------------------- */

    .hero {
        min-height: auto;
        padding: calc( var(--header-height) + 30px ) 0 32px;
    }


    .hero-copy {
        padding-top: 30px;
    }


    .hero-eyebrow {
        margin-bottom: 26px;
        gap: 8px;
        font-size: 8px;
    }


    .hero-title {
        font-size: clamp( 59px, 20vw, 86px );
        line-height: 0.83;
    }


    .hero-line-accent {
        left: 10px;
    }


    .hero-description {
        margin-top: 34px;
        font-size: 16px;
    }


    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }


    .hero-visual {
        min-height: 520px;
    }


    .hero-image-wrap {
        width: 88%;
        height: 500px;
    }


    .hero-floating-card {
        left: 0;
        bottom: 7%;
        width: 105px;
        height: 105px;
    }


        .hero-floating-card strong {
            font-size: 25px;
        }


    .hero-side-word {
        right: -16px;
    }


    /* ---------------------------------------------------------
       MARQUEE
       --------------------------------------------------------- */

    .marquee-section {
        padding: 19px 0;
    }


    .marquee-content {
        gap: 22px;
        padding-right: 22px;
    }


    /* ---------------------------------------------------------
       GENERIC HEADINGS
       --------------------------------------------------------- */

    .section-heading h2,
    .studio-copy h2,
    .comparison-copy h2,
    .faq-intro h2,
    .visit-copy h2,
    .booking-copy h2 {
        font-size: clamp( 45px, 14vw, 65px );
    }


    /* ---------------------------------------------------------
       SERVICES
       --------------------------------------------------------- */

    .services-section,
    .work-section,
    .studio-section,
    .process-section,
    .comparison-section,
    .reviews-section,
    .faq-section,
    .booking-section {
        padding: 90px 0;
    }


    .service-row {
        grid-template-columns: 30px 1fr auto;
        gap: 12px;
    }


    .service-name h3 {
        font-size: 24px;
    }


    .service-name p {
        font-size: 12px;
        line-height: 1.5;
    }


    .service-price {
        font-size: 22px;
    }


    .services-note {
        flex-direction: column;
        gap: 5px;
    }


    /* ---------------------------------------------------------
       GALLERY
       --------------------------------------------------------- */

    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }


    .gallery-item,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item-wide,
    .gallery-item-tall {
        width: 100%;
        height: 390px;
    }


        .gallery-item:nth-child(even) {
            height: 290px;
        }


    .gallery-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }


    /* ---------------------------------------------------------
       STUDIO
       --------------------------------------------------------- */

    .studio-grid {
        gap: 55px;
    }


    .studio-visual {
        min-height: 520px;
    }


    .studio-image-main {
        width: 82%;
        height: 78%;
    }


    .studio-image-small {
        width: 50%;
        height: 38%;
        border-width: 8px;
    }


    .studio-stats {
        gap: 8px;
    }


        .studio-stats strong {
            font-size: 28px;
        }


        .studio-stats span {
            font-size: 7px;
        }


    /* ---------------------------------------------------------
       PROCESS
       --------------------------------------------------------- */

    .process-grid {
        grid-template-columns: 1fr;
    }


    .process-card {
        min-height: auto;
        padding: 28px 24px;
    }


        .process-card > span {
            margin-bottom: 55px;
        }


    /* ---------------------------------------------------------
       COMPARISON
       --------------------------------------------------------- */

    .comparison {
        height: 480px;
    }


    /* ---------------------------------------------------------
       REVIEWS
       --------------------------------------------------------- */

    .reviews-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 40px;
    }


        .reviews-heading h2 {
            font-size: clamp( 45px, 14vw, 65px );
        }


    .review-slider {
        min-height: 400px;
    }


    .review-card {
        padding: 42px 0;
    }


        .review-card blockquote {
            font-size: 31px;
        }


    /* ---------------------------------------------------------
       FAQ
       --------------------------------------------------------- */

    .faq-grid {
        gap: 40px;
    }


    .faq-question {
        padding: 24px 0;
        font-size: 21px;
    }


    .faq-answer > div {
        padding: 0 0 25px;
    }


    /* ---------------------------------------------------------
       VISIT
       --------------------------------------------------------- */

    .visit-section {
        padding-bottom: 90px;
    }


    .visit-copy {
        padding: 45px 25px;
    }


    .visit-details {
        grid-template-columns: 1fr;
    }


        .visit-details > div,
        .visit-details > div:nth-child(even),
        .visit-details > div:nth-last-child(-n + 2) {
            min-height: 180px;
            padding: 35px 25px;
            border-right: 0;
            border-bottom: 1px solid rgba(23, 22, 20, 0.17);
        }


            .visit-details > div:last-child {
                border-bottom: 0;
            }


    /* ---------------------------------------------------------
       BOOKING FORM
       --------------------------------------------------------- */

    .booking-form {
        grid-template-columns: 1fr;
        padding: 32px 22px;
    }


    .form-field-full {
        grid-column: auto;
    }


    .form-submit {
        align-items: flex-start;
        flex-direction: column;
    }


    /* ---------------------------------------------------------
       FINAL STATEMENT
       --------------------------------------------------------- */

    .final-statement {
        padding: 95px 0;
    }


        .final-statement h2 {
            font-size: clamp( 65px, 21vw, 95px );
        }


    .final-arrow {
        width: 65px;
        height: 65px;
        margin-top: 40px;
    }


    /* ---------------------------------------------------------
       FOOTER
       --------------------------------------------------------- */

    .site-footer {
        padding-top: 55px;
    }


    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 50px;
    }


    .footer-nav {
        grid-column: auto;
        justify-content: flex-start;
    }


    .footer-social {
        justify-self: start;
        text-align: left;
    }


    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }


        .footer-bottom div {
            align-items: flex-start;
            flex-direction: column;
            gap: 8px;
        }


    /* ---------------------------------------------------------
       LIGHTBOX
       --------------------------------------------------------- */

    .lightbox {
        padding: 75px 18px 30px;
    }


    .lightbox-close {
        top: 16px;
        right: 16px;
    }


    /* ---------------------------------------------------------
       DEMO MODAL
       --------------------------------------------------------- */

    .demo-modal-card {
        padding: 48px 27px 32px;
    }


        .demo-modal-card h2 {
            font-size: 35px;
        }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .hero-title {
        font-size: 56px;
    }


    .hero-image-wrap {
        width: 92%;
        height: 440px;
    }


    .hero-floating-card {
        width: 95px;
        height: 95px;
    }


    .service-row {
        grid-template-columns: 25px 1fr;
    }


    .service-price {
        grid-column: 2;
        justify-self: start;
        margin-top: 6px;
    }
}


/* =========================================================
   REDUCED MOTION

   Important accessibility fallback.

   Visitors who tell their device they prefer reduced motion
   should not receive large entrance/parallax animations.
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }


    [data-reveal],
    [data-hero-line],
    [data-hero-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }


    .hero-image,
    .studio-image-main img,
    .studio-image-small img {
        transform: none !important;
    }
}


/* =========================================================
   PREMIUM INTERACTION POLISH
   Added for the final portfolio concept.
   ========================================================= */

/* FAQ: keep keyboard focus accessible without drawing a giant
   rectangle around the entire open question. */
.faq-question:focus-visible {
    outline: none;
}

    .faq-question:focus-visible .faq-icon {
        outline: 2px solid var(--rose-dark);
        outline-offset: 4px;
    }

.faq-question > span:first-child {
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.faq-question:hover > span:first-child,
.faq-item.is-open .faq-question > span:first-child {
    color: var(--rose-dark);
    transform: translateX(5px);
}

.faq-answer > div {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}

.faq-item.is-open .faq-answer > div {
    opacity: 1;
    transform: translateY(0);
}

/* Page-load curtain. JS creates the element automatically. */
.page-curtain {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: var(--text-light);
    pointer-events: none;
    transform: translateY(0);
    transition: transform 0.95s var(--ease-out);
}

    .page-curtain::before {
        content: "COMPANYNAME / NAIL STUDIO";
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.24em;
    }

    .page-curtain.is-gone {
        transform: translateY(-101%);
    }

/* Dark gallery spotlight follows the pointer. */
.work-section {
    --spot-x: 50%;
    --spot-y: 50%;
    position: relative;
    isolation: isolate;
}

    .work-section::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        opacity: 0;
        background: radial-gradient( 650px circle at var(--spot-x) var(--spot-y), rgba(185, 137, 125, 0.16), transparent 62% );
        transition: opacity 0.35s ease;
    }

    .work-section.has-pointer::before {
        opacity: 1;
    }

/* Gallery cards receive JS-controlled 3D tilt values. */
.gallery-item {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --lift: 0px;
    transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
    transform-style: preserve-3d;
    transition: transform 0.28s var(--ease), box-shadow 0.28s ease;
    will-change: transform;
}

    .gallery-item:hover {
        --lift: -6px;
        box-shadow: 0 28px 65px rgba(0, 0, 0, 0.26);
    }

    .gallery-item img {
        transition: transform 0.65s var(--ease-out), filter 0.4s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.045);
    }

.gallery-open {
    transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease;
}

.gallery-item:hover .gallery-open {
    transform: rotate(90deg) scale(1.08);
    background: var(--rose-light);
}

/* Magnetic elements use CSS variables written by JS so their
   normal transforms are not permanently overwritten. */
.magnetic-button,
.header-cta,
.button {
    --magnetic-x: 0px;
    --magnetic-y: 0px;
}

.magnetic-button,
.header-cta {
    transform: translate(var(--magnetic-x), var(--magnetic-y));
}

/* Animated stat counters get a tiny entrance lift. */
[data-counter] {
    display: inline-block;
    transform: translateY(8px);
    opacity: 0.45;
    transition: opacity 0.45s ease, transform 0.55s var(--ease-out);
}

    [data-counter].counter-complete {
        opacity: 1;
        transform: translateY(0);
    }

/* Scroll-reactive marquee. JS adjusts duration and direction. */
.marquee-track {
    --marquee-duration: 28s;
    animation-duration: var(--marquee-duration) !important;
    will-change: transform;
}

.marquee-section.is-reversing .marquee-track {
    animation-direction: reverse;
}

/* Premium pointer follower. Hidden on touch devices. */
.pointer-orb {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 15000;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(134, 95, 86, 0.55);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, opacity 0.2s ease;
    backdrop-filter: invert(0);
}

    .pointer-orb.is-visible {
        opacity: 1;
    }

    .pointer-orb.is-interactive {
        width: 42px;
        height: 42px;
        background: rgba(185, 137, 125, 0.10);
        border-color: rgba(185, 137, 125, 0.8);
    }

@media (hover: none), (pointer: coarse) {
    .pointer-orb {
        display: none !important;
    }

    .gallery-item {
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-curtain {
        display: none;
    }

    .gallery-item,
    .gallery-item img,
    .faq-answer > div,
    [data-counter] {
        transition: none !important;
        transform: none !important;
    }
}


/* =========================================================
   FINAL VISUAL POLISH — SEPTEMBER 2026
   Darker warm palette, restrained motion, stronger contrast
   ========================================================= */

/* ---------------------------------------------------------
   GLOBAL SURFACES
   --------------------------------------------------------- */

body,
.hero,
.services-section,
.studio-section,
.faq-section {
    background-color: var(--ivory);
}

/* No bright white cards/surfaces. */
input,
select,
textarea {
    background-color: rgba(23, 22, 20, 0.045);
}

/* ---------------------------------------------------------
   HERO — KEEP THE IMAGE EDITORIAL, NOT ENORMOUS
   --------------------------------------------------------- */

.hero {
    min-height: auto;
    padding-bottom: 72px;
}

.hero-grid {
    min-height: 760px;
}

.hero-visual {
    min-height: 560px;
}

.hero-image-wrap {
    max-height: 650px;
}

/* ---------------------------------------------------------
   VISIT — DARKER + MUCH EASIER TO READ
   --------------------------------------------------------- */

.visit-section {
    background: linear-gradient( 135deg, #a9786f 0%, #b9877d 48%, #9f6d65 100% );
    color: #171614;
}

    .visit-section .section-number,
    .visit-section .visit-label {
        color: #4f342f;
    }

    .visit-section .visit-copy p,
    .visit-section .visit-grid p,
    .visit-section .visit-grid a {
        color: #2e2825;
    }

    .visit-section .visit-grid > *,
    .visit-section .visit-card,
    .visit-section .visit-detail {
        border-color: rgba(23, 22, 20, 0.22);
    }

    .visit-section .text-link {
        color: #171614;
    }

/* ---------------------------------------------------------
   SERVICE IMAGE FOLLOWER
   The HTML already contains this element. JS will position it.
   --------------------------------------------------------- */

.service-preview {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 850;
    width: 250px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-50%, -50%, 0) scale(0.92);
    transition: opacity 180ms ease, visibility 180ms ease, transform 260ms var(--ease-out);
    box-shadow: 0 24px 70px rgba(23, 22, 20, 0.24);
}

    .service-preview.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translate3d(-50%, -50%, 0) scale(1);
    }

.service-preview-image-wrap {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--stone);
}

.service-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
}

.service-preview-meta {
    display: grid;
    gap: 4px;
    padding: 13px 15px 15px;
    background: var(--ink);
    color: var(--text-light);
}

.service-preview-label {
    color: var(--rose-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-preview-meta strong {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
}

/* ---------------------------------------------------------
   GALLERY
   --------------------------------------------------------- */

.gallery-item img {
    transition: transform 650ms var(--ease-out), filter 450ms ease;
}

.gallery-item:hover img {
    transform: scale(1.035);
}

/* ---------------------------------------------------------
   ACCESSIBILITY / TOUCH DEVICES
   --------------------------------------------------------- */

@media (hover: none), (pointer: coarse) {
    .service-preview {
        display: none !important;
    }
}

@media (max-width: 1050px) {
    .hero-grid {
        min-height: auto;
    }

    .hero-image-wrap {
        height: clamp(430px, 68vw, 610px);
        max-height: none;
    }
}

@media (max-width: 700px) {
    .hero {
        padding-bottom: 48px;
    }

    .hero-image-wrap {
        height: min(118vw, 560px);
    }

    .visit-section {
        background: #aa7970;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-preview {
        transition: none;
    }

    .gallery-item img {
        transition: none;
    }
}

/* =========================================================
   FINAL CONTRAST + MOTION PASS — SEPTEMBER 15, 2026

   User-requested refinements:
   - Remove the remaining near-white / eye-straining surfaces.
   - Increase readability in Visit, Process, and Final Statement.
   - Keep the luxury editorial rose / taupe direction.
   - Keep the marquee calm and readable at one constant speed.
   - The JavaScript VIEW cursor has been removed separately.
   ========================================================= */

:root {
    /* Darker warm neutrals — intentionally NOT white. */
    --ivory: #c9b9aa;
    --ivory-soft: #bdab9d;
    --paper: #c1ad9d;
    --stone: #9e8b7d;
    /* Deeper rose surfaces with stronger text contrast. */
    --rose: #99665d;
    --rose-light: #a9766c;
    --rose-dark: #56362f;
    /* Dark readable copy. */
    --text: #151311;
    --muted: #4c433e;
    --line: rgba(21, 19, 17, 0.24);
}

/* ---------------------------------------------------------
   MAIN LIGHT SURFACES
   Warm taupe instead of bright cream / white.
   --------------------------------------------------------- */

body,
.hero,
.services-section,
.studio-section,
.faq-section {
    background: #c9b9aa;
    color: #151311;
}

.process-section {
    background: #bda99a;
    color: #151311;
}

/* Make supporting copy easier to read on the warmer surface. */
.hero-description,
.section-intro,
.studio-copy > p,
.process-card p,
.faq-answer p {
    color: #443c37;
}

/* ---------------------------------------------------------
   PROCESS / YOUR APPOINTMENT
   Stronger contrast without changing the layout.
   --------------------------------------------------------- */

.process-grid {
    border-color: rgba(21, 19, 17, 0.28);
}

.process-card {
    border-color: rgba(21, 19, 17, 0.28);
}

    .process-card > span,
    .process-section .section-number {
        color: #633f37;
    }

    .process-card h3 {
        color: #151311;
    }

    .process-card p {
        color: #433a35;
    }

    .process-card:hover {
        background: #171614;
        color: #f2e9df;
    }

        .process-card:hover h3,
        .process-card:hover p {
            color: #f2e9df;
        }

        .process-card:hover > span {
            color: #d6a79c;
        }

/* ---------------------------------------------------------
   VISIT
   Deeper clay / dusty rose with high-contrast typography.
   --------------------------------------------------------- */

.visit-section {
    background: linear-gradient( 135deg, #96665e 0%, #a87369 48%, #8c5c55 100% );
    color: #151311;
}

.visit-card {
    background: transparent;
}

.visit-section h2,
.visit-section .visit-details,
.visit-section .visit-details strong,
.visit-section .visit-details a {
    color: #151311;
}

    .visit-section h2 em {
        color: #54342f;
    }

.visit-section .section-number,
.visit-section .visit-label {
    color: #432b27;
}

.visit-copy > p:not(.section-number),
.visit-section .visit-copy p,
.visit-section .visit-details p,
.visit-section .visit-grid p,
.visit-section .visit-grid a {
    color: #2b2421;
}

.visit-details,
.visit-details > div,
.visit-section .visit-grid > *,
.visit-section .visit-card,
.visit-section .visit-detail {
    border-color: rgba(21, 19, 17, 0.30);
}

.visit-section .text-link {
    color: #151311;
    border-color: #151311;
}

/* ---------------------------------------------------------
   FINAL STATEMENT
   Darker rose and much stronger italic contrast.
   --------------------------------------------------------- */

.final-statement {
    background: linear-gradient( 135deg, #a56f65 0%, #b17c70 50%, #986158 100% );
    color: #151311;
}

    .final-statement p {
        color: #332522;
    }

    .final-statement h2 {
        color: #151311;
    }

        .final-statement h2 em {
            color: #5a3731;
        }

.final-arrow {
    border-color: rgba(21, 19, 17, 0.55);
    color: #151311;
}

    .final-arrow:hover {
        background: #171614;
        color: #f2e9df;
    }

/* ---------------------------------------------------------
   MARQUEE
   It still has a slow luxury crawl, but scrolling the page
   no longer changes its speed or direction. JavaScript now
   keeps the same behavior and pauses it on hover.
   --------------------------------------------------------- */

.marquee-track {
    --marquee-duration: 44s !important;
    animation-duration: 44s !important;
    animation-direction: normal !important;
}

.marquee-section.is-reversing .marquee-track {
    animation-direction: normal !important;
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

/* ---------------------------------------------------------
   GALLERY
   No giant VIEW cursor. Keep the image zoom + the existing
   small '+' controls because those communicate clickability.
   --------------------------------------------------------- */

.gallery-view-cursor {
    display: none !important;
}

/* ---------------------------------------------------------
   FORM CONTROLS
   Keep them warm instead of bright white.
   --------------------------------------------------------- */

input,
select,
textarea {
    background: rgba(21, 19, 17, 0.075);
    color: #151311;
    border-color: rgba(21, 19, 17, 0.28);
}

    input::placeholder,
    textarea::placeholder {
        color: #62554e;
    }

/* ---------------------------------------------------------
   MOBILE
   Preserve the same darker palette on smaller screens.
   --------------------------------------------------------- */

@media (max-width: 700px) {
    body,
    .hero,
    .services-section,
    .studio-section,
    .faq-section {
        background: #c9b9aa;
    }

    .process-section {
        background: #bda99a;
    }

    .visit-section {
        background: #96665e;
    }

    .final-statement {
        background: #a56f65;
    }
}

/* =========================================================
   HIGH-CONTRAST LUXURY PALETTE — FINAL COLOR RESET
   Deep espresso + muted terracotta + warm parchment.
   Layout, sizing, and JavaScript hooks are unchanged.
   ========================================================= */

:root {
    --ivory: #c8b8a6;
    --ivory-soft: #b9a590;
    --paper: #d2c4b4;
    --stone: #9b8878;
    --ink: #171412;
    --ink-soft: #2d2723;
    --muted: #514740;
    --rose: #8e5f55;
    --rose-light: #b88478;
    --rose-dark: #57352f;
    --line: rgba(23, 20, 18, 0.24);
    --line-dark: rgba(23, 20, 18, 0.42);
    --text-light: #f1e9df;
    --text-light-muted: #cfc0b2;
}

/* Main warm sections: clearly darker than white, still airy. */
body,
.hero,
.services-section,
.process-section,
.studio-section,
.faq-section {
    background: #c8b8a6;
    color: #171412;
}

/* Secondary light sections get a slightly deeper parchment tone. */
.process-section,
.faq-section {
    background: #bba996;
}

/* Big italic accent words need to READ, not disappear. */
.hero-title em,
.section-title em,
.process-title em,
.comparison-title em,
.faq-title em,
.visit-title em,
.studio-title em,
.booking-title em {
    color: #57352f !important;
    opacity: 1 !important;
}

/* Supporting copy gets real contrast. */
.hero-copy,
.section-copy,
.process-copy,
.comparison-copy,
.faq-copy,
.visit-copy p,
.visit-section p,
.visit-section a,
.process-section p,
.faq-section p {
    color: #302925 !important;
}

/* The Difference + Visit:
   deep muted terracotta instead of dusty pink-on-pink. */
.comparison-section,
.visit-section {
    background: #8f6259 !important;
    color: #f1e9df;
}

    .comparison-section .section-number,
    .comparison-section .comparison-title,
    .comparison-section .comparison-title span,
    .comparison-section .comparison-copy,
    .comparison-section p,
    .comparison-section .comparison-instruction,
    .visit-section .section-number,
    .visit-section .visit-title,
    .visit-section .visit-copy p,
    .visit-section .visit-grid,
    .visit-section .visit-grid p,
    .visit-section .visit-grid a,
    .visit-section .visit-label,
    .visit-section .text-link {
        color: #f1e9df !important;
    }

        .comparison-section .comparison-title em,
        .visit-section .visit-title em {
            color: #2d1d1a !important;
        }

        /* Make the fine architecture visible on terracotta. */
        .comparison-section,
        .visit-section,
        .visit-section .visit-grid > *,
        .visit-section .visit-card,
        .visit-section .visit-detail {
            border-color: rgba(241, 233, 223, 0.28) !important;
        }

            /* Visit micro-labels: bright enough to scan immediately. */
            .visit-section .visit-label,
            .visit-section .section-number {
                color: #ead9cd !important;
            }

/* Keep dark sections dramatic and polished. */
.gallery-section,
.reviews-section,
.booking-section,
.site-footer {
    background: #171614;
    color: #f1e9df;
}

    .gallery-section .section-title,
    .gallery-section .section-copy,
    .gallery-section p,
    .reviews-section .section-title,
    .reviews-section p,
    .booking-section .section-title,
    .booking-section p,
    .site-footer,
    .site-footer a {
        color: #f1e9df;
    }

        .gallery-section .section-title em,
        .reviews-section .section-title em,
        .booking-section .section-title em {
            color: #c98e80 !important;
        }

    /* Form fields: warm dark glass rather than bright boxes. */
    .booking-section input,
    .booking-section select,
    .booking-section textarea {
        background: rgba(241, 233, 223, 0.06);
        color: #f1e9df;
        border-color: rgba(241, 233, 223, 0.28);
    }

        .booking-section input::placeholder,
        .booking-section textarea::placeholder {
            color: #b9aa9d;
        }

/* FAQ questions stay bold and legible. */
.faq-question,
.faq-question button,
.faq-answer {
    color: #171412;
}

/* Fine borders on parchment sections. */
.process-section *,
.faq-section * {
    border-color: rgba(23, 20, 18, 0.22);
}

/* Mobile keeps the same palette rather than reverting to older blush rules. */
@media (max-width: 700px) {
    body,
    .hero,
    .services-section,
    .process-section,
    .studio-section,
    .faq-section {
        background: #c8b8a6;
    }

    .process-section,
    .faq-section {
        background: #bba996;
    }

    .comparison-section,
    .visit-section {
        background: #8f6259 !important;
    }
}

/* =========================================================
   PECKSWEBSOLUTIONS — AFTER DARK
   COMPLETE MODERN LUXURY COLOR RE-SKIN
   ---------------------------------------------------------
   Carbon       #0C0D0D
   Graphite     #151716
   Deep Olive   #20241F
   Smoked Sage  #30382F
   Porcelain    #F1EFE9
   Silver Sage  #B8BDB3
   Champagne    #C8A96B
   Antique Gold #A8874F

   No pink. No purple. No beige-page look.
   ========================================================= */

:root {
    --bg: #0c0d0d !important;
    --surface: #151716 !important;
    --surface-light: #20241f !important;
    --surface-hover: #30382f !important;
    --ivory: #f1efe9 !important;
    --ivory-soft: #b8bdb3 !important;
    --paper: #151716 !important;
    --stone: #7f877c !important;
    --ink: #f1efe9 !important;
    --ink-soft: #d4d5cf !important;
    --muted: #9ca298 !important;
    --rose: #c8a96b !important;
    --rose-light: #dbc58f !important;
    --rose-dark: #a8874f !important;
    --accent: #c8a96b !important;
    --accent-soft: #dbc58f !important;
    --line: rgba(241,239,233,.13) !important;
    --line-strong: rgba(241,239,233,.26) !important;
    --text: #f1efe9 !important;
    --text-light: #f1efe9 !important;
    --text-light-muted: #b8bdb3 !important;
}

html,
body {
    background: #0c0d0d !important;
    color: #f1efe9 !important;
}

/* HEADER */
.site-header,
.header,
nav,
.nav-wrapper {
    background: rgba(12,13,13,.94) !important;
    color: #f1efe9 !important;
}

    .site-header a,
    .header a,
    nav a,
    .brand,
    .logo {
        color: #f1efe9 !important;
    }

        .site-header a:hover,
        .header a:hover,
        nav a:hover,
        .nav-current {
            color: #c8a96b !important;
        }

/* BUTTONS */
.header-cta,
.btn-primary,
.booking-submit {
    background: #c8a96b !important;
    color: #0c0d0d !important;
    border-color: #c8a96b !important;
}

    .header-cta:hover,
    .btn-primary:hover,
    .booking-submit:hover {
        background: #dbc58f !important;
        color: #0c0d0d !important;
        border-color: #dbc58f !important;
    }

/* HERO */
.hero {
    background: radial-gradient(circle at 78% 25%, rgba(200,169,107,.09), transparent 32%), radial-gradient(circle at 12% 82%, rgba(78,91,73,.12), transparent 38%), #0c0d0d !important;
    color: #f1efe9 !important;
}

    .hero-title,
    .hero h1,
    .hero .display-title {
        color: #f1efe9 !important;
    }

        .hero-title em,
        .hero h1 em,
        .hero .accent {
            color: #c8a96b !important;
            opacity: 1 !important;
        }

    .hero-copy,
    .hero p {
        color: #b8bdb3 !important;
    }

    .hero .eyebrow,
    .hero .kicker {
        color: #c8a96b !important;
    }

/* MARQUEE */
.marquee-section,
.marquee-wrap,
.marquee {
    background: #c8a96b !important;
    color: #0c0d0d !important;
}

    .marquee-section *,
    .marquee * {
        color: #0c0d0d !important;
    }

    .marquee em,
    .marquee .accent {
        color: #3d3526 !important;
    }

/* SERVICES */
.services-section,
.services {
    background: #151716 !important;
    color: #f1efe9 !important;
}

    .services-section .section-number,
    .services-section .eyebrow {
        color: #c8a96b !important;
    }

    .services-section h2,
    .services-section h3,
    .services-section .section-title,
    .services-section a {
        color: #f1efe9 !important;
    }

        .services-section h2 em,
        .services-section h3 em,
        .services-section .section-title em {
            color: #c8a96b !important;
        }

    .services-section p {
        color: #b8bdb3 !important;
    }

    .services-section *,
    .service-item,
    .service-row,
    .service-card {
        border-color: rgba(241,239,233,.13) !important;
    }

/* RECENT WORK */
.gallery-section,
.work-section,
.recent-work {
    background: #0c0d0d !important;
    color: #f1efe9 !important;
}

    .gallery-section .section-number,
    .work-section .section-number {
        color: #c8a96b !important;
    }

    .gallery-section h2,
    .gallery-section .section-title,
    .work-section h2 {
        color: #f1efe9 !important;
    }

        .gallery-section h2 em,
        .gallery-section .section-title em,
        .work-section h2 em {
            color: #c8a96b !important;
        }

    .gallery-section p,
    .work-section p,
    .gallery-section .section-copy {
        color: #b8bdb3 !important;
    }

/* APPOINTMENT PROCESS */
.process-section,
.appointment-section {
    background: #20241f !important;
    color: #f1efe9 !important;
}

    .process-section .section-number,
    .appointment-section .section-number {
        color: #c8a96b !important;
    }

    .process-section h2,
    .process-section h3,
    .process-section .section-title,
    .process-section .process-title,
    .appointment-section h2,
    .appointment-section h3 {
        color: #f1efe9 !important;
    }

        .process-section h2 em,
        .process-section .section-title em,
        .process-section .process-title em,
        .appointment-section h2 em {
            color: #dbc58f !important;
        }

    .process-section p,
    .appointment-section p {
        color: #c6c9c1 !important;
    }

    .process-section *,
    .appointment-section *,
    .process-card,
    .process-step {
        border-color: rgba(241,239,233,.14) !important;
    }

/* THE DIFFERENCE */
.comparison-section,
.difference-section {
    background: #30382f !important;
    color: #f1efe9 !important;
}

    .comparison-section .section-number,
    .difference-section .section-number {
        color: #dbc58f !important;
    }

    .comparison-section .comparison-title,
    .comparison-section .comparison-title span,
    .comparison-section h2,
    .difference-section h2 {
        color: #f1efe9 !important;
    }

        .comparison-section .comparison-title em,
        .comparison-section h2 em,
        .difference-section h2 em {
            color: #dbc58f !important;
        }

    .comparison-section .comparison-copy,
    .comparison-section p,
    .comparison-section .comparison-instruction,
    .difference-section p {
        color: #d5d7d0 !important;
    }

    .comparison-section *,
    .difference-section * {
        border-color: rgba(241,239,233,.18) !important;
    }

/* STUDIO */
.studio-section,
.about-section {
    background: #111312 !important;
    color: #f1efe9 !important;
}

    .studio-section .section-number,
    .about-section .section-number {
        color: #c8a96b !important;
    }

    .studio-section h2,
    .studio-section h3,
    .about-section h2,
    .about-section h3 {
        color: #f1efe9 !important;
    }

        .studio-section h2 em,
        .studio-section h3 em,
        .about-section h2 em {
            color: #c8a96b !important;
        }

    .studio-section p,
    .about-section p {
        color: #b8bdb3 !important;
    }

/* REVIEWS */
.reviews-section,
.testimonials-section {
    background: #1b1f1a !important;
    color: #f1efe9 !important;
}

    .reviews-section .section-number,
    .testimonials-section .section-number {
        color: #c8a96b !important;
    }

    .reviews-section h2,
    .reviews-section h3,
    .testimonials-section h2 {
        color: #f1efe9 !important;
    }

        .reviews-section h2 em,
        .testimonials-section h2 em {
            color: #dbc58f !important;
        }

    .reviews-section p,
    .testimonials-section p {
        color: #c6c9c1 !important;
    }

    .reviews-section *,
    .testimonials-section * {
        border-color: rgba(241,239,233,.14) !important;
    }

/* FAQ */
.faq-section {
    background: #151716 !important;
    color: #f1efe9 !important;
}

    .faq-section .section-number {
        color: #c8a96b !important;
    }

    .faq-section .faq-title,
    .faq-section h2,
    .faq-question,
    .faq-question button {
        color: #f1efe9 !important;
    }

        .faq-section .faq-title em,
        .faq-section h2 em {
            color: #c8a96b !important;
        }

    .faq-answer,
    .faq-section p {
        color: #b8bdb3 !important;
    }

    .faq-item,
    .faq-section * {
        border-color: rgba(241,239,233,.14) !important;
    }

/* VISIT */
.visit-section {
    background: #252b24 !important;
    color: #f1efe9 !important;
}

    .visit-section .section-number,
    .visit-section .visit-label {
        color: #dbc58f !important;
    }

    .visit-section .visit-title,
    .visit-section .visit-title span,
    .visit-section h2,
    .visit-section h3,
    .visit-section p,
    .visit-section a,
    .visit-section .visit-grid,
    .visit-section .visit-grid p,
    .visit-section .visit-grid a,
    .visit-section .text-link {
        color: #f1efe9 !important;
    }

        .visit-section .visit-title em,
        .visit-section h2 em {
            color: #c8a96b !important;
        }

    .visit-section .visit-copy p {
        color: #c6c9c1 !important;
    }

    .visit-section .text-link {
        border-color: #c8a96b !important;
    }

    .visit-section *,
    .visit-section .visit-grid > *,
    .visit-section .visit-card,
    .visit-section .visit-detail {
        border-color: rgba(241,239,233,.17) !important;
    }

/* BOOKING */
.booking-section,
.contact-section {
    background: #0c0d0d !important;
    color: #f1efe9 !important;
}

    .booking-section h2,
    .booking-section h3,
    .booking-section p,
    .booking-section label,
    .contact-section h2,
    .contact-section h3,
    .contact-section p,
    .contact-section label {
        color: #f1efe9 !important;
    }

        .booking-section h2 em,
        .contact-section h2 em {
            color: #c8a96b !important;
        }

    .booking-section input,
    .booking-section select,
    .booking-section textarea,
    .contact-section input,
    .contact-section select,
    .contact-section textarea {
        background: #151716 !important;
        color: #f1efe9 !important;
        border-color: rgba(200,169,107,.32) !important;
    }

        .booking-section input:focus,
        .booking-section select:focus,
        .booking-section textarea:focus,
        .contact-section input:focus,
        .contact-section select:focus,
        .contact-section textarea:focus {
            border-color: #c8a96b !important;
            outline-color: #c8a96b !important;
        }

        .booking-section input::placeholder,
        .booking-section textarea::placeholder,
        .contact-section input::placeholder,
        .contact-section textarea::placeholder {
            color: #858b82 !important;
        }

/* FOOTER */
.site-footer,
footer {
    background: #070808 !important;
    color: #aeb3aa !important;
    border-color: rgba(241,239,233,.10) !important;
}

    .site-footer a,
    footer a {
        color: #f1efe9 !important;
    }

        .site-footer a:hover,
        footer a:hover {
            color: #c8a96b !important;
        }

/* GLOBAL ACCENTS */
.section-number,
.eyebrow,
.kicker {
    color: #c8a96b !important;
}

.text-link {
    text-decoration-color: #c8a96b !important;
}

::selection {
    background: #c8a96b;
    color: #0c0d0d;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0c0d0d;
}

::-webkit-scrollbar-thumb {
    background: #3b4039;
    border: 2px solid #0c0d0d;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #c8a96b;
    }

/* MOBILE */
@media (max-width: 700px) {
    html,
    body,
    .hero {
        background: #0c0d0d !important;
    }

    .services-section,
    .faq-section {
        background: #151716 !important;
    }

    .gallery-section,
    .work-section,
    .booking-section,
    .contact-section,
    .site-footer {
        background: #0c0d0d !important;
    }

    .process-section,
    .appointment-section {
        background: #20241f !important;
    }

    .comparison-section,
    .difference-section {
        background: #30382f !important;
    }

    .studio-section,
    .about-section {
        background: #111312 !important;
    }

    .reviews-section,
    .testimonials-section {
        background: #1b1f1a !important;
    }

    .visit-section {
        background: #252b24 !important;
    }
}

/* =========================================================
   PECKSWEBSOLUTIONS — AFTER DARK / FINAL POLISH
   ---------------------------------------------------------
   Removes the remaining green cast and improves contrast
   anywhere light panels/buttons were swallowing text.
   ========================================================= */

/* NEW SUPPORTING PALETTE
   Carbon       #0C0D0D
   Graphite     #151515
   Espresso     #211C19
   Cocoa        #2C2420
   Porcelain    #F1EFE9
   Warm Silver  #C8C3BA
   Champagne    #C8A96B
   Antique Gold #A8874F
*/

:root {
    --surface: #151515 !important;
    --surface-light: #211c19 !important;
    --surface-hover: #2c2420 !important;
    --ivory-soft: #c8c3ba !important;
    --stone: #8f8980 !important;
    --muted: #aaa49b !important;
}

/* Remove the olive / green cast from all major sections. */
.process-section,
.appointment-section {
    background: #211c19 !important;
}

.comparison-section,
.difference-section {
    background: #2c2420 !important;
}

.reviews-section,
.testimonials-section {
    background: #171514 !important;
}

.visit-section {
    background: #211c19 !important;
}

    /* Keep body copy clearly readable on every dark section. */
    .process-section p,
    .appointment-section p,
    .comparison-section p,
    .difference-section p,
    .reviews-section p,
    .testimonials-section p,
    .visit-section p,
    .visit-section a {
        color: #d8d3ca !important;
    }

    /* Gold remains the single accent color. */
    .process-section .section-number,
    .appointment-section .section-number,
    .comparison-section .section-number,
    .difference-section .section-number,
    .reviews-section .section-number,
    .testimonials-section .section-number,
    .visit-section .section-number,
    .visit-section .visit-label {
        color: #c8a96b !important;
    }

/* ---------------------------------------------------------
   HERO — fix light CTA / badge text disappearing
   --------------------------------------------------------- */
.hero .btn,
.hero .button,
.hero a[class*="btn"],
.hero a[class*="button"] {
    color: #0c0d0d !important;
}

.hero .btn-primary,
.hero .primary-button,
.hero a.btn-primary {
    background: #c8a96b !important;
    color: #0c0d0d !important;
    border-color: #c8a96b !important;
}

    .hero .btn-primary *,
    .hero .primary-button * {
        color: #0c0d0d !important;
    }

.hero-badge,
.hero .badge,
.hero .stamp,
.hero .seal {
    background: #c8a96b !important;
    color: #0c0d0d !important;
    border-color: #c8a96b !important;
}

    .hero-badge *,
    .hero .badge *,
    .hero .stamp *,
    .hero .seal * {
        color: #0c0d0d !important;
    }

/* ---------------------------------------------------------
   BOOKING FORM — remove the bright white panel
   and make every label/control/button legible.
   --------------------------------------------------------- */
.booking-form,
.booking-form-wrap,
.booking-form-wrapper,
.booking-panel,
.booking-card,
.contact-form,
.form-panel,
.form-card {
    background: #211c19 !important;
    color: #f1efe9 !important;
    border-color: rgba(200,169,107,.22) !important;
}

.booking-section form,
.contact-section form {
    background: #211c19 !important;
    color: #f1efe9 !important;
}

.booking-section label,
.contact-section label,
.booking-section .field-label,
.contact-section .field-label,
.booking-section legend,
.contact-section legend {
    color: #d8d3ca !important;
}

.booking-section input,
.booking-section select,
.booking-section textarea,
.contact-section input,
.contact-section select,
.contact-section textarea {
    background: #0f1010 !important;
    color: #f1efe9 !important;
    border: 1px solid rgba(200,169,107,.30) !important;
    caret-color: #c8a96b !important;
}

    .booking-section input::placeholder,
    .booking-section textarea::placeholder,
    .contact-section input::placeholder,
    .contact-section textarea::placeholder {
        color: #8f938c !important;
        opacity: 1 !important;
    }

    .booking-section select option,
    .contact-section select option {
        background: #151515 !important;
        color: #f1efe9 !important;
    }

    /* Submit button — no more blank white rectangle. */
    .booking-section button[type="submit"],
    .booking-section input[type="submit"],
    .contact-section button[type="submit"],
    .contact-section input[type="submit"],
    .booking-submit {
        background: #c8a96b !important;
        color: #0c0d0d !important;
        border: 1px solid #c8a96b !important;
        font-weight: 700 !important;
    }

        .booking-section button[type="submit"] *,
        .contact-section button[type="submit"] * {
            color: #0c0d0d !important;
        }

        .booking-section button[type="submit"]:hover,
        .contact-section button[type="submit"]:hover,
        .booking-submit:hover {
            background: #dbc58f !important;
            color: #0c0d0d !important;
            border-color: #dbc58f !important;
        }

/* Form helper/privacy copy was nearly invisible. */
.booking-section .form-note,
.booking-section .form-disclaimer,
.booking-section .privacy-note,
.booking-section small,
.contact-section .form-note,
.contact-section .form-disclaimer,
.contact-section .privacy-note,
.contact-section small {
    color: #aaa49b !important;
}

    .booking-section .form-note a,
    .booking-section .form-disclaimer a,
    .booking-section .privacy-note a,
    .booking-section small a,
    .contact-section .form-note a,
    .contact-section .form-disclaimer a,
    .contact-section .privacy-note a,
    .contact-section small a {
        color: #dbc58f !important;
        text-decoration-color: #dbc58f !important;
    }

/* ---------------------------------------------------------
   IMAGE/GALLERY OVERLAYS — keep labels readable regardless
   of how bright the photograph underneath is.
   --------------------------------------------------------- */
.gallery-card::after,
.work-card::after,
.gallery-item::after,
.work-item::after {
    background: linear-gradient( to bottom, rgba(12,13,13,.04) 35%, rgba(12,13,13,.72) 100% ) !important;
    pointer-events: none;
}

.gallery-card .label,
.gallery-card .caption,
.gallery-item .label,
.gallery-item .caption,
.work-card .label,
.work-card .caption,
.work-item .label,
.work-item .caption {
    color: #f1efe9 !important;
    text-shadow: 0 2px 14px rgba(0,0,0,.72) !important;
}

/* Gallery +/- controls stay crisp over photographs. */
.gallery-card button,
.gallery-item button,
.work-card button,
.work-item button,
.gallery-plus,
.work-plus {
    background: rgba(12,13,13,.88) !important;
    color: #f1efe9 !important;
    border-color: rgba(241,239,233,.24) !important;
}

    .gallery-card button:hover,
    .gallery-item button:hover,
    .work-card button:hover,
    .work-item button:hover,
    .gallery-plus:hover,
    .work-plus:hover {
        background: #c8a96b !important;
        color: #0c0d0d !important;
    }

/* Comparison labels stay visible over either image. */
.comparison-section .before-label,
.comparison-section .after-label,
.comparison-section [class*="before"][class*="label"],
.comparison-section [class*="after"][class*="label"] {
    background: rgba(12,13,13,.88) !important;
    color: #f1efe9 !important;
}

/* Mobile uses the same brown/graphite family — no green. */
@media (max-width: 700px) {
    .process-section,
    .appointment-section,
    .visit-section {
        background: #211c19 !important;
    }

    .comparison-section,
    .difference-section {
        background: #2c2420 !important;
    }

    .reviews-section,
    .testimonials-section {
        background: #171514 !important;
    }
}
