/* ────────────────────────────────────────────
   LAMSS MEDIA – Unified style.css
   Responsive, Premium Photography Portfolio
──────────────────────────────────────────── */

:root {
    /* Colors */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-bg-dark: #161616;
    --color-border: #383838;
    --color-text-dim: #1e1e1e;
    --active-outline-color: #000000;

    /* Fonts */
    --font-sans: 'Instrument Sans', sans-serif;
    --font-serif: 'Instrument Serif', serif;
    --font-mono: 'DM Mono', monospace;
    --font-detail: 'Space Grotesk', sans-serif;
    --font-nav: 'Instrument Serif', serif;

    /* Spacing - Premium Rhythm */
    --spacing-major-desktop: 80px;
    --spacing-major-mobile: 60px;
    --spacing-minor: 40px;

    --desktop-nav-height: 80px;
    --desktop-padding: 40px;

    --transition-duration: 700ms;
    --transition-easing: ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    box-sizing: border-box;
}

body {
    background-color: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-sans);
    position: relative;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font-sans);
}

button {
    font-family: var(--font-detail);
}

input,
select,
textarea,
button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--desktop-padding);
    position: relative;
}

/* ════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--desktop-nav-height);
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--desktop-padding);
    z-index: 1000;
}

.nav__logo {
    height: 40px;
    width: 140px;
    display: flex;
    align-items: center;
}

.nav__logo svg {
    width: 100%;
    height: 100%;
    display: block;
}

.nav__links {
    display: flex;
    gap: 128px;
    font-family: var(--font-nav);
    font-size: 18px;
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 0.05em;
    align-items: center;
}

.nav__links a {
    font-family: inherit;
}

.nav__menu-mobile {
    display: none;
}

/* Nav Dropdown Desktop */
.nav__item-dropdown {
    position: relative;
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-black);
    padding: 20px 0;
    display: none;
    flex-direction: column;
    gap: 12px;
    min-width: 280px;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__dropdown.open {
    display: flex;
}

.nav__dropdown a {
    padding: 8px 32px;
    font-size: 16px;
    transition: background 0.2s;
    display: block;
    width: 100%;
}

.nav__dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Nav link with arrow */
.nav__links .has-dropdown {
    position: relative;
    padding-right: 20px;
}

.nav__links .has-dropdown::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--color-white);
    transition: transform 0.3s;
}

.nav__links .has-dropdown.open::after {
    transform: translateY(-50%) rotate(180deg);
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--spacing-major-desktop) var(--desktop-padding);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.footer__top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 120px;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 0 0 auto;
}

.footer__heading {
    font-family: var(--font-serif);
    font-size: 36px;
    line-height: 1;
    margin-bottom: 0;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-family: var(--font-sans);
    transition: opacity 0.2s;
}

.footer__links a:hover {
    opacity: 0.6;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.footer__logo {
    width: 120px;
    height: auto;
    display: flex;
    justify-content: flex-end;
}

.footer__logo svg {
    width: 100%;
    height: auto;
    display: block;
}

.copyright {
    font-family: var(--font-sans);
    font-size: 10px;
    color: var(--color-white);
    margin: 0;
    opacity: 0.6;
}

/* ════════════════════════════════════════════
   MOBILE MENU
   ════════════════════════════════════════════ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-black);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    color: var(--color-white);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
    pointer-events: none;
    overflow: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

/* Sticky close bar — always visible at top of the menu */
.mobile-menu__header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 24px 24px 16px;
    background: var(--color-black);
    flex-shrink: 0;
}

/* Scrollable body of the menu */
.mobile-menu__body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 16px 60px;
}

.mobile-menu__close {
    background: transparent !important;
    outline: none !important;
    border: none !important;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.mobile-menu__section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu__title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 400;
    margin: 0;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu__item {
    font-family: var(--font-nav);
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s, filter 1.5s, opacity 1.5s, transform 1.5s;
    opacity: 0;
    filter: blur(8px);
    transform: translateX(20px);
}

.mobile-menu.active .mobile-menu__item {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

/* ════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s, transform 0.8s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

body.no-scroll {
    overflow: hidden;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav {
        height: 60px;
        padding: 0 16px;
    }

    .nav__logo {
        width: 90px;
        height: 26px;
    }

    .nav__links {
        display: none;
    }

    .nav__menu-mobile {
        display: flex;
        cursor: pointer;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 40px;
    }

    .footer__logo {
        width: 120px;
        height: 40px;
        bottom: 24px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .footer__top {
        grid-template-columns: 1fr;
    }

    .footer__logo {
        position: static;
        margin-top: 40px;
        width: 100px;
    }
}

/* ════════════════════════════════════════════
   PORTFOLIO GRIDS (BRAND.PHP UPDATE)
   ════════════════════════════════════════════ */
main {
    width: 100%;
    box-sizing: border-box;
    padding: 32px;
    margin-top: var(--desktop-nav-height);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
}

.image-grid-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
    position: relative;
}

.image-grid-item.video-wrapper {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

.image-grid-item img,
.image-grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.video-wrapper .mute-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper .mute-toggle svg {
    width: 22px;
    height: 22px;
    fill: white;
}

/* ════════════════════════════════════════════
   HERO SWITCHER (INDEX.PHP)
   ════════════════════════════════════════════ */
.switcher-section {
    margin-top: var(--desktop-nav-height);
    padding: var(--spacing-major-desktop) var(--desktop-padding);
    position: relative;
    z-index: 5;
}

.switcher {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: var(--spacing-minor);
}

.switcher__left {
    flex: 0 0 calc(65% - 20px);
    max-width: calc(65% - 20px);
    width: calc(65% - 20px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 10;
}

.switcher__hero {
    width: 100%;
    height: 719px;
    position: relative;
    background: #f0f0f0;
    overflow: hidden;
    border-radius: 4px;
}

#hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.7s ease-in-out;
}

#hero-img.fade-out {
    opacity: 0;
}

.switcher__hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-top-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--color-white);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.subheading {
    font-family: var(--font-detail);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.switcher__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex: 0 0 calc(35% - 20px);
    max-width: calc(35% - 20px);
    width: calc(35% - 20px);
    height: 719px;
    column-gap: 24px;
    align-content: flex-start;
    row-gap: 32px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 32px 0 12px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.thumb-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 6px;
    cursor: pointer;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.thumb {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 8px;
    transition: border 0.2s;
    border: 2px solid transparent;
}

.thumb.active {
    border: 2px solid #000;
}

.thumb-num {
    font-family: var(--font-detail);
    font-size: 12px;
    color: #000;
    margin-top: 4px;
    flex: 0 0 auto;
    font-weight: 600;
}

.hero-description-wrap {
    width: 100%;
}

.hero-description {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: #333;
    letter-spacing: -0.01em;
}

.hero-booking-btn {
    margin-top: 16px;
    width: 100%;
}

.btn-black {
    background: var(--color-bg-dark);
    color: var(--color-white);
    padding: 18px 32px;
    font-family: var(--font-detail);
    font-size: 14px;
    letter-spacing: 1px;
    transition: opacity 0.2s;
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-black:hover {
    opacity: 0.9;
}

/* ════════════════════════════════════════════
   SECTIONS (ABOUT, TESTIMONIALS, BOOKING)
   ════════════════════════════════════════════ */
section {
    width: 100%;
    box-sizing: border-box;
    padding: var(--spacing-major-desktop) var(--desktop-padding);
    position: relative;
    z-index: 1;
}

.container {
    width: 100%;
    box-sizing: border-box;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--desktop-padding);
    position: relative;
}

main {
    padding-bottom: 80px;
}

/* Ensures footer doesn't cover content */

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: flex-start;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__label {
    display: none;
}

.about__title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    color: #000;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about__name {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin: 0;
    letter-spacing: -0.02em;
}

.about__bio {
    color: #000;
    font-size: 16px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    letter-spacing: -0.02em;
}

.about-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 16px;
    font-family: var(--font-detail);
}

.about__image img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 48px;
    color: #000;
    letter-spacing: -0.02em;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    border: 1px solid #eee;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 4px;
    height: 100%;
}

.testimonial__quote {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 40px;
    flex-grow: 1;
    color: #333;
    letter-spacing: -0.02em;
}

.testimonial__author {
    margin-top: auto;
}

.author__name {
    font-family: var(--font-sans);
    font-weight: 800;
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: #333;
}

.author__role {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #999;
}

.booking-form,
.contact-form {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-detail);
    font-size: 12px;
    color: #666;
}

.form-input,
.textarea-field {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: transparent;
}

.form-input:focus,
.textarea-field:focus {
    border-bottom-color: var(--color-black);
}

.textarea-field {
    min-height: 120px;
    resize: vertical;
}

.contact-section {
    padding: 80px var(--desktop-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-form-container {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.contact-info__title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-info__text {
    font-family: var(--font-sans);
    font-size: 18px;
    color: #666;
    max-width: 480px;
    margin-bottom: 48px;
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail__item h4 {
    font-family: var(--font-detail);
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.contact-detail__item p {
    font-family: var(--font-sans);
    font-size: 20px;
    margin: 0;
}

.contact-submit-btn,
.booking-submit-btn {
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 20px;
    font-family: var(--font-detail);
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
    width: 100%;
    margin-top: 24px;
    text-align: center;
}

.contact-submit-btn:hover,
.booking-submit-btn:hover {
    opacity: 0.9;
}

/* ── Animation Helpers ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s, transform 0.8s;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════════
   MOBILE REFINEMENTS
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --desktop-padding: 20px;
    }

    main {
        padding: 0 0 60px 0;
    }

    section {
        padding: var(--spacing-major-mobile) 20px;
    }

    .nav {
        height: 60px;
        padding: 0 16px;
    }

    .nav__logo {
        width: 90px;
        height: 26px;
    }

    .nav__links {
        display: none;
    }

    .nav__menu-mobile {
        display: flex;
        cursor: pointer;
    }

    .switcher {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 24px;
    }

    .switcher__left,
    .switcher__grid {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .switcher__hero {
        height: auto;
        aspect-ratio: 4/5;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .switcher__grid {
        display: grid;
        grid-template-columns: repeat(3, 80px);
        justify-content: center;
        column-gap: 20px;
        row-gap: 24px;
        height: auto;
        max-height: none;
        overflow: visible;
        padding: 0;
    }

    .thumb-wrapper {
        width: 100%;
        margin: 0;
    }

    .about__grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about__title {
        order: 1;
        margin-bottom: 8px;
    }

    .about__image {
        order: 2;
        margin-bottom: 8px;
    }

    .about__content {
        order: 3;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .about__name {
        margin-bottom: 16px;
        order: 1;
    }

    .about__bio {
        order: 2;
        width: 100%;
    }

    .about-book-btn {
        order: 4;
        margin-top: 32px;
        width: 100%;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-form,
    .contact-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Stack contact/booking sections on mobile */
    .contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 16px;
        overflow: hidden;
    }

    .contact-form-container {
        width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .contact-info__title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        word-break: break-word;
    }

    .contact-info__text {
        max-width: 100%;
        font-size: 16px;
    }

    .contact-detail__item p {
        font-size: 16px;
        word-break: break-all;
    }

    /* Stack all form grids to single column on mobile */
    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Make ANY nested grid inside form-group single-column on mobile */
    .form-group [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .form-input,
    .textarea-field,
    .form-select {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .contact-submit-btn,
    .booking-submit-btn {
        width: 100%;
        box-sizing: border-box;
    }

    /* Mobile Footer Design Refinement */
    .footer__top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer__column:nth-child(3) {
        grid-column: 1 / -1;
        margin-top: 16px;
    }

    .footer__heading {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .footer__links a {
        font-size: 16px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        padding-top: 32px;
    }

    .copyright {
        order: 2;
        font-size: 11px;
    }

    .footer__logo {
        order: 1;
        position: static;
        width: 140px;
        height: auto;
        display: flex;
        justify-content: flex-start;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .image-grid-item.video-wrapper {
        grid-column: 1 / -1;
    }
}

/* ════════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox__content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
}

.lightbox__image {
    max-width: 100vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__close {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-family: var(--font-detail);
    line-height: 1;
    padding: 0;
}

@media (max-width: 768px) {
    .lightbox {
        padding: 20px;
    }
}

/* ════════════════════════════════════════════
   EDITORIAL HEADERS (BRAND/PORTFOLIO)
   ════════════════════════════════════════════ */
.page-header--editorial {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 48px;
}

.page-header--editorial .page-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2.5px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-header--editorial .page-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    color: #000;
    margin-bottom: 24px;
    margin-top: 0;
}

.page-header--editorial .page-desc {
    font-family: var(--font-sans);
    font-size: 15px;
    color: #999;
    line-height: 1.8;
    max-width: 600px;
}

.page-header--editorial .page-number {
    font-family: var(--font-serif);
    font-size: 140px;
    font-style: italic;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    margin-left: 24px;
}

@media (max-width: 768px) {
    .page-header--editorial {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-header--editorial .page-title {
        font-size: 42px;
    }

    .page-header--editorial .page-number {
        display: none;
    }
}