.portrait-grid .photo-card:nth-child(12) {
    grid-column: 1/7;
    grid-row: 5/6;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0A0906;
    --bg2: #0F0D0A;
    --bg3: #141210;
    --text: #EDE9E2;
    --muted: #5A574F;
    --muted2: #7A776E;
    --accent: #C8943A;
    --accent-dim: rgba(200, 148, 58, 0.14);
    --accent-glow: rgba(200, 148, 58, 0.06);
    --line: rgba(237, 233, 226, 0.07);
    --line2: rgba(237, 233, 226, 0.04);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
    --radius: 3px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    cursor: none;
    overflow-x: hidden;
}

/* ── Custom Cursor ── */
.cursor {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.2s;
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(200, 148, 58, 0.35);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.28s, height 0.28s, border-color 0.28s, opacity 0.2s;
}

.cursor.hovered {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0.6;
}

.cursor-ring.hovered {
    width: 54px;
    height: 54px;
    border-color: var(--accent);
}

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(6, 5, 4, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
    cursor: none;
}

.lb-img-wrap {
    position: relative;
    max-width: 88vw;
    max-height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lbImg {
    max-width: 88vw;
    max-height: 86vh;
    object-fit: contain;
    border: 1px solid var(--line);
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.lb-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-spinner::after {
    content: '';
    width: 26px;
    height: 26px;
    border: 1px solid rgba(200, 148, 58, 0.25);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.lb-spinner.hidden {
    display: none;
}

.lb-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(237, 233, 226, 0.12);
    border-radius: 50%;
    background: rgba(10, 9, 6, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 2001;
    transition: border-color 0.3s, background 0.3s;
}

.lb-close:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.lb-close svg {
    width: 15px;
    height: 15px;
    stroke: var(--text);
    stroke-width: 1.5;
    fill: none;
}

.lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(237, 233, 226, 0.1);
    border-radius: 50%;
    background: rgba(10, 9, 6, 0.55);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 2001;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.lb-arrow:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.lb-arrow.prev {
    left: 1.5rem;
}

.lb-arrow.next {
    right: 1.5rem;
}

.lb-arrow:hover.prev {
    transform: translateY(-50%) translateX(-2px);
}

.lb-arrow:hover.next {
    transform: translateY(-50%) translateX(2px);
}

.lb-arrow svg {
    width: 15px;
    height: 15px;
    stroke: var(--text);
    stroke-width: 1.5;
    fill: none;
}

.lb-meta {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 2001;
}

.lb-counter {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted2);
}

.lb-counter span {
    color: var(--accent);
}

.lb-category-tag {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(200, 148, 58, 0.3);
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
}

/* ── Nav ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: linear-gradient(to bottom, rgba(10, 9, 6, 0.9) 0%, transparent 100%);
    backdrop-filter: blur(0px);
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}

nav.scrolled {
    background: rgba(10, 9, 6, 0.95);
    backdrop-filter: blur(14px);
    padding: 1.2rem 3rem;
    border-bottom: 1px solid var(--line);
}

.nav-logo {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text);
    text-decoration: none;
    opacity: 0;
    animation: fadeUp 1s 0.3s forwards;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    opacity: 0;
    animation: fadeUp 1s 0.5s forwards;
}

.nav-links a {
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted2);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ── Hero ── */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: slowZoom 2.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    filter: brightness(0.38) saturate(0.7);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 9, 6, 0.97) 0%, rgba(10, 9, 6, 0.25) 55%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 3.5rem 5.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: 3rem;
}

.hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp 1s 0.9s forwards;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(4.5rem, 9vw, 9.5rem);
    font-weight: 300;
    line-height: 0.86;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 1s 1.1s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-right {
    text-align: right;
    padding-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s 1.4s forwards;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.hero-location-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

.hero-location span {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 2;
    max-width: 240px;
    text-align: right;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1s 2s forwards;
}

.hero-scroll span {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollDrop 1.8s ease-in-out infinite;
}

/* ── Marquee ── */
.marquee-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.85rem 0;
    overflow: hidden;
    white-space: nowrap;
    background: var(--bg2);
}

.marquee-inner {
    display: inline-flex;
    animation: marquee 24s linear infinite;
}

.marquee-inner span {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 2.5rem;
}

.marquee-inner .dot {
    color: var(--accent);
    padding: 0;
}

/* ── Gallery Section ── */
.gallery-section {
    padding: 7rem 0 6rem;
}

/* ── Gallery Header ── */
.gallery-header {
    padding: 0 3.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
}

.gallery-header-left {}

.section-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
    display: block;
}

.gallery-main-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 0.95;
}

.gallery-main-title em {
    font-style: italic;
    color: var(--accent);
}

.gallery-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.2rem;
}

.gallery-count {
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

/* ── Share Link Banner ── */
.share-banner {
    display: none;
    align-items: center;
    gap: 1rem;
    background: var(--bg3);
    border: 1px solid rgba(200, 148, 58, 0.2);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin: 0 3.5rem 2rem;
}

.share-banner.visible {
    display: flex;
}

.share-banner-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: var(--accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-banner-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

.share-banner-text {
    flex: 1;
}

.share-banner-text p {
    font-size: 0.75rem;
    color: var(--muted2);
    line-height: 1.5;
}

.share-banner-text strong {
    color: var(--text);
    font-weight: 400;
}

.share-banner-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 1.2rem;
    line-height: 1;
    padding: 0.2rem;
    transition: color 0.2s;
}

.share-banner-close:hover {
    color: var(--text);
}

/* ── Filter Tabs ── */
.filter-tabs {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 3.5rem;
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.filter-tab {
    position: relative;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.65rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    background: none;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
    font-family: var(--sans);
    font-weight: 300;
}

.filter-tab:hover {
    color: var(--text);
    border-color: var(--line);
}

.filter-tab.active {
    color: var(--accent);
    border-color: rgba(200, 148, 58, 0.35);
    background: var(--accent-glow);
}

.filter-tab .tab-count {
    font-size: 0.5rem;
    vertical-align: super;
    margin-left: 0.3rem;
    color: var(--accent);
    opacity: 0.7;
}

.filter-divider {
    width: 1px;
    height: 14px;
    background: var(--line);
    margin: 0 0.4rem;
}

/* Share button */
.share-btn {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    background: none;
    border: 1px solid var(--line);
    padding: 0.6rem 1.1rem;
    border-radius: 2px;
    cursor: pointer;
    font-family: var(--sans);
    transition: color 0.3s, border-color 0.3s;
}

.share-btn:hover {
    color: var(--accent);
    border-color: rgba(200, 148, 58, 0.35);
}

.share-btn svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.share-btn.disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* ── Gallery Groups ── */
.gallery-group {
    display: none;
}

.gallery-group.active {
    display: block;
}

/* ── Gallery: All view (mixed layout) ── */
.group-all .gallery-group-inner {
    padding: 0 3.5rem;
}

.group-all .gallery-category-label {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.group-all .gallery-category-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* Masonry-style editorial grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Portrait grid pattern */
.portrait-grid .photo-card:nth-child(1) {
    grid-column: 1/6;
    grid-row: 1/3;
}

.portrait-grid .photo-card:nth-child(2) {
    grid-column: 6/10;
    grid-row: 1/2;
}

.portrait-grid .photo-card:nth-child(3) {
    grid-column: 10/13;
    grid-row: 1/2;
}

.portrait-grid .photo-card:nth-child(4) {
    grid-column: 6/9;
    grid-row: 2/3;
}

.portrait-grid .photo-card:nth-child(5) {
    grid-column: 9/13;
    grid-row: 2/3;
}

.portrait-grid .photo-card:nth-child(6) {
    grid-column: 1/4;
    grid-row: 3/4;
}

.portrait-grid .photo-card:nth-child(7) {
    grid-column: 4/8;
    grid-row: 3/4;
}

.portrait-grid .photo-card:nth-child(8) {
    grid-column: 8/13;
    grid-row: 3/5;
}

.portrait-grid .photo-card:nth-child(9) {
    grid-column: 1/5;
    grid-row: 4/5;
}

.portrait-grid .photo-card:nth-child(10) {
    grid-column: 5/8;
    grid-row: 4/5;
}

.portrait-grid .photo-card:nth-child(11) {
    grid-column: 1/7;
    grid-row: 5/6;
}

/* Make extra portrait images (13th and beyond) span more columns */
.portrait-grid .photo-card:nth-child(n+13) {
    grid-column: span 4;
    grid-row: auto;
    min-height: 260px;
}

/* Make extra wedding images (11th and beyond) span more columns */
.wedding-grid .photo-card:nth-child(n+11) {
    grid-column: span 4;
    grid-row: auto;
    min-height: 260px;
}

/* Wedding grid pattern */
.wedding-grid .photo-card:nth-child(1) {
    grid-column: 1/5;
    grid-row: 1/2;
}

.wedding-grid .photo-card:nth-child(2) {
    grid-column: 5/9;
    grid-row: 1/3;
}

.wedding-grid .photo-card:nth-child(3) {
    grid-column: 9/13;
    grid-row: 1/2;
}

.wedding-grid .photo-card:nth-child(4) {
    grid-column: 1/5;
    grid-row: 2/3;
}

.wedding-grid .photo-card:nth-child(5) {
    grid-column: 9/13;
    grid-row: 2/3;
}

.wedding-grid .photo-card:nth-child(6) {
    grid-column: 1/7;
    grid-row: 3/5;
}

.wedding-grid .photo-card:nth-child(7) {
    grid-column: 7/10;
    grid-row: 3/4;
}

.wedding-grid .photo-card:nth-child(8) {
    grid-column: 10/13;
    grid-row: 3/4;
}

.wedding-grid .photo-card:nth-child(9) {
    grid-column: 7/13;
    grid-row: 4/5;
}

.wedding-grid .photo-card:nth-child(10) {
    grid-column: 1/4;
    grid-row: 5/6;
}

/* ── Photo Card ── */
.photo-card {
    position: relative;
    overflow: hidden;
    cursor: none;
    background: var(--bg3);
    min-height: 200px;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s;
    filter: brightness(0.78) saturate(0.85);
    display: block;
}

.photo-card:hover img {
    transform: scale(1.07);
    filter: brightness(0.92) saturate(1.05);
}

.photo-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(10, 9, 6, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.photo-card:hover .photo-card-overlay {
    opacity: 1;
}

.photo-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem 1.2rem 1.1rem;
    background: linear-gradient(to top, rgba(10, 9, 6, 0.85) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s, transform 0.4s;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.photo-card:hover .photo-card-label {
    opacity: 1;
    transform: translateY(0);
}

.photo-card-cat {
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
}

.photo-card-expand {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(200, 148, 58, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-card-expand svg {
    width: 10px;
    height: 10px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

/* ── Dedicated Gallery (portrait-only / wedding-only) ── */
.group-single .gallery-group-inner {
    padding: 0 3.5rem;
}

.group-single .gallery-hero-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.group-single .gallery-hero-row .photo-card {
    min-height: 520px;
}

.group-single .gallery-hero-side {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.group-single .gallery-hero-side .photo-card {
    flex: 1;
    min-height: 200px;
}

.cards-uniform {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.cards-uniform .photo-card {
    min-height: 300px;
}

.cards-uniform .photo-card.wide {
    grid-column: span 2;
    min-height: 340px;
}

/* ── About ── */
.about {
    padding: 8rem 3.5rem;
    border-top: 1px solid var(--line);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 8rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: brightness(0.82) saturate(0.8);
}

.about-img-accent {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 55%;
    height: 55%;
    border: 1px solid var(--accent);
    z-index: -1;
    opacity: 0.35;
}

.about-img-num {
    position: absolute;
    top: -1.2rem;
    right: -1.2rem;
    font-family: var(--serif);
    font-size: 5rem;
    font-weight: 300;
    color: var(--accent);
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
}

.about-title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.02;
    margin-bottom: 2.5rem;
}

.about-title em {
    font-style: italic;
    color: var(--accent);
}

.about-text {
    font-size: 0.85rem;
    color: var(--muted2);
    line-height: 2.15;
    margin-bottom: 1.5rem;
    max-width: 490px;
}

.about-stats {
    display: flex;
    gap: 3.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.stat-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── Categories ── */
.categories {
    background: var(--bg2);
    border-top: 1px solid var(--line);
    padding: 8rem 3.5rem;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    margin-top: 4rem;
}

.cat-item {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
}

.cat-item:last-child {
    border-right: none;
}

.cat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.5s ease;
}

.cat-item:hover::before {
    width: 100%;
}

.cat-item:hover {
    background: rgba(200, 148, 58, 0.03);
}

.cat-num {
    font-family: var(--serif);
    font-size: 0.78rem;
    color: var(--accent);
    opacity: 0.6;
    display: block;
    margin-bottom: 2rem;
}

.cat-name {
    font-family: var(--serif);
    font-size: 1.85rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--text);
}

.cat-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 2;
}

/* ── Testimonial ── */
.testimonial {
    border-top: 1px solid var(--line);
    text-align: center;
    padding: 8rem 3.5rem;
}

.quote-mark {
    font-family: var(--serif);
    font-size: 7rem;
    color: var(--accent);
    opacity: 0.18;
    line-height: 0.4;
    display: block;
    margin-bottom: 2.5rem;
}

.quote-text {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.8vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.55;
    max-width: 780px;
    margin: 0 auto 2.5rem;
    color: var(--text);
}

.quote-author {
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── Contact ── */
.contact {
    border-top: 1px solid var(--line);
    padding: 8rem 3.5rem;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 0.88;
    margin-bottom: 2rem;
}

.contact-title em {
    font-style: italic;
    color: var(--accent);
}

.contact-sub {
    font-size: 0.82rem;
    color: var(--muted2);
    line-height: 2;
    max-width: 340px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    margin-top: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.contact-form label {
    font-size: 0.6rem;
    color: var(--muted2);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg2);
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.95rem;
    resize: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(200, 148, 58, 0.45);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.contact-form button[type="submit"] {
    margin-top: 0.4rem;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: var(--radius);
    padding: 1rem 2.4rem;
    font-size: 0.68rem;
    font-family: var(--sans);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.25s, box-shadow 0.25s;
    box-shadow: 0 2px 16px 0 rgba(200, 148, 58, 0.15);
}

.contact-form button[type="submit"]:hover {
    background: #d9a344;
    box-shadow: 0 4px 24px 0 rgba(200, 148, 58, 0.25);
}

/* ── Footer ── */
footer {
    padding: 3.5rem 3.5rem 2.5rem;
    border-top: 1px solid var(--line);
    background: var(--bg2);
}

.footer-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1 1 220px;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
    font-weight: 400;
}

footer p {
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.06em;
}

.footer-links,
.footer-socials {
    flex: 1 1 180px;
}

.footer-links h4,
.footer-socials h4 {
    font-size: 0.6rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: var(--sans);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-links ul,
.footer-socials ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a,
.footer-socials a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-socials a:hover {
    color: var(--accent);
}

.footer-gallery-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line2);
}

.footer-gallery-links p {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.footer-gallery-links a {
    font-size: 0.75rem;
    color: var(--muted2);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-gallery-links a:hover {
    color: var(--accent);
}

.footer-gallery-links a::before {
    content: '→';
    font-size: 0.65rem;
    color: var(--accent);
}

/* ── Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Animations ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

@keyframes scrollDrop {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .photo-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .portrait-grid .photo-card,
    .wedding-grid .photo-card {
        grid-column: span 3 !important;
        grid-row: auto !important;
        min-height: 240px;
    }

    .cards-uniform .photo-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1.4rem 1.5rem;
    }

    nav.scrolled {
        padding: 1rem 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 0 1.5rem 4rem;
    }

    .hero-right {
        text-align: left;
    }

    .hero-desc,
    .hero-location {
        text-align: left;
        justify-content: flex-start;
    }

    .gallery-header {
        padding: 0 1.5rem 3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .filter-tabs {
        padding: 0 1.5rem;
        flex-wrap: wrap;
    }

    .share-banner {
        margin: 0 1.5rem 1.5rem;
    }

    .photo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .portrait-grid .photo-card,
    .wedding-grid .photo-card {
        grid-column: span 1 !important;
        grid-row: auto !important;
        min-height: 200px;
    }

    .group-single .gallery-group-inner {
        padding: 0 1.5rem;
    }

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

    .group-single .gallery-hero-row .photo-card {
        min-height: 300px;
    }

    .cards-uniform {
        grid-template-columns: 1fr 1fr;
    }

    .cards-uniform .photo-card.wide {
        grid-column: span 2;
        min-height: 240px;
    }

    .group-all .gallery-group-inner {
        padding: 0 1.5rem;
    }

    .about {
        padding: 5rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .categories {
        padding: 5rem 1.5rem;
    }

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

    .cat-item {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .contact {
        padding: 5rem 1.5rem;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    footer {
        padding: 2.5rem 1.5rem 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .lb-arrow.prev {
        left: 0.4rem;
    }

    .lb-arrow.next {
        right: 0.4rem;
    }

    section {
        padding: 5rem 1.5rem;
    }

    .testimonial {
        padding: 6rem 1.5rem;
    }
}