/* ─────────────────────────────────────────────────────────────
   Photo Library - universal styles for _photo-card, _photo-gallery-grid,
   _photo-lightbox, gallery.php
   Loaded on every page via _main.php with filemtime() cache-bust.
   Token source: site/templates/css/design-tokens.css (Velvet Cinema)
   ───────────────────────────────────────────────────────────── */

/* Universal photo card (Tier 3-E) */
.photo-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm, 0.5rem);
    min-width: 0;
}

.photo-card__media {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-image, 0.75rem);
    background: var(--color-bg-alt, #efe2db);
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow-card, 0 2px 8px rgba(0, 0, 0, 0.04));
    transition: box-shadow var(--transition-base, 300ms ease);
    text-decoration: none;
}

.photo-card__media:hover {
    box-shadow: var(--shadow-card-hover, 0 4px 16px rgba(0, 0, 0, 0.08));
}

/* WebP <picture> wrapper is layout-invisible so the img keeps the media box
   (aspect-ratio 3/4) as its containing block - height:100% would otherwise
   collapse against the picture's auto height. Same fix as .lib-picture. */
.photo-card__picture {
    display: contents;
}

.photo-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hover scale: motion-safe only (hard rule 7) */
@media (prefers-reduced-motion: no-preference) {
    .photo-card__img {
        transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
    }

    .photo-card__media:hover .photo-card__img,
    .photo-card__media:focus-visible .photo-card__img {
        transform: scale(1.04);
    }
}

/* Visible focus ring - never outline:none without replacement (hard rule 6) */
.photo-card__media:focus-visible {
    outline: 2px solid var(--color-accent, #4daab8);
    outline-offset: 2px;
}

.photo-card__caption {
    font-family: var(--font-body, "Lexend", sans-serif);
    font-size: var(--text-sm, 0.85rem);
    line-height: 1.4;
    color: var(--color-body, #5a4a44);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs, 0.25rem) var(--space-sm, 0.5rem);
    align-items: baseline;
}

.photo-card__caption-text {
    display: block;
    width: 100%;
    /* Caption legibility floor (Ben sign-off 2026-06-21): lift off --text-2xs/--text-xs
       to a ~12.8px caption floor regardless of card variant. Stays < 16px so the
       audit keeps it exempt from the body-text rule. */
    font-size: var(--text-sm);
    color: var(--color-heading, #3a2828);
    font-weight: var(--weight-medium, 500);
}

/* Stylist attribution - active: teal link */
.photo-card__attribution {
    color: var(--color-muted, #685850);
    font-size: var(--text-sm, 0.85rem);
}

.photo-card__stylist-link {
    color: var(--color-accent, #4daab8);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: color var(--transition-fast, 150ms ease);
}

.photo-card__stylist-link:hover {
    color: var(--color-accent-hover, #3d949f);
}

.photo-card__stylist-link:focus-visible {
    outline: 2px solid var(--color-focus-ring, #4daab8);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Departed stylist - italic, muted, no link */
.photo-card__stylist-departed {
    color: var(--color-muted, #685850);
    font-style: italic;
}

/* Service CTA link - "Book Balayage" */
.photo-card__service-link {
    margin-left: auto;
    font-size: var(--text-2xs, 0.75rem);
    font-weight: var(--weight-semibold, 600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-heading, #3a2828);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border, rgba(58, 40, 40, 0.1));
    transition: color var(--transition-fast, 150ms ease),
                border-color var(--transition-fast, 150ms ease);
    white-space: nowrap;
}

.photo-card__service-link:hover {
    color: var(--color-accent, #4daab8);
    border-color: var(--color-accent, #4daab8);
}

.photo-card__service-link:focus-visible {
    outline: 2px solid var(--color-focus-ring, #4daab8);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ─── Context modifiers ─────────────────────────────────────────
   Each task that introduces a new surface appends its own rules
   to this file. Baseline context overrides only here.
   ─────────────────────────────────────────────────────────────── */

/* Hero cell: pure visual, caption hidden (Task 5) */
.photo-card--hero-cell .photo-card__caption {
    display: none;
}

/* Pillar tile: sized by pillar layout grid (Task 6) */
.photo-card--pillar-tile {
    /* layout constraints set by .service-pillars grid */
}

/* Stylist feed: slightly smaller caption text (Task 8) */
.photo-card--stylist-feed .photo-card__caption {
    font-size: var(--text-xs, 0.8rem);
}

/* Service grid: tighter gap (Task 8) */
.photo-card--service-grid .photo-card__caption {
    gap: var(--space-xs, 0.25rem);
}

/* Recent-at-K-Bella strip: dense thumbs, caption-as-hover-overlay */
.photo-card--recent-strip {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm, 4px);
}
.photo-card--recent-strip .photo-card__caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: var(--space-2, 0.5rem);
    background: linear-gradient(to top, rgba(7, 53, 66, 0.92) 0%, rgba(7, 53, 66, 0.55) 60%, transparent 100%);
    color: #fff;
    font-size: var(--text-2xs, 0.7rem);
    line-height: 1.3;
    transform: translateY(100%);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.photo-card--recent-strip .photo-card__caption-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.photo-card--recent-strip .photo-card__attribution { color: rgba(255, 255, 255, 0.85); }
.photo-card--recent-strip .photo-card__stylist-link,
.photo-card--recent-strip .photo-card__service-link { color: #fff; pointer-events: auto; }
.photo-card--recent-strip .photo-card__service-link {
    border-bottom-color: rgba(255, 255, 255, 0.5);
    white-space: normal;
}
@media (hover: hover) {
    .photo-card--recent-strip:hover .photo-card__caption,
    .photo-card--recent-strip:focus-within .photo-card__caption { transform: translateY(0); }
    .photo-card--recent-strip .photo-card__img {
        transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    }
    .photo-card--recent-strip:hover .photo-card__img { transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
    .photo-card--recent-strip .photo-card__caption { transition: none; }
}
/* Native aspect inline: tiles share a fixed HEIGHT, width follows the photo's
   true shape (aspect-ratio:auto overrides the base 3:4). Landscape sits wide,
   portrait narrow, square square - all the same height, zero crop. The figure
   and media shrink-wrap (max-content) so each tile is exactly as wide as its
   image at the strip height. */
.photo-card--recent-strip {
    width: max-content;
}
.photo-card--recent-strip .photo-card__media {
    aspect-ratio: auto;
    height: var(--strip-h, 14rem);
    width: max-content;
}
.photo-card--recent-strip .photo-card__img {
    height: 100%;
    width: auto;
}

/* Recent-at-K-Bella strip on pillar landing pages (Task 7) */
.recent-strip { padding-block: var(--space-12, 4rem); }
.recent-strip__header { text-align: center; margin-bottom: var(--space-8, 2.5rem); }
/* Fixed-height horizontal scroller (not a column grid): every tile shares
   --strip-h so mixed-aspect photos sit inline at true shape, and recency stays
   left-to-right (CSS columns would reorder column-major). Cards are
   .photo-card--recent-strip; their native-aspect rules live with that block. */
.recent-strip__grid {
    --strip-h: clamp(11.5rem, 26vw, 14rem);
    display: flex;
    gap: var(--space-4, 1rem);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-2, 0.5rem);
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent, #4daab8) transparent;
}
.recent-strip__grid > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

/* Service-detail portfolio grid (Task 8 / spec 2.3) */
.service-portfolio { padding-block: var(--space-12, 4rem); }
.service-portfolio__header { text-align: center; margin-bottom: var(--space-8, 2.5rem); }
.service-portfolio__meta { color: var(--color-muted); font-size: 0.95rem; margin-top: 0.5rem; }
/* Aspect-honest masonry (CSS columns) so non-portrait portfolio photos render
   true-to-shape with zero crop. Cards are .photo-card--service-grid; their
   native-aspect override (aspect-ratio:auto + img height:auto) lives in
   style.css alongside the service-detail gallery's. */
.service-portfolio__grid {
    column-count: 2;
    column-gap: var(--space-4, 1rem);
}
.service-portfolio__grid .photo-card--service-grid {
    break-inside: avoid;
    margin-bottom: var(--space-4, 1rem);
}
@media (min-width: 700px)  { .service-portfolio__grid { column-count: 3; } }
@media (min-width: 1100px) { .service-portfolio__grid { column-count: 4; } }

/* Showcase section header for the manifest-driven pair grid layout */
.showcase .showcase__header {
    text-align: center;
    margin-bottom: var(--space-8, 2.5rem);
}

/* Showcase pair grid (home page, 1-col mobile -> 3-col desktop) */
.showcase__pair-grid {
    display: grid;
    gap: var(--space-6, 1.5rem);
    grid-template-columns: 1fr;
}

@media (min-width: 800px) {
    .showcase__pair-grid { grid-template-columns: repeat(3, 1fr); }
}

.showcase__pair-cta {
    text-align: center;
    margin-top: var(--space-8, 2.5rem);
}

.showcase__empty {
    text-align: center;
    padding: var(--space-12, 4rem) 0;
    color: var(--color-muted, #685850);
}

/* Bio portfolio (Session H): shared grid + lightbox surface on /team/{slug}/.
   Renders /gallery/-equivalent cards. The curated before/after strip that used
   to headline this section was retired 2026-08-07; the grid is the whole
   surface now.
   DOMINANT MOMENT: the dense justified photo grid itself - .bio-portfolio
   .gallery__grid */
.bio-portfolio { padding-block: var(--space-12, 4rem); }
.bio-portfolio__header {
    text-align: center;
    margin-bottom: var(--space-8, 2.5rem);
    max-width: 56ch;
    margin-inline: auto;
}
.bio-portfolio__heading {
    font-family: var(--font-display, Georgia, serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.015em;
    text-wrap: balance;
    margin: var(--space-2, 0.5rem) 0 0;
}
.bio-portfolio__heading em {
    font-style: italic;
    color: var(--color-accent, #8b5e3c);
}
.bio-portfolio__browse-all {
    text-align: center;
    margin: var(--space-8, 2.5rem) 0 0;
}
.bio-portfolio__browse-link {
    --hit-expander: 1;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2, 0.5rem);
    font-family: var(--font-mono, ui-monospace, Menlo, monospace);
    font-size: var(--text-sm, 0.875rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-heading, var(--color-body, #2b211e));
    text-decoration: none;
    padding-block: var(--space-2, 0.5rem);
    position: relative;
}
/* Vertical hit-expander (::before; ::after is the underline). Lifts tap height
   to 44 while the visible link + its animated underline stay unchanged. */
.bio-portfolio__browse-link::before {
    content: "";
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    width: 100%; height: 100%;
    min-height: 44px;
}
.bio-portfolio__browse-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0.4);
    transform-origin: left center;
}
@media (prefers-reduced-motion: no-preference) {
    .bio-portfolio__browse-link::after { transition: transform 280ms ease; }
}
@media (hover: hover) {
    .bio-portfolio__browse-link:hover::after { transform: scaleX(1); }
}
.bio-portfolio__browse-link svg {
    transition: transform 200ms ease;
}
@media (hover: hover) {
    .bio-portfolio__browse-link:hover svg { transform: translateX(3px); }
}

/* Bio-portfolio grid inherits .gallery__grid (set by the shared partial).
   The 2-col/3-col/auto-fit responsive comes from the gallery selector. */

/* ─── Gallery page (Task 11, spec 2.5) ───────────────────────────────
   Pinterest-style grid with responsive column count, filter bar,
   empty state, and IntersectionObserver sentinel.
   ─────────────────────────────────────────────────────────────────── */
.gallery { padding-block: var(--space-12, 4rem); }
.gallery__header { text-align: center; margin-bottom: var(--space-6, 1.5rem); }
.gallery__meta { color: var(--color-muted); }

.gallery__filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3, 0.75rem);
    align-items: end;
    margin-bottom: var(--space-8, 2.5rem);
    padding: var(--space-4, 1rem);
    background: var(--color-bg-elevated);
    border-radius: var(--radius-md, 6px);
}

.gallery__filter {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
}

.gallery__filter span {
    font-weight: var(--weight-medium, 500);
    color: var(--color-heading, #3a2828);
}

.gallery__filter--checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.gallery__filter select {
    padding: 0.4rem 0.5rem;
    border: 1px solid var(--color-border, rgba(58, 40, 40, 0.15));
    border-radius: var(--radius-sm, 4px);
    background: var(--color-bg-elevated);
    color: var(--color-body, #5a4a44);
    font-size: 0.875rem;
    cursor: pointer;
}

.gallery__filter select:focus-visible {
    outline: 2px solid var(--color-focus-ring, #4daab8);
    outline-offset: 2px;
}

.gallery__filter input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-accent, #4daab8);
}

.gallery__filter-clear {
    font-size: 0.85rem;
    color: var(--color-muted);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    align-self: center;
}

.gallery__filter-clear:hover {
    color: var(--color-accent, #4daab8);
}

.gallery__filter-clear:focus-visible {
    outline: 2px solid var(--color-focus-ring, #4daab8);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Aspect-honest masonry: CSS columns let every tile keep its native shape
   (landscape reads wide, square square, portrait tall) with zero cropping.
   2 columns mobile -> 3 -> 4 -> 5 at wide. Cards are the column items
   (break-inside: avoid) - see .photo-card--gallery in gallery.css. */
.gallery__grid {
    column-count: 2;
    column-gap: var(--space-4, 1rem);
}

@media (min-width: 700px)  { .gallery__grid { column-count: 3; } }
@media (min-width: 1100px) { .gallery__grid { column-count: 4; } }
@media (min-width: 1400px) { .gallery__grid { column-count: 5; } }

/* 1px tall sentinel - IntersectionObserver target for infinite scroll */
.gallery__sentinel { height: 1px; }

.gallery__empty {
    text-align: center;
    padding: var(--space-8, 2.5rem) 0;
    color: var(--color-muted);
}

.gallery__empty a {
    color: var(--color-accent, #4daab8);
}

/* ─── Gallery lightbox modal ─────────────────────────────────────────
   Full-screen overlay; opened/closed via JS. Scroll-lock applied via
   document.body.style.overflow = 'hidden'.
   ─────────────────────────────────────────────────────────────────── */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    color: #fff;
    display: grid;
    place-items: center;
    padding: var(--space-6, 1.5rem);
}

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

/* Transition: motion-safe only (hard rule 7) */
@media (prefers-reduced-motion: no-preference) {
    .gallery-lightbox:not([hidden]) {
        animation: lightbox-fade-in 200ms ease forwards;
    }

    @keyframes lightbox-fade-in {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
}

.gallery-lightbox__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--lb-chrome-bg, rgba(26, 24, 20, 0.62));
    color: var(--lb-chrome-fg, #fff);
    border: 1px solid var(--lb-chrome-border, rgba(255, 255, 255, 0.12));
    cursor: pointer;
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 18px 32px -20px rgba(0, 0, 0, 0.6);
}
@media (prefers-reduced-motion: no-preference) {
    .gallery-lightbox__close {
        transition: background 220ms ease,
                    border-color 220ms ease,
                    transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
    }
    .gallery-lightbox__close svg {
        transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
    }
}

@media (hover: hover) {
    .gallery-lightbox__close:hover {
        background: var(--lb-chrome-bg-hover, rgba(26, 24, 20, 0.82));
        border-color: var(--lb-rose);
    }
    .gallery-lightbox__close:hover svg {
        transform: rotate(90deg);
    }
}

.gallery-lightbox__close:focus-visible {
    outline: 2px solid var(--lb-rose);
    outline-offset: 3px;
    border-color: var(--lb-rose);
}

.gallery-lightbox__content {
    max-width: min(900px, 100%);
    max-height: 90vh;
    display: grid;
    gap: var(--space-3, 0.75rem);
}

.gallery-lightbox__content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-image, 0.75rem);
}

.gallery-lightbox__caption {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.gallery-lightbox__caption a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.gallery-lightbox__caption a:hover {
    border-color: #fff;
}

.gallery-lightbox__cta {
    display: inline-block;
    margin-top: 0.25rem;
    padding: 0.5rem 1.25rem;
    background: var(--color-accent, #c69b6d);
    color: #fff;
    text-decoration: none;
    border: none !important;
    border-radius: 999px;
    font-weight: var(--weight-semibold, 600);
    font-size: 0.875rem;
    transition: background 150ms ease, transform 150ms ease;
}

.gallery-lightbox__cta:hover {
    background: var(--color-accent-hover, #b5895a);
    transform: translateY(-1px);
}

.gallery-lightbox__cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-radius: 999px;
}

/* Book This Look CTA - hydrated by photo-library.js on lightbox open */
.book-look-cta {
    margin-top: var(--space-4, 1rem);
    padding: var(--space-3, 0.75rem) var(--space-4, 1rem);
    border-top: 1px solid var(--surface-border, rgba(0, 0, 0, 0.08));
    text-align: center;
}
.book-look-cta[hidden] { display: none; }
.book-look-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--color-btn-primary-bg);
    color: var(--color-btn-primary-text);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.18s ease, background 0.18s ease;
}
.book-look-cta__button:hover,
.book-look-cta__button:focus-visible {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}
.book-look-cta__arrow {
    display: inline-block;
    transition: transform 0.18s ease;
}
.book-look-cta__button:hover .book-look-cta__arrow,
.book-look-cta__button:focus-visible .book-look-cta__arrow {
    transform: translateX(3px);
}
.book-look-cta__note {
    margin: 0.5rem 0 0;
    color: var(--color-muted);
    font-size: 0.875rem;
}
@media (prefers-reduced-motion: reduce) {
    .book-look-cta__button,
    .book-look-cta__arrow {
        transition: none;
    }
    .book-look-cta__button:hover {
        transform: none;
    }
}

/* ==========================================================================
   Email me this look - lightbox capture control (Meevo attribution Plan 1)
   Globally loaded; themes via the lightbox --lb-* vars when present (gallery
   page) and falls back to global --color-* tokens on other surfaces.
   ========================================================================== */

/* DOMINANT MOMENT: rose Send button anchoring the inline capture row - .look-capture__send */

/* Email-me-this-look: secondary action, mirrors .gallery-lightbox__next-client. */
.gallery-lightbox__email-look {
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    background: transparent;
    border: 0;
    color: var(--lb-fg-soft, var(--color-muted, #685850));
    font-family: var(--font-body, 'Lexend', sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: var(--radius-sm, 4px);
    cursor: pointer;
}
.gallery-lightbox__email-look::before {
    /* Phosphor envelope-simple via mask so it inherits currentColor in both themes. */
    content: "";
    width: 1.1em;
    height: 1.1em;
    background-color: currentColor;
    -webkit-mask: var(--icon-envelope) center / contain no-repeat;
    mask: var(--icon-envelope) center / contain no-repeat;
    flex: 0 0 auto;
}
@media (prefers-reduced-motion: no-preference) {
    .gallery-lightbox__email-look { transition: color 180ms ease; }
}
@media (hover: hover) {
    .gallery-lightbox__email-look:hover { color: var(--lb-fg, var(--color-heading, #3a2828)); }
}
.gallery-lightbox__email-look:focus-visible {
    outline: 2px solid var(--lb-rose, var(--color-focus-ring, #4daab8));
    outline-offset: 2px;
}

/* Inline capture form (replaces the button on click). */
.look-capture { display: block; }
.look-capture__label {
    display: block;
    font-family: var(--font-body, 'Lexend', sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--lb-fg-soft, var(--color-muted, #685850));
    margin-bottom: 0.5rem;
}
.look-capture__row { display: flex; gap: 0.5rem; }
.look-capture__input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.7rem 0.85rem;
    font-family: var(--font-body, 'Lexend', sans-serif);
    font-size: 0.9rem;
    color: var(--lb-fg, var(--color-heading, #3a2828));
    background: var(--lb-rail-bg, var(--color-bg-card, #ffffff));
    border: 1px solid var(--lb-rule, var(--color-border, rgba(58,40,40,0.2)));
    border-radius: var(--radius-sm, 4px);
}
.look-capture__input:focus-visible {
    outline: 2px solid var(--lb-rose, var(--color-focus-ring, #4daab8));
    outline-offset: 1px;
    border-color: var(--lb-rose, var(--color-focus-ring, #4daab8));
}
.look-capture__send {
    flex: 0 0 auto;
    padding: 0.7rem 1.25rem;
    font-family: var(--font-body, 'Lexend', sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--lb-rose, var(--color-rose, #d4a0a0));
    border: none;
    border-radius: var(--radius-sm, 4px);
    cursor: pointer;
}
.look-capture__send:disabled { opacity: 0.6; cursor: default; }
@media (prefers-reduced-motion: no-preference) {
    .look-capture__send { transition: background 180ms ease, transform 180ms ease; }
}
@media (hover: hover) {
    .look-capture__send:not(:disabled):hover {
        background: var(--lb-fg, var(--color-heading, #3a2828));
        transform: translateY(-1px);
    }
}
.look-capture__hint {
    margin: 0.5rem 0 0;
    font-family: var(--font-body, 'Lexend', sans-serif);
    font-size: 0.7rem;
    color: var(--lb-fg-soft, var(--color-muted, #685850));
}
.look-capture__msg { margin: 0.5rem 0 0; font-family: var(--font-body, 'Lexend', sans-serif); font-size: 0.8rem; }
.look-capture__msg--success { color: var(--lb-fg, var(--color-heading, #3a2828)); font-weight: 600; }
.look-capture__msg--error { color: var(--lb-error, var(--color-error, #c0392b)); font-weight: 600; }

/* Envelope icon source for .gallery-lightbox__email-look::before. Defined on the
   lightbox root so it cascades regardless of which file styles the info rail. A
   data-URI is required because CSS mask cannot consume inline <svg> from
   phosphorIcon(). Phosphor envelope-simple (regular), painted via currentColor. */
.gallery-lightbox {
    --icon-envelope: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='black' d='M224 48H32a8 8 0 0 0-8 8v136a16 16 0 0 0 16 16h176a16 16 0 0 0 16-16V56a8 8 0 0 0-8-8Zm-96 85.15L52.57 64h150.86ZM98.71 128 40 181.81V74.19Zm11.84 10.85 12 11.05a8 8 0 0 0 10.82 0l12-11.05 58 53.15H52.57ZM157.29 128 216 74.18v107.63Z'/%3E%3C/svg%3E");
}
