:root {
    --bg: #fbf7f1;
    --paper: #ffffff;
    --ink: #171311;
    --soft-ink: #5d534d;
    --gold: #c9a46a;
    --gold-deep: #9a7440;
    --dark: #0e0c0b;
    --border: rgba(23, 19, 17, 0.08);
    --shadow: 0 24px 60px rgba(11, 9, 8, 0.12);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
    --dj-page-bg-size: cover;
    --dj-page-bg-position: center center;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.65;
}
body.dj-front-page {
    position: relative;
    background-color: #f4eee4;
}
body.dj-front-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: var(--dj-home-page-bg-image);
    background-size: var(--dj-page-bg-size, 100% auto);
    background-position: var(--dj-page-bg-position, center top);
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: var(--dj-home-page-bg-opacity, 1);
    z-index: -2;
    pointer-events: none;
}
body.dj-front-page .hero-visual-section {
    background: transparent;
}
body.dj-inner-background-page {
    position: relative;
    background-color: #f4eee4;
}
body.dj-inner-background-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: var(--dj-inner-page-bg-image);
    background-size: var(--dj-page-bg-size, 100% auto);
    background-position: var(--dj-page-bg-position, center top);
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: var(--dj-inner-page-bg-opacity, 0.5);
    z-index: -2;
    pointer-events: none;
}
body.dj-inner-background-page::after {
    content: none;
}
body.dj-inner-background-page .section-soft,
body.dj-inner-background-page .hero-visual-section,
body.dj-inner-background-page .services-pricing-section,
body.dj-inner-background-page .staff-page-section,
body.dj-inner-background-page .section {
    background: transparent;
}
body.dj-inner-background-page .compact-page-hero {
    background: transparent;
    backdrop-filter: none;
}
main {
    display: block;
    flex: 1 0 auto;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 247, 241, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-wrap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
    min-height: 82px;
}
.brand {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 0 0 auto;
}
.brand-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.brand-sub { font-size: 0.9rem; color: var(--gold-deep); }
.site-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 600;
}
.nav-menu a { position: relative; }
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after,
.nav-menu .current_page_item a::after { transform: scaleX(1); }
.menu-toggle {
    display: none;
    border: 1px solid var(--border);
    background: #fff;
    padding: 0.8rem 1rem;
    border-radius: 999px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-gold { background: var(--gold); color: #20160e; }
.button-dark { background: var(--dark); color: #fff; }
.button-outline,
.button-outline-dark {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
}
.button-outline-dark {
    border: 1px solid rgba(23, 19, 17, 0.2);
    color: var(--ink);
}
.hero-visual-section {
    background: #efe8dd;
    padding: 0;
}
.hero-visual-image {
    width: 100%;
    min-height: 46vw;
    max-height: 78vh;
    object-fit: cover;
    object-position: center;
}
.home-hero-background-spacer {
    min-height: max(clamp(620px, calc(100vh - 82px - 52px), 980px), calc(100vh - 82px - 44px));
    max-height: none;
    height: auto;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 0.75rem;
}
h1, h2, h3 {
    font-family: "Cormorant Garamond", serif;
    line-height: 1.04;
    margin: 0 0 1rem;
}
h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: 1.75rem; }
.hero-copy, .narrow { max-width: 48rem; }
.cta-actions,
.home-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.section { padding: 3.75rem 0; }
.section-dark {
    background: var(--dark);
    color: #fff;
}
.section-soft { background: #f2ede6; }
.quick-links-section {
    margin-top: -3.5rem;
    position: relative;
    z-index: 2;
}
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.quick-link-card,
.service-card,
.contact-card,
.cta-card,
.gallery-placeholder,
.staff-card,
.price-image-wrap {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.quick-link-card {
    padding: 1.75rem;
}
.quick-link-card h2 {
    font-size: clamp(1.7rem, 2vw, 2.3rem);
    margin-bottom: 0.4rem;
}
.quick-link-card-action {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.image-panel img,
.gallery-card img,
.price-image {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.section-heading.center,
.center { text-align: center; }
.section-heading { max-width: 760px; margin: 0 auto 2rem; }
.compact-heading { margin-bottom: 1.5rem; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.service-card {
    padding: 1.6rem;
    min-height: 210px;
}
.page-hero { display: none; }
.compact-page-hero {
    padding-top: 5.25rem;
    padding-bottom: 1.75rem;
}
.gallery-grid,
.gallery-preview-grid,
.staff-grid {
    display: grid;
    gap: 1.25rem;
}
.gallery-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.9rem;
}
.gallery-preview-grid {
    grid-template-columns: repeat(3, 1fr);
}
.gallery-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.contact-card { padding: 2rem; }
.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border);
}
.staff-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}
.staff-card {
    padding: 2rem 2.1rem 2.45rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-height: 660px;
}
.staff-page-section {
    padding-top: 3.25rem;
}
body.page-template-page-staff .compact-page-hero,
body.page-template-page-staff .page-hero,
body.page-template-page-staff .eyebrow {
    display: none !important;
}
.staff-photo-wrap {
    width: 100%;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.staff-photo {
    display: block;
    width: 210px;
    height: auto;
    max-height: 210px;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}
.staff-card h2 {
    font-size: clamp(2.5rem, 3vw, 4rem);
    line-height: 0.95;
    margin: 0;
    min-height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.staff-divider {
    width: min(220px, 82%);
    height: 18px;
    margin: 1rem auto 1.2rem;
    position: relative;
}
.staff-divider::before,
.staff-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 18px);
    height: 2px;
    background: rgba(201, 164, 106, 0.72);
}
.staff-divider::before { left: 0; }
.staff-divider::after { right: 0; }
.staff-divider {
    background:
        radial-gradient(circle at center, var(--gold) 0 4px, transparent 5px),
        linear-gradient(var(--gold), var(--gold));
    background-size: 18px 18px, 2px 18px;
    background-position: center center, center center;
    background-repeat: no-repeat;
}
.staff-card p {
    margin: 0;
    max-width: 18ch;
    color: var(--ink);
    font-size: 1.04rem;
    line-height: 1.8;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}
.price-table-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.75rem 1.5rem;
}
.price-table-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.price-subheading {
    margin-top: 1.75rem;
}
.price-table {
    display: grid;
    gap: 0.7rem;
}
.price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: baseline;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
}
.price-row strong {
    white-space: nowrap;
}
.prices-note {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--soft-ink);
    font-weight: 600;
}
.footer-grid {
    display: grid;
    gap: 2rem;
}
.footer-grid.cols-3 {
    grid-template-columns: 1.2fr 1fr 1fr;
}
.footer-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
}
.footer-grid.cols-1 {
    grid-template-columns: 1fr;
}
.site-footer {
    margin-top: auto;
    background: var(--dark);
    color: #fff;
    padding: 0.45rem 0;
}
.footer-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.8);
    margin: 0;
    padding: 0;
}
.footer-bottom p {
    margin: 0;
}
.top-space { margin-top: 1.5rem; }
.top-space-lg { margin-top: 2rem; }
.narrow-copy { max-width: 680px; }
.prose-area { max-width: 850px; }

@media (max-width: 980px) {
    .split-grid,
    .contact-grid,
    .footer-grid,
    .quick-links-grid,
    .services-grid,
    .gallery-grid,
    .gallery-preview-grid,
    .staff-grid,
    .prices-grid { grid-template-columns: 1fr; }
    .nav-wrap {
        min-height: 74px;
        grid-template-columns: 1fr auto;
    }
    .menu-toggle { display: inline-flex; }
    .site-nav {
        position: absolute;
        top: 82px;
        left: 1rem;
        right: 1rem;
        display: none;
        grid-template-columns: 1fr;
        padding: 1rem;
        background: #fff;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: flex; }
    .nav-menu {
        flex-direction: column;
        justify-content: flex-start;
    }
    .nav-book,
    .button { width: 100%; }
    .quick-links-section { margin-top: 0; }
}

@media (max-width: 640px) {
    .section { padding: 3rem 0; }
    .compact-page-hero { padding-top: 4.6rem; }
    .hero-visual-image {
        min-height: 52vw;
        max-height: none;
    }
    .quick-link-card,
    .contact-card,
    .service-card { padding: 1.35rem; }
    .staff-card { padding: 1.5rem 1.25rem 1.7rem; min-height: auto; }
    .staff-card h2 { min-height: 0; font-size: clamp(2.3rem, 12vw, 3.4rem); }
    .staff-photo-wrap { min-height: 190px; margin-bottom: 1rem; }
    .staff-photo { width: 180px; max-height: 180px; }
    .staff-card p { max-width: 22ch; }
    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
    }
}


.site-footer a {
    color: inherit;
}
.site-footer .button-outline {
    display: inline-flex;
}
.footer-widget p,
.footer-widget ul,
.footer-widget ol {
    margin: 0 0 0.8rem;
}
.footer-widget ul,
.footer-widget ol {
    padding-left: 1.1rem;
}
.footer-widget .menu,
.footer-widget .wp-block-navigation__container {
    list-style: none;
    padding-left: 0;
}
.footer-widget .menu li,
.footer-widget .wp-block-navigation-item {
    margin-bottom: 0.5rem;
}
.footer-widget-bottom p:last-child,
.footer-widget p:last-child {
    margin-bottom: 0;
}

.services-pricing-section {
    padding-top: 3.25rem;
}
.services-price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}
.services-price-grid-3up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-price-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.45rem 1.35rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.service-price-card h2 {
    font-size: clamp(1.9rem, 2.35vw, 2.45rem);
    margin-bottom: 0.9rem;
}
.services-note-block {
    margin-top: auto;
    padding-top: 1.25rem;
}
.services-note-block p {
    margin: 0;
    color: var(--soft-ink);
    font-weight: 600;
}
.services-page-footer {
    padding-top: 2rem;
}
.services-page-note {
    margin: 0 0 1rem;
    color: var(--soft-ink);
    font-weight: 600;
}
@media (max-width: 980px) {
    .services-price-grid,
    .services-price-grid-3up {
        grid-template-columns: 1fr;
    }
}


/* v1.4.6 service/gallery/about refinements */
.about-grid {
    align-items: start;
    gap: 1.5rem;
}
.about-grid .image-panel {
    max-width: 430px;
    width: 100%;
    justify-self: start;
}
.about-grid .image-panel img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}
.services-pricing-section {
    padding-top: 2.5rem;
    padding-bottom: 2.9rem;
}
.layout-style-three-cards {
    align-items: stretch;
}
.service-price-card-flex {
    min-height: 720px;
}
.service-price-card-top,
.service-price-card-bottom {
    width: 100%;
}
.service-price-card-bottom {
    margin-top: auto;
    padding-top: 1.25rem;
}
.service-price-card h2,
.service-price-card .price-subheading {
    text-align: center;
}
.service-price-card h2::after,
.service-price-card .price-subheading::after {
    content: "";
    display: block;
    width: 158px;
    height: 18px;
    margin: 0.65rem auto 0;
    background:
        radial-gradient(circle at center, var(--gold) 0 4px, transparent 5px),
        linear-gradient(var(--gold), var(--gold));
    background-size: 18px 18px, 2px 18px;
    background-position: center center, center center;
    background-repeat: no-repeat;
    position: relative;
}
.service-price-card h2::before,
.service-price-card .price-subheading::before {
    content: "";
    display: block;
    width: 158px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(to right, rgba(201, 164, 106, 0.72) 0 calc(50% - 18px), transparent calc(50% - 18px) calc(50% + 18px), rgba(201, 164, 106, 0.72) calc(50% + 18px) 100%);
    transform: translateY(30px);
}
.price-subheading {
    margin-top: 0;
}
.service-price-card .price-table {
    gap: 0.42rem;
}
.service-price-card .price-row {
    border-bottom: 0;
    padding-bottom: 0;
    font-size: 0.98rem;
}
.service-price-card .price-row span {
    padding-right: 0.75rem;
}
.services-page-footer {
    padding-top: 1.35rem;
}
.services-page-note {
    margin: 0 0 0.85rem;
    font-style: italic;
    font-weight: 500;
}
.gallery-grid .gallery-card {
    overflow: hidden;
    border-radius: var(--radius-sm);
}
@media (max-width: 1180px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 980px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .about-grid .image-panel {
        max-width: 100%;
    }
    .service-price-card-flex {
        min-height: auto;
    }
}
@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .service-price-card {
        padding: 1.2rem 1rem;
    }
}


/* v1.4.7 services layout polish */
.services-pricing-section {
    padding-top: 2.35rem;
    padding-bottom: 2.65rem;
}

.services-price-grid.layout-style-three-cards {
    gap: 1.45rem;
}

.service-price-card {
    padding: 1.8rem 2.15rem 1.7rem;
    display: flex;
    flex-direction: column;
}

.service-price-card-flex {
    min-height: 720px;
}

.service-price-card-top,
.service-price-card-bottom {
    width: 100%;
}

.service-price-card-top {
    min-height: 24.75rem;
}

.service-price-card-bottom {
    margin-top: 0.85rem;
    min-height: 0;
    padding-top: 0;
}

.service-price-card h2,
.service-price-card .price-subheading {
    position: relative;
    text-align: center;
    margin: 0 0 1.35rem;
    padding-bottom: 1.45rem;
}

.service-price-card h2::before,
.service-price-card .price-subheading::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.42rem;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    background: var(--gold);
    border-radius: 50%;
}

.service-price-card h2::after,
.service-price-card .price-subheading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.72rem;
    width: 160px;
    height: 2px;
    margin-left: -80px;
    background: linear-gradient(
        to right,
        rgba(201, 164, 106, 0.72) 0 43%,
        transparent 43% 57%,
        rgba(201, 164, 106, 0.72) 57% 100%
    );
}

.price-subheading {
    margin-top: 0;
}

.service-price-card .price-table {
    gap: 0.52rem;
}

.service-price-card .price-row {
    align-items: baseline;
    gap: 0.95rem;
    padding-bottom: 0;
    font-size: 0.98rem;
    border-bottom: 0;
}

.service-price-card .price-row span {
    line-height: 1.35;
}

.service-price-card .price-row strong {
    flex: 0 0 auto;
    white-space: nowrap;
}

.services-page-footer {
    padding-top: 1.25rem;
}

.services-page-note {
    margin: 0 0 0.85rem;
}

@media (max-width: 980px) {
    .service-price-card-flex {
        min-height: auto;
    }

    .service-price-card-top {
        min-height: 0;
    }

    .service-price-card-bottom {
        min-height: 0;
        margin-top: 1rem;
    }
}


/* v1.5.0 services page correction */
.services-pricing-section {
    padding-top: 2.4rem;
    padding-bottom: 2.8rem;
}
.services-price-grid.layout-style-three-cards {
    gap: 1.55rem;
    align-items: stretch;
}
.service-price-card {
    padding: 1.95rem 1.95rem 1.55rem;
}
.service-price-card-flex {
    min-height: 0;
}
.service-price-card-top,
.service-price-card-bottom {
    width: 100%;
}
.service-price-card-top {
    padding-bottom: 1.55rem;
    border-bottom: 1px solid rgba(201, 164, 106, 0.34);
}
.service-price-card-bottom {
    margin-top: 0;
    padding-top: 1.45rem;
}
.service-price-card h2,
.service-price-card .price-subheading {
    position: relative;
    text-align: center;
    margin: 0 0 1.5rem;
    padding-bottom: 1.55rem;
}
.service-price-card h2::before,
.service-price-card .price-subheading::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.50rem;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background: var(--gold);
    transform: rotate(45deg);
    border-radius: 0;
}
.service-price-card h2::after,
.service-price-card .price-subheading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.78rem;
    width: 130px;
    height: 2px;
    margin-left: -65px;
    background: linear-gradient(
        to right,
        rgba(201, 164, 106, 0.72) 0 42%,
        transparent 42% 58%,
        rgba(201, 164, 106, 0.72) 58% 100%
    );
}
.service-price-card .price-table {
    width: 100%;
    display: grid;
    gap: 0.72rem;
}
.service-price-card .price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    column-gap: 1rem;
    align-items: baseline;
    border-bottom: 0;
    padding-bottom: 0;
    font-size: 0.98rem;
}
.service-price-card .price-row span {
    display: block;
    min-width: 0;
    line-height: 1.35;
}
.service-price-card .price-row strong {
    justify-self: end;
    white-space: nowrap;
}
.services-page-footer {
    padding-top: 1.25rem;
}
.services-page-note {
    margin: 0 0 0.9rem;
    font-style: italic;
    font-weight: 500;
}
@media (max-width: 980px) {
    .service-price-card-top {
        height: auto !important;
        min-height: 0 !important;
    }
    .service-price-card-bottom {
        padding-top: 1.2rem;
    }
}


/* v1.5.1 services row alignment fix */
.services-price-grid.layout-style-three-cards {
    max-width: 1260px;
    margin: 0 auto;
}
.service-price-card {
    padding: 1.95rem 1.7rem 1.55rem;
}
.service-price-card .price-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
}
.service-price-card .price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 0;
    padding-bottom: 0;
    font-size: 0.98rem;
}
.service-price-card .price-row span {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.32;
    white-space: nowrap;
}
.service-price-card .price-row strong {
    flex: 0 0 auto;
    margin-left: auto;
    white-space: nowrap;
    text-align: right;
}
@media (max-width: 1180px) {
    .service-price-card {
        padding: 1.75rem 1.45rem 1.45rem;
    }
    .service-price-card .price-row span {
        white-space: normal;
    }
}
@media (max-width: 980px) {
    .service-price-card .price-row {
        gap: 0.85rem;
    }
    .service-price-card .price-row span {
        white-space: normal;
    }
}


/* v1.5.2 service row hard alignment fix */
.service-price-card .price-table {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    gap: 0.62rem;
}
.service-price-card .price-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    column-gap: 1rem;
    align-items: start !important;
    margin: 0;
    padding: 0;
    line-height: 1.24;
    min-height: 1.24em;
}
.service-price-card .price-row-label,
.service-price-card .price-row-value {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.24 !important;
}
.service-price-card .price-row-label {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.service-price-card .price-row-value {
    justify-self: end;
    align-self: start;
    white-space: nowrap;
    text-align: right;
}
@media (max-width: 1180px) {
    .service-price-card .price-row-label {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
}


/* v1.5.3 namespaced service row alignment fix */
.services-pricing-section .dj-service-price-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
}
.services-pricing-section .dj-service-price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    column-gap: 1rem;
    align-items: start;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.32;
}
.services-pricing-section .dj-service-item-text,
.services-pricing-section .dj-service-item-price {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1.32;
}
.services-pricing-section .dj-service-item-text {
    min-width: 0;
    white-space: nowrap;
}
.services-pricing-section .dj-service-item-price {
    justify-self: end;
    text-align: right;
    white-space: nowrap;
}
@media (max-width: 1180px) {
    .services-pricing-section .dj-service-item-text {
        white-space: normal;
    }
}


/* v1.5.8 inner page background clarity */
body.dj-inner-background-page .services-pricing-section,
body.dj-inner-background-page .staff-page-section,
body.dj-inner-background-page .section-soft {
    background-color: transparent !important;
}
body.dj-inner-background-page .service-price-card,
body.dj-inner-background-page .staff-card,
body.dj-inner-background-page .gallery-card,
body.dj-inner-background-page .contact-card,
body.dj-inner-background-page .image-panel,
body.dj-inner-background-page .about-grid > div:last-child {
    backdrop-filter: none;
}

/* v1.5.9 contact/settings polish */
.footer-bottom,
.footer-widget-bottom,
.footer-widget-bottom p,
.footer-widget-bottom .textwidget,
.footer-widget-bottom .widget,
.site-footer .footer-bottom {
    text-align: center;
    justify-content: center;
}
.footer-widget-bottom {
    width: 100%;
}
.contact-social-row {
    margin-top: 1rem;
}
.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 600;
}
.contact-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(201, 164, 106, 0.14);
    color: var(--gold-deep);
}
.contact-social-icon svg {
    width: 1rem;
    height: 1rem;
}
.about-copy h2,
.page-content-about-heading {
    color: var(--dj-about-heading-color, var(--ink));
}
.about-copy p,
.page-content-about-text {
    color: var(--dj-about-text-color, var(--soft-ink));
}
.page-content-hero-heading {
    color: var(--dj-hero-heading-color, var(--ink));
}
.page-content-hero-text {
    color: var(--dj-hero-text-color, var(--soft-ink));
}
.dj-form-row-color {
    max-width: 220px;
}
.dj-color-input {
    width: 72px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--border, rgba(23,19,17,.12));
    border-radius: 10px;
    background: transparent;
}


/* v1.6.2 about page lower-right bottom overlay */
.section-about-clean {
    position: relative;
    min-height: clamp(620px, 86vh, 980px);
    padding-bottom: 0;
}
.about-grid-text-only {
    position: relative;
    display: block;
    min-height: inherit;
}
.about-spacer {
    display: none;
}
.about-copy-shifted {
    position: absolute;
    right: clamp(1rem, 3vw, 2.25rem);
    bottom: clamp(1rem, 3vh, 2rem);
    width: min(39rem, calc(100% - 2rem));
    max-width: min(39rem, 46vw);
    margin: 0;
    padding: clamp(1.1rem, 1.9vw, 1.6rem) clamp(1.15rem, 1.9vw, 1.65rem);
    background: rgba(58, 42, 30, 0.42);
    border-radius: 18px;
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.12);
}
.about-copy-shifted h2 {
    margin-bottom: 0.85rem;
}
.about-copy-shifted p {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.8;
}
.about-copy-shifted .page-content-about-heading,
.about-copy-shifted .page-content-about-text,
.about-copy-shifted h2,
.about-copy-shifted p {
    color: #fff !important;
}
.services-page-footer {
    padding-top: 1.1rem;
}
.services-page-footer .button,
.services-page-footer a.button {
    display: none !important;
}
.contact-social-link {
    color: #1877f2;
}
.contact-social-icon {
    background: rgba(24, 119, 242, 0.14);
    color: #1877f2;
}
.footer-bottom,
.footer-bottom p,
.site-footer .footer-bottom,
.site-footer .footer-bottom p,
.footer-widget-bottom,
.footer-widget-bottom p,
.footer-widget-bottom .textwidget {
    text-align: center !important;
    width: 100%;
}
@media (max-width: 980px) {
    .section-about-clean {
        min-height: auto;
        padding-bottom: 1.5rem;
    }
    .about-grid-text-only {
        min-height: auto;
    }
    .about-copy-shifted {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 1rem 1rem 1.1rem;
        background: rgba(58, 42, 30, 0.5);
    }
}

/* v1.6.4 homepage about card + inner background parity */
body.dj-inner-background-page::before {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    opacity: var(--dj-inner-page-bg-opacity, 0.5) !important;
}

.services-page-note,
.services-note-block p {
    color: var(--dj-services-note-color, var(--soft-ink)) !important;
}

.home-hero-with-about-card {
    position: relative;
}

.home-about-card {
    position: absolute;
    right: clamp(1rem, 3vw, 2.25rem);
    bottom: clamp(1rem, 3vh, 2rem);
    width: min(39rem, calc(100% - 2rem));
    max-width: min(39rem, 46vw);
    margin: 0;
    padding: clamp(1.1rem, 1.9vw, 1.6rem) clamp(1.15rem, 1.9vw, 1.65rem);
    background: rgba(58, 42, 30, 0.42);
    border-radius: 18px;
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.12);
}
.home-about-card-heading {
    margin: 0 0 0.85rem;
    color: var(--dj-home-about-heading-color, #fff);
}
.home-about-card-text {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.8;
    color: var(--dj-home-about-text-color, #fff);
}

@media (max-width: 980px) {
    body.dj-inner-background-page::before,
    body.dj-front-page::before {
        background-size: cover !important;
        background-position: center center !important;
    }
    .home-about-card {
        position: static;
        width: calc(100% - 2rem);
        max-width: 100%;
        margin: 1rem auto 0;
        padding: 1rem 1rem 1.1rem;
        background: rgba(58, 42, 30, 0.5);
    }
}


/* v1.6.8 shared card positioning across Services / Staff / Contact */
.services-pricing-section,
.staff-page-section,
.contact-page-section {
    padding-top: 2.4rem !important;
    padding-bottom: 2.8rem;
}

.services-price-grid.layout-style-three-cards,
.staff-grid {
    max-width: 1260px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.55rem;
    align-items: stretch;
}

.service-price-card,
.staff-card {
    min-height: 720px;
}

.staff-card {
    padding: 1.95rem 1.95rem 1.55rem;
    border-radius: var(--radius);
}

.staff-card h2 {
    min-height: 150px;
    margin-bottom: 0.95rem;
}

.staff-photo-wrap {
    min-height: 230px;
    margin-bottom: 1.1rem;
}

.contact-grid {
    max-width: 1260px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 980px) {
    .services-pricing-section,
    .staff-page-section,
    .contact-page-section {
        padding-top: 2rem !important;
    }

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

    .service-price-card,
    .staff-card {
        min-height: auto;
    }
}


/* v1.6.9 services mobile layout fix */
@media (max-width: 980px) {
    .services-price-grid.layout-style-three-cards {
        grid-template-columns: 1fr !important;
        max-width: min(560px, calc(100vw - 2rem));
        gap: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .services-price-grid.layout-style-three-cards .service-price-card {
        width: 100%;
        min-height: auto !important;
        padding: 1.35rem 1.15rem 1.2rem;
    }

    .services-price-grid.layout-style-three-cards .service-price-card-top,
    .services-price-grid.layout-style-three-cards .service-price-card-bottom {
        min-height: 0 !important;
        height: auto !important;
    }

    .services-price-grid.layout-style-three-cards .service-price-card-bottom {
        padding-top: 1.15rem;
    }

    .services-price-grid.layout-style-three-cards .service-price-card h2,
    .services-price-grid.layout-style-three-cards .service-price-card .price-subheading {
        font-size: clamp(2.1rem, 8vw, 3rem);
        line-height: 1.05;
        margin-bottom: 1.15rem;
        padding-bottom: 1.25rem;
    }

    .services-price-grid.layout-style-three-cards .service-price-card h2::after,
    .services-price-grid.layout-style-three-cards .service-price-card .price-subheading::after {
        width: 112px;
        margin-left: -56px;
    }

    .services-pricing-section .dj-service-price-table {
        gap: 0.55rem;
    }

    .services-pricing-section .dj-service-price-row {
        grid-template-columns: minmax(0, 1fr) auto !important;
        column-gap: 0.75rem;
        align-items: start !important;
    }

    .services-pricing-section .dj-service-item-text {
        white-space: normal !important;
        overflow-wrap: anywhere;
    }

    .services-pricing-section .dj-service-item-price {
        white-space: nowrap !important;
    }
}
