/* ============================================
   LightsUp Architecture & Real Estate Photography
   Inspired by Ornava-style editorial, with creative animations
   ============================================ */

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

:root {
    --color-bg: #fafafa;
    --color-dark: #1a1a1a;
    --color-text: #2d2d2d;
    --color-muted: #6b6b6b;
    --color-accent: #2c5f4f;
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Jost', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

p,
ul,
li {
    font-family: var(--font-heading);
}

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

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

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

/* ========== Header ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: 0.02em;
}

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

.header-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-open .header-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.site-header.is-open .header-toggle span:nth-child(2) {
    opacity: 0;
}
.site-header.is-open .header-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.03em;
    padding: 6px 0;
    position: relative;
    transition: color 0.25s ease;
}

.header-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--color-accent);
}

.header-nav a.header-cta,
.header-cta {
    padding: 12px 36px !important;
    background: var(--color-dark);
    color: #fff !important;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.header-cta::after {
    display: none;
}

.header-cta:hover {
    background: var(--color-accent);
    color: #fff !important;
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 32px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    margin: 12px auto 0;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ========== Reveal animation (initial state) ========== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal[style*="--delay"] {
    transition-delay: var(--delay, 0s);
}

/* ========== Sections ========== */
.section {
    padding: 120px 0;
}

.section--about {
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-content {
    min-width: 0;
}

.about-content .section-header {
    margin-bottom: 20px;
}

.about-image {
    position: relative;
}

.about-image__inner {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    background: var(--color-bg);
}

/* Square image */
.about-image__frame {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    background: var(--color-bg);
}

/* Ornava-style: vertical badge overlapping bottom-left, beige bg, gold number */
.about-image__badge {
    position: absolute;
    left: 20px;
    bottom: -24px;
    min-width: 88px;
    width: max-content;
    padding: 24px 18px;
    background: #ebe6df;
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image__badge.is-visible {
    animation: badgeFloat 3s ease-in-out 0.8s infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.about-image__badge-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 8px;
    line-height: 1.3;
}

.about-image__badge-number {
    display: block;
    font-family: var(--font-body);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    color: #a68b5b;
    letter-spacing: -0.02em;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-header--center {
    justify-content: center;
}

.section-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    margin-bottom: 0;
}

.section-header .section-marker {
    margin-bottom: 0;
}

.section-marker::before,
.section-marker::after {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--color-accent);
    opacity: 0.7;
}

.section-marker::before {
    margin-bottom: 2px;
}

.section-marker::after {
    margin-top: 2px;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0;
}

.section-header .section-label {
    margin-bottom: 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-muted);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 24px;
}

.section-list {
    list-style: none;
}

.section-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.section-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c5f4f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 48px;
    align-items: start;
}

.section-grid .section-marker {
    align-items: center;
}

.section-label--center,
.section-title--center {
    text-align: center;
}

.section-title--center {
    margin-bottom: 56px;
}

/* ========== Services (2 per row + view more) ========== */
.section--services {
    background: #fff;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--color-muted);
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 40px;
}

.section-intro--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ========== Services – 2-col grid, accent bar + type ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 40px;
}

.service-item {
    display: flex;
    gap: 0;
    align-items: stretch;
    padding: 0;
    background: var(--color-bg);
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.service-item__accent {
    width: 6px;
    flex-shrink: 0;
    background: linear-gradient(to bottom, var(--color-accent) 0%, transparent 100%);
    transition: width 0.25s ease;
}

.service-item:hover .service-item__accent {
    width: 10px;
}

.service-item__content {
    flex: 1;
    min-width: 0;
    padding: 28px 28px 28px 24px;
}

.service-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    color: var(--color-accent);
    opacity: 0.85;
}

.service-item__icon svg {
    width: 100%;
    height: 100%;
}

.service-item__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.service-item__desc {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.65;
}

.section--services .contact-actions {
    margin-top: 48px;
}

/* ========== Services page – hero + detailed sections ========== */
.services-hero {
    padding: 120px 0 64px;
    text-align: center;
    background: var(--color-bg);
}

.services-hero__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.services-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero__intro {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.services-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}

.services-nav__link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.services-nav__link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(44, 95, 79, 0.04);
}

.service-section {
    padding: 72px 0;
    background: #fff;
}

.service-section--alt {
    background: var(--color-bg);
}

.service-section__grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px 56px;
    align-items: start;
}

.service-section__head {
    position: sticky;
    top: 120px;
}

.service-section__num {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-accent);
    opacity: 0.9;
    margin-bottom: 12px;
}

.service-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.service-section__icon svg {
    width: 100%;
    height: 100%;
}

.service-section__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.25;
}

.service-section__body {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px 48px;
}

.service-section__text {
    font-size: 1.05rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-section__ideal {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.65;
    padding: 16px 20px;
    background: rgba(44, 95, 79, 0.06);
    border-radius: 6px;
    border-left: 3px solid var(--color-accent);
}

.service-section__ideal strong {
    color: var(--color-dark);
    font-weight: 600;
}

.service-section__points {
    padding: 24px 28px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-section--alt .service-section__points {
    background: #fff;
}

.service-section__points-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.service-section__list {
    list-style: none;
}

.service-section__list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--color-text);
}

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

@media (max-width: 1024px) {
    .service-section__grid {
        grid-template-columns: 1fr;
    }

    .service-section__head {
        position: static;
    }

    .service-section__body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .services-hero {
        padding: 100px 0 48px;
    }

    .services-nav {
        flex-direction: column;
    }

    .service-section {
        padding: 56px 0;
    }
}

.section--contact-cta {
    background: var(--color-bg);
}

.section-text--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.contact-actions--center {
    justify-content: center;
}

/* ========== Work / Portfolio (home) – compact grid ========== */
.section--work {
    background: var(--color-bg);
}

.work-intro {
    display: none;
}

.work-sub {
    text-align: center;
    font-size: 1rem;
    color: var(--color-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 24px;
}

.work-tile {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.work-tile::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
    transform: scaleY(0);
    transform-origin: center bottom;
    transition: transform 0.3s ease;
    z-index: 1;
}

.work-tile:hover {
    border-color: rgba(44, 95, 79, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.work-tile:hover::before {
    transform: scaleY(1);
}

.work-tile__img {
    aspect-ratio: 1;
    overflow: hidden;
}

.work-tile__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-tile:hover .work-tile__img img {
    transform: scale(1.05);
}

.work-tile__cap {
    padding: 14px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 10px;
}

.work-tile__cat {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.work-tile__name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-dark);
}

.section--work .contact-actions {
    margin-top: 44px;
}

/* ========== About page ========== */
.about-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: var(--color-bg);
}

.about-hero__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.about-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.15;
}

.about-hero__tagline {
    font-size: 1.15rem;
    color: var(--color-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-story {
    background: #fff;
}

.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-story__image {
    position: relative;
}

.about-story__frame {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-story__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story__badge {
    position: absolute;
    left: 24px;
    bottom: -28px;
    min-width: 88px;
    width: max-content;
    padding: 24px 18px;
    background: #ebe6df;
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.about-story__badge-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 8px;
}

.about-story__badge-number {
    display: block;
    font-family: var(--font-body);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    color: #a68b5b;
}

.about-story__heading {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.about-stats {
    background: var(--color-bg);
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.about-stat {
    padding: 32px 24px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-stat:hover {
    border-color: rgba(44, 95, 79, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.about-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.1;
    margin-bottom: 8px;
}

.about-stat__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.about-values {
    background: #fff;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
    margin-top: 40px;
}

.about-value {
    padding: 28px 24px;
    background: var(--color-bg);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.about-value__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.about-value__text {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .about-story__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-story__image {
        order: -1;
    }

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

@media (max-width: 640px) {
    .about-hero {
        padding: 100px 0 60px;
    }

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

/* ========== Portfolio page ========== */
.portfolio-page .section--portfolio-intro {
    padding-bottom: 48px;
}

.section--portfolio-grid {
    padding-top: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    display: block;
    overflow: hidden;
    background: #fff;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    border-color: rgba(44, 95, 79, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.portfolio-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card__image img {
    transform: scale(1.03);
}

.portfolio-card__info {
    padding: 20px 24px;
}

.portfolio-card__category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 6px;
}

.portfolio-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-dark);
}

/* ========== Portfolio – albums list ========== */
.section--portfolio-albums {
    padding-top: 0;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 32px;
}

.album-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.album-card:hover {
    border-color: rgba(44, 95, 79, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.album-card__cover {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.album-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.album-card__info {
    padding: 22px 24px;
}

.album-card__category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 6px;
}

.album-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.album-card__action {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* ========== Album page – header treatment ========== */
.page-album .site-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 0;
}

.page-album .site-header.scrolled {
    padding: 12px 0;
}

/* ========== Album page – project hero (title strip) ========== */
.album-hero {
    padding-top: 72px;
    padding-bottom: 40px;
    background: var(--color-bg);
}

.album-hero__bar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 0;
    margin-bottom: 32px;
}

.album-hero__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.album-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-muted);
}

.album-breadcrumb a {
    color: var(--color-accent);
    transition: color 0.2s ease;
}

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

.album-breadcrumb__sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-muted);
    opacity: 0.7;
}

.album-breadcrumb__current {
    color: var(--color-dark);
    font-weight: 600;
}

.album-hero__category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.album-hero__content {
    max-width: 720px;
}

.album-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 8px;
}

.album-hero__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-accent);
    margin-top: 20px;
}

.album-hero__sub {
    font-size: 0.9rem;
    color: var(--color-muted);
    font-family: var(--font-body);
    margin-top: 4px;
}

@media (max-width: 640px) {
    .album-hero {
        padding-top: 64px;
        padding-bottom: 28px;
    }
    .album-hero__bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.album-gallery-section {
    padding-top: 48px;
    padding-bottom: 80px;
}

.container--wide {
    max-width: 1280px;
}

.album-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.album-gallery__item {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-gallery__item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox__close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox__prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1024px) {
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* ========== Quote ========== */
.section--quote {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
}

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

.quote-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.quote-content p {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    font-style: italic;
}

/* ========== Contact ========== */
.section--contact {
    background: #fff;
}

.contact-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    margin-bottom: 24px;
}

.contact-highlight__item {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-accent);
}

.contact-highlight__item:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 28px;
}

.contact-social__link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    background: var(--color-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.contact-social__link:hover {
    border-color: var(--color-accent);
    background: rgba(44, 95, 79, 0.06);
    color: var(--color-accent);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn--primary {
    background: var(--color-dark);
    color: #fff;
    border: 2px solid var(--color-dark);
}

.btn--primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.btn--outline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn--outline:hover {
    background: var(--color-dark);
    color: #fff;
}

/* ========== Footer ========== */
.site-footer {
    padding: 80px 0 40px;
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.footer-social a {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: inherit;
    transition: color 0.25s ease;
}

.footer-social a:hover {
    color: #fff;
}

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

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

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

.footer-contact {
    font-size: 0.9rem;
    margin-bottom: 32px;
    opacity: 0.85;
}

.footer-contact a {
    color: inherit;
}

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

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-marker {
        margin-bottom: 0;
    }

    .work-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 20px;
    }

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

}

@media (max-width: 900px) {
    .header-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--color-bg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 80px 32px 32px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
    }

    .site-header.is-open .header-nav {
        transform: translateX(0);
    }

}

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

    .section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

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

    .work-gallery {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .work-tile__img {
        aspect-ratio: 1;
    }

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

    .contact-actions {
        flex-direction: column;
    }

    .btn {
        display: block;
        text-align: center;
    }
}
