:root {
    --lsg-accent: #9d7656;
    --lsg-ink: #171715;
    --lsg-muted: #74736f;
    --lsg-line: rgba(23, 23, 21, 0.14);
    --lsg-paper: #f7f5f0;
    --lsg-white: #fff;
    --lsg-dark: #11110f;
    --lsg-serif: "Playfair Display", Georgia, serif;
    --lsg-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --lsg-container: 1480px;
    --lsg-gutter: clamp(20px, 4vw, 72px);
    --lsg-radius: 2px;
    --lsg-shadow: 0 28px 70px rgba(18, 18, 16, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--lsg-ink);
    background: var(--lsg-paper);
    font-family: var(--lsg-sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.lsg-no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: #fff; background: var(--lsg-accent); }

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.screen-reader-text:focus,
.lsg-skip-link:focus {
    position: fixed !important;
    z-index: 100000;
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 18px;
    margin: 0;
    clip: auto;
    color: #fff;
    background: #111;
}
.lsg-skip-link { position: absolute; left: -9999px; }
.lsg-container { width: min(100% - (2 * var(--lsg-gutter)), var(--lsg-container)); margin-inline: auto; }
.lsg-main { min-height: 60vh; }

/* Header */
.lsg-site-header {
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.14);
    transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
}
body:not(.lsg-is-front-page):not(.lsg-is-album) .lsg-site-header,
.lsg-site-header.is-scrolled {
    color: var(--lsg-ink);
    background: rgba(247,245,240,.94);
    border-color: var(--lsg-line);
    backdrop-filter: blur(18px);
}
.lsg-site-header.is-hidden { transform: translateY(-100%); }
.lsg-header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.lsg-branding { flex: 0 0 auto; line-height: 1; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { max-width: 220px; max-height: 54px; width: auto; }
.lsg-wordmark { display: inline-flex; flex-direction: column; gap: 6px; letter-spacing: .04em; }
.lsg-wordmark > span { font-family: var(--lsg-serif); font-size: clamp(24px, 2.2vw, 34px); font-weight: 600; }
.lsg-wordmark small { font-size: 8px; letter-spacing: .28em; text-transform: uppercase; opacity: .72; }
.lsg-navigation { margin-left: auto; }
.lsg-menu, .lsg-navigation ul { list-style: none; display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); margin: 0; padding: 0; }
.lsg-menu li { position: relative; }
.lsg-menu a { position: relative; display: inline-flex; padding: 30px 0; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.lsg-menu a::after { content: ""; position: absolute; left: 0; bottom: 23px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s ease; }
.lsg-menu a:hover::after, .lsg-menu .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.lsg-menu .sub-menu { position: absolute; display: block; top: 100%; left: -24px; min-width: 220px; padding: 12px 24px; color: var(--lsg-ink); background: #fff; box-shadow: var(--lsg-shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .25s ease; }
.lsg-menu li:hover > .sub-menu, .lsg-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.lsg-menu .sub-menu a { padding: 11px 0; }
.lsg-menu .sub-menu a::after { bottom: 7px; }
.lsg-menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.lsg-menu-toggle span:not(.screen-reader-text) { display: block; width: 26px; height: 1px; margin: 7px auto; background: currentColor; transition: transform .25s ease; }
.lsg-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.lsg-menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Typography / shared */
.lsg-eyebrow { margin: 0 0 18px; color: var(--lsg-accent); font-size: 10px; font-weight: 700; line-height: 1.3; letter-spacing: .28em; text-transform: uppercase; }
h1, h2, h3, h4 { margin-top: 0; font-family: var(--lsg-serif); font-weight: 500; line-height: 1.08; }
.lsg-section { padding: clamp(90px, 12vw, 180px) 0; }
.lsg-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: clamp(48px, 7vw, 90px); }
.lsg-section-heading h2 { max-width: 850px; margin: 0; font-size: clamp(42px, 6vw, 84px); }
.lsg-text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: gap .25s ease; }
.lsg-text-link:hover { gap: 18px; }
.lsg-text-link--light { color: #fff; }
.lsg-button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 0 28px; color: #fff; background: var(--lsg-ink); border: 1px solid var(--lsg-ink); border-radius: 0; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: color .25s ease, background .25s ease, border-color .25s ease; }
.lsg-button:hover { color: var(--lsg-ink); background: transparent; }
.lsg-button--light { color: var(--lsg-ink); background: #fff; border-color: #fff; }
.lsg-button--light:hover { color: #fff; background: transparent; }
.lsg-button--outline { color: var(--lsg-ink); background: transparent; }
.lsg-button--outline:hover { color: #fff; background: var(--lsg-ink); }
.lsg-text-button { padding: 8px 0; border: 0; border-bottom: 1px solid currentColor; background: none; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* Hero */
.lsg-hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; background: radial-gradient(circle at 70% 20%, #544439, transparent 40%), linear-gradient(130deg, #191815, #29251f 55%, #111); background-position: center; background-size: cover; overflow: hidden; }
.lsg-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(115deg, transparent 0 48%, rgba(255,255,255,.045) 48% 48.15%, transparent 48.15% 100%); }
.lsg-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,6,.72) 0%, rgba(7,7,6,.34) 50%, rgba(7,7,6,.08) 100%), linear-gradient(0deg, rgba(0,0,0,.3), transparent 45%); }
.lsg-hero-content { position: relative; z-index: 1; padding-top: 120px; }
.lsg-hero .lsg-eyebrow { color: rgba(255,255,255,.76); }
.lsg-hero h1 { max-width: 1060px; margin-bottom: 28px; font-size: clamp(54px, 8.5vw, 138px); letter-spacing: -.035em; }
.lsg-hero-copy { max-width: 650px; margin: 0 0 42px; color: rgba(255,255,255,.82); font-size: clamp(16px, 1.6vw, 22px); }
.lsg-hero-actions { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.lsg-scroll-cue { position: absolute; z-index: 2; right: var(--lsg-gutter); bottom: 34px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.75); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.lsg-scroll-cue span { display: block; width: 42px; height: 1px; background: currentColor; animation: lsgPulse 1.7s infinite; }
@keyframes lsgPulse { 0%,100% { transform: scaleX(.55); transform-origin: left; opacity: .55; } 50% { transform: scaleX(1); opacity: 1; } }

/* Album cards */
.lsg-featured-section { background: var(--lsg-paper); }
.lsg-album-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(38px, 6vw, 90px) clamp(18px, 3vw, 42px); }
.lsg-album-card { grid-column: span 6; }
.lsg-album-grid--editorial .lsg-album-card:nth-child(3n+1) { grid-column: 1 / span 7; }
.lsg-album-grid--editorial .lsg-album-card:nth-child(3n+2) { grid-column: 9 / span 4; margin-top: clamp(80px, 11vw, 150px); }
.lsg-album-grid--editorial .lsg-album-card:nth-child(3n+3) { grid-column: 3 / span 5; }
.lsg-album-card__media { position: relative; display: block; overflow: hidden; background: #ddd8cf; }
.lsg-album-card__media::before { content: ""; display: block; padding-top: 76%; }
.lsg-album-grid--editorial .lsg-album-card:nth-child(3n+2) .lsg-album-card__media::before { padding-top: 128%; }
.lsg-album-grid--editorial .lsg-album-card:nth-child(3n+3) .lsg-album-card__media::before { padding-top: 112%; }
.lsg-album-card__media img, .lsg-placeholder-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.lsg-placeholder-art { background: radial-gradient(circle at 75% 30%, rgba(255,255,255,.55), transparent 25%), linear-gradient(130deg, #c9b9a4, #736558 48%, #302d29); }
.lsg-album-card__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.42), transparent 45%); opacity: .65; transition: opacity .35s ease; }
.lsg-album-card__count { position: absolute; left: 22px; bottom: 20px; color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.lsg-album-card__arrow { position: absolute; right: 20px; top: 20px; display: grid; place-items: center; width: 42px; height: 42px; color: #fff; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; opacity: 0; transform: translateY(8px); transition: .35s ease; }
.lsg-album-card__media:hover img, .lsg-album-card__media:hover .lsg-placeholder-art { transform: scale(1.035); }
.lsg-album-card__media:hover .lsg-album-card__overlay { opacity: 1; }
.lsg-album-card__media:hover .lsg-album-card__arrow { opacity: 1; transform: none; }
.lsg-album-card__content { padding: 24px 0 0; }
.lsg-album-card__content .lsg-eyebrow { margin-bottom: 9px; }
.lsg-album-card__content h3 { margin-bottom: 8px; font-size: clamp(30px, 3vw, 52px); }
.lsg-album-card__content h3 a { background: linear-gradient(currentColor,currentColor) left bottom/0 1px no-repeat; transition: background-size .35s ease; }
.lsg-album-card__content h3 a:hover { background-size: 100% 1px; }
.lsg-album-card__meta { margin: 0; color: var(--lsg-muted); font-size: 12px; letter-spacing: .06em; }

/* Intro / quote */
.lsg-intro-section { color: #fff; background: var(--lsg-dark); }
.lsg-intro-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(60px, 10vw, 160px); }
.lsg-intro-grid h2 { margin: 0; font-size: clamp(44px, 5.8vw, 84px); }
.lsg-intro-copy > p { max-width: 650px; margin: 0 0 58px; color: rgba(255,255,255,.66); font-size: 17px; }
.lsg-feature-list { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.16); }
.lsg-feature-list article { position: relative; padding: 28px 0 30px 48px; border-bottom: 1px solid rgba(255,255,255,.16); }
.lsg-feature-list article > span { position: absolute; left: 0; top: 33px; color: var(--lsg-accent); font-size: 10px; letter-spacing: .12em; }
.lsg-feature-list h3 { margin-bottom: 10px; font-family: var(--lsg-sans); font-size: 15px; font-weight: 600; }
.lsg-feature-list p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; }
.lsg-quote-section { display: grid; min-height: 76vh; place-items: center; padding: 110px 0; text-align: center; background: #d8cbbc; }
.lsg-quote-section blockquote { max-width: 1100px; margin: 0 auto; font-family: var(--lsg-serif); font-size: clamp(42px, 6vw, 86px); font-style: italic; line-height: 1.13; }

/* Blog */
.lsg-journal-section { background: #fff; }
.lsg-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(28px, 4vw, 58px); }
.lsg-post-card__image { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #ddd; }
.lsg-post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.lsg-post-card:hover .lsg-post-card__image img { transform: scale(1.035); }
.lsg-post-card__content { padding-top: 24px; }
.lsg-post-meta { margin: 0 0 10px; color: var(--lsg-accent); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.lsg-post-card h2, .lsg-post-card h3 { margin-bottom: 12px; font-size: clamp(26px, 2.3vw, 38px); }
.lsg-post-card__content > p:last-child { color: var(--lsg-muted); font-size: 14px; }
.lsg-cta-section { padding: clamp(100px, 13vw, 190px) 0; color: #fff; text-align: center; background: var(--lsg-accent); }
.lsg-cta-inner h2 { max-width: 980px; margin: 0 auto 44px; font-size: clamp(46px, 7vw, 96px); }
.lsg-cta-section .lsg-eyebrow { color: rgba(255,255,255,.72); }

/* Page hero and content */
.lsg-page-hero { padding: clamp(170px, 18vw, 270px) 0 clamp(75px, 9vw, 130px); background: #ded6ca; }
.lsg-page-hero h1 { max-width: 1080px; margin: 0; font-size: clamp(58px, 9vw, 132px); letter-spacing: -.03em; }
.lsg-page-hero p:not(.lsg-eyebrow), .lsg-term-description { max-width: 730px; margin: 28px 0 0; color: #5e5a53; font-size: 18px; }
.lsg-page-hero--albums { background: #d5c6b4; }
.lsg-archive-section { padding-top: 65px; }
.lsg-category-filter { display: flex; flex-wrap: wrap; gap: 16px 32px; margin-bottom: 70px; padding-bottom: 20px; border-bottom: 1px solid var(--lsg-line); }
.lsg-category-filter a { position: relative; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.lsg-category-filter a::after { content: ""; position: absolute; left: 0; bottom: -21px; width: 100%; height: 2px; background: var(--lsg-accent); transform: scaleX(0); }
.lsg-category-filter a:hover::after, .lsg-category-filter a.is-active::after { transform: scaleX(1); }
.lsg-album-grid--archive .lsg-album-card { grid-column: span 4; }
.lsg-album-grid--archive .lsg-album-card:nth-child(3n+2) { margin-top: 70px; }
.lsg-album-grid--archive .lsg-album-card:nth-child(3n+2) .lsg-album-card__media::before { padding-top: 115%; }
.lsg-pagination { margin-top: 90px; }
.lsg-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.lsg-pagination .page-numbers { display: grid; place-items: center; min-width: 44px; height: 44px; border: 1px solid var(--lsg-line); font-size: 12px; }
.lsg-pagination .current, .lsg-pagination a:hover { color: #fff; background: var(--lsg-ink); border-color: var(--lsg-ink); }
.lsg-standard-content, .lsg-single-post__content { padding: clamp(70px, 9vw, 130px) 0; }
.lsg-prose { max-width: 920px; }
.lsg-prose > *:first-child { margin-top: 0; }
.lsg-prose h2 { margin: 2.2em 0 .7em; font-size: clamp(36px, 4vw, 56px); }
.lsg-prose h3 { margin: 1.8em 0 .6em; font-size: clamp(28px, 3vw, 40px); }
.lsg-prose p, .lsg-prose li { color: #4f4d48; font-size: 17px; }
.lsg-prose a { color: var(--lsg-accent); border-bottom: 1px solid currentColor; }
.lsg-prose blockquote { margin: 2.2em 0; padding-left: 30px; border-left: 2px solid var(--lsg-accent); font-family: var(--lsg-serif); font-size: 30px; font-style: italic; }
.lsg-prose img { margin: 50px auto; }
.lsg-single-post__image { margin-top: -50px; position: relative; }
.lsg-single-post__image img { width: 100%; max-height: 780px; object-fit: cover; }

/* Album single */
.lsg-album-hero { position: relative; min-height: 92svh; display: flex; align-items: end; color: #fff; background: linear-gradient(135deg,#2b2924,#0f0f0e); background-position: center; background-size: cover; }
.lsg-album-hero__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.12) 62%, rgba(0,0,0,.32) 100%); }
.lsg-album-hero__content { position: relative; z-index: 1; padding-bottom: clamp(82px, 10vw, 140px); }
.lsg-album-hero .lsg-eyebrow { color: rgba(255,255,255,.68); }
.lsg-album-hero h1 { max-width: 1180px; margin-bottom: 20px; font-size: clamp(58px, 9.4vw, 142px); letter-spacing: -.04em; }
.lsg-album-hero__meta, .lsg-album-hero__count { display: inline-block; margin: 0 26px 0 0; color: rgba(255,255,255,.74); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.lsg-album-intro { padding: clamp(80px, 10vw, 150px) 0; background: #fff; }
.lsg-album-intro__grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(50px, 10vw, 160px); }
.lsg-album-intro h2 { margin: 0; font-size: clamp(42px, 6vw, 76px); }
.lsg-entry-content { max-width: 720px; color: var(--lsg-muted); font-size: 17px; }
.lsg-entry-content > *:first-child { margin-top: 0; }
.lsg-entry-content > *:last-child { margin-bottom: 0; }
.lsg-album-gallery-section { background: var(--lsg-paper); }
.lsg-gallery-toolbar-wrap { position: sticky; z-index: 80; top: 0; background: rgba(247,245,240,.94); border-block: 1px solid var(--lsg-line); backdrop-filter: blur(18px); }
body.admin-bar .lsg-gallery-toolbar-wrap { top: 32px; }
.lsg-gallery-toolbar { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.lsg-gallery-tabs { display: flex; gap: 30px; }
.lsg-gallery-tabs button { position: relative; min-height: 71px; padding: 0; border: 0; background: transparent; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }
.lsg-gallery-tabs button::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 2px; background: var(--lsg-ink); transform: scaleX(0); transition: transform .25s ease; }
.lsg-gallery-tabs button.is-active::after { transform: scaleX(1); }
.lsg-gallery-tabs button span { display: inline-grid; min-width: 23px; height: 23px; place-items: center; margin-left: 7px; padding: 0 5px; color: #fff; background: var(--lsg-ink); border-radius: 100px; font-size: 9px; }
.lsg-gallery-actions { display: flex; gap: 8px; }
.lsg-icon-button { position: relative; display: grid; width: 42px; height: 42px; place-items: center; padding: 0; border: 1px solid var(--lsg-line); background: transparent; border-radius: 50%; cursor: pointer; }
.lsg-icon-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.lsg-icon-button > span { position: absolute; right: -4px; top: -5px; display: grid; min-width: 18px; height: 18px; place-items: center; padding: 0 4px; color: #fff; background: var(--lsg-accent); border-radius: 20px; font-size: 8px; }
.lsg-gallery-container { padding-top: clamp(36px, 5vw, 74px); padding-bottom: clamp(90px, 12vw, 180px); }
.lsg-masonry-gallery { columns: 3; column-gap: clamp(10px, 1.3vw, 22px); }
.lsg-gallery-item { position: relative; break-inside: avoid; margin: 0 0 clamp(10px, 1.3vw, 22px); overflow: hidden; background: #ddd8cf; }
.lsg-gallery-item[hidden] { display: none; }
.lsg-gallery-item__open { position: relative; display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.lsg-gallery-item img { width: 100%; height: auto; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.lsg-gallery-item__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.36), transparent 40%); opacity: .5; transition: opacity .3s ease; }
.lsg-gallery-item__number { position: absolute; left: 15px; bottom: 12px; color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.lsg-gallery-item:hover img { transform: scale(1.018); }
.lsg-gallery-item:hover .lsg-gallery-item__shade { opacity: 1; }
.lsg-gallery-item figcaption { padding: 10px 4px 2px; color: var(--lsg-muted); font-size: 10px; letter-spacing: .08em; }
.lsg-favorite-button { position: absolute; z-index: 3; right: 14px; top: 14px; display: grid; width: 40px; height: 40px; place-items: center; padding: 0; color: #fff; background: rgba(20,20,18,.25); border: 1px solid rgba(255,255,255,.6); border-radius: 50%; backdrop-filter: blur(8px); cursor: pointer; transition: color .25s ease, background .25s ease, transform .25s ease; }
.lsg-favorite-button:hover { transform: scale(1.06); }
.lsg-favorite-button svg { width: 19px; height: 19px; fill: transparent; stroke: currentColor; stroke-width: 1.6; transition: fill .25s ease; }
.lsg-favorite-button.is-favorite { color: #fff; background: var(--lsg-accent); border-color: var(--lsg-accent); }
.lsg-favorite-button.is-favorite svg { fill: currentColor; }
.lsg-no-favorites { padding: 110px 20px; text-align: center; }
.lsg-no-favorites span { display: block; margin-bottom: 16px; font-family: var(--lsg-serif); font-size: 70px; }
.lsg-no-favorites h3 { margin-bottom: 10px; font-size: 36px; }
.lsg-no-favorites p { color: var(--lsg-muted); }

/* Lightbox */
.lsg-lightbox { position: fixed; z-index: 2000; inset: 0; color: #fff; }
.lsg-lightbox[hidden] { display: none; }
.lsg-lightbox__backdrop { position: absolute; inset: 0; background: rgba(8,8,7,.98); }
.lsg-lightbox__topbar { position: absolute; z-index: 3; left: 0; top: 0; width: 100%; height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; background: linear-gradient(rgba(0,0,0,.7), transparent); }
.lsg-lightbox__topbar > span { font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.lsg-lightbox__topbar > div { display: flex; gap: 6px; }
.lsg-lightbox__topbar button, .lsg-lightbox__topbar a { display: grid; width: 44px; height: 44px; place-items: center; padding: 0; color: #fff; background: transparent; border: 0; cursor: pointer; }
.lsg-lightbox__topbar svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.lsg-lightbox__topbar [data-lightbox-favorite].is-favorite svg { fill: currentColor; color: #e4a99c; }
.lsg-lightbox__stage { position: absolute; inset: 72px 110px 110px; display: grid; place-items: center; }
.lsg-lightbox__stage img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; user-select: none; }
.lsg-lightbox__nav { position: absolute; z-index: 3; top: 50%; width: 54px; height: 54px; padding: 0; color: #fff; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; cursor: pointer; transform: translateY(-50%); }
.lsg-lightbox__nav--prev { left: 24px; }
.lsg-lightbox__nav--next { right: 24px; }
.lsg-lightbox__details { position: absolute; z-index: 3; left: 0; bottom: 0; width: 100%; min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 18px 28px; background: linear-gradient(transparent, rgba(0,0,0,.82)); }
.lsg-lightbox__details > div { min-width: 200px; }
.lsg-lightbox__details strong, .lsg-lightbox__details span { display: block; }
.lsg-lightbox__details strong { font-size: 11px; letter-spacing: .1em; }
.lsg-lightbox__details > div span { color: rgba(255,255,255,.58); font-size: 11px; }
.lsg-lightbox__details label { width: min(460px, 50vw); }
.lsg-lightbox__details label > span { margin-bottom: 6px; color: rgba(255,255,255,.62); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.lsg-lightbox__details textarea { display: block; width: 100%; min-height: 42px; padding: 9px 12px; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); resize: vertical; outline: none; }
.lsg-lightbox__details textarea:focus { border-color: rgba(255,255,255,.65); }

/* Selection drawer */
.lsg-selection-drawer { position: fixed; z-index: 2100; inset: 0; visibility: hidden; }
.lsg-selection-drawer.is-open { visibility: visible; }
.lsg-selection-drawer__backdrop { position: absolute; inset: 0; width: 100%; padding: 0; border: 0; background: rgba(10,10,9,.55); opacity: 0; transition: opacity .35s ease; cursor: default; }
.lsg-selection-drawer.is-open .lsg-selection-drawer__backdrop { opacity: 1; }
.lsg-selection-drawer__panel { position: absolute; right: 0; top: 0; width: min(520px, 100%); height: 100%; display: flex; flex-direction: column; padding: 34px; background: var(--lsg-paper); transform: translateX(100%); transition: transform .42s cubic-bezier(.2,.7,.2,1); }
.lsg-selection-drawer.is-open .lsg-selection-drawer__panel { transform: none; }
.lsg-selection-drawer__header { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--lsg-line); }
.lsg-selection-drawer__header .lsg-eyebrow { margin-bottom: 7px; }
.lsg-selection-drawer__header h2 { margin: 0; font-size: 38px; }
.lsg-selection-drawer__header > button { width: 40px; height: 40px; padding: 0; border: 1px solid var(--lsg-line); background: transparent; border-radius: 50%; font-size: 24px; cursor: pointer; }
.lsg-selection-list { flex: 1 1 auto; overflow-y: auto; padding: 18px 0; }
.lsg-selection-item { display: grid; grid-template-columns: 72px minmax(0,1fr) 34px; align-items: center; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--lsg-line); }
.lsg-selection-item img { width: 72px; height: 72px; object-fit: cover; }
.lsg-selection-item strong { display: block; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.lsg-selection-item span { display: block; margin-top: 4px; color: var(--lsg-muted); font-size: 10px; line-height: 1.4; }
.lsg-selection-item button { width: 30px; height: 30px; padding: 0; border: 0; background: transparent; font-size: 20px; cursor: pointer; }
.lsg-selection-empty { flex: 1 1 auto; display: grid; place-content: center; text-align: center; color: var(--lsg-muted); }
.lsg-selection-empty[hidden] { display: none; }
.lsg-selection-empty span { font-family: var(--lsg-serif); font-size: 65px; }
.lsg-selection-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 20px; border-top: 1px solid var(--lsg-line); }
.lsg-selection-actions .lsg-text-button { grid-column: 1 / -1; justify-self: center; }
.lsg-floating-selection { position: fixed; z-index: 750; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 12px; min-height: 52px; padding: 0 20px; color: #fff; background: var(--lsg-ink); border: 0; border-radius: 100px; box-shadow: 0 16px 38px rgba(0,0,0,.25); cursor: pointer; }
.lsg-floating-selection[hidden] { display: none; }
.lsg-floating-selection svg { width: 18px; height: 18px; fill: currentColor; stroke: currentColor; }
.lsg-floating-selection span { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.lsg-toast { position: fixed; z-index: 2300; left: 50%; bottom: 30px; max-width: calc(100% - 40px); padding: 12px 18px; color: #fff; background: var(--lsg-ink); border-radius: 3px; box-shadow: var(--lsg-shadow); font-size: 12px; opacity: 0; transform: translate(-50%, 15px); pointer-events: none; transition: .3s ease; }
.lsg-toast.is-visible { opacity: 1; transform: translate(-50%,0); }

/* Password */
.lsg-password-screen { min-height: 100svh; display: grid; place-items: center; padding: 130px 20px 70px; background: radial-gradient(circle at 70% 20%, #dbc7b1, transparent 38%), #ede8df; }
.lsg-password-card { width: min(100%, 590px); padding: clamp(34px, 6vw, 72px); text-align: center; background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.85); box-shadow: var(--lsg-shadow); backdrop-filter: blur(20px); }
.lsg-password-card h1 { margin-bottom: 20px; font-size: clamp(42px, 6vw, 70px); }
.lsg-password-card > p:not(.lsg-eyebrow) { color: var(--lsg-muted); }
.post-password-form p { margin: 24px 0 0; }
.post-password-form label { display: block; font-size: 0; }
.post-password-form input[type="password"] { width: 100%; height: 54px; padding: 0 15px; border: 1px solid var(--lsg-line); background: #fff; font-size: 16px; }
.post-password-form input[type="submit"] { width: 100%; height: 54px; margin-top: 10px; color: #fff; background: var(--lsg-ink); border: 0; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }

/* Empty / 404 */
.lsg-empty-state { padding: 90px 20px; text-align: center; border: 1px solid var(--lsg-line); background: rgba(255,255,255,.35); }
.lsg-empty-state__mark { display: block; margin-bottom: 18px; color: var(--lsg-accent); font-family: var(--lsg-serif); font-size: 72px; }
.lsg-empty-state h2, .lsg-empty-state h3 { margin-bottom: 10px; font-size: 40px; }
.lsg-empty-state p { max-width: 600px; margin: 0 auto 25px; color: var(--lsg-muted); }
.lsg-error-page { min-height: 100svh; display: grid; place-items: center; padding: 130px 0 80px; text-align: center; background: #d8cbbc; }
.lsg-error-code { margin: 0; color: rgba(23,23,21,.08); font-family: var(--lsg-serif); font-size: clamp(150px, 30vw, 420px); line-height: .7; }
.lsg-error-page h1 { max-width: 800px; margin: 0 auto 35px; font-size: clamp(48px, 7vw, 88px); }

/* Footer */
.lsg-site-footer { padding: clamp(75px, 9vw, 130px) 0 24px; color: #fff; background: #0e0e0d; }
.lsg-footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .8fr; gap: clamp(40px, 8vw, 130px); padding-bottom: 80px; }
.lsg-footer-brand p { max-width: 420px; margin-top: 24px; color: rgba(255,255,255,.52); }
.lsg-footer-grid h2 { margin-bottom: 22px; color: rgba(255,255,255,.42); font-family: var(--lsg-sans); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.lsg-footer-links { list-style: none; margin: 0; padding: 0; }
.lsg-footer-links li { margin-bottom: 9px; }
.lsg-footer-links a, .lsg-footer-contact > a { color: rgba(255,255,255,.76); font-size: 13px; }
.lsg-footer-links a:hover, .lsg-footer-contact > a:hover { color: #fff; }
.lsg-footer-contact > a { display: block; margin-bottom: 7px; }
.lsg-socials { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 24px; }
.lsg-social-link { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.lsg-footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: rgba(255,255,255,.38); border-top: 1px solid rgba(255,255,255,.12); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

/* WordPress alignments */
.alignwide { max-width: 1180px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; max-width: none; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--lsg-muted); font-size: 12px; }

/* Responsive */
@media (max-width: 1100px) {
    .lsg-album-grid--editorial .lsg-album-card:nth-child(n) { grid-column: span 6; margin-top: 0; }
    .lsg-album-grid--editorial .lsg-album-card:nth-child(2n) { margin-top: 80px; }
    .lsg-album-grid--archive .lsg-album-card { grid-column: span 6; }
    .lsg-album-grid--archive .lsg-album-card:nth-child(3n+2) { margin-top: 0; }
    .lsg-album-grid--archive .lsg-album-card:nth-child(2n) { margin-top: 65px; }
    .lsg-intro-grid { grid-template-columns: 1fr; }
    .lsg-intro-grid > div:first-child { max-width: 900px; }
    .lsg-masonry-gallery { columns: 2; }
}

@media (max-width: 900px) {
    body.admin-bar .lsg-site-header { top: 32px; }
    .lsg-header-inner { min-height: 72px; }
    .lsg-menu-toggle { display: block; z-index: 3; }
    .lsg-navigation { position: fixed; inset: 0; display: grid; place-items: center; margin: 0; padding: 100px 30px 50px; color: #fff; background: rgba(13,13,12,.98); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
    .lsg-navigation.is-open { opacity: 1; visibility: visible; }
    .lsg-navigation .lsg-menu { display: flex; flex-direction: column; align-items: center; gap: 4px; }
    .lsg-navigation .lsg-menu a { padding: 13px 0; font-family: var(--lsg-serif); font-size: 38px; font-weight: 500; letter-spacing: 0; text-transform: none; }
    .lsg-menu .sub-menu { position: static; display: none; min-width: 0; padding: 0; color: #fff; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .lsg-menu li:focus-within > .sub-menu { display: block; }
    .lsg-navigation .sub-menu a { font-size: 21px; }
    .lsg-site-header.is-scrolled .lsg-menu-toggle[aria-expanded="true"] { color: #fff; }
    .lsg-section-heading { align-items: flex-start; flex-direction: column; }
    .lsg-post-grid { grid-template-columns: 1fr 1fr; }
    .lsg-album-intro__grid { grid-template-columns: 1fr; gap: 30px; }
    .lsg-footer-grid { grid-template-columns: 1fr 1fr; }
    .lsg-footer-brand { grid-column: 1 / -1; }
    .lsg-lightbox__stage { inset: 72px 60px 140px; }
    .lsg-lightbox__nav { width: 44px; height: 44px; }
    .lsg-lightbox__nav--prev { left: 8px; }
    .lsg-lightbox__nav--next { right: 8px; }
}

@media (max-width: 782px) {
    body.admin-bar .lsg-site-header { top: 46px; }
    body.admin-bar .lsg-gallery-toolbar-wrap { top: 46px; }
}

@media (max-width: 680px) {
    :root { --lsg-gutter: 18px; }
    .lsg-header-inner { min-height: 66px; }
    .custom-logo { max-height: 40px; max-width: 170px; }
    .lsg-wordmark > span { font-size: 25px; }
    .lsg-wordmark small { display: none; }
    .lsg-hero { min-height: 92svh; }
    .lsg-hero-content { padding-top: 90px; padding-bottom: 70px; }
    .lsg-hero h1 { font-size: clamp(48px, 15vw, 76px); }
    .lsg-hero-copy { font-size: 15px; }
    .lsg-scroll-cue { display: none; }
    .lsg-hero-actions { gap: 23px; }
    .lsg-section { padding: 82px 0; }
    .lsg-section-heading { margin-bottom: 44px; }
    .lsg-section-heading h2 { font-size: 43px; }
    .lsg-album-grid { display: block; }
    .lsg-album-card, .lsg-album-grid--editorial .lsg-album-card:nth-child(n), .lsg-album-grid--archive .lsg-album-card:nth-child(n) { margin: 0 0 52px; }
    .lsg-album-grid--editorial .lsg-album-card:nth-child(n) .lsg-album-card__media::before { padding-top: 95%; }
    .lsg-album-card__content h3 { font-size: 35px; }
    .lsg-intro-grid h2 { font-size: 43px; }
    .lsg-quote-section { min-height: 66vh; }
    .lsg-quote-section blockquote { font-size: 43px; }
    .lsg-post-grid { grid-template-columns: 1fr; }
    .lsg-page-hero { padding-top: 135px; }
    .lsg-page-hero h1 { font-size: 58px; }
    .lsg-category-filter { gap: 14px 22px; overflow-x: auto; flex-wrap: nowrap; white-space: nowrap; }
    .lsg-album-hero { min-height: 82svh; }
    .lsg-album-hero h1 { font-size: 59px; }
    .lsg-album-hero__meta, .lsg-album-hero__count { display: block; margin: 6px 0; }
    .lsg-album-intro { padding: 70px 0; }
    .lsg-gallery-toolbar { min-height: 62px; }
    .lsg-gallery-tabs { gap: 18px; }
    .lsg-gallery-tabs button { min-height: 61px; font-size: 9px; }
    .lsg-gallery-actions .lsg-icon-button:first-child { display: none; }
    .lsg-masonry-gallery { columns: 2; column-gap: 7px; }
    .lsg-gallery-item { margin-bottom: 7px; }
    .lsg-favorite-button { right: 8px; top: 8px; width: 34px; height: 34px; }
    .lsg-gallery-item__number { left: 9px; bottom: 7px; }
    .lsg-gallery-item figcaption { display: none; }
    .lsg-lightbox__topbar { padding: 0 8px 0 14px; }
    .lsg-lightbox__stage { inset: 65px 0 155px; }
    .lsg-lightbox__nav { top: auto; bottom: 92px; }
    .lsg-lightbox__nav--prev { left: 15px; }
    .lsg-lightbox__nav--next { right: 15px; }
    .lsg-lightbox__details { min-height: 150px; display: block; padding: 14px 18px; }
    .lsg-lightbox__details > div { margin-bottom: 8px; }
    .lsg-lightbox__details label { width: 100%; }
    .lsg-selection-drawer__panel { padding: 24px 18px; }
    .lsg-selection-actions { grid-template-columns: 1fr; }
    .lsg-selection-actions .lsg-text-button { grid-column: auto; }
    .lsg-floating-selection { right: 14px; bottom: 14px; }
    .lsg-footer-grid { grid-template-columns: 1fr; }
    .lsg-footer-brand { grid-column: auto; }
    .lsg-footer-bottom { flex-direction: column; }
}


.lsg-card-cover{position:absolute;inset:0;display:grid;gap:3px;overflow:hidden;background:#111827}.lsg-card-cover img{position:static!important;width:100%!important;height:100%!important;min-width:0;min-height:0;object-fit:cover;display:block}.lsg-card-cover--single{display:block}.lsg-card-cover--single img{position:absolute!important;inset:0}.lsg-card-cover--collage3{grid-template-columns:1.55fr .8fr;grid-template-rows:1fr 1fr}.lsg-card-cover--collage3 .lsg-card-cover__1{grid-row:1/3}.lsg-card-cover--collage4{grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr}
