/* ============================================
   LightsUp Lifestyle - Photography Theme Style
   Like photographyv7-4.themegoods.com
   ============================================ */

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

:root {
    --color-dark: #1a1a1a;
    --color-text: #333;
    --color-muted: #666;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, sans-serif;
    --nav-bg: #ffffff;
    --nav-cta-bg: rgba(0, 0, 0, 0.06);
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== Navigation (logo left, nav center, CTA right) ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: var(--nav-bg);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: var(--nav-bg);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.nav-logo {
    display: block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-logo__img {
    display: block;
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: opacity 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.85;
}

.nav-chevron {
    font-size: 0.5rem;
    opacity: 0.9;
}

.nav-cta {
    justify-self: end;
    padding: 12px 24px;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #080808;
    border-radius: 5px 5px 5px 5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: opacity 0.25s ease;
}

.nav-cta:hover {
    background: #080808;
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.is-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar.is-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}
.navbar.is-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== Floating social (left edge) ========== */
.social-floating {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
}

.social-floating__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 10px 12px 8px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.social-floating__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-dark);
    transition: color 0.25s ease, transform 0.25s ease;
}

.social-floating__link:hover {
    color: var(--color-muted);
    transform: scale(1.1);
}

.social-floating__link svg {
    display: block;
}

@media (max-width: 768px) {
    .social-floating {
        top: auto;
        bottom: 24px;
        transform: none;
    }
    .social-floating__inner {
        flex-direction: row;
        border-radius: 12px;
        padding: 8px 12px;
    }
}

/* ========== Triptych Hero (3 panels, thin white dividers, subtle arrows) ========== */
.hero-triptych {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 420px;
    overflow: hidden;
}

.hero-triptych__track {
    display: flex;
    width: 166.666%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 5 panels (3 + 2 clones); each = 1/3 viewport = 20% of track */
.hero-triptych__panel {
    flex: 0 0 20%;
    width: 20%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-triptych__panel:last-child {
    border: none;
}

.hero-triptych__panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-triptych__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hero-triptych__arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.9);
}

.hero-triptych__prev {
    left: 20px;
}

.hero-triptych__next {
    right: 20px;
}

@media (max-width: 768px) {
    .hero-triptych {
        height: 55vh;
        min-height: 360px;
    }
    .hero-triptych__arrow {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    .hero-triptych__prev {
        left: 12px;
    }
    .hero-triptych__next {
        right: 12px;
    }
}

/* ========== Intro three columns (between slider and about) ========== */
.intro-three-col {
    padding: 88px 0 100px;
    background: var(--color-white);
}

.intro-three-col__inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
    min-height: 180px;
}

.intro-three-col__cell {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-three-col__cell--left {
    text-align: center;
}

.intro-three-col__cell--center {
    text-align: center;
    border-left: 1px solid var(--color-dark);
    border-right: 1px solid var(--color-dark);
}

.intro-three-col__cell--right {
    text-align: center;
}

.intro-three-col__headline {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 2.8vw, 2.7rem);
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.35;
    letter-spacing: 0.02em;
    margin: 0;
}

.intro-three-col__name {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.2;
    margin: 0 0 12px 0;
}

.intro-three-col__tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
}

.intro-three-col__text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .intro-three-col__inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 0 24px;
    }
    .intro-three-col__cell {
        padding: 24px 0;
        border-left: none !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }
    .intro-three-col__cell:last-child {
        border-bottom: none;
    }
    .intro-three-col__cell--right {
        text-align: center;
    }
}

/* ========== Masonry gallery (section 3 / Flexible Masonry style) ========== */
.masonry-gallery {
    background: var(--color-white);
    padding: 0 0 80px;
}

.masonry-gallery__inner {
    column-count: 3;
    column-gap: 30px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.masonry-gallery__item {
    break-inside: avoid;
    margin-bottom: 30px;
    overflow: hidden;
}

.masonry-gallery__item img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

@media (max-width: 900px) {
    .masonry-gallery__inner {
        column-count: 2;
    }
}

@media (max-width: 560px) {
    .masonry-gallery__inner {
        column-count: 1;
    }
}

/* ========== Bridge editorial (between gallery and about) ========== */
.bridge-editorial {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bridge-editorial__bg {
    position: absolute;
    inset: 0;
}

.bridge-editorial__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bridge-editorial__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%);
}

.bridge-editorial__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 64px 24px;
}

.bridge-editorial__quote {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin: 0 0 24px 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.bridge-editorial__line {
    display: block;
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.85);
    margin: 0 auto 28px;
}

.bridge-editorial__link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.7);
    padding: 12px 28px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.bridge-editorial__link:hover {
    background: #fff;
    color: var(--color-dark);
    border-color: #fff;
}

@media (max-width: 640px) {
    .bridge-editorial {
        min-height: 36vh;
    }
}

/* ========== Section heading ========== */
.section-heading {
    padding: 80px 0 60px;
    background: var(--color-white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    text-align: center;
    color: var(--color-dark);
    letter-spacing: 0.02em;
}

/* ========== Profile block (creative layout + animation) ========== */
.profile-block {
    padding: 80px 0 120px;
    background: var(--color-white);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0  min(6vw, 72px);
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
}

.profile-image-wrap {
    position: relative;
    order: 1;
}

.profile-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.profile-image-wrap:hover .profile-image-frame {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.profile-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.03) 100%);
    pointer-events: none;
}

.profile-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image-wrap:hover .profile-image-frame img {
    transform: scale(1.04);
}

.profile-content {
    order: 2;
    padding-left: 0;
}

.profile-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 16px;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.profile-tagline {
    font-size: 1.05rem;
    color: var(--color-muted);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.profile-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text);
    margin-bottom: 32px;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-dark);
    transition: gap 0.3s ease, opacity 0.3s ease;
}

.profile-link:hover {
    gap: 16px;
}

.profile-link__arrow {
    transition: transform 0.3s ease;
}

.profile-link:hover .profile-link__arrow {
    transform: translateX(4px);
}

/* ========== Services we offer ========== */
.services-section {
    padding: 80px 0 100px;
    background: var(--color-white);
}

#services {
    scroll-margin-top: 80px;
}

.services-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 500;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.services-section__sub {
    text-align: center;
    font-size: 1rem;
    color: var(--color-muted);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    border: 1px solid #e8e8e8;
    background: var(--color-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    text-align: left;
}

.service-card:hover {
    border-color: var(--color-dark);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-card__name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.service-card__cta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-dark);
    opacity: 0.8;
    transition: opacity 0.25s ease;
}

.service-card:hover .service-card__cta {
    opacity: 1;
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========== Statement block (creative replacement for testimonials) ========== */
.statement-block {
    padding: 100px 0 100px;
    background: linear-gradient(180deg, var(--color-light) 0%, rgba(245, 245, 245, 0.6) 100%);
}

#statement {
    scroll-margin-top: 80px;
}

.statement-block__inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.statement-block__line {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.25;
    letter-spacing: 0.02em;
    margin: 0;
}

.statement-block__line--1 {
    margin-bottom: 0.25em;
}

.statement-block__line--2 {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 32px;
}

.statement-block__rule {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--color-dark);
    margin: 0 auto 24px;
}

.statement-block__sub {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin: 0;
}

/* ========== Three link cards (image / video) ========== */
.links-block {
    padding: 80px 0 100px;
    background: var(--color-white);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.link-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    min-height: 320px;
}

.link-card__media {
    position: absolute;
    inset: 0;
}

.link-card__media img,
.link-card__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-card:hover .link-card__media img,
.link-card:hover .link-card__media video {
    transform: scale(1.08);
}

.link-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    transition: background 0.4s ease;
}

.link-card:hover .link-card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.link-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px 24px 28px;
    z-index: 2;
}

.link-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.2vw, 1.85rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.link-card__sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}

.link-card__cta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.95;
    transition: letter-spacing 0.3s ease;
}

.link-card:hover .link-card__cta {
    letter-spacing: 0.22em;
}

@media (max-width: 900px) {
    .links-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .link-card {
        aspect-ratio: 16/10;
        min-height: 280px;
    }
}

/* ========== CTA ========== */
.cta-section {
    padding: 100px 0;
    background: var(--color-light);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

.cta-button {
    display: inline-block;
    padding: 16px 44px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #333;
}

/* ========== Scroll animations ========== */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.is-visible {
    opacity: 1;
}

.scroll-animate[data-animate="up"] {
    transform: translateY(48px);
}

.scroll-animate.is-visible[data-animate="up"] {
    transform: translateY(0);
}

.scroll-animate[data-animate="left"] {
    transform: translateX(-40px);
}

.scroll-animate.is-visible[data-animate="left"] {
    transform: translateX(0);
}

.scroll-animate[data-animate="right"] {
    transform: translateX(40px);
}

.scroll-animate.is-visible[data-animate="right"] {
    transform: translateX(0);
}

.scroll-animate[data-animate="scale"] {
    transform: scale(0.96);
}

.scroll-animate.is-visible[data-animate="scale"] {
    transform: scale(1);
}

/* Intro three-col: stagger cells (section stays visible, cells animate) */
.intro-three-col.scroll-animate {
    opacity: 1;
}

.intro-three-col.scroll-animate .intro-three-col__cell--left {
    transition-delay: 0.1s;
    transform: translateY(32px);
    opacity: 0;
}

.intro-three-col.scroll-animate .intro-three-col__cell--center {
    transition-delay: 0.25s;
    transform: translateY(32px);
    opacity: 0;
}

.intro-three-col.scroll-animate .intro-three-col__cell--right {
    transition-delay: 0.4s;
    transform: translateY(32px);
    opacity: 0;
}

.intro-three-col.scroll-animate.is-visible .intro-three-col__cell--left,
.intro-three-col.scroll-animate.is-visible .intro-three-col__cell--center,
.intro-three-col.scroll-animate.is-visible .intro-three-col__cell--right {
    transform: translateY(0);
    opacity: 1;
}

/* Masonry: stagger items (section stays visible, items animate) */
.masonry-gallery.scroll-animate {
    opacity: 1;
}

.masonry-gallery.scroll-animate .masonry-gallery__item {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.masonry-gallery.scroll-animate .masonry-gallery__item:nth-child(1) { transition-delay: 0.05s; }
.masonry-gallery.scroll-animate .masonry-gallery__item:nth-child(2) { transition-delay: 0.12s; }
.masonry-gallery.scroll-animate .masonry-gallery__item:nth-child(3) { transition-delay: 0.19s; }
.masonry-gallery.scroll-animate .masonry-gallery__item:nth-child(4) { transition-delay: 0.26s; }
.masonry-gallery.scroll-animate .masonry-gallery__item:nth-child(5) { transition-delay: 0.33s; }
.masonry-gallery.scroll-animate .masonry-gallery__item:nth-child(6) { transition-delay: 0.4s; }
.masonry-gallery.scroll-animate .masonry-gallery__item:nth-child(7) { transition-delay: 0.47s; }
.masonry-gallery.scroll-animate .masonry-gallery__item:nth-child(8) { transition-delay: 0.54s; }
.masonry-gallery.scroll-animate .masonry-gallery__item:nth-child(9) { transition-delay: 0.61s; }
.masonry-gallery.scroll-animate .masonry-gallery__item:nth-child(10) { transition-delay: 0.68s; }
.masonry-gallery.scroll-animate .masonry-gallery__item:nth-child(n+11) { transition-delay: 0.75s; }

.masonry-gallery.scroll-animate.is-visible .masonry-gallery__item {
    opacity: 1;
    transform: translateY(0);
}

/* Bridge editorial: content fades up */
.bridge-editorial.scroll-animate {
    opacity: 1;
}

.bridge-editorial.scroll-animate .bridge-editorial__content {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bridge-editorial.scroll-animate.is-visible .bridge-editorial__content {
    opacity: 1;
    transform: translateY(0);
}

/* Profile: creative staggered animation */
.profile-block.scroll-animate {
    opacity: 1;
}

.profile-block.scroll-animate .profile-image-frame {
    opacity: 0;
    transform: scale(0.96) translateX(-24px);
    transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.profile-block.scroll-animate .profile-content > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-block.scroll-animate .profile-label { transition-delay: 0.1s; }
.profile-block.scroll-animate .profile-name { transition-delay: 0.2s; }
.profile-block.scroll-animate .profile-tagline { transition-delay: 0.35s; }
.profile-block.scroll-animate .profile-text { transition-delay: 0.5s; }
.profile-block.scroll-animate .profile-link { transition-delay: 0.65s; }

.profile-block.scroll-animate.is-visible .profile-image-frame {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.profile-block.scroll-animate.is-visible .profile-content > * {
    opacity: 1;
    transform: translateY(0);
}

/* Statement block: staggered line animation */
.statement-block.scroll-animate {
    opacity: 1;
}

.statement-block.scroll-animate .statement-block__line--1,
.statement-block.scroll-animate .statement-block__line--2,
.statement-block.scroll-animate .statement-block__rule,
.statement-block.scroll-animate .statement-block__sub {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.statement-block.scroll-animate .statement-block__line--1 { transition-delay: 0.08s; }
.statement-block.scroll-animate .statement-block__line--2 { transition-delay: 0.2s; }
.statement-block.scroll-animate .statement-block__rule { transition-delay: 0.35s; }
.statement-block.scroll-animate .statement-block__sub { transition-delay: 0.5s; }

.statement-block.scroll-animate.is-visible .statement-block__line--1,
.statement-block.scroll-animate.is-visible .statement-block__line--2,
.statement-block.scroll-animate.is-visible .statement-block__rule,
.statement-block.scroll-animate.is-visible .statement-block__sub {
    opacity: 1;
    transform: translateY(0);
}

/* Services: stagger cards */
.services-section.scroll-animate {
    opacity: 1;
}

.services-section.scroll-animate .service-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-section.scroll-animate .service-card:nth-child(1) { transition-delay: 0.03s; }
.services-section.scroll-animate .service-card:nth-child(2) { transition-delay: 0.06s; }
.services-section.scroll-animate .service-card:nth-child(3) { transition-delay: 0.09s; }
.services-section.scroll-animate .service-card:nth-child(4) { transition-delay: 0.12s; }
.services-section.scroll-animate .service-card:nth-child(5) { transition-delay: 0.15s; }
.services-section.scroll-animate .service-card:nth-child(6) { transition-delay: 0.18s; }
.services-section.scroll-animate .service-card:nth-child(7) { transition-delay: 0.21s; }
.services-section.scroll-animate .service-card:nth-child(8) { transition-delay: 0.24s; }
.services-section.scroll-animate .service-card:nth-child(9) { transition-delay: 0.27s; }
.services-section.scroll-animate .service-card:nth-child(10) { transition-delay: 0.3s; }
.services-section.scroll-animate .service-card:nth-child(11) { transition-delay: 0.33s; }
.services-section.scroll-animate .service-card:nth-child(12) { transition-delay: 0.36s; }
.services-section.scroll-animate .service-card:nth-child(13) { transition-delay: 0.39s; }
.services-section.scroll-animate .service-card:nth-child(14) { transition-delay: 0.42s; }
.services-section.scroll-animate .service-card:nth-child(15) { transition-delay: 0.45s; }
.services-section.scroll-animate .service-card:nth-child(16) { transition-delay: 0.48s; }
.services-section.scroll-animate .service-card:nth-child(17) { transition-delay: 0.51s; }
.services-section.scroll-animate .service-card:nth-child(n+18) { transition-delay: 0.54s; }

.services-section.scroll-animate.is-visible .service-card {
    opacity: 1;
    transform: translateY(0);
}

/* Link cards: stagger */
.links-block.scroll-animate {
    opacity: 1;
}

.links-block.scroll-animate .link-card {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.links-block.scroll-animate .link-card:nth-child(1) { transition-delay: 0.08s; }
.links-block.scroll-animate .link-card:nth-child(2) { transition-delay: 0.2s; }
.links-block.scroll-animate .link-card:nth-child(3) { transition-delay: 0.32s; }

.links-block.scroll-animate.is-visible .link-card {
    opacity: 1;
    transform: translateY(0);
}

/* CTA section */
.cta-section.scroll-animate .container {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section.scroll-animate.is-visible .container {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Footer - Photography theme ========== */
.footer-photography {
    padding: 80px 0 48px;
    background: var(--color-dark);
    color: var(--color-white);
    text-align: center;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.95;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 32px;
}

.footer-social__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social__icon:hover {
    color: #fff;
    transform: scale(1.1);
}

.footer-social__icon svg {
    display: block;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-nav a {
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-contact {
    margin-bottom: 32px;
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    opacity: 0.85;
}

.footer-contact a {
    opacity: 0.9;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-appointment {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 48px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.footer-appointment:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ========== Portfolio Page ========== */
.portfolio-section {
    padding: 120px 0 80px;
    background: var(--color-white);
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.page-subtitle {
    text-align: center;
    color: var(--color-muted);
    margin-bottom: 60px;
}

/* ========== Services Page (creative detail + pricing) ========== */
.container--narrow {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero {
    padding: 100px 0 72px;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
    text-align: center;
}

.services-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--color-dark);
    margin: 0 0 16px 0;
}

.services-hero__sub {
    font-size: 1.1rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

/* Services filter: pills + search */
.services-filter {
    padding: 0 0 32px;
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.services-filter__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    padding: 16px 0;
}

.services-filter__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.services-filter__pill {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-muted);
    background: #f5f5f5;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.services-filter__pill:hover {
    background: #eee;
    color: var(--color-dark);
}

.services-filter__pill--active {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.services-filter__search-wrap {
    margin-left: auto;
}

.services-filter__search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.services-filter__search {
    width: 220px;
    padding: 10px 14px;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: var(--color-white);
}

.services-filter__search:focus {
    outline: none;
    border-color: var(--color-dark);
}

.services-list__no-results {
    text-align: center;
    padding: 48px 24px;
    color: var(--color-muted);
    font-size: 1.05rem;
}

@media (max-width: 640px) {
    .services-filter__inner {
        flex-direction: column;
        align-items: stretch;
    }
    .services-filter__search-wrap {
        margin-left: 0;
    }
    .services-filter__search {
        width: 100%;
    }
}

.services-list {
    padding-bottom: 40px;
}

.service-block {
    padding: 64px 0;
    background: var(--color-white);
    border-bottom: 1px solid #eee;
}

.service-block--alt {
    background: #fafafa;
}

.service-block__inner {
    max-width: 900px;
    margin: 0 auto;
}

.service-block__header {
    margin-bottom: 28px;
}

.service-block__name {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 500;
    color: var(--color-dark);
    margin: 0 0 6px 0;
}

.service-block__tagline {
    font-size: 1.05rem;
    color: var(--color-muted);
    margin: 0;
    font-style: italic;
}

.service-block__content {
    margin-bottom: 32px;
}

.service-block__description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin: 0 0 24px 0;
}

.service-block__small-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin: 0 0 12px 0;
}

.service-block__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-block__list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 0.98rem;
    color: var(--color-dark);
}

.service-block__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--color-dark);
    border-radius: 50%;
    opacity: 0.6;
}

.service-block__duration {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin: 0;
}

.service-block__pricing {
    margin-bottom: 32px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.pricing-card {
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px 22px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-block--alt .pricing-card {
    background: #fff;
}

.pricing-card:hover {
    border-color: var(--color-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pricing-card__name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.pricing-card__price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.pricing-card__note {
    display: block;
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.4;
}

.service-block__cta {
    padding-top: 8px;
}

.service-block__btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-block__btn:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.services-page-cta {
    padding: 72px 0 100px;
    background: var(--color-white);
    text-align: center;
}

.services-page-cta__text {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin: 0 0 20px 0;
}

.services-page-cta__btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease;
}

.services-page-cta__btn:hover {
    background: #333;
}

/* Album grid (creative layout) */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.album-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    background: none;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    min-height: 280px;
    color: inherit;
}

.album-card__cover {
    position: absolute;
    inset: 0;
}

.album-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.album-card:hover .album-card__cover img {
    transform: scale(1.06);
}

.album-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
    transition: background 0.35s ease;
}

.album-card:hover .album-card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.album-card__info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 24px;
    z-index: 2;
}

.album-card__name {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    font-weight: 500;
    color: #fff;
    margin: 0 0 8px 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.album-card__meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 12px 0;
}

.album-card__cta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

/* Album page (dedicated page per album) */
.album-page {
    padding: 120px 0 80px;
    background: var(--color-white);
}

.album-page__back {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--color-muted);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.25s ease;
}

.album-page__back:hover {
    color: var(--color-dark);
}

.album-page__header {
    margin-bottom: 48px;
    text-align: center;
}

.album-page__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-dark);
    margin: 0 0 8px 0;
}

.album-page__meta {
    font-size: 1rem;
    color: var(--color-muted);
    margin: 0;
}

/* Creative bento-style gallery: varying sizes */
.album-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

@media (max-width: 900px) {
    .album-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

.album-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    background: #f0f0f0;
}

.album-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.album-gallery__item:hover img {
    transform: scale(1.06);
}

.album-gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.album-gallery__item--tall {
    grid-row: span 2;
    aspect-ratio: 1/2;
}

@media (max-width: 900px) {
    .album-gallery__item--wide {
        grid-column: span 2;
        aspect-ratio: 2/1;
    }
    .album-gallery__item--tall {
        grid-row: span 1;
        aspect-ratio: 1;
    }
}

.album-load-more {
    text-align: center;
    padding: 24px 0;
}

.album-load-more__btn {
    padding: 14px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: transparent;
    border: 2px solid var(--color-dark);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.album-load-more__btn:hover:not(:disabled) {
    background: var(--color-dark);
    color: var(--color-white);
}

.album-load-more__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.album-empty {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.album-empty code {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85em;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.25s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ========== About Page ========== */
.about-page-section {
    padding: 120px 0 80px;
    background: var(--color-white);
}

.about-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.about-portrait {
    width: 100%;
    height: auto;
}

.about-content-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.about-tagline {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 32px;
}

.about-content-section p {
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.stat-box {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* ========== Contact Page ========== */
.contact-page-section {
    padding: 120px 0 80px;
    background: var(--color-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-side .contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--color-dark);
}

.contact-block p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
}

.contact-form-side {
    background: var(--color-white);
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.form-group {
    margin-bottom: 24px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-dark);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #333;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .profile-image-wrap {
        max-width: 480px;
        margin: 0 auto;
    }

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

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image-section {
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

/* Mobile nav: hamburger + overlay menu */
@media (max-width: 900px) {
    .nav-container {
        padding: 0 16px;
        grid-template-columns: 1fr auto auto;
        gap: 16px;
    }

    .nav-logo {
        order: 0;
    }

    .nav-cta {
        order: 1;
        justify-self: end;
        padding: 10px 18px;
        font-size: 0.75rem;
    }

    .nav-toggle {
        display: flex;
        order: 2;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 80px 24px 24px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .navbar.is-open .nav-menu {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 12px 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-triptych {
        height: 55vh;
        min-height: 360px;
    }

    .hero-triptych__arrow {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .hero-triptych__prev {
        left: 12px;
    }

    .hero-triptych__next {
        right: 12px;
    }

    .intro-three-col {
        padding: 60px 0 72px;
    }

    .masonry-gallery {
        padding: 0 0 60px;
    }

    .masonry-gallery__inner {
        padding: 0 16px;
        column-gap: 16px;
    }

    .masonry-gallery__item {
        margin-bottom: 16px;
    }

    .bridge-editorial {
        min-height: 36vh;
    }

    .bridge-editorial__content {
        padding: 48px 20px;
    }

    .bridge-editorial__quote {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .section-heading {
        padding: 60px 0 40px;
    }

    .profile-block {
        padding: 60px 0 80px;
    }

    .statement-block {
        padding: 72px 0;
    }

    .statement-block__line--1,
    .statement-block__line--2 {
        font-size: clamp(1.4rem, 4vw, 2rem);
    }

    .services-section {
        padding: 60px 0 80px;
    }

    .services-hero {
        padding: 72px 0 56px;
    }

    .services-hero__title {
        font-size: clamp(2rem, 6vw, 2.75rem);
    }

    .service-block {
        padding: 48px 0;
    }

    .service-block__inner {
        padding: 0;
    }

    .service-block__name {
        font-size: clamp(1.5rem, 4vw, 1.9rem);
    }

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

    .portfolio-section {
        padding: 80px 0 60px;
    }

    .album-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .album-card {
        min-height: 260px;
    }

    .album-page {
        padding: 80px 0 60px;
    }

    .album-page__title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }

    .album-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .album-gallery__item--wide {
        grid-column: span 2;
    }

    .album-gallery__item--tall {
        grid-row: span 1;
        aspect-ratio: 1;
    }

    .about-page-section {
        padding: 80px 0 60px;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .contact-page {
        padding: 80px 0 60px;
    }

    .contact-form-side {
        padding: 32px 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* prevents zoom on focus on iOS */
    }

    .footer-photography {
        padding: 60px 0 36px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-bottom: 24px;
    }

    .footer-contact {
        margin-bottom: 24px;
    }

    .footer-contact p {
        font-size: 0.9rem;
    }

    .link-card {
        min-height: 280px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.75rem;
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .nav-logo__img {
        height: 30px;
    }

    .page-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .page-subtitle {
        margin-bottom: 40px;
        font-size: 0.95rem;
    }

    .services-filter__pills {
        justify-content: center;
    }

    .service-block__btn {
        display: block;
        text-align: center;
    }

    .album-gallery {
        gap: 10px;
    }

    .album-gallery__item--wide {
        aspect-ratio: 16/10;
    }

    .footer-appointment {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-copy {
        font-size: 0.8rem;
    }
}
