/* ============================================================
   ATELIER UPGRADE — additive layer over service-style.css
   Editorial luxury: cream paper, mono meta, oxblood + gold accents
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap');

:root {
    /* extended palette */
    --oxblood:        #5C2A1F;
    --oxblood-soft:   #7A3A2A;
    --gold-leaf:      #B89968;
    --gold-bright:    #D4B26A;
    --cream-paper:    #FFFFFF;
    --cream-deep:     #F0F0F0;
    --cream-warm:     #FAFAFA;
    --ink-deep:       #2A1F18;

    --font-mono:      'DM Mono', ui-monospace, monospace;

    --paper-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ============================================================
   GLOBAL PAPER GRAIN — disabled (perf). Hero retains its own.
   ============================================================ */

/* selection refinement */
::selection { background: var(--oxblood); color: var(--cream-paper); }

/* progress bar — gold gradient */
.progress-bar {
    background: linear-gradient(90deg, var(--gold-leaf) 0%, var(--accent-mid) 35%, var(--oxblood) 70%, var(--gold-leaf) 100%);
    box-shadow: 0 0 14px rgba(184,153,104,0.55);
}

/* ============================================================
   EDITORIAL UTILITIES
   ============================================================ */
.atelier-mono {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-faint);
}

/* vertical section number — sticky on left margin */
.section-number {
    position: absolute;
    top: 60px;
    left: 28px;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.55;
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 14px;
}
.section-number::before {
    content: '';
    width: 1px;
    height: 40px;
    background: var(--accent);
    opacity: 0.4;
}

/* ornamental section break */
.atelier-break {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 32px 0 0;
    color: var(--accent);
    opacity: 0.65;
}
.atelier-break::before,
.atelier-break::after {
    content: '';
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
}
.atelier-break svg { width: 14px; height: 14px; }

/* ============================================================
   HERO — editorial polish
   ============================================================ */
.service-hero {
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--bg-deep) 60%, var(--cream-paper) 100%);
}

/* warmer radial glow with gold tint */
.service-hero::after {
    background:
        radial-gradient(ellipse 60% 50% at 12% 65%, rgba(184,153,104,0.13) 0%, transparent 60%),
        radial-gradient(ellipse 45% 38% at 88% 18%, rgba(92,42,31,0.08) 0%, transparent 65%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(241,230,210,0.6) 0%, transparent 50%) !important;
}

/* hero meta — vertical serial-no + est. */
.hero-meta {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    gap: 22px;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.75;
    z-index: 4;
    pointer-events: none;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 12px; }
.hero-meta span::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
}

/* italic-style accent — Syne italic via oblique transform on Manrope italic */
.hero-h1 .t-accent {
    font-style: italic;
    font-weight: 700;
}

/* hero badge — refined with gold ring */
.hero-service-label {
    background: linear-gradient(135deg, rgba(255,251,245,0.9), rgba(248,240,227,0.6)) !important;
    border: 1px solid rgba(184,153,104,0.35) !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.8) inset,
        0 4px 14px rgba(184,153,104,0.10);
}

/* image frame — vignette + sepia warm */
.hero-image-frame {
    box-shadow:
        0 1px 0 rgba(255,255,255,0.5) inset,
        0 30px 80px rgba(92,42,31,0.18),
        0 0 0 1px rgba(184,153,104,0.18);
}
.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 100% at 50% 50%, transparent 50%, rgba(42,31,24,0.28) 100%),
        linear-gradient(180deg, transparent 60%, rgba(92,42,31,0.12) 100%);
    pointer-events: none;
    z-index: 2;
}
.hero-image-frame img {
    filter: saturate(1.05) contrast(1.04);
}

/* cursor-tracking light — set --mx/--my via JS */
.hero-image-frame {
    --mx: 50%;
    --my: 50%;
}
.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(180px circle at var(--mx) var(--my), rgba(255,236,200,0.22), transparent 60%);
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.hero-image-frame:hover::before { opacity: 1; }

/* stat card — gold inner ring */
.hero-stat-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(250,244,234,0.92)) !important;
    border: 1px solid rgba(184,153,104,0.3) !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.9) inset,
        0 0 0 1px rgba(184,153,104,0.18) inset,
        0 24px 50px rgba(92,42,31,0.12) !important;
}

/* trust block — heading mono */
.hero-trust-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

/* ============================================================
   OVERVIEW — paper layer, italic accent, ribbon strip
   ============================================================ */
.service-overview {
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream-deep) 100%);
}

.service-overview::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184,153,104,0.4) 30%, rgba(184,153,104,0.4) 70%, transparent);
}

.section-title .t-accent { font-style: italic; }

/* eyebrow — mono variant */
.eyebrow {
    font-family: var(--font-mono) !important;
    font-size: 0.66rem !important;
    letter-spacing: 0.34em !important;
    font-weight: 500 !important;
}

/* overview badge — gold gradient */
.overview-badge {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-leaf) 50%, var(--accent-dark) 100%) !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.3) inset,
        0 18px 40px rgba(184,153,104,0.35) !important;
}

/* image stack — paper edge */
.overview-img-main {
    box-shadow:
        0 1px 0 rgba(255,255,255,0.5) inset,
        0 0 0 1px rgba(184,153,104,0.2),
        0 40px 80px rgba(92,42,31,0.15) !important;
}
.overview-img-accent {
    border: 6px solid var(--cream-paper) !important;
    box-shadow:
        0 0 0 1px rgba(184,153,104,0.3),
        0 20px 50px rgba(92,42,31,0.18) !important;
}

/* ============================================================
   BENEFITS — ghost numerals, corner ticks
   ============================================================ */
.service-benefits {
    background: var(--bg-deep);
}

.benefits-bg-text {
    -webkit-text-stroke: 1.5px rgba(45,20,8,0.14) !important;
    font-style: italic;
}

.benefit-card {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--cream-warm) 120%) !important;
}

/* corner ticks — luxury packaging */
.benefit-card::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    width: 12px;
    height: 12px;
    border-top: 1px solid rgba(184,153,104,0.5);
    border-left: 1px solid rgba(184,153,104,0.5);
    pointer-events: none;
    transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.benefit-card:hover::after {
    width: 20px;
    height: 20px;
    border-color: var(--accent);
}

/* ghost numeral — huge faded number */
.benefit-card .benefit-num {
    font-family: var(--font-display);
    position: absolute !important;
    bottom: -10px;
    right: -8px;
    top: auto !important;
    font-size: 5rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    color: transparent !important;
    -webkit-text-stroke: 1.5px rgba(45,20,8,0.35);
    line-height: 0.85;
    opacity: 0.9;
    transition: transform 0.5s var(--ease-out), -webkit-text-stroke-color 0.4s var(--ease-out);
    pointer-events: none;
}
.benefit-card:hover .benefit-num {
    -webkit-text-stroke-color: var(--accent);
    transform: translate(-4px, -4px);
}

.benefit-title {
    font-style: normal;
}
.benefit-title::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--accent);
    margin-top: 10px;
    opacity: 0.6;
    transition: width 0.5s var(--ease-out);
}
.benefit-card:hover .benefit-title::after { width: 48px; }

/* ============================================================
   PROCESS — timeline upgrade
   ============================================================ */
.service-process {
    background:
        linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
        url('../knowledgesuite/brand-care-guides/bbitaliamedia/maxalto-sofa-full-view-luxury-room.webp') center / cover no-repeat;
}

.process-track::before {
    background: linear-gradient(90deg, var(--gold-leaf) 0%, var(--accent) 50%, var(--gold-leaf) 100%) !important;
    height: 2px !important;
    top: 37px !important;
    opacity: 0.55;
}

/* progress overlay — animated, mirrors base line exactly, behind circles */
.process-track::after {
    content: '';
    position: absolute;
    top: 37px;
    left: calc(100% / 8);
    right: calc(100% / 8);
    height: 2px;
    background: linear-gradient(90deg, var(--oxblood) 0%, var(--accent) 50%, var(--gold-bright) 100%);
    z-index: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.2s var(--ease-out);
}
.process-track.in-view::after { transform: scaleX(1); }

.process-num {
    background: var(--cream-paper) !important;
    border: 2px solid rgba(184,153,104,0.35) !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.7) inset,
        0 0 0 5px var(--cream-warm),
        0 8px 22px rgba(92,42,31,0.08) !important;
}
.process-step.active .process-num,
.process-step:hover .process-num {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--accent) 50%, var(--oxblood) 100%) !important;
    border-color: var(--accent) !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.3) inset,
        0 0 0 5px var(--cream-warm),
        0 18px 36px rgba(184,153,104,0.4) !important;
}

/* step label above number — absolute, doesn't push circle down */
.process-step { position: relative; }
.process-step .process-step-meta {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.65;
    white-space: nowrap;
    z-index: 2;
}

/* ============================================================
   GALLERY — bento mosaic + brass BA handle
   ============================================================ */
.service-gallery {
    background: var(--cream-paper);
    position: relative;
}

.service-faq { position: relative; }
.service-cta-band { position: relative; }

.gallery-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    grid-template-rows: 240px 240px !important;
    grid-auto-flow: dense;
}

.gallery-item:first-child {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 3 !important;
}
.gallery-item:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}
.gallery-item:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}
.gallery-item:nth-child(4) {
    grid-column: 2 / 5;
    grid-row: 2 / 3;
}

.gallery-item {
    box-shadow:
        0 1px 0 rgba(255,255,255,0.4) inset,
        0 0 0 1px rgba(184,153,104,0.18),
        0 14px 30px rgba(92,42,31,0.10);
    border-radius: 14px !important;
}

.gallery-overlay {
    background: linear-gradient(to top, rgba(42,31,24,0.85) 0%, rgba(92,42,31,0.3) 50%, transparent 80%) !important;
}

.gallery-overlay::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(255,255,255,0.55);
    border-left: 1px solid rgba(255,255,255,0.55);
}
.gallery-overlay::after {
    content: '';
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 14px;
    height: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.55);
    border-right: 1px solid rgba(255,255,255,0.55);
}

.gallery-label::before {
    content: '— ';
    color: var(--gold-bright);
    font-family: var(--font-mono);
}

/* BA — brass handle */
.ba-strip {
    box-shadow:
        0 0 0 1px rgba(184,153,104,0.25),
        0 30px 70px rgba(92,42,31,0.18);
}
.ba-handle {
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--accent) 50%, var(--accent-dark) 100%) !important;
    width: 2px !important;
    box-shadow: 0 0 18px rgba(184,153,104,0.7) !important;
}
.ba-handle::before {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--accent-mid) 60%, var(--accent-dark) 100%) !important;
    width: 46px !important;
    height: 46px !important;
    border: 2px solid var(--cream-paper) !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.4) inset,
        0 8px 24px rgba(92,42,31,0.4) !important;
}
.ba-handle::after {
    color: var(--cream-paper) !important;
    font-size: 1rem !important;
}
.ba-tag {
    font-family: var(--font-mono) !important;
    background: rgba(248,240,227,0.92) !important;
    color: var(--ink-deep) !important;
    border: 1px solid rgba(184,153,104,0.4) !important;
    backdrop-filter: blur(10px);
}

/* ============================================================
   PRICING — featured card light theatre
   ============================================================ */
.service-pricing {
    background: var(--cream-warm);
}

.pricing-card {
    background: var(--bg-surface) !important;
    overflow: visible !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.8) inset,
        0 0 0 1px rgba(184,153,104,0.14),
        0 10px 30px rgba(92,42,31,0.06);
}

/* corner ticks on every plan */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(184,153,104,0.5);
    border-left: 1px solid rgba(184,153,104,0.5);
    pointer-events: none;
    z-index: 2;
}

/* FEATURED — gold leaf border, NOT dark */
.pricing-card.featured {
    background: linear-gradient(180deg, var(--cream-paper) 0%, var(--bg-surface) 50%, var(--cream-warm) 100%) !important;
    color: var(--text-main) !important;
    transform: scale(1.06) !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.9) inset,
        0 0 0 1.5px var(--gold-leaf),
        0 0 0 6px rgba(184,153,104,0.08),
        0 40px 80px rgba(92,42,31,0.18) !important;
}
.pricing-card.featured::before {
    border-color: var(--gold-bright);
    width: 18px;
    height: 18px;
}
.pricing-card.featured::after {
    content: '';
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 18px;
    height: 18px;
    border-bottom: 1px solid var(--gold-bright);
    border-right: 1px solid var(--gold-bright);
    pointer-events: none;
}
.pricing-card.featured .pricing-name { color: var(--text-main) !important; }
.pricing-card.featured .pricing-tagline { color: var(--text-muted) !important; }
.pricing-card.featured .pricing-amount { color: var(--text-main) !important; }
.pricing-card.featured .pricing-currency { color: var(--accent-dark) !important; }
.pricing-card.featured .pricing-unit { color: var(--text-muted) !important; }
.pricing-card.featured .pricing-tier { color: var(--accent-dark) !important; }
.pricing-card.featured .pricing-features li { color: var(--text-main) !important; }
.pricing-card.featured .pricing-features li svg { color: var(--accent-dark) !important; }
.pricing-card.featured .pricing-price {
    border-color: rgba(184,153,104,0.3) !important;
}

/* corner ribbon — replaces flat "Most Popular" */
.pricing-popular {
    top: -14px !important;
    right: 24px !important;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--accent) 50%, var(--oxblood) 100%) !important;
    color: var(--cream-paper) !important;
    padding: 8px 18px !important;
    font-family: var(--font-mono) !important;
    font-size: 0.55rem !important;
    letter-spacing: 0.32em !important;
    border-radius: 4px !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.25) inset,
        0 8px 22px rgba(184,153,104,0.4),
        0 0 0 4px var(--cream-warm);
}
.pricing-popular::before {
    content: '◆';
    margin-right: 8px;
    color: var(--cream-paper);
    opacity: 0.85;
}

/* price amount — bigger, with mono unit */
.pricing-amount { font-size: 2.8rem !important; }
.pricing-unit {
    font-family: var(--font-mono) !important;
    font-size: 0.7rem !important;
}

/* ============================================================
   TESTIMONIALS — italic + giant glyph
   ============================================================ */
.service-testimonials {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--cream-paper) 100%);
}

.testimonial-card {
    background: var(--bg-surface) !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.7) inset,
        0 0 0 1px rgba(184,153,104,0.14),
        0 12px 36px rgba(92,42,31,0.08) !important;
    overflow: hidden;
}
/* paper-edge tick */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(184,153,104,0.45);
    border-left: 1px solid rgba(184,153,104,0.45);
}
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 14px;
    height: 14px;
    border-bottom: 1px solid rgba(184,153,104,0.45);
    border-right: 1px solid rgba(184,153,104,0.45);
}

/* giant quote glyph — top-right */
.testimonial-quote-icon {
    position: absolute;
    top: 22px;
    right: 28px;
    width: 60px !important;
    height: 60px !important;
    color: var(--gold-leaf) !important;
    opacity: 0.16 !important;
    margin-bottom: 0 !important;
}

.testimonial-text {
    font-style: italic;
    font-weight: 400;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    color: var(--ink-deep) !important;
    position: relative;
    z-index: 1;
}

.testimonial-stars svg {
    fill: var(--gold-bright) !important;
    color: var(--gold-bright) !important;
}

.author-avatar {
    background: linear-gradient(135deg, var(--cream-paper) 0%, var(--gold-leaf) 100%) !important;
    border: 2px solid var(--cream-paper) !important;
    box-shadow: 0 0 0 1px rgba(184,153,104,0.35) !important;
    color: var(--oxblood) !important;
}
.author-location {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.62rem !important;
}

/* ============================================================
   FAQ — Q.01 prefix + accent bar
   ============================================================ */
.service-faq {
    background: var(--cream-warm);
}

.faq-item {
    counter-increment: faq;
    border-bottom-color: rgba(184,153,104,0.18) !important;
    position: relative;
    transition: padding-left 0.5s var(--ease-out);
}
.faq-list { counter-reset: faq; }
.faq-item:first-child { border-top-color: rgba(184,153,104,0.18) !important; }

/* Q.0n prefix */
.faq-question::before {
    content: 'Q.0' counter(faq);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    color: var(--accent);
    opacity: 0.55;
    margin-right: 18px;
    flex-shrink: 0;
    transition: color 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}
.faq-item.open .faq-question::before {
    color: var(--oxblood);
    opacity: 1;
}

/* accent bar slides in on open */
.faq-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 26px;
    bottom: 26px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-bright), var(--oxblood));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s var(--ease-out);
}
.faq-item.open {
    padding-left: 16px;
}
.faq-item.open::before { transform: scaleY(1); }

.faq-icon {
    background: var(--cream-paper) !important;
    border-color: rgba(184,153,104,0.35) !important;
}
.faq-item.open .faq-icon {
    background: linear-gradient(135deg, var(--gold-bright), var(--accent)) !important;
}

.faq-contact-nudge {
    background: linear-gradient(180deg, var(--cream-paper), var(--bg-surface)) !important;
    border: 1px solid rgba(184,153,104,0.3) !important;
    position: relative;
}
.faq-contact-nudge::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(184,153,104,0.5);
    border-left: 1px solid rgba(184,153,104,0.5);
}

/* ============================================================
   CTA BAND — flip from dark to cream paper
   ============================================================ */
.service-cta-band {
    background: linear-gradient(180deg, var(--cream-paper) 0%, var(--cream-deep) 100%) !important;
    border-top: 1px solid rgba(184,153,104,0.2);
    border-bottom: 1px solid rgba(184,153,104,0.2);
}
.service-cta-band::before {
    background:
        radial-gradient(ellipse 70% 70% at 50% 50%, rgba(184,153,104,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 12% 90%, rgba(92,42,31,0.10) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 88% 10%, rgba(212,178,106,0.12) 0%, transparent 70%) !important;
}
.cta-band-bg {
    opacity: 0.16 !important;
    filter: sepia(0.4) saturate(1.1) contrast(0.95) !important;
    mix-blend-mode: multiply;
}

.cta-band-eyebrow,
.cta-band-title,
.cta-band-subtitle {
    color: var(--ink-deep) !important;
}
.cta-band-eyebrow {
    font-family: var(--font-mono) !important;
    color: var(--accent-dark) !important;
}
.cta-band-title .t-accent { color: var(--accent) !important; font-style: italic; }
.cta-band-subtitle { color: var(--text-muted) !important; }

/* ghost button on light bg */
.service-cta-band .btn-ghost {
    background: rgba(255,255,255,0.55) !important;
    color: var(--ink-deep) !important;
    border: 1px solid rgba(184,153,104,0.4) !important;
    backdrop-filter: blur(12px);
}
.service-cta-band .btn-ghost:hover {
    background: rgba(255,255,255,0.85) !important;
    border-color: var(--accent) !important;
    color: var(--oxblood) !important;
}

/* ============================================================
   POPUP — gold accent corners
   ============================================================ */
.popup-corner-accent.tl,
.popup-corner-accent.br {
    border-color: var(--gold-leaf) !important;
}

/* ============================================================
   FOOTER — wax seal + ornament
   ============================================================ */
footer {
    background: var(--cream-paper) !important;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-leaf) 30%, var(--gold-leaf) 70%, transparent);
}

.footer-orn-diamond { color: var(--accent); }
.footer-orn-line { background: rgba(184,153,104,0.4) !important; }

.footer-contact-link {
    transition: all 0.3s ease;
    background-image: linear-gradient(var(--accent), var(--accent));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    padding-bottom: 2px;
}
.footer-contact-link:hover {
    background-size: 100% 1px;
    color: var(--accent-dark);
}

/* ============================================================
   CUSTOM CURSOR — hero region only
   ============================================================ */
.atelier-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s ease;
    opacity: 0;
    will-change: transform;
}
.atelier-cursor.visible { opacity: 1; }
.atelier-cursor.hover {
    width: 56px;
    height: 56px;
    background: rgba(184,153,104,0.18);
    border-color: var(--oxblood);
}
.atelier-cursor::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

/* ============================================================
   PAGE LOAD — letterspacing intro on brand
   ============================================================ */
@keyframes brand-letter-collapse {
    from { letter-spacing: 0.55em; opacity: 0; }
    to   { letter-spacing: 0.28em; opacity: 1; }
}
.brand-name {
    animation: brand-letter-collapse 1.4s var(--ease-out) both;
}

/* hero h1 — staggered word reveal helper */
.hero-h1 .t-main,
.hero-h1 .t-accent {
    display: inline-block;
    overflow: hidden;
}
@keyframes hero-rise {
    from { transform: translateY(110%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.hero-h1 .t-main   { animation: hero-rise 1s var(--ease-out) 0.2s both; }
.hero-h1 .t-accent { animation: hero-rise 1s var(--ease-out) 0.5s both; }

/* ============================================================
   ATELIER STRIP — full-bleed editorial image break
   ============================================================ */
.atelier-strip {
    position: relative;
    height: 62vh;
    min-height: 460px;
    max-height: 720px;
    overflow: hidden;
    background: var(--ink-deep);
    isolation: isolate;
}
.atelier-strip-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04) brightness(0.95);
    transition: transform 18s linear;
    z-index: 0;
}
.atelier-strip:hover .atelier-strip-img { transform: scale(1.12); }

.atelier-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20,12,6,0.55) 0%, rgba(20,12,6,0.18) 35%, rgba(20,12,6,0.18) 65%, rgba(20,12,6,0.78) 100%),
        radial-gradient(ellipse 60% 50% at 18% 80%, rgba(184,153,104,0.25) 0%, transparent 70%);
    z-index: 1;
}

.atelier-strip-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 0 60px;
    color: var(--cream-paper);
}

.atelier-strip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(248,240,227,0.75);
}
.atelier-strip-meta span { display: inline-flex; align-items: center; gap: 14px; }
.atelier-strip-meta span::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold-bright);
    opacity: 0.7;
}

.atelier-strip-headline {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.4vw, 2.2rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    max-width: 900px;
    color: var(--cream-paper);
}
.atelier-strip-headline .t-italic {
    font-style: italic;
    background: linear-gradient(90deg, var(--gold-bright), #E8C9A8, var(--gold-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.atelier-strip-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}
.atelier-strip-caption {
    max-width: 380px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(248,240,227,0.85);
    font-weight: 300;
}
.atelier-strip-credit {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--gold-bright);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    align-self: flex-end;
    opacity: 0.85;
}

/* ============================================================
   STUDIO MOMENTS — image triptych section
   ============================================================ */
.studio-moments {
    background: var(--cream-paper);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.studio-moments .container {
    position: relative;
    z-index: 1;
}

.studio-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 60px;
    margin-bottom: 56px;
}
.studio-head-right {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.75;
    text-align: right;
    line-height: 1.8;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 18px;
}
.studio-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--cream-deep);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.5) inset,
        0 0 0 1px rgba(184,153,104,0.18),
        0 18px 38px rgba(92,42,31,0.10);
}
.studio-card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.studio-card:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}
.studio-card:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
.studio-card:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.studio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out), filter 0.6s var(--ease-out);
    filter: saturate(1.05);
}
.studio-card:hover img { transform: scale(1.06); filter: saturate(1.15) contrast(1.04); }

.studio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20,12,6,0.78) 100%);
    z-index: 1;
    pointer-events: none;
}

.studio-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    color: var(--cream-paper);
    pointer-events: none;
}
.studio-caption-meta {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 6px;
    display: block;
}
.studio-caption-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

/* corner ticks */
.studio-card::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(255,255,255,0.6);
    border-left: 1px solid rgba(255,255,255,0.6);
    z-index: 2;
    transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out);
}
.studio-card:hover::after { width: 22px; height: 22px; }

/* ============================================================
   FAQ side image — slot inside faq-left
   ============================================================ */
.faq-side-image {
    position: relative;
    margin-top: 28px;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--cream-deep);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.5) inset,
        0 0 0 1px rgba(184,153,104,0.22),
        0 18px 36px rgba(92,42,31,0.10);
}
.faq-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease-out);
    filter: saturate(1.05) contrast(1.04);
}
.faq-side-image:hover img { transform: scale(1.05); }
.faq-side-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(20,12,6,0.7) 100%);
    z-index: 1;
}
.faq-side-image-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--cream-paper);
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-side-image-caption::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold-bright);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .hero-meta, .section-number { display: none; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto auto !important;
    }
    .gallery-item:first-child {
        grid-column: 1 / 3 !important;
        grid-row: 1 / 2 !important;
    }
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }
    .pricing-card.featured { transform: scale(1) !important; }
    .pricing-popular { top: -12px !important; right: 16px !important; }

    .atelier-strip { height: 70vh; }
    .atelier-strip-foot { flex-direction: column; align-items: flex-start; gap: 22px; }
    .atelier-strip-credit { writing-mode: horizontal-tb; transform: none; align-self: flex-start; }

    .studio-grid {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 240px 240px 240px !important;
    }
    .studio-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
    .studio-card:nth-child(2) { grid-column: 1 / 3; grid-row: 2 / 3; }
    .studio-card:nth-child(3) { grid-column: 1 / 2; grid-row: 3 / 4; }
    .studio-card:nth-child(4) { grid-column: 2 / 3; grid-row: 3 / 4; }

    .studio-head { grid-template-columns: 1fr; }
    .studio-head-right { text-align: left; }
}

@media (max-width: 640px) {
    .testimonial-quote-icon { width: 40px !important; height: 40px !important; top: 16px; right: 18px; }
    .benefit-card .benefit-num { font-size: 3.5rem !important; }
}
