/* ==========================================================================
   NANNAWA CO., LTD. — EDITORIAL PORTFOLIO STYLE ENGINE
   NANNAWA Architecture & Spatial Interior Theme
   ========================================================================== */

:root {
    /* Base & Structure (River Pearl Warm Base & Midnight Plum) */
    --bg-page: #F7F5F0;
    --text-primary: #2B252D;
    --text-secondary: #736D74;
    --text-muted: #736D74;
    --border-subtle: rgba(43, 37, 45, 0.09);
    --card-bg: #ECE8DF;

    /* Official Brand CI Accents */
    --ci-crimson: #9B1B1E;              /* Roof Mark Red CI */
    --ci-crimson-hover: #9B1B1E;
    --ci-crimson-subtle: rgba(155, 27, 30, 0.08);
    --ci-gold: #C5A880;                 /* Champagne Gold CI */
    --ci-gold-light: #C5A880;
    --ci-gold-dark: #C5A880;
    --ci-gold-subtle: rgba(197, 168, 128, 0.15);

    --font-heading: 'Prompt Rounded', 'Prompt', sans-serif;
    --font-sans: 'Inter', Arial, sans-serif;
    --font-serif: var(--font-heading);
}

body.dark-theme {
    --bg-page: #131114;                 /* Obsidian Plum Base */
    --text-primary: #F7F5F0;
    --text-secondary: rgba(247, 245, 240, 0.76);
    --text-muted: rgba(247, 245, 240, 0.62);
    --border-subtle: rgba(247, 245, 240, 0.12);
    --card-bg: #2B252D;                 /* Obsidian Card Surface */

    --ci-crimson: #9B1B1E;
    --ci-crimson-hover: #9B1B1E;
    --ci-crimson-subtle: rgba(155, 27, 30, 0.15);
    --ci-gold: #C5A880;
    --ci-gold-light: #C5A880;
    --ci-gold-dark: #C5A880;
    --ci-gold-subtle: rgba(197, 168, 128, 0.18);
}

/* Text Selection Styling */
::selection {
    background-color: var(--ci-crimson-subtle);
    color: var(--ci-crimson);
}

/* ----------------------------------------------------------------------
   RESET & BASE STYLES
   ---------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-page);
    color: var(--text-primary);
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.35s ease, color 0.35s ease;
}

h1, h2, h3, h4, h5, h6,
.giona-hero-title,
.giona-section-title,
.giona-work-title,
.giona-service-card h3 {
    font-family: var(--font-heading);
}

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

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

/* Container Utility */
.giona-container {
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(24px, 5vw, 96px);
    margin: 0 auto;
}

/* ----------------------------------------------------------------------
   1. GIONATAN NESE HEADER & NAVIGATION (Transparent Floating Nav)
   ---------------------------------------------------------------------- */
.giona-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, padding 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    padding: clamp(20px, 3vw, 36px) 0;
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

.giona-header.header-scrolled {
    background-color: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: clamp(12px, 1.8vw, 18px) 0;
    border-bottom-color: var(--border-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

body.dark-theme .giona-header {
    background-color: transparent;
    box-shadow: none;
}

body.dark-theme .giona-header.header-scrolled {
    background-color: rgba(19, 17, 20, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border-subtle);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.giona-header.header-hidden {
    transform: translateY(-100%);
}

.giona-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: clamp(72px, 8vh, 100px);
    padding: 0 clamp(28px, 4.5vw, 88px);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    height: clamp(52px, 4.8vw, 72px);
    flex-shrink: 0;
    text-decoration: none;
}

.nannawa-official-logo {
    height: clamp(52px, 4.8vw, 72px);
    max-height: 76px;
    min-height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

/* Light/Dark Theme Logo Switching */
.dark-logo {
    display: block !important;
}

.light-logo {
    display: none !important;
}

body.dark-theme .dark-logo {
    display: none !important;
}

body.dark-theme .light-logo {
    display: block !important;
}

.giona-nav-row {
    display: flex;
    align-items: center;
    list-style: none;
    gap: clamp(28px, 4vw, 56px);
}

.giona-nav-link {
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(0.85rem, 0.95vw, 0.98rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    opacity: 0.9;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.giona-nav-link:hover {
    color: var(--ci-crimson);
    opacity: 1;
}

.giona-nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    display: inline-flex;
    align-items: flex-start;
    gap: 2px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.giona-nav-link:hover {
    color: var(--ci-crimson);
    opacity: 1;
}

.giona-nav-link sup {
    font-size: 0.65em;
    color: var(--ci-crimson);
    font-weight: 600;
}

.theme-toggle-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 0.9rem;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.theme-toggle-icon:hover {
    opacity: 1;
}

/* ----------------------------------------------------------------------
   2. HERO STATEMENT SECTION
   ---------------------------------------------------------------------- */
.giona-hero-section {
    padding-top: clamp(140px, 16vw, 220px);
    padding-bottom: clamp(60px, 8vw, 110px);
}

.giona-hero-title {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 3.75vw, 4.4rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.03em;
    max-width: 100%;
    color: var(--text-primary);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .giona-hero-title {
        white-space: normal;
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }
}

.giona-hero-content {
    margin-top: clamp(24px, 3.5vw, 38px);
    max-width: 900px;
}

.giona-hero-lead {
    font-family: var(--font-sans);
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    font-weight: 600;
    color: var(--ci-crimson);
    margin-top: clamp(26px, 3.2vw, 38px);
    margin-bottom: 0;
    letter-spacing: 0.02em;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.giona-hero-lead::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 2.5px;
    background-color: var(--ci-crimson);
    border-radius: 2px;
    flex-shrink: 0;
}

.giona-hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1.02rem, 1.2vw, 1.18rem);
    color: var(--text-secondary);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.giona-hero-subtitle:last-child {
    margin-bottom: 0;
}

/* ----------------------------------------------------------------------
   3. SELECTED WORK SECTION (GIONATAN NESE FEATURED CARDS)
   ---------------------------------------------------------------------- */
.giona-works-section {
    scroll-margin-top: 100px;
    padding-bottom: clamp(100px, 12vw, 180px);
}

.giona-section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: clamp(32px, 4vw, 50px);
}

.giona-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.giona-section-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Controls Bar: Category Filters & View Switcher */
.giona-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: clamp(40px, 5vw, 70px);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.giona-filter-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: var(--ci-gold);
    background-color: var(--ci-gold-subtle);
}

.filter-btn.active {
    color: #F7F5F0;
    border-color: var(--ci-crimson);
    background-color: var(--ci-crimson);
    box-shadow: 0 4px 14px var(--ci-crimson-subtle);
}

.giona-view-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--border-subtle);
    padding: 4px;
    border-radius: 24px;
}

.view-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.view-btn.active {
    color: var(--text-primary);
    background-color: var(--bg-page);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* List View Container & Rows (Gionatan Nese Signature List) */
.giona-list-view {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.giona-list-view.hidden {
    display: none !important;
}

.giona-works-list.hidden {
    display: none !important;
}

.giona-list-row {
    display: grid;
    grid-template-columns: 2.2fr 1.2fr 0.8fr 0.3fr;
    align-items: center;
    padding: clamp(22px, 3vw, 34px) 0;
    border-bottom: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: padding-left 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.giona-list-row:hover {
    padding-left: 12px;
}

.giona-list-name {
    font-family: var(--font-sans);
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    transition: opacity 0.2s ease;
}

.giona-list-row:hover .giona-list-name {
    opacity: 0.65;
}

.giona-list-cat {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.giona-list-year {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.giona-list-arrow {
    font-size: 1.1rem;
    color: var(--text-primary);
    transition: transform 0.2s ease;
}

.giona-list-row:hover .giona-list-arrow {
    transform: translateX(6px);
}

/* Mouse-Follow Floating Image Preview (Gionatan Nese Signature) */
.giona-floating-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: clamp(280px, 25vw, 360px);
    height: clamp(190px, 18vw, 240px);
    pointer-events: none;
    z-index: 1500;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.85) translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background-color: var(--card-bg);
}

.giona-floating-preview.active {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
}

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

/* Work Item Cards Layout & Generous Vertical Spacing */
.giona-works-list {
    display: flex;
    flex-direction: column;
    gap: clamp(120px, 14vw, 200px);
}

.giona-work-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 64px);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

@media (min-width: 900px) {
    .giona-work-card.split-layout {
        grid-template-columns: 1.3fr 1fr;
        align-items: center;
    }

    .giona-work-card.split-layout.reverse {
        grid-template-columns: 1fr 1.3fr;
    }

    .giona-work-card.split-layout.reverse .giona-work-media {
        order: 2;
    }
}

.giona-work-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--card-bg);
}

.giona-work-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.giona-work-card:hover .giona-work-img {
    transform: scale(1.03);
    opacity: 0.95;
}

.giona-work-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.giona-work-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.giona-work-tag {
    padding: 4px 10px;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    font-weight: 500;
}

.giona-work-title {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.giona-work-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 580px;
}

.giona-view-project {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ci-crimson);
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.giona-work-card:hover .giona-view-project {
    transform: translateX(6px);
    color: var(--ci-crimson-hover);
}

/* ----------------------------------------------------------------------
   4. EXPLORATIONS GRID SECTION
   ---------------------------------------------------------------------- */
.giona-explorations-section {
    padding-bottom: clamp(100px, 12vw, 160px);
    border-top: 1px solid var(--border-subtle);
    padding-top: clamp(60px, 8vw, 100px);
}

.giona-explorations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: clamp(32px, 4vw, 60px);
    margin-top: 40px;
}

.giona-exploration-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.giona-exploration-media {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--card-bg);
}

.giona-exploration-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.giona-exploration-card:hover .giona-exploration-img {
    transform: scale(1.03);
}

.giona-exploration-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.giona-exploration-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ----------------------------------------------------------------------
   5. STUDIO ABOUT & FOOTER SECTIONS
   ---------------------------------------------------------------------- */
.giona-about-section {
    padding: clamp(80px, 10vw, 140px) 0;
    border-top: 1px solid var(--border-subtle);
}

.giona-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 80px);
}

@media (min-width: 850px) {
    .giona-about-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.giona-about-media {
    border-radius: 12px;
    overflow: hidden;
}

.giona-about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.giona-about-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 400;
    line-height: 1.25;
}

.giona-about-p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ----------------------------------------------------------------------
   SCOTT SNYDER SIGNATURE EDITORIAL FOOTER
   ---------------------------------------------------------------------- */
.giona-footer-section {
    padding: 0 0 clamp(48px, 6vw, 72px);
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.giona-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: clamp(32px, 4vw, 48px);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 18px clamp(16px, 2.5vw, 36px);
}

.giona-footer-inner a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.giona-footer-inner a:hover {
    color: var(--ci-crimson, #9E2A2B);
}

.giona-footer-inner .footer-link-highlight {
    color: var(--text-primary);
    font-weight: 600;
}

.giona-footer-inner .footer-link-highlight:hover {
    color: var(--ci-crimson, #9E2A2B);
}

@media (max-width: 900px) {
    .giona-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        font-size: 0.75rem;
    }
}

/* ----------------------------------------------------------------------
   SCOTT SNYDER FULL-SCREEN PROJECT CASE STUDY VIEW STYLES
   ---------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
   SCOTT SNYDER FULL-SCREEN PROJECT CASE STUDY VIEW STYLES
   ---------------------------------------------------------------------- */
.scott-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-page);
    color: var(--text-primary);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease, color 0.35s ease;
    overflow-y: auto;
}

.scott-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.scott-modal-container {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    padding: clamp(32px, 4vw, 64px) clamp(28px, 4.5vw, 96px) clamp(80px, 9vw, 140px);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
}

/* Header in Detail View: Logo Far Left, Nav Links & Close Far Right (Transparent Floating Nav) */
.scott-top-bar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: clamp(24px, 3.5vw, 44px) 0;
    border-bottom: none;
    box-shadow: none;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-theme .scott-top-bar {
    background-color: transparent;
    box-shadow: none;
}

.scott-top-bar.header-hidden {
    transform: translateY(-100%);
}

.scott-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 clamp(28px, 4.5vw, 88px);
}

.scott-nav-group {
    display: flex;
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
}

.scott-close-btn {
    background: none;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    padding: 8px 22px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.scott-close-btn:hover {
    background-color: var(--ci-crimson);
    border-color: var(--ci-crimson);
    color: #F7F5F0;
}

.scott-case-header {
    margin-bottom: clamp(56px, 7vw, 104px);
    max-width: 1280px;
}

.scott-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.scott-year-tag {
    font: 500 0.8rem/1.5 'Inter', Arial, sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scott-case-title {
    font-family: 'Prompt Rounded', 'Prompt', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 5.8rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.scott-case-desc {
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(1.1rem, 1.35vw, 1.35rem);
    color: var(--text-primary);
    opacity: 0.88;
    line-height: 1.75;
    max-width: 920px;
}

/* Scott Snyder Dynamic Editorial Gallery Layout Engine */
.scott-image-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(64px, 8vw, 136px);
    margin-bottom: clamp(88px, 10vw, 152px);
    width: 100%;
}

.scott-gallery-row {
    width: 100%;
    display: grid;
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}

/* 1. Full-Width Single Image Row */
.scott-gallery-row.scott-layout-full {
    grid-template-columns: 1fr;
    justify-items: center;
}
.scott-gallery-row.scott-layout-full .scott-gallery-item {
    max-width: 1080px;
    margin: 0 auto;
}

/* 2. Side-by-Side 2-Column Equal Grid */
.scott-gallery-row.scott-layout-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

/* 3. Staggered Offset Left (Portrait 55% Left + Offset Landscape 40% Right) */
.scott-gallery-row.scott-layout-staggered-left {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
}
.scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(2) {
    margin-top: clamp(32px, 4vw, 64px);
}

/* 4. Staggered Offset Right (Offset Landscape 40% Left + Portrait 55% Right) */
.scott-gallery-row.scott-layout-staggered-right {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: center;
}
.scott-gallery-row.scott-layout-staggered-right .scott-gallery-item:nth-child(1) {
    margin-top: clamp(32px, 4vw, 64px);
}

.scott-gallery-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scott-stack-img {
    width: auto;
    max-width: 100%;
    max-height: clamp(460px, 68vh, 680px);
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: contain;
    margin: 0 auto;
    box-shadow: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    cursor: default;
}

.scott-stack-img:hover {
    transform: scale(1.008);
    opacity: 0.98;
}

.scott-stack-img.scott-img-zoomed,
.scott-construction-img.scott-img-zoomed {
    transform: scale(1.035);
    z-index: 10;
    position: relative;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

@media (max-width: 768px) {
    .scott-gallery-row.scott-layout-grid-2,
    .scott-gallery-row.scott-layout-staggered-left,
    .scott-gallery-row.scott-layout-staggered-right {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(2),
    .scott-gallery-row.scott-layout-staggered-right .scott-gallery-item:nth-child(1) {
        margin-top: 0;
    }
}

.scott-case-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 48px;
    border-top: 1px solid var(--border-subtle);
    margin-bottom: 40px;
}

.scott-footer-info {
    max-width: 800px;
}

.scott-footer-info h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.scott-footer-info p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.lightbox-main-img {
    width: 100%;
    max-height: 65vh;
    object-fit: contain;
    transition: opacity 0.25s ease;
}

.lightbox-thumbs-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
}

.lightbox-thumb-item {
    width: 90px;
    height: 62px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.45;
    border: 2px solid transparent;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lightbox-thumb-item:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.lightbox-thumb-item.active-thumb {
    opacity: 1;
    border-color: #F7F5F0;
}

.lightbox-meta {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
}

.giona-modal-inquire-btn {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #F7F5F0;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.giona-modal-inquire-btn:hover {
    background-color: #F7F5F0;
    color: #131114;
    border-color: #F7F5F0;
    transform: translateY(-2px);
}

/* Custom Cursor Floating "View" / "Close" Tag (Gionatan Nese Signature) */
.giona-cursor-tag {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2500;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F7F5F0;
    background-color: var(--ci-crimson);
    padding: 7px 18px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(155, 27, 30, 0.35);
    border: 1px solid var(--ci-crimson);
    opacity: 0;
    transform: scale(0.8) translate(12px, 12px);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.giona-cursor-tag.active {
    opacity: 1;
    transform: scale(1) translate(14px, 14px);
}

.giona-cursor-tag.cursor-close {
    background-color: var(--ci-crimson);
    color: #F7F5F0;
    border-color: var(--ci-crimson);
    box-shadow: 0 8px 24px rgba(155, 27, 30, 0.45);
    pointer-events: auto;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.giona-cursor-tag.cursor-close:active {
    transform: scale(0.92) translate(14px, 14px);
}

body.dark-theme .giona-cursor-tag {
    background-color: var(--ci-crimson);
    color: #F7F5F0;
    border-color: var(--ci-crimson);
    box-shadow: 0 8px 24px rgba(155, 27, 30, 0.45);
}

body.dark-theme .giona-cursor-tag.cursor-close {
    background-color: var(--ci-crimson);
    color: #F7F5F0;
    border-color: var(--ci-crimson);
    box-shadow: 0 8px 24px rgba(155, 27, 30, 0.5);
}

/* ----------------------------------------------------------------------
   5. GIONATAN NESE ABOUT PAGE & PHILOSOPHY CHAPTERS
   ---------------------------------------------------------------------- */
.giona-about-section {
    scroll-margin-top: 100px;
    padding-top: clamp(100px, 12vw, 180px);
    padding-bottom: clamp(100px, 12vw, 180px);
    border-top: 1px solid var(--border-subtle);
}

.giona-about-hero-statement {
    margin-bottom: clamp(60px, 8vw, 110px);
}

.giona-about-hero-title {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 3.8vw, 4rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    max-width: 1100px;
}

.giona-philosophy-chapters {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6vw, 80px);
}

.giona-chapter-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 40px);
    padding-top: clamp(28px, 4vw, 40px);
    border-top: 1px solid var(--border-subtle);
    transition: border-color 0.35s ease;
}

@media (min-width: 900px) {
    .giona-chapter-row {
        grid-template-columns: 0.8fr 2.5fr;
    }
}

.giona-chapter-row:hover {
    border-color: var(--text-primary);
}

.giona-chapter-num {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ci-gold-dark);
    transition: color 0.3s ease;
}

.giona-chapter-row:hover .giona-chapter-num {
    color: var(--ci-crimson);
}

.giona-chapter-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 40px);
}

@media (min-width: 768px) {
    .giona-chapter-split {
        grid-template-columns: 1fr 1fr;
    }
}

.giona-chapter-p {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.75;
    transition: color 0.3s ease;
}

.giona-chapter-row:hover .giona-chapter-p {
    color: var(--text-primary);
}

/* Awards & Credentials Showcase */
.giona-awards-section {
    margin-top: clamp(80px, 10vw, 140px);
    border-top: 1px solid var(--border-subtle);
    padding-top: clamp(40px, 5vw, 64px);
}

.giona-awards-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.giona-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.giona-award-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background-color: var(--card-bg);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background-color 0.3s ease;
}

.giona-award-item:hover {
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

.giona-award-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    padding: 2px 8px;
    border-radius: 4px;
}

.giona-award-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ----------------------------------------------------------------------
   INTERACTIVE INQUIRY FORM MODAL STYLES
   ---------------------------------------------------------------------- */
#contact-modal.lightbox-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

#contact-modal.lightbox-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.giona-contact-card {
    position: relative;
    width: 90%;
    max-width: 680px;
    background-color: var(--bg-page);
    color: var(--text-primary);
    border-radius: 20px;
    padding: clamp(32px, 5vw, 52px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    max-height: 90vh;
    overflow-y: auto;
}

/* Modern Minimalist Modal Close Button */
.lightbox-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20;
    padding: 0;
    outline: none;
}

.lightbox-close-btn:hover {
    background-color: var(--ci-crimson);
    border-color: var(--ci-crimson);
    color: #F7F5F0;
    transform: rotate(90deg) scale(1.08);
    box-shadow: 0 6px 20px var(--ci-crimson-subtle);
}

.lightbox-close-btn svg {
    display: block;
    width: 13px;
    height: 13px;
    transition: transform 0.25s ease;
}

.giona-contact-header {
    margin-bottom: 28px;
}

.contact-header-logo {
    display: inline-flex;
    align-items: center;
    height: clamp(40px, 4.2vw, 50px);
    margin-bottom: 8px;
}

.contact-header-logo .nannawa-official-logo {
    height: clamp(40px, 4.2vw, 50px);
    max-height: 50px;
    min-height: 40px;
    width: auto;
}

.giona-contact-title {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 400;
    margin-top: 10px;
    letter-spacing: -0.02em;
}

.giona-contact-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Direct Contact Channels Card & List */
.contact-info-card {
    max-width: 620px;
}

.nannawa-contact-channels-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-channel-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.contact-channel-item:hover {
    border-color: var(--ci-crimson);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

body.dark-theme .contact-channel-item:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    background-color: rgba(255, 255, 255, 0.04);
}

.contact-channel-item.channel-highlight {
    border-color: rgba(139, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(139, 0, 0, 0.04) 100%);
}

.contact-channel-item.channel-highlight:hover {
    border-color: var(--ci-crimson);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(139, 0, 0, 0.08) 100%);
}

.channel-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(139, 0, 0, 0.08);
    color: var(--ci-crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.contact-channel-item:hover .channel-icon-box {
    background-color: var(--ci-crimson);
    color: #F7F5F0;
    transform: scale(1.05);
}

.channel-main-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.channel-header-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.channel-type-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 500;
}

.channel-status-badge {
    font-size: 0.68rem;
    padding: 2px 7px;
    border-radius: 999px;
    background-color: rgba(46, 125, 50, 0.12);
    color: #2e7d32;
    font-weight: 600;
}

body.dark-theme .channel-status-badge {
    background-color: rgba(76, 175, 80, 0.2);
    color: #81c784;
}

.channel-primary-val {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.channel-cta-pill {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ci-crimson);
    padding: 8px 14px;
    border-radius: 8px;
    background-color: rgba(139, 0, 0, 0.06);
    white-space: nowrap;
    transition: all 0.25s ease;
}

.contact-channel-item:hover .channel-cta-pill {
    background-color: var(--ci-crimson);
    color: #F7F5F0;
}

/* Contact Footer Details */
.nannawa-contact-footer-details {
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-meta-row {
    display: flex;
    font-size: 0.84rem;
    line-height: 1.5;
    gap: 8px;
}

.meta-field-name {
    font-weight: 600;
    color: var(--text-muted);
    min-width: 85px;
    flex-shrink: 0;
}

.meta-field-val {
    color: var(--text-primary);
}

@media (max-width: 540px) {
    .contact-channel-item {
        padding: 14px 16px;
        gap: 12px;
    }
    .channel-icon-box {
        width: 40px;
        height: 40px;
    }
    .channel-primary-val {
        font-size: 1rem;
    }
    .channel-cta-pill {
        display: none;
    }
    .contact-meta-row {
        flex-direction: column;
        gap: 2px;
    }
    .meta-field-name {
        min-width: unset;
    }
}

/* ----------------------------------------------------------------------
   LANDING PAGE CONVERSION, RESPONSIVE & ACCESSIBILITY ENHANCEMENTS
   ---------------------------------------------------------------------- */
.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 4000;
    padding: 10px 16px;
    color: #F7F5F0;
    background: var(--ci-crimson);
    border-radius: 6px;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

.menu-toggle-btn {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    background: var(--bg-page);
    color: var(--text-primary);
    cursor: pointer;
}

.menu-toggle-btn span {
    display: block;
    width: 100%;
    height: 1.5px;
    margin: 5px 0;
    background: currentColor;
    transition: transform 0.25s ease;
}

.giona-header.menu-open .menu-toggle-btn span:first-child { transform: translateY(3.25px) rotate(45deg); }
.giona-header.menu-open .menu-toggle-btn span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.giona-hero-eyebrow {
    margin-bottom: 16px;
    color: var(--ci-gold-dark);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.giona-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.giona-cta {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border: 1px solid var(--ci-crimson);
    border-radius: 6px;
    font-size: 0.86rem;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.giona-cta:hover { transform: translateY(-2px); }
.giona-cta-primary { color: #F7F5F0; background: var(--ci-crimson); }
.giona-cta-primary:hover { background: var(--ci-crimson-hover); }
.giona-cta-secondary { color: var(--text-primary); background: transparent; border-color: var(--border-subtle); }
.giona-cta-secondary:hover { border-color: var(--ci-gold); background: var(--ci-gold-subtle); }

.giona-services-section {
    scroll-margin-top: 100px;
    padding: clamp(72px, 9vw, 128px) 0;
    border-top: 1px solid var(--border-subtle);
}

.giona-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: var(--border-subtle);
}

.giona-service-card {
    min-height: 240px;
    padding: clamp(28px, 4vw, 48px);
    background: var(--bg-page);
}

.giona-service-card > span {
    color: var(--ci-gold-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.giona-service-card h3 {
    margin: 38px 0 14px;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 500;
    line-height: 1.35;
}

.giona-service-card p { max-width: 520px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }

.giona-sample-notice {
    display: grid;
    grid-template-columns: minmax(150px, 0.35fr) 1fr;
    gap: 20px;
    margin: -20px 0 clamp(42px, 6vw, 72px);
    padding: 18px 20px;
    border-left: 3px solid var(--ci-gold);
    background: var(--ci-gold-subtle);
    color: var(--text-muted);
    font-size: 0.86rem;
}

.giona-sample-notice strong { color: var(--text-primary); letter-spacing: 0.06em; }

.giona-mid-cta { padding: clamp(72px, 9vw, 120px) 0; background: var(--text-primary); color: var(--bg-page); }
.giona-mid-cta-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.giona-mid-cta span { color: var(--ci-gold-light); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; }
.giona-mid-cta h2 { max-width: 760px; margin-top: 14px; font-size: clamp(1.8rem, 3.6vw, 3.8rem); font-weight: 400; line-height: 1.2; }

.giona-footer-inner { flex-wrap: wrap; gap: 18px 28px; }
.giona-footer-inner a:hover { color: var(--ci-crimson); }
.giona-form-note { color: var(--text-muted); font-size: 0.78rem; line-height: 1.6; }

.giona-work-card:focus-visible,
.giona-list-row:focus-visible,
.giona-exploration-card:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--ci-gold);
    outline-offset: 4px;
}

.giona-submit-btn { background: var(--ci-crimson); border-color: var(--ci-crimson); }
.giona-submit-btn:hover { background: var(--ci-crimson-hover); border-color: var(--ci-crimson-hover); }
body.dark-theme .giona-submit-btn { color: #F7F5F0; background: var(--ci-crimson); border-color: var(--ci-crimson); }

@media (max-width: 768px) {
    .giona-header { padding: 16px 0; }
    .giona-header.menu-open { background: var(--bg-page); border-bottom: 1px solid var(--border-subtle); }
    .brand-logo, .nannawa-official-logo { height: 42px; min-height: 42px; }
    .menu-toggle-btn { display: block; margin-left: auto; }
    .giona-nav-row {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--border-subtle);
        background: var(--bg-page);
    }
    .giona-header.menu-open .giona-nav-row { display: flex; }
    .giona-nav-link { width: 100%; padding: 13px 0; font-size: 0.9rem; }
    .theme-toggle-icon { width: 44px; height: 44px; text-align: left; }
    .giona-hero-section { padding-top: 118px; }
    .giona-hero-eyebrow { line-height: 1.7; }
    .giona-hero-actions, .giona-hero-actions .giona-cta { width: 100%; }
    .giona-services-grid { grid-template-columns: 1fr; }
    .giona-service-card { min-height: auto; }
    .giona-sample-notice { grid-template-columns: 1fr; gap: 6px; }
    .giona-works-list { gap: 88px; }
    .giona-list-row { grid-template-columns: 1fr auto; gap: 12px; }
    .giona-list-cat { display: none; }
    .giona-list-arrow { display: none; }
    .giona-mid-cta-inner { align-items: stretch; flex-direction: column; }
    .giona-mid-cta .giona-cta { width: 100%; }
    .giona-footer-inner { align-items: flex-start; flex-direction: column; }
    .giona-contact-card { width: calc(100% - 24px); padding: 28px 20px; border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
    .giona-floating-preview, .giona-cursor-tag { display: none !important; }
}

/* NANNAWA IMAGE-FIRST EDITORIAL PORTFOLIO */
body { font-family: 'Inter', Arial, sans-serif; }
h1, h2, h3, h4,
.giona-hero-title,
.giona-work-title,
.scott-case-title,
.giona-about-hero-title { font-family: 'Prompt Rounded', 'Prompt', sans-serif; }
#main-content { display: flex; flex-direction: column; }
.giona-hero-section { order: 1; }
.giona-works-section { order: 2; }
.giona-services-section { order: 3; }
.giona-about-section { order: 4; }
.giona-mid-cta { order: 5; }
.giona-footer-section { order: 6; }
.theme-toggle-icon, .giona-controls-bar, .giona-list-view, .giona-explorations-section, .giona-floating-preview { display: none !important; }
.giona-container { max-width: 1760px; padding-inline: clamp(28px, 4.5vw, 96px); }
.giona-hero-section { min-height: auto; padding: clamp(140px, 14vw, 200px) 0 clamp(88px, 10vw, 144px); }
.giona-hero-section > .giona-container { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; align-items: end; }
.giona-hero-title { grid-column: 1 / span 7; max-width: 960px; font-size: clamp(3.4rem, 5.8vw, 6.8rem); font-weight: 500; line-height: 1.06; white-space: normal; align-self: end; margin: 0; }
.giona-hero-content { grid-column: 8 / -1; align-self: end; max-width: 620px; margin: 0; }
.giona-hero-subtitle { margin: 0; font-family: 'Inter', Arial, sans-serif; font-size: clamp(1.1rem, 1.35vw, 1.35rem); line-height: 1.75; color: var(--text-primary); opacity: 0.9; }
.giona-hero-lead { margin-top: 28px; margin-bottom: 0; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ci-crimson); }
.giona-hero-lead::before { width: 40px; }
.editorial-hero-media { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 2fr) minmax(280px, 0.82fr); align-items: end; gap: clamp(24px, 3.5vw, 56px); margin-top: clamp(80px, 9vw, 144px); }
.editorial-hero-primary, .editorial-hero-secondary { cursor: pointer; }
.editorial-hero-primary img, .editorial-hero-secondary img { width: 100%; object-fit: cover; background: var(--card-bg); transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease; }
.editorial-hero-primary img { aspect-ratio: 16 / 10; }
.editorial-hero-secondary img { aspect-ratio: 4 / 5; }
.editorial-hero-primary:hover img, .editorial-hero-secondary:hover img { transform: scale(1.01); opacity: 0.96; }
.editorial-hero-media span { display: block; margin-top: 14px; color: var(--text-muted); font: 500 0.78rem/1.5 'Inter', Arial, sans-serif; letter-spacing: 0.12em; text-transform: uppercase; }
.giona-works-section { padding: clamp(96px, 11vw, 168px) 0; border-top: 1px solid var(--border-subtle); }
.giona-works-list { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(80px, 11vw, 168px) clamp(24px, 3.5vw, 52px); }
.giona-work-card, .giona-work-card.split-layout, .giona-work-card.split-layout.reverse { display: block; align-self: start; }
.giona-work-card:nth-child(1) { grid-column: 1 / span 8; }
.giona-work-card:nth-child(2) { grid-column: 9 / span 4; margin-top: clamp(88px, 11vw, 168px); }
.giona-work-card:nth-child(3) { grid-column: 2 / span 5; }
.giona-work-card:nth-child(4) { grid-column: 7 / span 6; margin-top: clamp(56px, 7vw, 104px); }
.giona-work-card:nth-child(5) { grid-column: 1 / span 5; }
.giona-work-card:nth-child(6) { grid-column: 6 / span 7; margin-top: clamp(64px, 8vw, 128px); }
.giona-work-card:nth-child(7) { grid-column: 2 / span 5; margin-top: clamp(48px, 6vw, 96px); }
.giona-work-card:nth-child(8) { grid-column: 7 / span 6; margin-top: clamp(80px, 10vw, 152px); }
.giona-work-card:nth-child(9) { grid-column: 2 / span 5; margin-top: clamp(48px, 6vw, 96px); }
.giona-work-card:nth-child(10) { grid-column: 7 / span 6; margin-top: clamp(72px, 9vw, 140px); }
.giona-work-card:nth-child(11) { grid-column: 2 / span 9; margin-top: clamp(64px, 8vw, 120px); }
.giona-work-card:nth-child(12) { grid-column: 1 / span 7; margin-top: clamp(64px, 8vw, 120px); }
.giona-work-media { aspect-ratio: 4 / 3; border-radius: 2px; }
.giona-work-card:nth-child(1) .giona-work-media, .giona-work-card:nth-child(6) .giona-work-media, .giona-work-card:nth-child(7) .giona-work-media, .giona-work-card:nth-child(8) .giona-work-media, .giona-work-card:nth-child(9) .giona-work-media, .giona-work-card:nth-child(10) .giona-work-media, .giona-work-card:nth-child(11) .giona-work-media, .giona-work-card:nth-child(12) .giona-work-media { aspect-ratio: 16 / 10; }
.giona-work-card:nth-child(2) .giona-work-media { aspect-ratio: 3 / 4; }
.giona-work-card:nth-child(3) .giona-work-media, .giona-work-card:nth-child(4) .giona-work-media, .giona-work-card:nth-child(5) .giona-work-media { aspect-ratio: 4 / 3; }
.giona-work-card.split-layout.reverse .giona-work-media { order: initial; }
.giona-work-info { gap: 10px; margin-top: 18px; }
.giona-work-meta { justify-content: space-between; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; }
.giona-work-tag { padding: 0; border: 0; }
.giona-work-title { font-size: clamp(1.5rem, 2.4vw, 2.6rem); font-weight: 500; line-height: 1.2; }
.giona-work-desc { display: none; }
.giona-view-project { margin-top: 6px; color: var(--text-muted); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; }
.giona-services-section { padding: clamp(96px, 11vw, 160px) 0; }
.giona-services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; overflow: visible; border-width: 1px 0 0; border-radius: 0; background: transparent; }
.giona-service-card { min-height: 280px; padding: 28px 28px 36px 0; border-bottom: 1px solid var(--border-subtle); background: transparent; }
.giona-service-card + .giona-service-card { padding-left: 28px; border-left: 1px solid var(--border-subtle); }
.giona-service-card h3 { margin-top: 48px; }
.scott-modal-container { max-width: 1760px; padding-left: clamp(28px, 4.5vw, 96px); padding-right: clamp(28px, 4.5vw, 96px); }
.scott-stack-img { border-radius: 2px; box-shadow: none; }
.scott-design-concept { max-width: 1100px; margin-bottom: clamp(88px, 10vw, 144px); padding-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--border-subtle); }
.scott-design-concept-kicker, .scott-construction-kicker { display: block; margin-bottom: 16px; color: var(--ci-crimson); font: 600 0.8rem/1.5 'Inter', Arial, sans-serif; letter-spacing: 0.16em; text-transform: uppercase; }
.scott-design-concept h2, .scott-construction-header h2 { margin: 0 0 20px; font-family: 'Prompt Rounded', 'Prompt', sans-serif; font-size: clamp(2rem, 3.2vw, 3.4rem); font-weight: 500; line-height: 1.15; }
.scott-design-concept p, .scott-construction-header p { margin: 0; color: var(--text-primary); opacity: 0.88; font: 400 clamp(1.05rem, 1.25vw, 1.25rem)/1.8 'Inter', Arial, sans-serif; max-width: 900px; }
.scott-construction-section { margin-bottom: clamp(88px, 10vw, 152px); padding-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--border-subtle); }
.scott-construction-section[hidden] { display: none; }
.scott-construction-header { max-width: 760px; margin-bottom: clamp(32px, 4vw, 56px); }
.scott-construction-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.scott-construction-item { width: 100%; overflow: hidden; border-radius: 4px; background-color: var(--card-bg); }
.scott-construction-img { width: 100%; aspect-ratio: 4 / 3; display: block; object-fit: cover; border-radius: 4px; cursor: default; transition: transform 0.4s ease; }
.scott-construction-img:hover { transform: scale(1.02); }

#project-lightbox-modal .scott-modal-body,
#project-lightbox-modal .scott-image-stack,
#project-lightbox-modal .scott-gallery-item,
#project-lightbox-modal .scott-stack-img,
#project-lightbox-modal .scott-construction-img {
    cursor: default !important;
}
.scott-case-footer { display: flex; justify-content: flex-end; align-items: center; padding-top: clamp(48px, 6vw, 88px); border-top: 1px solid var(--border-subtle); }
.scott-next-project { min-height: 52px; padding: 14px 32px; border: 1px solid var(--border-subtle); background: transparent; color: var(--text-primary); font: 600 0.78rem/1 'Inter', Arial, sans-serif; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease; }
.scott-next-project:hover { border-color: var(--ci-crimson); background-color: var(--ci-crimson); color: #F7F5F0; }
@media (max-width: 900px) {
    .giona-hero-title { grid-column: 1 / -1; }
    .giona-hero-content { grid-column: 4 / -1; margin-top: 40px; }
    .giona-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .giona-service-card:nth-child(3) { padding-left: 0; border-left: 0; }
    .scott-construction-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .giona-hero-section > .giona-container { display: block; }
    .giona-hero-title { font-size: clamp(2.6rem, 12vw, 4.4rem); }
    .giona-hero-content { margin-top: 32px; }
    .editorial-hero-media { grid-template-columns: 1fr; margin-top: 64px; }
    .editorial-hero-secondary { width: 76%; margin-left: auto; }
    .giona-works-list { display: block; }
    .giona-work-card:nth-child(n) { width: auto; margin: 0 0 88px; }
    .giona-work-card:nth-child(2n) { width: 82%; margin-left: auto; }
    .giona-work-card:nth-child(n) .giona-work-media { aspect-ratio: 4 / 3; }
    .giona-services-grid { grid-template-columns: 1fr; }
    .giona-service-card, .giona-service-card + .giona-service-card { min-height: auto; padding: 28px 0 34px; border-left: 0; }
    .giona-service-card h3 { margin-top: 24px; }
    .scott-construction-grid { grid-template-columns: 1fr; }
    .scott-case-footer { align-items: stretch; flex-direction: column; }
    .scott-next-project { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    .scott-stack-img, .scott-construction-img, .editorial-hero-media img { transition: none; }
}

/* Scott Snyder-inspired editorial refinements — adapted to NANNAWA brand tokens */
.editorial-hero-kicker {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(56px, 8vw, 96px);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
    opacity: 0.88;
    font: 600 0.82rem/1.5 'Inter', Arial, sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.editorial-hero-kicker a { color: var(--text-primary); transition: color 0.25s ease; }
.editorial-hero-kicker a:hover { color: var(--ci-crimson); }
.editorial-project-note {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    margin-top: clamp(40px, 5vw, 72px);
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}
.editorial-project-note > span {
    grid-column: 1 / span 3;
    color: var(--text-muted);
    font: 600 0.68rem/1.5 'Inter', Arial, sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.editorial-project-note p {
    grid-column: 4 / span 6;
    max-width: 680px;
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.75;
}
.editorial-project-note button {
    grid-column: 11 / -1;
    justify-self: end;
    padding: 0 0 8px;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: var(--text-primary);
    font: 600 0.7rem/1.4 'Inter', Arial, sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.25s ease;
}
/* ----------------------------------------------------------------------
   SCOTT SNYDER GRAND EDITORIAL CALLOUT (Crimson Typography)
   ---------------------------------------------------------------------- */
.editorial-contact-callout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: end;
    padding: clamp(80px, 11vw, 150px) 0 clamp(64px, 8vw, 100px);
    border-bottom: 1px solid var(--border-subtle);
}

.editorial-contact-callout > span {
    grid-column: 1 / span 3;
    align-self: start;
    color: var(--ci-crimson, #BC243C);
    font: 600 0.72rem/1.5 'Inter', Arial, sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.editorial-contact-callout > a {
    grid-column: 4 / -1;
    color: var(--text-primary) !important;
    font-family: 'Prompt Rounded', 'Prompt', sans-serif;
    font-size: clamp(2.8rem, 7vw, 7.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.25s ease;
    display: block;
}

.editorial-contact-callout > a:hover {
    color: var(--ci-crimson, #BC243C) !important;
    transform: translateY(-2px);
}

.editorial-contact-callout .callout-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.editorial-contact-callout > a:hover .callout-arrow {
    transform: translate(6px, -6px);
}

@media (max-width: 900px) {
    .editorial-contact-callout > span { grid-column: 1 / span 4; }
    .editorial-contact-callout > a { grid-column: 5 / -1; }
}

@media (max-width: 768px) {
    .editorial-contact-callout { display: block; }
    .editorial-contact-callout > span { display: block; margin-bottom: 28px; }
    .editorial-contact-callout > a { display: block; font-size: clamp(2.7rem, 13vw, 5rem); }
}

/* ----------------------------------------------------------------------
   SCROLL REVEAL ANIMATIONS (Editorial Fade & Rise Effect)
   ---------------------------------------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* Contact channels & Editorial Layout */
/* GREEN VOID editorial gallery — natural ratios, photography-led rhythm */
.scott-image-stack[data-project-id="GREEN_VOID_UNC"] {
    gap: clamp(80px, 9vw, 152px);
}

.scott-image-stack[data-project-id="GREEN_VOID_UNC"] .scott-gallery-row {
    max-width: 1360px;
    margin-inline: auto;
}

.scott-image-stack[data-project-id="GREEN_VOID_UNC"] .scott-gallery-item {
    min-width: 0;
}

.scott-image-stack[data-project-id="GREEN_VOID_UNC"] .scott-stack-img {
    width: 100%;
    max-width: none;
    max-height: none;
    height: auto;
    object-fit: contain;
}

.scott-layout-green-full-wide,
.scott-layout-green-full-contained {
    grid-template-columns: 1fr;
    justify-items: center;
}

.scott-layout-green-full-wide .scott-gallery-item {
    width: min(100%, 1280px);
}

.scott-layout-green-full-contained .scott-gallery-item {
    width: min(88%, 1120px);
}

.scott-layout-green-split-landscape-portrait {
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.65fr);
    gap: clamp(32px, 5vw, 80px);
    align-items: end;
}

.scott-layout-green-split-landscape-portrait .is-landscape {
    width: 100%;
    align-self: center;
}

.scott-layout-green-split-landscape-portrait .is-portrait,
.scott-layout-green-split-landscape-portrait .is-portrait-soft {
    width: min(100%, 430px);
    justify-self: end;
}

.scott-layout-green-portrait-pair,
.scott-layout-green-portrait-pair-offset {
    grid-template-columns: repeat(2, minmax(260px, 440px));
    justify-content: center;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}

.scott-layout-green-portrait-pair-offset .scott-gallery-item:nth-child(2) {
    margin-top: clamp(72px, 8vw, 128px);
}

@media (max-width: 900px) {
    .scott-layout-green-split-landscape-portrait {
        grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
        gap: 32px;
    }

    .scott-layout-green-portrait-pair,
    .scott-layout-green-portrait-pair-offset {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .scott-image-stack[data-project-id="GREEN_VOID_UNC"] {
        gap: 64px;
    }

    .scott-layout-green-full-contained .scott-gallery-item {
        width: 100%;
    }

    .scott-layout-green-split-landscape-portrait,
    .scott-layout-green-portrait-pair,
    .scott-layout-green-portrait-pair-offset {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .scott-layout-green-split-landscape-portrait .is-portrait,
    .scott-layout-green-split-landscape-portrait .is-portrait-soft,
    .scott-layout-green-portrait-pair .scott-gallery-item,
    .scott-layout-green-portrait-pair-offset .scott-gallery-item {
        width: min(82%, 430px);
        justify-self: center;
    }

    .scott-layout-green-portrait-pair-offset .scott-gallery-item:nth-child(2) {
        margin-top: 0;
    }
}
/* GREEN VOID mixed-ratio portfolio gallery */
.scott-image-stack[data-project-id="GREEN_VOID_UNC"] {
    gap: clamp(36px, 5vw, 72px);
}

.scott-image-stack[data-project-id="GREEN_VOID_UNC"] .scott-gallery-row {
    width: min(100%, 1320px);
    max-width: 1320px;
    margin-inline: auto;
}

.scott-layout-green-full-hero-wide,
.scott-layout-green-full-wide {
    display: grid;
    grid-template-columns: 1fr;
}

.scott-layout-green-full-hero-wide .scott-gallery-item,
.scott-layout-green-full-wide .scott-gallery-item {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.scott-layout-green-landscape-square,
.scott-layout-green-portrait-square,
.scott-layout-green-square-portrait {
    display: grid;
    gap: clamp(18px, 2.6vw, 38px);
    align-items: center;
}

.scott-layout-green-landscape-square {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}

.scott-layout-green-portrait-square {
    grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
}

.scott-layout-green-square-portrait {
    grid-template-columns: minmax(0, 1fr) minmax(0, .78fr);
}

.scott-image-stack[data-project-id="GREEN_VOID_UNC"] .scott-gallery-item {
    width: 100%;
    overflow: hidden;
    background: var(--ci-warm-stone, #ECE8DF);
}

.scott-image-stack[data-project-id="GREEN_VOID_UNC"] .is-landscape { aspect-ratio: 4 / 3; }
.scott-image-stack[data-project-id="GREEN_VOID_UNC"] .is-square { aspect-ratio: 1 / 1; }
.scott-image-stack[data-project-id="GREEN_VOID_UNC"] .is-portrait { aspect-ratio: 4 / 5; }

.scott-image-stack[data-project-id="GREEN_VOID_UNC"] .scott-stack-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 680px) {
    .scott-layout-green-landscape-square,
    .scott-layout-green-portrait-square,
    .scott-layout-green-square-portrait {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .scott-layout-green-full-hero-wide .scott-gallery-item,
    .scott-layout-green-full-wide .scott-gallery-item {
        aspect-ratio: 4 / 3;
    }
}

/* GREEN VOID uses the same editorial gallery engine as Co-working Office UNC */
.scott-image-stack[data-project-id="GREEN_VOID_UNC"] {
    gap: clamp(64px, 8vw, 136px);
}

.scott-image-stack[data-project-id="GREEN_VOID_UNC"] .scott-gallery-row {
    width: 100%;
    max-width: none;
    margin-inline: 0;
}

.scott-image-stack[data-project-id="GREEN_VOID_UNC"] .scott-gallery-item {
    width: 100%;
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
}

.scott-image-stack[data-project-id="GREEN_VOID_UNC"] .scott-stack-img {
    width: auto;
    max-width: 100%;
    max-height: clamp(460px, 68vh, 680px);
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* Full-screen viewer for completed project photography only */
.scott-image-stack .scott-stack-img {
    cursor: zoom-in;
}

.project-image-viewer {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: clamp(20px, 4vw, 64px);
    background: rgba(19, 17, 20, 0.94);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.project-image-viewer.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.project-image-viewer-img {
    display: block;
    max-width: min(94vw, 1800px);
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    transform: scale(0.97);
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-image-viewer.active .project-image-viewer-img {
    transform: scale(1);
}

.project-image-viewer-close {
    position: fixed;
    top: clamp(16px, 2.5vw, 32px);
    right: clamp(16px, 2.5vw, 32px);
    z-index: 1;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(19, 17, 20, 0.68);
    color: #fff;
    font: 300 32px/1 Arial, sans-serif;
    cursor: pointer;
}

.project-image-viewer-close:hover,
.project-image-viewer-close:focus-visible {
    background: #9B1B1E;
    border-color: #9B1B1E;
    outline: none;
}

.scott-construction-img {
    cursor: default;
}

@media (prefers-reduced-motion: reduce) {
    .project-image-viewer,
    .project-image-viewer-img {
        transition: none;
    }
}


/* Tighter vertical rhythm for UNC Under-Stair Garden Court */
.scott-image-stack[data-project-id="UNC_UNDER_STAIR_GARDEN"] {
    gap: clamp(32px, 4vw, 64px);
    margin-bottom: clamp(64px, 8vw, 112px);
}

.scott-image-stack[data-project-id="UNC_UNDER_STAIR_GARDEN"] .scott-gallery-row {
    gap: clamp(18px, 2.5vw, 36px);
}

@media (max-width: 768px) {
    .scott-image-stack[data-project-id="UNC_UNDER_STAIR_GARDEN"] {
        gap: 28px;
    }
}

/* Balanced architectural presentation for Office Pantry gallery */
.scott-image-stack[data-project-id="OFFICE_PANTRY"] {
    gap: clamp(48px, 6vw, 96px);
}

.scott-image-stack[data-project-id="OFFICE_PANTRY"] .scott-gallery-row.scott-layout-full .scott-gallery-item {
    max-width: 1120px;
}

.scott-image-stack[data-project-id="OFFICE_PANTRY"] .scott-gallery-row.scott-layout-grid-2 .scott-gallery-item,
.scott-image-stack[data-project-id="OFFICE_PANTRY"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item,
.scott-image-stack[data-project-id="OFFICE_PANTRY"] .scott-gallery-row.scott-layout-staggered-right .scott-gallery-item {
    width: 100%;
}

.scott-image-stack[data-project-id="OFFICE_PANTRY"] .scott-stack-img {
    width: 100%;
    max-height: clamp(520px, 74vh, 760px);
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .scott-image-stack[data-project-id="OFFICE_PANTRY"] {
        gap: 32px;
    }
    .scott-image-stack[data-project-id="OFFICE_PANTRY"] .scott-stack-img {
        max-height: 480px;
    }
}

/* --------------------------------------------------------------------------
   Bespoke Editorial Presentation for VENUS — Executive Meeting Suite
   -------------------------------------------------------------------------- */
.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6.5vw, 96px);
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    margin-bottom: clamp(64px, 8vw, 120px);
}

.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row {
    width: 100%;
    margin-inline: auto;
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
}

.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: var(--ci-warm-stone, #ECE8DF);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.08);
}

.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-stack-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-item:hover .scott-stack-img {
    transform: scale(1.02);
}

/* 1. Full-Width Panoramic Rows (Row 1 & Row 6) */
.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-full {
    display: grid;
    grid-template-columns: 1fr;
}

.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-full .scott-gallery-item {
    max-width: 1360px;
    aspect-ratio: 16 / 9;
}

/* 2. Staggered Left Row (Row 2 - Images 2 & 3) */
.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-staggered-left {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
    align-items: start;
}

.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(1) {
    aspect-ratio: 16 / 10;
}

.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(2) {
    aspect-ratio: 4 / 3;
    margin-top: clamp(32px, 4vw, 64px);
}

/* 3. Twin Portrait Pair Row (Row 3 - Images 4 & 5) */
.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-portrait-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 460px));
    justify-content: center;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}

.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item {
    aspect-ratio: 4 / 5;
    max-width: 460px;
}

.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item:nth-child(2) {
    margin-top: clamp(28px, 3.5vw, 56px);
}

/* 4. Staggered Right Row (Row 4 - Images 6 & 7) */
.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-staggered-right {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr);
    align-items: start;
}

.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-staggered-right .scott-gallery-item:nth-child(1) {
    aspect-ratio: 4 / 3;
    margin-top: clamp(32px, 4vw, 64px);
}

.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-staggered-right .scott-gallery-item:nth-child(2) {
    aspect-ratio: 16 / 10;
}

/* 5. Split Material & Architectural Detail Row (Row 5 - Images 8 & 9) */
.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-split-pair {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
}

.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-split-pair .scott-gallery-item:nth-child(1) {
    aspect-ratio: 16 / 11;
}

.scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-split-pair .scott-gallery-item:nth-child(2) {
    aspect-ratio: 4 / 5;
}

/* Responsive adjustments */
@media (max-width: 820px) {
    .scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] {
        gap: 36px;
    }
    .scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-staggered-left,
    .scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-staggered-right,
    .scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-portrait-pair,
    .scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-split-pair {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(2),
    .scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-staggered-right .scott-gallery-item:nth-child(1),
    .scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item:nth-child(2) {
        margin-top: 0;
    }
    .scott-image-stack[data-project-id="VENUS_MEETING_SUITE"] .scott-gallery-item {
        aspect-ratio: 16 / 10 !important;
        max-width: 100% !important;
    }
}

/* --------------------------------------------------------------------------
   Bespoke Editorial Presentation for LEXIS — Executive Law Chambers
   -------------------------------------------------------------------------- */
.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6.5vw, 96px);
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    margin-bottom: clamp(64px, 8vw, 120px);
}

.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row {
    width: 100%;
    margin-inline: auto;
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
}

.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: var(--ci-warm-stone, #ECE8DF);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.08);
}

.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-stack-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-item:hover .scott-stack-img {
    transform: scale(1.02);
}

/* 1. Full-Width Panoramic Rows (Row 1 & Row 6) */
.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-full {
    display: grid;
    grid-template-columns: 1fr;
}

.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-full .scott-gallery-item {
    max-width: 1360px;
    aspect-ratio: 16 / 9;
}

/* 2. Twin Portrait Pair Rows (Row 2 & Row 5) */
.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-portrait-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 460px));
    justify-content: center;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}

.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item {
    aspect-ratio: 4 / 5;
    max-width: 460px;
}

.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item:nth-child(2) {
    margin-top: clamp(28px, 3.5vw, 56px);
}

/* 3. Split Pair Row (Row 3 - Consultation Lounge & Vertical Detail) */
.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-split-pair {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
}

.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-split-pair .scott-gallery-item:nth-child(1) {
    aspect-ratio: 16 / 10;
}

.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-split-pair .scott-gallery-item:nth-child(2) {
    aspect-ratio: 3 / 4;
}

/* 4. Staggered Left Row (Row 4 - Dual Executive Views) */
.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-staggered-left {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
    align-items: start;
}

.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(1) {
    aspect-ratio: 16 / 10;
}

.scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(2) {
    aspect-ratio: 4 / 3;
    margin-top: clamp(32px, 4vw, 64px);
}

/* Responsive adjustments */
@media (max-width: 820px) {
    .scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] {
        gap: 36px;
    }
    .scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-staggered-left,
    .scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-portrait-pair,
    .scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-split-pair {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(2),
    .scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item:nth-child(2) {
        margin-top: 0;
    }
    .scott-image-stack[data-project-id="LEXIS_LAW_CHAMBERS"] .scott-gallery-item {
        aspect-ratio: 16 / 10 !important;
        max-width: 100% !important;
    }
}

/* --------------------------------------------------------------------------
   Bespoke Editorial Presentation for SOLARIA — Executive Dining & Boardroom
   -------------------------------------------------------------------------- */
.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6.5vw, 96px);
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    margin-bottom: clamp(64px, 8vw, 120px);
}

.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row {
    width: 100%;
    margin-inline: auto;
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
}

.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: var(--ci-warm-stone, #ECE8DF);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.08);
}

.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-stack-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-item:hover .scott-stack-img {
    transform: scale(1.02);
}

/* 1. Full-Width Panoramic Rows (Row 1 & Row 6) */
.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-full {
    display: grid;
    grid-template-columns: 1fr;
}

.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-full .scott-gallery-item {
    max-width: 1360px;
    aspect-ratio: 16 / 9;
}

/* 2. Staggered Left Row (Row 2 - Dining & Boardroom Dual View) */
.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-staggered-left {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
    align-items: start;
}

.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(1) {
    aspect-ratio: 16 / 10;
}

.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(2) {
    aspect-ratio: 4 / 3;
    margin-top: clamp(32px, 4vw, 64px);
}

/* 3. Twin Portrait Pair Rows (Row 3 & Row 4) */
.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-portrait-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 460px));
    justify-content: center;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}

.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item {
    aspect-ratio: 4 / 5;
    max-width: 460px;
}

.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item:nth-child(2) {
    margin-top: clamp(28px, 3.5vw, 56px);
}

/* 4. Split Pair Row (Row 5 - Lounge & Vertical Architectural Detail) */
.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-split-pair {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
}

.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-split-pair .scott-gallery-item:nth-child(1) {
    aspect-ratio: 16 / 10;
}

.scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-split-pair .scott-gallery-item:nth-child(2) {
    aspect-ratio: 4 / 5;
}

/* Responsive adjustments */
@media (max-width: 820px) {
    .scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] {
        gap: 36px;
    }
    .scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-staggered-left,
    .scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-portrait-pair,
    .scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-split-pair {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(2),
    .scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item:nth-child(2) {
        margin-top: 0;
    }
    .scott-image-stack[data-project-id="EXECUTIVE_DINING_BOARDROOM"] .scott-gallery-item {
        aspect-ratio: 16 / 10 !important;
        max-width: 100% !important;
    }
}

/* --------------------------------------------------------------------------
   Bespoke Editorial Presentation for ENSO — Modern Japanese Zen Garden
   -------------------------------------------------------------------------- */
.scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6.5vw, 96px);
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    margin-bottom: clamp(64px, 8vw, 120px);
}

.scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-row {
    width: 100%;
    margin-inline: auto;
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
}

.scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: var(--ci-warm-stone, #ECE8DF);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.08);
}

.scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-stack-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-item:hover .scott-stack-img {
    transform: scale(1.02);
}

/* 1. Full-Width Panoramic Rows (Row 1, Row 5 & Row 6) */
.scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-row.scott-layout-full {
    display: grid;
    grid-template-columns: 1fr;
}

.scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-row.scott-layout-full .scott-gallery-item {
    max-width: 1360px;
    aspect-ratio: 16 / 9;
}

/* 2. Staggered Left Row (Row 2 - Water Feature & Pavilion Dual View) */
.scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-row.scott-layout-staggered-left {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: start;
}

.scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(1) {
    aspect-ratio: 16 / 10;
}

.scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(2) {
    aspect-ratio: 4 / 3;
    margin-top: clamp(32px, 4vw, 64px);
}

/* 3. Twin Portrait Pair Rows (Row 3 & Row 4) */
.scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-row.scott-layout-portrait-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 460px));
    justify-content: center;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}

.scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item {
    aspect-ratio: 4 / 5;
    max-width: 460px;
}

.scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item:nth-child(2) {
    margin-top: clamp(28px, 3.5vw, 56px);
}

/* Responsive adjustments */
@media (max-width: 820px) {
    .scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] {
        gap: 36px;
    }
    .scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-row.scott-layout-staggered-left,
    .scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-row.scott-layout-portrait-pair {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(2),
    .scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item:nth-child(2) {
        margin-top: 0;
    }
    .scott-image-stack[data-project-id="ENSO_JAPANESE_GARDEN"] .scott-gallery-item {
        aspect-ratio: 16 / 10 !important;
        max-width: 100% !important;
    }
}

/* --------------------------------------------------------------------------
   Bespoke Editorial Presentation for AQUILA — Reflection Pool & Water Feature
   -------------------------------------------------------------------------- */
.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6.5vw, 96px);
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    margin-bottom: clamp(64px, 8vw, 120px);
}

.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row {
    width: 100%;
    margin-inline: auto;
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
}

.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: var(--ci-warm-stone, #ECE8DF);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.08);
}

.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-stack-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-item:hover .scott-stack-img {
    transform: scale(1.02);
}

/* 1. Full-Width Panoramic Rows (Row 1 & Row 6) */
.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-full {
    display: grid;
    grid-template-columns: 1fr;
}

.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-full .scott-gallery-item {
    max-width: 1360px;
    aspect-ratio: 16 / 9;
}

/* 2. Staggered Left Row (Row 2 - Dual Reflection Pool Perspectives) */
.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-staggered-left {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: start;
}

.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(1) {
    aspect-ratio: 16 / 10;
}

.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(2) {
    aspect-ratio: 4 / 3;
    margin-top: clamp(32px, 4vw, 64px);
}

/* 3. Twin Portrait Pair Row (Row 3) */
.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-portrait-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 460px));
    justify-content: center;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}

.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item {
    aspect-ratio: 4 / 5;
    max-width: 460px;
}

.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item:nth-child(2) {
    margin-top: clamp(28px, 3.5vw, 56px);
}

/* 4. Split Pair Rows (Row 4 & Row 5) */
.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-split-pair {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
}

.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-split-pair .scott-gallery-item:nth-child(1) {
    aspect-ratio: 16 / 10;
}

.scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-split-pair .scott-gallery-item:nth-child(2) {
    aspect-ratio: 4 / 5;
}

/* Responsive adjustments */
@media (max-width: 820px) {
    .scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] {
        gap: 36px;
    }
    .scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-staggered-left,
    .scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-portrait-pair,
    .scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-split-pair {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(2),
    .scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item:nth-child(2) {
        margin-top: 0;
    }
    .scott-image-stack[data-project-id="AQUILA_ENTRANCE_POOL"] .scott-gallery-item {
        aspect-ratio: 16 / 10 !important;
        max-width: 100% !important;
    }
}

/* --------------------------------------------------------------------------
   Bespoke Editorial Presentation for AURA — WOW Executive Innovation Boardroom
   -------------------------------------------------------------------------- */
.scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6.5vw, 96px);
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    margin-bottom: clamp(64px, 8vw, 120px);
}

.scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-gallery-row {
    width: 100%;
    margin-inline: auto;
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
}

.scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: var(--ci-warm-stone, #ECE8DF);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.08);
}

.scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-stack-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-gallery-item:hover .scott-stack-img {
    transform: scale(1.02);
}

/* 1. Full-Width Panoramic Rows (Row 1 & Row 6) */
.scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-gallery-row.scott-layout-full {
    display: grid;
    grid-template-columns: 1fr;
}

.scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-gallery-row.scott-layout-full .scott-gallery-item {
    max-width: 1360px;
    aspect-ratio: 16 / 9;
}

/* 2. Portrait Pairs (Row 2 & Row 5) */
.scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-gallery-row.scott-layout-portrait-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 3.5vw, 48px);
}

.scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item {
    aspect-ratio: 9 / 16;
}

/* 3. Split Pairs (Row 3 & Row 4) */
.scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-gallery-row.scott-layout-split-pair {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}

.scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-gallery-row.scott-layout-split-pair .scott-gallery-item:nth-child(1) {
    aspect-ratio: 16 / 10;
}

.scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-gallery-row.scott-layout-split-pair .scott-gallery-item:nth-child(2) {
    aspect-ratio: 9 / 16;
}

/* Responsive adjustments */
@media (max-width: 820px) {
    .scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] {
        gap: 36px;
    }
    .scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-gallery-row.scott-layout-portrait-pair,
    .scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-gallery-row.scott-layout-split-pair {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .scott-image-stack[data-project-id="AURA_WOW_BOARDROOM"] .scott-gallery-item {
        aspect-ratio: 16 / 10 !important;
        max-width: 100% !important;
    }
}

/* --------------------------------------------------------------------------
   Bespoke Editorial Presentation for FACTORY CO-WORKING ATRIUM
   -------------------------------------------------------------------------- */
.scott-image-stack[data-project-id="FACTORY_COWORKING"] {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6.5vw, 96px);
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    margin-bottom: clamp(64px, 8vw, 120px);
}

.scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-row {
    width: 100%;
    margin-inline: auto;
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
}

.scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: var(--ci-warm-stone, #ECE8DF);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.08);
}

.scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-stack-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-item:hover .scott-stack-img {
    transform: scale(1.02);
}

/* 1. Full-Width Hero & Closing Rows */
.scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-row.scott-layout-full {
    display: grid;
    grid-template-columns: 1fr;
}

.scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-row.scott-layout-full .scott-gallery-item {
    max-width: 1360px;
    aspect-ratio: 16 / 9;
}

/* 2. Split Pairs */
.scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-row.scott-layout-split-pair {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
}

.scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-row.scott-layout-split-pair .scott-gallery-item:nth-child(1) {
    aspect-ratio: 16 / 10;
}

.scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-row.scott-layout-split-pair .scott-gallery-item:nth-child(2) {
    aspect-ratio: 4 / 3;
}

/* 3. Portrait Pairs */
.scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-row.scott-layout-portrait-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 480px));
    justify-content: center;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}

.scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item {
    aspect-ratio: 4 / 5;
    max-width: 480px;
}

.scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item:nth-child(2) {
    margin-top: clamp(24px, 3.5vw, 48px);
}

@media (max-width: 820px) {
    .scott-image-stack[data-project-id="FACTORY_COWORKING"] {
        gap: 36px;
    }
    .scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-row.scott-layout-portrait-pair,
    .scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-row.scott-layout-split-pair {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-row.scott-layout-portrait-pair .scott-gallery-item:nth-child(2) {
        margin-top: 0;
    }
    .scott-image-stack[data-project-id="FACTORY_COWORKING"] .scott-gallery-item {
        aspect-ratio: 16 / 10 !important;
        max-width: 100% !important;
    }
}

/* --------------------------------------------------------------------------
   Bespoke Editorial Presentation for KAIZEN — DOJO Skills & Safety Training Center
   (Sonos Ace ID Style: Alternating Wide, Asymmetric Staggered Pairs, and Details)
   -------------------------------------------------------------------------- */
.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6.5vw, 96px);
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    margin-bottom: clamp(64px, 8vw, 120px);
}

.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row {
    width: 100%;
    margin-inline: auto;
    gap: clamp(24px, 3.5vw, 52px);
    align-items: center;
}

.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: var(--ci-warm-stone, #ECE8DF);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.08);
}

.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-stack-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-item:hover .scott-stack-img {
    transform: scale(1.02);
}

/* 1. Full-Width Expansive Panoramic Rows (Row 1 & Row 5) */
.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row.scott-layout-full {
    display: grid;
    grid-template-columns: 1fr;
}

.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row.scott-layout-full .scott-gallery-item {
    max-width: 1360px;
    aspect-ratio: 16 / 9;
}

/* 2. Staggered Left Rows (Row 2 & Row 3: Left Portrait 4:5 + Right Landscape 16:10) */
.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row.scott-layout-staggered-left {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.38fr);
    align-items: center;
}

.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(1) {
    aspect-ratio: 4 / 5;
    max-width: 480px;
}

.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row.scott-layout-staggered-left .scott-gallery-item:nth-child(2) {
    aspect-ratio: 16 / 10;
}

/* 3. Staggered Right Row (Row 4: Left Landscape 16:10 + Right Portrait 4:5) */
.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row.scott-layout-staggered-right {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(0, 0.82fr);
    align-items: center;
}

.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row.scott-layout-staggered-right .scott-gallery-item:nth-child(1) {
    aspect-ratio: 16 / 10;
}

.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row.scott-layout-staggered-right .scott-gallery-item:nth-child(2) {
    aspect-ratio: 4 / 5;
    max-width: 480px;
}

/* 4. Split Pair Row (Row 6: Dual Landscape Closing Pair) */
.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row.scott-layout-split-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(20px, 3vw, 44px);
}

.scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row.scott-layout-split-pair .scott-gallery-item {
    aspect-ratio: 16 / 10;
}

/* Responsive adjustments */
@media (max-width: 820px) {
    .scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] {
        gap: 36px;
    }
    .scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row.scott-layout-staggered-left,
    .scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row.scott-layout-staggered-right,
    .scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-row.scott-layout-split-pair {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .scott-image-stack[data-project-id="KAIZEN_DOJO_TRAINING"] .scott-gallery-item {
        aspect-ratio: 16 / 10 !important;
        max-width: 100% !important;
    }
}









