.store-inner-page {
    color: var(--text-dark);
    overflow: hidden;
}

.store-inner-page .page-hero {
    position: relative;
    isolation: isolate;
    padding: clamp(72px, 8vw, 118px) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 22%, rgba(201, 150, 62, 0.24), transparent 25%),
        radial-gradient(circle at 12% 80%, rgba(139, 18, 49, 0.08), transparent 30%),
        radial-gradient(rgba(139, 18, 49, .07) 1.4px, transparent 1.4px),
        linear-gradient(120deg, #fffdf8 0%, #fff5e4 100%);
    background-size: auto, auto, 25px 25px, auto;
    background-position: 0 0, 0 0, 0 0, 0 0;
    border-bottom: 1px solid rgba(201, 150, 62, 0.2);
}

.store-inner-page .page-hero::before,
.store-inner-page .page-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(201, 150, 62, 0.2);
    border-radius: 50%;
}

.store-inner-page .page-hero::before {
    width: 420px;
    height: 420px;
    right: -135px;
    top: -185px;
}

.store-inner-page .page-hero::after {
    width: 270px;
    height: 270px;
    right: 50px;
    top: -100px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
    align-items: center;
    gap: clamp(38px, 8vw, 100px);
}

.page-hero-copy {
    max-width: 760px;
}

.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.page-eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: var(--gold);
}

.page-hero h1 {
    max-width: 820px;
    margin: 0 0 22px;
    color: var(--text-dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5.5vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.page-hero h1 em {
    color: var(--maroon);
    font-style: normal;
}

.page-lead {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(16px, 1.55vw, 19px);
    line-height: 1.8;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.page-action {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.page-action:hover {
    transform: translateY(-2px);
}

.page-action-primary {
    background: var(--maroon);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(139, 18, 49, 0.2);
}

.page-action-primary:hover {
    background: var(--maroon-dark);
}

.page-action-outline {
    border-color: rgba(139, 18, 49, 0.3);
    background: rgba(255, 255, 255, 0.62);
    color: var(--maroon);
}

.page-action-outline:hover {
    border-color: var(--gold);
    background: var(--white);
}

.page-hero-note {
    position: relative;
    padding: 32px;
    border: 1px solid rgba(201, 150, 62, 0.35);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(10px);
}

.page-hero-note::before {
    content: "✦";
    position: absolute;
    right: 24px;
    top: 18px;
    color: var(--gold);
    font-size: 22px;
}

.page-hero-note-mark {
    display: block;
    margin-bottom: 8px;
    color: var(--maroon);
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.page-hero-note strong {
    display: block;
    color: var(--text-dark);
    font-family: "Playfair Display", serif;
    font-size: 21px;
}

.page-hero-note p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

/* Reusable hero image collage + overlapping note card, used on pages
   whose hero has an otherwise-empty right column (services, gallery). */
.page-hero-visual {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 300px;
}

.page-hero-visual-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(201, 150, 62, .3);
    border-radius: 26px;
    background: linear-gradient(160deg, #fff3dd, #fce7c8);
    box-shadow: var(--shadow);
}

.page-hero-visual-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.page-hero-visual:hover .page-hero-visual-frame img {
    transform: scale(1.05);
}

.page-hero-visual-accent {
    position: absolute;
    left: -30px;
    bottom: -26px;
    z-index: 2;
    width: 112px;
    height: 112px;
    overflow: hidden;
    border: 5px solid var(--white);
    border-radius: 16px;
    background: var(--soft-cream);
    box-shadow: var(--soft-shadow);
}

.page-hero-visual-accent img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-visual-ring {
    position: absolute;
    z-index: -1;
    top: -22px;
    right: -22px;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(201, 150, 62, .5);
    border-radius: 50%;
}

.page-hero-visual > .page-hero-note {
    position: relative;
    z-index: 3;
    margin: -50px -12px 0 auto;
    max-width: 250px;
    padding: 22px 24px;
}

.page-section {
    background: rgba(255, 255, 255, 0.46);
}

.page-section-title {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.page-section-title > p {
    margin: 13px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.page-section-title-left {
    margin-left: 0;
    text-align: left;
}

.page-section-title-left .decor-line {
    margin-left: 0;
}

.page-section-title-left > p {
    margin-left: 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 38px;
}

.service-detail-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(201, 150, 62, 0.22);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(80, 35, 20, 0.07);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 150, 62, 0.5);
    box-shadow: 0 18px 42px rgba(80, 35, 20, 0.12);
}

.service-detail-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--soft-cream);
}

.service-detail-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.035);
}

.service-detail-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
}

.service-detail-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid rgba(201, 150, 62, 0.28);
    border-radius: 15px;
    background: var(--soft-cream);
    font-size: 23px;
}

.service-detail-card h3 {
    margin: 0 0 8px;
    color: var(--maroon);
    font-family: "Playfair Display", serif;
    font-size: 23px;
}

.service-detail-subtitle {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.service-detail-card p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--maroon);
    font-size: 13px;
    font-weight: 700;
}

.service-card-link span {
    color: var(--gold);
    transition: transform .2s ease;
}

.service-card-link:hover span {
    transform: translateX(4px);
}

.service-gallery-section {
    background:
        radial-gradient(circle at 90% 10%, rgba(201, 150, 62, .12), transparent 28%),
        linear-gradient(180deg, var(--cream), #fffdf8);
}

.service-carousel {
    position: relative;
    margin-top: 32px;
}

.service-carousel-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.service-carousel-count {
    color: var(--muted);
    font-size: 13px;
}

.service-carousel-count strong {
    color: var(--maroon);
    font-size: 18px;
}

.service-carousel-controls {
    display: flex;
    gap: 8px;
}

.service-carousel-controls button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(139, 18, 49, .22);
    border-radius: 50%;
    background: var(--white);
    color: var(--maroon);
    font: inherit;
    font-size: 20px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.service-carousel-controls button:hover {
    transform: translateY(-2px);
    background: var(--maroon);
    color: var(--white);
}

.service-carousel-viewport {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.service-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.service-carousel-track {
    display: flex;
    gap: 18px;
}

.service-carousel-slide {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid rgba(201, 150, 62, .22);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(80, 35, 20, .08);
}

.service-carousel-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--soft-cream);
}

.service-carousel-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.service-carousel-slide:hover .service-carousel-image img {
    transform: scale(1.04);
}

.service-carousel-caption {
    display: flex;
    min-height: 82px;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 16px 18px;
}

.service-carousel-caption span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-carousel-caption strong {
    overflow: hidden;
    color: var(--text-dark);
    font-family: "Playfair Display", serif;
    font-size: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-gallery-empty {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 24px;
    border: 1px dashed rgba(201, 150, 62, .5);
    border-radius: 18px;
    background: rgba(255, 255, 255, .65);
    color: var(--muted);
}

.service-gallery-empty span {
    color: var(--gold);
    font-size: 26px;
}

.page-process-section {
    background: var(--white);
}

.page-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.page-process-card {
    position: relative;
    min-height: 245px;
    padding: 28px 24px;
    overflow: hidden;
    border: 1px solid rgba(201, 150, 62, .22);
    border-radius: 18px;
    background: linear-gradient(155deg, #fffdf9, var(--cream));
}

.page-process-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    z-index: 2;
    top: 46px;
    right: -14px;
    width: 28px;
    color: var(--gold);
    font-size: 20px;
}

.page-process-number {
    position: absolute;
    right: 14px;
    top: 6px;
    color: rgba(139, 18, 49, .07);
    font-family: "Playfair Display", serif;
    font-size: 68px;
    font-weight: 800;
    line-height: 1;
}

.page-process-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 50%;
    background: var(--maroon);
    color: var(--gold-light);
    font-size: 20px;
}

.page-process-card h3 {
    margin: 0 0 9px;
    color: var(--maroon);
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.page-process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.page-cta-section {
    position: relative;
    overflow: hidden;
    padding: 52px 0;
    background:
        radial-gradient(circle at 85% 10%, rgba(243, 217, 160, .18), transparent 30%),
        linear-gradient(120deg, var(--maroon-dark), var(--maroon));
    color: var(--white);
}

.page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.page-cta-inner > div:first-child {
    max-width: 700px;
}

.page-cta-inner > div > span {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.page-cta-inner h2 {
    margin: 6px 0 8px;
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 4vw, 42px);
}

.page-cta-inner p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    line-height: 1.7;
}

.page-cta-inner .page-actions {
    flex: 0 0 auto;
    margin-top: 0;
}

.page-action-gold {
    background: var(--gold);
    color: var(--maroon-dark);
}

.page-action-gold:hover {
    background: var(--gold-light);
}

.page-action-light {
    border-color: rgba(255, 255, 255, .36);
    color: var(--white);
}

.page-action-light:hover {
    background: rgba(255, 255, 255, .1);
}

/* About */
.about-hero-emblem {
    display: flex;
    aspect-ratio: 1;
    max-width: 290px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    justify-self: end;
    padding: 34px;
    border: 1px solid rgba(201, 150, 62, .45);
    border-radius: 50%;
    background:
        radial-gradient(circle, #fffdf8 0 55%, transparent 56%),
        repeating-radial-gradient(circle, rgba(201, 150, 62, .17) 0 1px, transparent 1px 8px);
    box-shadow: var(--soft-shadow);
    text-align: center;
}

.about-hero-emblem strong {
    color: var(--maroon);
    font-family: "Playfair Display", serif;
    font-size: clamp(56px, 7vw, 88px);
    line-height: .9;
}

.about-hero-emblem span {
    margin-top: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.5;
    text-transform: uppercase;
}

.about-story-section {
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    align-items: center;
    gap: clamp(38px, 7vw, 88px);
}

.about-story-visual {
    position: relative;
    min-width: 0;
}

.about-story-visual > img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.about-experience-badge {
    position: absolute;
    right: -24px;
    bottom: -24px;
    display: flex;
    min-width: 175px;
    flex-direction: column;
    padding: 22px;
    border: 5px solid var(--white);
    border-radius: 18px;
    background: var(--maroon);
    color: var(--white);
    box-shadow: var(--soft-shadow);
}

.about-experience-badge strong {
    color: var(--gold-light);
    font-family: "Playfair Display", serif;
    font-size: 27px;
}

.about-experience-badge span {
    margin-top: 3px;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-story-lead {
    color: var(--text-dark) !important;
    font-size: 17px !important;
    font-weight: 500;
}

.about-story-copy > p {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.about-signature-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(201, 150, 62, .25);
}

.about-signature-line span {
    color: var(--gold);
}

.about-signature-line p {
    margin: 0;
    color: var(--maroon);
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 700;
}

.about-metrics-section {
    padding: 38px 0;
    background: var(--soft-cream);
    border-top: 1px solid rgba(201, 150, 62, .2);
    border-bottom: 1px solid rgba(201, 150, 62, .2);
}

.about-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-metrics-grid article {
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px 18px;
    text-align: center;
}

.about-metrics-grid article + article {
    border-left: 1px solid rgba(201, 150, 62, .3);
}

.about-metrics-grid strong {
    color: var(--maroon);
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 2.6vw, 32px);
}

.about-metrics-grid span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 36px;
}

.about-value-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 145px;
    padding: 24px;
    border: 1px solid rgba(201, 150, 62, .2);
    border-radius: 18px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 9px 26px rgba(80, 35, 20, .06);
}

.about-value-icon {
    display: grid;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    place-items: center;
    border-radius: 13px;
    background: var(--soft-cream);
    font-size: 20px;
}

.about-value-card h3 {
    margin: 0 0 7px;
    color: var(--maroon);
    font-family: "Playfair Display", serif;
    font-size: 18px;
}

.about-value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.about-process-section {
    background: linear-gradient(180deg, #fffdf8, var(--cream));
}

.about-voices-section {
    background: var(--white);
}

.about-voices-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.about-voice-card {
    position: relative;
    margin: 0;
    padding: 28px;
    border: 1px solid rgba(201, 150, 62, .22);
    border-radius: 20px;
    background: linear-gradient(150deg, #fff, var(--cream));
}

.about-quote-mark {
    display: block;
    height: 38px;
    color: rgba(139, 18, 49, .16);
    font-family: "Playfair Display", serif;
    font-size: 58px;
    line-height: 1;
}

.about-voice-card > p {
    margin: 10px 0 22px;
    color: var(--text-dark);
    font-family: "Playfair Display", serif;
    font-size: 16px;
    line-height: 1.65;
}

.about-voice-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 14px;
    border-top: 1px solid rgba(201, 150, 62, .2);
}

.about-voice-meta strong {
    color: var(--maroon);
    font-size: 13px;
}

.about-voice-meta span {
    color: var(--muted);
    font-size: 11px;
}

@media (max-width: 980px) {
    .page-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(220px, .48fr);
        gap: 34px;
    }

    .service-detail-grid,
    .about-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-carousel-slide {
        flex-basis: calc((100% - 18px) / 2);
    }

    .gallery-carousel-slide {
        flex-basis: calc((100% - 40px) / 3);
    }

    .review-carousel-card {
        flex-basis: calc((100% - 20px) / 2);
    }

    .page-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-process-card:not(:last-child)::after {
        display: none;
    }

    .about-story-grid {
        gap: 44px;
    }

    .about-voices-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-voice-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .store-inner-page .page-hero {
        padding: 58px 0 62px;
    }

    .page-hero-grid,
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: clamp(38px, 11vw, 54px);
    }

    .page-hero-note {
        max-width: 460px;
    }

    .page-hero-visual {
        max-width: 300px;
        margin: 10px auto 0;
        justify-self: center;
    }

    .page-hero-visual > .page-hero-note {
        margin: -46px -10px 0 auto;
    }

    .about-hero-emblem {
        width: min(220px, 58vw);
        justify-self: start;
    }

    .about-story-visual {
        margin-right: 18px;
    }

    .about-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-metrics-grid article + article {
        border-left: 0;
    }

    .about-metrics-grid article:nth-child(even) {
        border-left: 1px solid rgba(201, 150, 62, .3);
    }

    .about-metrics-grid article:nth-child(n+3) {
        border-top: 1px solid rgba(201, 150, 62, .3);
    }

    .page-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .store-inner-page .section {
        padding: 56px 0;
    }

    .page-eyebrow {
        font-size: 10px;
    }

    .page-actions,
    .page-cta-inner .page-actions {
        width: 100%;
    }

    .page-action {
        flex: 1 1 100%;
    }

    .service-detail-grid,
    .page-process-grid,
    .about-values-grid,
    .about-voices-grid {
        grid-template-columns: 1fr;
    }

    .about-voice-card:last-child {
        grid-column: auto;
    }

    .service-detail-card {
        border-radius: 16px;
    }

    .service-detail-body {
        padding: 22px;
    }

    .service-carousel-slide {
        flex-basis: 88%;
    }

    .service-carousel-caption {
        min-height: 74px;
    }

    .gallery-heading-row {
        flex-wrap: wrap;
    }

    .gallery-heading-meta {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 0;
    }

    .gallery-carousel-slide {
        flex-basis: 78%;
    }

    .review-carousel-card {
        flex-basis: 86%;
    }

    .review-carousel-card > p {
        min-height: 0;
    }

    .about-experience-badge {
        right: -12px;
        bottom: -22px;
        min-width: 150px;
        padding: 18px;
    }

    .about-experience-badge strong {
        font-size: 23px;
    }

    .page-cta-section {
        padding: 42px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-carousel-viewport,
    .gallery-carousel-viewport,
    .reviews-carousel-viewport {
        scroll-behavior: auto;
    }

    .service-detail-card,
    .service-detail-image img,
    .service-carousel-image img,
    .gallery-carousel-slide,
    .gallery-preview-button img,
    .page-action {
        transition: none;
    }
}

/* ==========================================================
   Premium Services editorial redesign — 11 Aug 2026
   Scoped to services.php so shared storefront pages are safe.
   ========================================================== */
.services-premium-page .services-premium-hero {
    min-height: 640px;
    padding: clamp(56px, 6vw, 82px) 0 42px;
    background:
        radial-gradient(circle at 80% 20%, rgba(201, 150, 62, .22), transparent 27%),
        radial-gradient(circle at 8% 92%, rgba(139, 18, 49, .08), transparent 30%),
        linear-gradient(118deg, #fffdf8 0%, #fff6e9 100%);
}

.services-premium-page .services-premium-hero::before {
    width: 520px;
    height: 520px;
    right: -170px;
    top: -230px;
}

.services-premium-page .services-premium-hero::after {
    width: 310px;
    height: 310px;
    right: 55px;
    top: -145px;
}

.services-premium-hero .page-hero-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 1.08fr) minmax(410px, .92fr);
    gap: clamp(42px, 6vw, 86px);
}

.services-premium-hero .page-hero-copy {
    max-width: 735px;
}

.services-premium-hero .page-hero-copy h1 {
    max-width: 720px;
    font-size: clamp(46px, 5vw, 76px);
    line-height: .99;
}

.services-premium-hero .page-lead {
    max-width: 650px;
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.72;
}

.services-hero-ghost {
    position: absolute;
    z-index: -1;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(201, 150, 62, .22);
    border-radius: 28px;
    background-position: center;
    background-size: cover;
    opacity: .075;
    pointer-events: none;
}

.services-hero-ghost-one {
    width: 420px;
    height: 420px;
    left: 44%;
    top: -95px;
    background-image: url('../images/services/01_wedding_cards.jpg');
    transform: rotate(-8deg);
}

.services-hero-ghost-two {
    width: 330px;
    height: 330px;
    left: 58%;
    bottom: -150px;
    background-image: url('../images/services/02_multi_color_invitations.jpg');
    transform: rotate(8deg);
}

.services-premium-hero .page-actions {
    margin-top: 26px;
}

.services-hero-trust {
    display: grid;
    max-width: 650px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 28px;
}

.services-hero-trust > span {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    padding: 12px 13px;
    border: 1px solid rgba(201, 150, 62, .24);
    border-radius: 13px;
    background: rgba(255, 255, 255, .58);
    box-shadow: 0 8px 20px rgba(80, 35, 20, .045);
    backdrop-filter: blur(8px);
}

.services-hero-trust b {
    display: grid;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    place-items: center;
    border-radius: 9px;
    background: #fff1d7;
    color: var(--gold);
    font-size: 13px;
}

.services-hero-trust strong {
    overflow: hidden;
    color: var(--text-dark);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
}

.services-hero-showcase {
    position: relative;
    width: min(100%, 510px);
    height: 515px;
    justify-self: end;
}

.services-hero-main-image,
.services-hero-accent-image {
    position: absolute;
    overflow: hidden;
    background: var(--soft-cream);
    box-shadow: 0 25px 60px rgba(71, 28, 21, .19);
}

.services-hero-main-image {
    width: 78%;
    height: 91%;
    top: 0;
    right: 0;
    border: 8px solid rgba(255, 253, 248, .92);
    border-radius: 30px;
    transform: rotate(2.2deg);
}

.services-hero-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(201, 150, 62, .38);
    border-radius: 21px;
    pointer-events: none;
}

.services-hero-main-image img,
.services-hero-accent-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s cubic-bezier(.22, 1, .36, 1);
}

.services-hero-main-image img {
    object-position: center;
}

.services-hero-showcase:hover .services-hero-main-image img {
    transform: scale(1.045);
}

.services-hero-accent-image {
    z-index: 3;
    width: 39%;
    height: 38%;
    left: 0;
    bottom: 12px;
    border: 7px solid #fffaf2;
    border-radius: 21px;
    transform: rotate(-4deg);
}

.services-hero-ring {
    position: absolute;
    z-index: -1;
    width: 142px;
    height: 142px;
    right: -25px;
    top: -28px;
    border: 1px solid rgba(201, 150, 62, .48);
    border-radius: 50%;
}

.services-signature-card {
    position: absolute;
    z-index: 4;
    display: flex;
    width: min(260px, 59%);
    right: -8px;
    bottom: 0;
    flex-direction: column;
    padding: 20px 22px;
    border: 1px solid rgba(201, 150, 62, .36);
    border-radius: 20px;
    background: rgba(255, 253, 248, .91);
    box-shadow: 0 18px 40px rgba(80, 35, 20, .14);
    backdrop-filter: blur(12px);
}

.services-signature-card::before {
    content: "✦";
    position: absolute;
    right: 18px;
    top: 15px;
    color: var(--gold);
    font-size: 17px;
}

.services-signature-card > span {
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.services-signature-card strong {
    margin-top: 5px;
    padding-right: 22px;
    color: var(--maroon);
    font-family: "Playfair Display", serif;
    font-size: 24px;
    line-height: 1.1;
}

.services-signature-card p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.services-premium-page .page-section {
    background:
        radial-gradient(circle at 8% 15%, rgba(201, 150, 62, .09), transparent 25%),
        linear-gradient(180deg, #fffdf9, #fff8ef);
}

.services-premium-page .service-detail-grid {
    gap: 20px;
}

.services-premium-page .service-premium-card {
    position: relative;
    min-height: 430px;
    border-color: rgba(201, 150, 62, .25);
    border-radius: 23px;
    background: var(--maroon-dark);
    box-shadow: 0 15px 38px rgba(80, 35, 20, .12);
}

.services-premium-page .service-premium-link {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    border-radius: inherit;
    color: #fff;
}

.services-premium-page .service-premium-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .4s ease;
}

.services-premium-page .service-premium-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(23, 8, 10, .04) 15%, rgba(23, 8, 10, .18) 42%, rgba(38, 8, 15, .92) 100%),
        linear-gradient(135deg, rgba(139, 18, 49, .06), transparent 50%);
    transition: background .35s ease;
}

.services-premium-page .service-premium-card .service-detail-icon {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    width: 48px;
    height: 48px;
    margin: 0;
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 253, 248, .87);
    box-shadow: 0 10px 25px rgba(38, 8, 15, .16);
    backdrop-filter: blur(9px);
}

.service-premium-copy {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 30px 27px 26px;
}

.service-premium-copy small {
    color: #f3cb7d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.service-premium-title {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(25px, 2.1vw, 31px);
    line-height: 1.08;
}

.service-premium-description {
    display: -webkit-box;
    max-width: 95%;
    overflow: hidden;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    line-height: 1.62;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.service-premium-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    color: #f2cf8d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.service-premium-action b {
    font-size: 15px;
    transition: transform .25s ease;
}

.services-premium-page .service-premium-card:hover,
.services-premium-page .service-premium-card:focus-within {
    transform: translateY(-7px);
    border-color: rgba(201, 150, 62, .62);
    box-shadow: 0 23px 50px rgba(80, 35, 20, .18);
}

.services-premium-page .service-premium-card:hover .service-premium-image,
.services-premium-page .service-premium-card:focus-within .service-premium-image {
    transform: scale(1.055);
    filter: saturate(1.06);
}

.services-premium-page .service-premium-card:hover .service-premium-action b,
.services-premium-page .service-premium-card:focus-within .service-premium-action b {
    transform: translateX(5px);
}

/* Service cards follow the gallery reveal pattern on hover and keyboard focus. */
@media (hover: hover) and (pointer: fine) {
    .services-premium-page .service-premium-copy {
        transform: translateY(58px);
        transition: transform .38s cubic-bezier(.22, 1, .36, 1);
    }

    .services-premium-page .service-premium-description,
    .services-premium-page .service-premium-action {
        opacity: 0;
        transition: opacity .28s ease .06s;
    }

    .services-premium-page .service-premium-card:hover .service-premium-copy,
    .services-premium-page .service-premium-card:focus-within .service-premium-copy {
        transform: translateY(0);
    }

    .services-premium-page .service-premium-card:hover .service-premium-description,
    .services-premium-page .service-premium-card:hover .service-premium-action,
    .services-premium-page .service-premium-card:focus-within .service-premium-description,
    .services-premium-page .service-premium-card:focus-within .service-premium-action {
        opacity: 1;
    }

    .services-premium-page .service-premium-card:hover .service-premium-shade,
    .services-premium-page .service-premium-card:focus-within .service-premium-shade {
        background:
            linear-gradient(180deg, rgba(23, 8, 10, .05) 10%, rgba(23, 8, 10, .26) 38%, rgba(38, 8, 15, .96) 100%),
            linear-gradient(135deg, rgba(139, 18, 49, .12), transparent 52%);
    }
}

.services-premium-page .service-premium-link:focus-visible {
    outline: 3px solid #f3cb7d;
    outline-offset: -5px;
}

/* The Gallery entrance shares the same premium composition as Services. */
.gallery-premium-hero .services-hero-ghost-one {
    background-image: url('../images/gallery/gallery_image_03.png');
}

.gallery-premium-hero .services-hero-ghost-two {
    background-image: url('../images/gallery/gallery_image_09.png');
}

.gallery-premium-hero .services-hero-main-image img,
.gallery-premium-hero .services-hero-accent-image img {
    object-position: center;
}

.gallery-premium-hero .services-signature-card p {
    max-width: 190px;
}

#galleryCollection {
    scroll-margin-top: 104px;
}

@media (max-width: 1100px) {
    .services-premium-hero .page-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(350px, .78fr);
        gap: 38px;
    }

    .services-hero-showcase {
        height: 450px;
    }

    .services-premium-page .service-premium-card {
        min-height: 390px;
    }
}

@media (max-width: 820px) {
    .services-premium-page .services-premium-hero {
        min-height: 0;
        padding: 50px 0 44px;
    }

    .services-premium-hero .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-premium-hero .page-hero-copy {
        max-width: 700px;
    }

    .services-hero-showcase {
        width: min(100%, 500px);
        height: 440px;
        margin: 0 auto;
        justify-self: center;
    }

    .services-hero-ghost-one {
        left: auto;
        right: -120px;
    }

    .services-hero-ghost-two {
        left: -130px;
    }
}

@media (max-width: 620px) {
    .services-premium-page .services-premium-hero {
        padding: 38px 0 34px;
    }

    .services-premium-hero .page-hero-copy h1 {
        margin-bottom: 16px;
        font-size: clamp(36px, 10.8vw, 48px);
        line-height: 1.02;
    }

    .services-premium-hero .page-lead {
        font-size: 13px;
        line-height: 1.65;
    }

    .services-premium-hero .page-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 20px;
    }

    .services-premium-hero .page-action {
        min-height: 44px;
        padding: 10px 11px;
        font-size: 10px;
        text-align: center;
    }

    .services-hero-trust {
        display: flex;
        gap: 8px;
        margin-top: 18px;
        padding-bottom: 4px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .services-hero-trust::-webkit-scrollbar {
        display: none;
    }

    .services-hero-trust > span {
        min-width: 145px;
        flex: 0 0 145px;
        padding: 10px;
    }

    .services-hero-showcase {
        height: 350px;
    }

    .services-hero-main-image {
        width: 77%;
        height: 89%;
        border-width: 6px;
        border-radius: 22px;
    }

    .services-hero-accent-image {
        width: 38%;
        height: 39%;
        left: 2px;
        bottom: 4px;
        border-width: 5px;
        border-radius: 16px;
    }

    .services-signature-card {
        width: 58%;
        right: 0;
        padding: 14px 15px;
        border-radius: 15px;
    }

    .services-signature-card strong {
        font-size: 19px;
    }

    .services-signature-card p {
        font-size: 9px;
    }

    .services-premium-page .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 26px;
    }

    .services-premium-page .service-premium-card {
        min-height: 365px;
        border-radius: 18px;
    }

    .services-premium-copy {
        padding: 25px 21px 21px;
    }

    .service-premium-title {
        font-size: 26px;
    }
}

@media (max-width: 400px) {
    .services-premium-hero .page-actions {
        grid-template-columns: 1fr;
    }

    .services-hero-showcase {
        height: 318px;
    }

    .services-premium-page .service-premium-card {
        min-height: 335px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-hero-main-image img,
    .services-premium-page .service-premium-image,
    .service-premium-action b {
        transition: none;
    }
}

/* Dedicated invitation gallery */
.home-discovery-section {
    padding: clamp(54px, 7vw, 92px) 0;
    background: #fffaf3;
}

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

.home-discovery-card {
    position: relative;
    isolation: isolate;
    min-height: 320px;
    padding: clamp(30px, 4vw, 54px);
    overflow: hidden;
    border: 1px solid rgba(201, 150, 62, .24);
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(80, 35, 20, .1);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}

.home-discovery-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 250px;
    height: 250px;
    right: -95px;
    bottom: -120px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: .12;
}

.home-discovery-services {
    background: linear-gradient(145deg, #fff, #fff3dd);
    color: var(--text-dark);
}

.home-discovery-gallery {
    background: linear-gradient(145deg, #7d102d, #a7133c);
    color: #fff;
}

.home-discovery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 62px rgba(80, 35, 20, .16);
}

.home-discovery-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.home-discovery-card h2 {
    max-width: 470px;
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.1;
}

.home-discovery-card p {
    max-width: 510px;
    margin: 0 0 32px;
    opacity: .76;
    font-size: 14px;
    line-height: 1.75;
}

.home-discovery-card strong {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.home-discovery-card strong span {
    color: var(--gold);
    transition: transform .2s ease;
}

.home-discovery-card:hover strong span {
    transform: translateX(5px);
}

.gallery-page {
    background: #fffaf3;
}

.gallery-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(76px, 10vw, 132px) 0 clamp(68px, 8vw, 110px);
    background:
        radial-gradient(circle at 85% 18%, rgba(201, 150, 62, .2), transparent 25%),
        radial-gradient(circle at 8% 88%, rgba(139, 18, 49, .1), transparent 28%),
        radial-gradient(rgba(139, 18, 49, .07) 1.4px, transparent 1.4px),
        linear-gradient(135deg, #fffdf9 0%, #fff6e9 100%);
    background-size: auto, auto, 25px 25px, auto;
}

.gallery-hero::before,
.gallery-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(201, 150, 62, .28);
    border-radius: 50%;
}

.gallery-hero::before {
    width: 330px;
    height: 330px;
    top: -170px;
    right: 7%;
}

.gallery-hero::after {
    width: 190px;
    height: 190px;
    right: calc(7% + 70px);
    top: -95px;
}

.gallery-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    align-items: center;
    gap: clamp(38px, 7vw, 90px);
}

.gallery-hero-copy {
    max-width: 680px;
}

.gallery-hero-copy h1 {
    max-width: 640px;
    margin: 18px 0;
    color: var(--text-dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.06;
    letter-spacing: -.035em;
}

.gallery-hero-copy h1 em,
.gallery-carousel-slide small,
.gallery-lightbox-dialog figcaption small {
    color: var(--maroon);
    font-style: normal;
}

.gallery-hero-copy p {
    max-width: 560px;
    margin: 0 0 30px;
    color: var(--muted);
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.8;
}

.gallery-collection {
    background:
        radial-gradient(circle at 4% 8%, rgba(201, 150, 62, .09), transparent 21%),
        #fffaf3;
}

.gallery-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.gallery-heading-row .page-section-title {
    margin: 0;
}

.gallery-heading-meta {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
}

.gallery-result-count {
    flex: 0 0 auto;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.gallery-result-count strong {
    color: var(--maroon);
    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.gallery-carousel-controls {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.gallery-carousel-btn {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(139, 18, 49, .22);
    border-radius: 50%;
    background: var(--white);
    color: var(--maroon);
    font: inherit;
    font-size: 18px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
}

.gallery-carousel-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    background: var(--maroon);
    color: var(--white);
}

.gallery-carousel-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.gallery-filter-bar {
    display: flex;
    gap: 10px;
    margin: 34px 0 28px;
    padding: 4px 0 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.gallery-filter-bar::-webkit-scrollbar {
    display: none;
}

.gallery-filter-bar button {
    flex: 0 0 auto;
    padding: 11px 18px;
    border: 1px solid rgba(139, 18, 49, .17);
    border-radius: 999px;
    background: rgba(255, 255, 255, .85);
    color: var(--text-dark);
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.gallery-filter-bar button:hover,
.gallery-filter-bar button.is-active {
    transform: translateY(-2px);
    background: var(--maroon);
    color: #fff;
    box-shadow: 0 10px 24px rgba(139, 18, 49, .18);
}

.gallery-carousel {
    position: relative;
    margin-top: 8px;
}

.gallery-carousel-viewport {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.gallery-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.gallery-carousel-track {
    display: flex;
    gap: 20px;
    padding: 4px 4px 14px;
}

.gallery-carousel-slide {
    position: relative;
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 0;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid rgba(201, 150, 62, .22);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(80, 35, 20, .09);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}

.gallery-carousel-slide[hidden] {
    display: none;
}

.gallery-carousel-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(80, 35, 20, .16);
}

.gallery-preview-button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #f7ead8;
    color: #fff;
    text-align: left;
    cursor: zoom-in;
}

.gallery-preview-button img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform .75s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}

.gallery-carousel-slide:hover img {
    transform: scale(1.06);
    filter: saturate(1.06);
}

.gallery-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(31, 13, 12, .9));
}

.gallery-card-copy {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 25px 22px;
    transform: translateY(35px);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.gallery-carousel-slide:hover .gallery-card-copy,
.gallery-preview-button:focus-visible .gallery-card-copy {
    transform: translateY(0);
}

.gallery-card-copy small {
    color: #f5ca77;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.gallery-card-copy strong {
    font-family: "Playfair Display", serif;
    font-size: clamp(18px, 1.6vw, 23px);
    line-height: 1.25;
}

.gallery-card-copy > span {
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0;
    font-size: 12px;
    transition: opacity .3s ease .06s;
}

.gallery-carousel-slide:hover .gallery-card-copy > span,
.gallery-preview-button:focus-visible .gallery-card-copy > span {
    opacity: 1;
}

.gallery-product-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 20px;
    color: var(--maroon);
    font-size: 12px;
    font-weight: 700;
}

.gallery-product-link span {
    color: var(--gold);
    transition: transform .2s ease;
}

.gallery-product-link:hover span {
    transform: translateX(4px);
}

.gallery-no-results {
    padding: 70px 20px;
    border: 1px dashed rgba(201, 150, 62, .45);
    border-radius: 22px;
    background: rgba(255, 255, 255, .65);
    text-align: center;
}

.gallery-no-results span {
    color: var(--gold);
    font-size: 32px;
}

.gallery-no-results h3 {
    margin: 10px 0 5px;
    font-family: "Playfair Display", serif;
}

.gallery-no-results p {
    margin: 0;
    color: var(--muted);
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(23, 11, 10, .88);
    backdrop-filter: blur(9px);
    cursor: zoom-out;
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(960px, 91vw);
    max-height: 90vh;
    place-items: center;
}

.gallery-lightbox-dialog figure {
    max-height: 90vh;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .45);
}

.gallery-lightbox-dialog img {
    display: block;
    width: 100%;
    max-height: calc(90vh - 78px);
    object-fit: contain;
    background: #f5eee5;
}

.gallery-lightbox-dialog figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 22px;
}

.gallery-lightbox-dialog figcaption small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gallery-lightbox-dialog figcaption strong {
    font-family: "Playfair Display", serif;
    text-align: right;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    background: rgba(255, 255, 255, .13);
    color: #fff;
    font: inherit;
    font-size: 22px;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.gallery-lightbox-close {
    top: 12px;
    right: 12px;
}

.gallery-lightbox-prev {
    left: -70px;
}

.gallery-lightbox-next {
    right: -70px;
}

.gallery-lightbox-open {
    overflow: hidden;
}

/* Customer reviews carousel */
.gallery-reviews-section {
    background:
        radial-gradient(circle at 92% 12%, rgba(201, 150, 62, .14), transparent 30%),
        linear-gradient(180deg, #fffaf3, #fff3dd);
}

.reviews-carousel {
    position: relative;
    margin-top: 8px;
}

.reviews-carousel-viewport {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.reviews-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.reviews-carousel-track {
    display: flex;
    gap: 20px;
    padding: 6px 4px 14px;
}

.review-carousel-card {
    position: relative;
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    overflow: hidden;
    scroll-snap-align: start;
    padding: 32px 28px 28px;
    border: 1px solid rgba(201, 150, 62, .22);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(80, 35, 20, .08);
}

.review-quote-mark {
    position: absolute;
    top: 6px;
    right: 24px;
    color: rgba(139, 18, 49, .12);
    font-family: "Playfair Display", serif;
    font-size: 70px;
    line-height: 1;
}

.review-stars {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
}

.review-carousel-card > p {
    min-height: 108px;
    margin: 0 0 24px;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.75;
}

.review-person {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 150, 62, .2);
}

.review-avatar {
    position: relative;
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b1231, #c9963e);
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 800;
}

.review-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-person h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 14px;
}

.review-person span {
    color: var(--muted);
    font-size: 11px;
}

.ramki-motion-enabled .ramki-emerge {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--ramki-delay, 0ms);
}

.ramki-motion-enabled .ramki-emerge.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1100px) {
    .gallery-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(220px, .5fr);
        gap: 34px;
    }

    .gallery-carousel-slide {
        flex-basis: calc((100% - 40px) / 3);
    }

    .review-carousel-card {
        flex-basis: calc((100% - 20px) / 2);
    }
}

@media (max-width: 820px) {
    .home-discovery-grid {
        grid-template-columns: 1fr;
    }

    .home-discovery-card {
        min-height: 280px;
    }

    .gallery-hero-grid {
        grid-template-columns: 1fr;
    }

    .gallery-hero-copy {
        max-width: 100%;
    }

    .gallery-hero .page-hero-visual {
        max-width: 260px;
        margin: 8px auto 0;
        justify-self: center;
    }

    .gallery-carousel-slide {
        flex-basis: calc((100% - 20px) / 2);
    }

    .gallery-preview-button {
        min-height: 300px;
    }

    .review-carousel-card {
        flex-basis: 82%;
    }

    .gallery-lightbox-prev {
        left: 12px;
    }

    .gallery-lightbox-next {
        right: 12px;
    }
}

@media (max-width: 580px) {
    .gallery-hero {
        padding: 62px 0 68px;
    }

    .gallery-hero-copy h1 {
        font-size: 40px;
    }

    .gallery-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .gallery-heading-meta {
        justify-content: space-between;
    }

    .gallery-carousel-slide {
        flex-basis: 82%;
    }

    .gallery-preview-button {
        min-height: 260px;
    }

    .review-carousel-card {
        flex-basis: 90%;
        padding: 26px 22px 22px;
    }

    .gallery-card-copy {
        transform: none;
    }

    .gallery-card-copy > span {
        opacity: 1;
    }

    .gallery-lightbox {
        padding: 12px;
    }

    .gallery-lightbox-dialog {
        width: 96vw;
    }

    .gallery-lightbox-dialog figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .gallery-lightbox-dialog figcaption strong {
        text-align: left;
    }
}

@media (hover: none), (pointer: coarse) {
    .services-premium-page .service-premium-copy,
    .services-premium-page .service-premium-description,
    .services-premium-page .service-premium-action {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ramki-motion-enabled .ramki-emerge,
    .ramki-motion-enabled .ramki-emerge.is-visible,
    .gallery-carousel-slide,
    .gallery-preview-button img,
    .gallery-card-copy {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-discovery-card {
        transition: none;
    }
}
