  /* =========================================================================
       1. CUSTOM VARIABLES & FOUNDATION TOKENS
       ========================================================================= */
    :root {
      --deep-accent: #C13383;
      --natural-sage: #869B7E;
      --pure-white: #FFFFFF;
      --rich-black: #000000;
      --font-head: 'Lora', serif;
      --font-body: 'Roboto', sans-serif;
      --ease-cinematic: cubic-bezier(0.25, 1, 0.3, 1);
      --transition-long: all 1s cubic-bezier(0.25, 1, 0.3, 1);
      --transition-medium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-body);
      color: var(--rich-black);
      background-color: var(--pure-white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: var(--transition-long);
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition-medium);
    }

    button, input, textarea {
      font-family: inherit;
      outline: none;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-head);
      font-weight: 400;
    }

    /* Cinematic Scroll Motion Utility Styles */
    .scroll-reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 1.2s var(--ease-cinematic), transform 1.2s var(--ease-cinematic);
    }

    .scroll-reveal.reveal-active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Core Multi-page Display Management Rules */
    .editorial-view-module {
        margin-top: 7rem;
      display: none;
    }
    
    .editorial-view-module.module-active {
      display: block;
      animation: viewportFadeIn 0.9s var(--ease-cinematic) forwards;
    }

    @keyframes viewportFadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Reusable Framework Modules */
    .page-editorial-wrapper {
      padding-top: 140px;
      min-height: 100vh;
    }

    .section-spacing-premium {
      padding: 160px 0;
    }

    .editorial-container-grid {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 60px;
    }

    @media (max-width: 768px) {
      .editorial-container-grid { padding: 0 25px; }
      .section-spacing-premium { padding: 90px 0; }
    }

    .magazine-headline-group {
      margin-bottom: 80px;
      max-width: 800px;
    }

    .magazine-headline-group .editorial-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: var(--deep-accent);
      font-weight: 500;
      display: block;
      margin-bottom: 20px;
    }

    .magazine-headline-group h1 {
      font-size: 4.5rem;
      line-height: 1.1;
      margin-bottom: 25px;
    }

    .magazine-headline-group p {
      font-size: 1.25rem;
      color: #555;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .magazine-headline-group h1 { font-size: 2.8rem; }
    }

    /* =========================================================================
       2. GLOBAL HEADER NAVIGATION & HAMBURGER SYSTEM
       ========================================================================= */
    .editorial-global-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100px;
      z-index: 1000;
      padding: 40px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.6s ease, padding 0.6s ease, border-bottom 0.6s ease;
    }

    .editorial-global-header.header-scrolled {
      background-color: rgba(243, 92, 237, 0.98);
      padding: 20px 60px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .editorial-global-header.header-scrolled .logo-mark-txt {
      color: var(--rich-black);
    }

    .editorial-global-header.header-scrolled .hamburger-line {
      background-color: var(--rich-black);
    }

.logo-mark-txt {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1002;
    position: relative;
}

.logo-mark-txt img {
    display: block;
    margin-top: 3rem;
    height: 220px; /* adjust as needed */
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

/* Header scrolled state */
.editorial-global-header.header-scrolled .logo-mark-txt img {
    opacity: 1;
}
    /* Adjust components automatically on high contrast dark canvas blocks */
    .editorial-global-header.high-contrast-mode .logo-mark-txt { color: var(--pure-white); }
    .editorial-global-header.high-contrast-mode .hamburger-line { background-color: var(--pure-white); }

    .hamburger-trigger-btn {
      background: none;
      border: none;
      cursor: pointer;
      width: 36px;
      height: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      z-index: 1002;
    }

    .hamburger-line {
      width: 100%;
      height: 2px;
      background-color: var(--rich-black);
      transition: transform 0.4s var(--ease-cinematic), opacity 0.4s ease, background-color 0.4s ease;
    }

    /* Transform Hamburger Into Close Vector Icon */
    .hamburger-trigger-btn.btn-state-active .hamburger-line:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
      background-color: var(--deep-accent) !important;
    }
    .hamburger-trigger-btn.btn-state-active .hamburger-line:nth-child(2) {
      opacity: 0;
    }
    .hamburger-trigger-btn.btn-state-active .hamburger-line:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
      background-color: var(--deep-accent) !important;
    }

    /* Fullscreen Drawer Overlay */
    .magazine-navigation-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      z-index: 1001;
      background-color: var(--rich-black);
      display: flex;
      transition: right 0.8s cubic-bezier(0.77, 0, 0.175, 1);
      overflow: hidden;
    }

    .magazine-navigation-drawer.drawer-active {
      right: 0;
    }

    .drawer-visual-canvas {
      width: 50%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .drawer-visual-canvas::after {
      content: '';
      position: absolute;
      top:0; left:0; width:100%; height:100%;
      background-color: rgba(0,0,0,0.4);
    }

    .drawer-bg-img-layer {
      width: 100%;
      height: 100%;
      background-image: url('https://i.pinimg.com/736x/97/c3/da/97c3da481dc45ab2b480974bd5341af2.jpg');
      background-size: cover;
      background-position: center;
      transform: scale(1.15);
      transition: transform 1.4s var(--ease-cinematic);
    }

    .magazine-navigation-drawer.drawer-active .drawer-bg-img-layer {
      transform: scale(1);
    }

    .drawer-menu-links-container {
      width: 50%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-left: 12%;
      background-color: var(--rich-black);
    }

    .drawer-menu-links-container ul {
      list-style: none;
    }

    .drawer-menu-links-container ul li {
      margin-bottom: 35px;
      overflow: hidden;
    }

    .drawer-menu-links-container ul li a {
      font-family: var(--font-head);
      font-size: 3.8rem;
      font-weight: 400;
      color: var(--deep-accent);
      display: inline-block;
      transform: translateY(100%);
      position: relative;
      transition: transform 0.6s var(--ease-cinematic), color 0.3s ease;
    }

    .magazine-navigation-drawer.drawer-active .drawer-menu-links-container ul li a {
      transform: translateY(0);
    }

    /* Staggered text delays for layout loading dynamics */
    .drawer-menu-links-container ul li:nth-child(1) a { transition-delay: 0.1s; }
    .drawer-menu-links-container ul li:nth-child(2) a { transition-delay: 0.15s; }
    .drawer-menu-links-container ul li:nth-child(3) a { transition-delay: 0.2s; }
    .drawer-menu-links-container ul li:nth-child(4) a { transition-delay: 0.25s; }
    .drawer-menu-links-container ul li:nth-child(5) a { transition-delay: 0.3s; }

    .drawer-menu-links-container ul li a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--pure-white);
      transition: width 0.4s ease;
    }

    .drawer-menu-links-container ul li a:hover {
      color: var(--pure-white);
    }

    .drawer-menu-links-container ul li a:hover::after {
      width: 100%;
    }

    .magazine-navigation-drawer.drawer-active:hover .drawer-bg-img-layer {
      transform: scale(1.04);
    }

    @media (max-width: 992px) {
      .drawer-visual-canvas { display: none; }
      .drawer-menu-links-container { width: 100%; padding-left: 40px; }
      .drawer-menu-links-container ul li a { font-size: 2.6rem; }
    }

    /* =========================================================================
       3. HOME PAGE VISUAL COMPONENTS
       ========================================================================= */
    /* Hero Asymmetrical Mosaic Frame Architecture */
    .hero-mosaic-viewport {
      width: 100%;
      height: 100vh;
      display: flex;
      background-color: var(--rich-black);
      overflow: hidden;
    }

    .mosaic-split-left {
      width: 50%;
      height: 100%;
      position: relative;
    }

    .mosaic-split-right {
      width: 50%;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .mosaic-card-wrapper {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .mosaic-card-wrapper .image-canvas {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 3s cubic-bezier(0.1, 1, 0.1, 1);
    }

    .mosaic-card-wrapper:hover .image-canvas {
      transform: scale(1.08);
    }

    /* Editorial Layer Overlay Gradient for Title Protection */
    .mosaic-card-wrapper::after {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 100%);
      z-index: 1;
    }

    .mosaic-overlay-caption {
      position: absolute;
      bottom: 50px;
      left: 50px;
      right: 50px;
      z-index: 2;
    }

    .mosaic-overlay-caption h2 {
      font-family: var(--font-head);
      font-size: 2.5rem;
      color: var(--pure-white);
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .mosaic-overlay-caption .editorial-link-pointer {
      display: inline-block;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: rgba(255, 255, 255, 0.7);
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      padding-bottom: 4px;
      transition: var(--transition-medium);
    }

    .mosaic-card-wrapper:hover .editorial-link-pointer {
      color: var(--pure-white);
      border-bottom-color: var(--deep-accent);
      padding-left: 8px;
    }

    /* Asymmetrical Row Structuring Breakdowns */
    .mosaic-row-top {
      height: 50vh;
    }

    .mosaic-row-bottom {
      height: 50vh;
      display: flex;
    }

    .mosaic-split-subleft {
      width: 50%;
      height: 100%;
    }

    .mosaic-split-subright {
      width: 50%;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .mosaic-deep-top { height: 50%; }
    .mosaic-deep-bottom { height: 50%; }

    @media (max-width: 1024px) {
      .hero-mosaic-viewport { height: auto; flex-direction: column; }
      .mosaic-split-left { width: 100%; height: 60vh; }
      .mosaic-split-right { width: 100%; height: auto; }
      .mosaic-row-top { height: 45vh; }
      .mosaic-row-bottom { height: 90vh; flex-direction: column; }
      .mosaic-split-subleft { width: 100%; height: 45vh; }
      .mosaic-split-subright { width: 100%; height: 45vh; }
      .mosaic-overlay-caption { bottom: 30px; left: 30px; }
      .mosaic-overlay-caption h2 { font-size: 1.8rem; }
    }

.space-art-section {
    position: relative;
    background: #869B7E;
    padding: 80px;
    min-height: 220vh;
}

/* Sticky image */
.fixed-image-layer {
    position: sticky;
    top: 80px;

    height: calc(100vh - 160px);
    width: 100%;

    background-image: url("https://i.pinimg.com/736x/5d/ca/0e/5dca0e2f08c7a5e02fb52144a49d4577.jpg");
    background-size: cover;
    background-position: center center;

    overflow: hidden;
}

.fixed-image-layer::after {
    content: "";
    position: absolute;
    inset: 0;
}

/* Text */
.scrolling-content {
    position: absolute;
    top: 120px;
    left: 120px;

    width: 42%;
    max-width: 650px;

    color: #ffffff;
    z-index: 10;
}

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.scrolling-content h2 {
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 35px;
    font-weight: 400;
}

.scrolling-content p {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 30px;
    max-width: 550px;
}

/* Tablet */
@media (max-width: 1024px) {

    .space-art-section {
        padding: 40px;
        min-height: auto;
    }

    .fixed-image-layer {
        height: 80vh;
        top: 40px;
    }

    .scrolling-content {
        left: 60px;
        top: 80px;
        width: 60%;
    }

    .scrolling-content h2 {
        font-size: 3rem;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .space-art-section {
        padding: 20px;
    }

    .fixed-image-layer {
        position: relative;
        height: 70vh;
        top: auto;
    }

    .scrolling-content {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: none;
        padding: 40px 0 0;
    }

    .scrolling-content h2 {
        font-size: 2.2rem;
    }
}

    /* Section 3: Fixed Image Story Panel Layout */
    .fixed-panel-section {
      background-color: var(--pure-white);
    }

    .magazine-centered-box {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .fixed-story-layout-grid {
      display: flex;
      gap: 100px;
      align-items: flex-start;
    }

    .fixed-story-left-canvas {
      width: 45%;
      position: sticky;
      top: 160px;
      height: 75vh;
      overflow: hidden;
    }

    .fixed-story-right-narrative {
      width: 55%;
      padding-top: 4vh;
      color: var(--deep-accent);
    }

    .scrolling-editorial-card {
      margin-bottom: 140px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(193, 51, 131, 0.15);
    }

    .scrolling-editorial-card:last-child {
      margin-bottom: 0;
      border-bottom: none;
    }

    .scrolling-editorial-card h3 {
      font-size: 2.5rem;
      margin-bottom: 25px;
      line-height: 1.2;
    }

    .scrolling-editorial-card p {
      font-family: var(--font-body);
      font-size: 1.15rem;
      line-height: 1.8;
      color: #333;
    }

    @media (max-width: 992px) {
      .fixed-story-layout-grid { flex-direction: column; gap: 50px; }
      .fixed-story-left-canvas { width: 100%; position: relative; top: 0; height: 50vh; }
      .fixed-story-right-narrative { width: 100%; padding-top: 0; }
      .scrolling-editorial-card { margin-bottom: 60px; padding-bottom: 40px; }
      .scrolling-editorial-card h3 { font-size: 1.8rem; }
    }

    /* Section 4: Cinematic Banner Component */
    .cinematic-parallax-strip {
      height: 30vh;
      width: 100%;
      position: relative;
      background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('https://i.pinimg.com/736x/79/1d/82/791d822e1157a611679f0980a6581ff5.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 30px;
    }

    .cinematic-parallax-strip blockquote {
      font-family: var(--font-head);
      font-size: 2.2rem;
      color: var(--pure-white);
      text-align: center;
      font-style: italic;
      max-width: 1000px;
      line-height: 1.4;
    }

    @media (max-width: 768px) {
      .cinematic-parallax-strip blockquote { font-size: 1.4rem; }
      .cinematic-parallax-strip { background-attachment: scroll; } /* Mobile optimization */
    }

    /* Section 5: Curated Dark Collections Suite */
    .curated-collections-section {
      background-color: #C13383;
    }

    .dark-isolation-container-card {
      background-color: #080808;
      border: 1px solid #121212;
      padding: 100px 60px;
      margin: 0 40px;
    }

    .dark-card-head {
      text-align: center;
      margin-bottom: 90px;
    }

    .dark-card-head h2 {
      color: var(--pure-white);
      font-size: 3.8rem;
      margin-bottom: 15px;
    }

    .dark-card-head p {
      font-family: var(--font-head);
      font-style: italic;
      font-size: 1.25rem;
      color: #666;
    }

    .portrait-cards-flex-row {
      display: flex;
      gap: 40px;
    }

    .portrait-collection-item {
      width: 33.333%;
      cursor: pointer;
    }

    .portrait-image-viewport {
      width: 100%;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      margin-bottom: 25px;
    }

    .portrait-meta-block {
      transition: transform 0.4s var(--ease-cinematic);
    }

    .portrait-meta-block h3 {
      color: var(--pure-white);
      font-size: 1.6rem;
      margin-bottom: 12px;
    }

    .portrait-meta-block p {
      font-family: var(--font-body);
      color: #888;
      font-size: 1rem;
      line-height: 1.6;
    }

    .portrait-collection-item:hover .portrait-image-viewport img {
      transform: scale(1.06);
    }

    .portrait-collection-item:hover .portrait-meta-block {
      transform: translateY(-8px);
    }

    @media (max-width: 1024px) {
      .portrait-cards-flex-row { flex-direction: column; gap: 60px; }
      .portrait-collection-item { width: 100%; }
      .dark-isolation-container-card { padding: 60px 25px; margin: 0; }
      .dark-card-head h2 { font-size: 2.5rem; }
    }

    /* Section 6: Community Hub Dual Form Framework */
    .community-hub-section {
      background-color: var(--natural-sage);
    }

    .hub-split-layout {
      display: flex;
      gap: 120px;
    }

    .hub-left-narrative {
      width: 45%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hub-left-narrative .editorial-p {
      font-size: 1.35rem;
      line-height: 1.75;
      margin-bottom: 50px;
    }

    .hub-mini-square-image {
      width: 240px;
      height: 240px;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    }

    .hub-right-forms-panel {
      width: 55%;
      background-color: rgba(255, 255, 255, 0.15);
      padding: 60px;
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      gap: 70px;
    }

    .form-block-segment h4 {
      font-size: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 30px;
      font-weight: 500;
    }

    .editorial-subscription-form {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .input-wrapper-node {
      position: relative;
    }

    .editorial-minimal-input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--rich-black);
      padding: 14px 0;
      font-size: 1rem;
      color: var(--rich-black);
      transition: border-bottom-color 0.3s ease;
    }

    .editorial-minimal-input::placeholder {
      color: rgba(0,0,0,0.4);
    }

    .editorial-minimal-input:focus {
      border-bottom-color: var(--deep-accent);
    }

    .btn-editorial-submit {
      align-self: flex-start;
      background-color: var(--rich-black);
      color: var(--pure-white);
      border: none;
      padding: 16px 45px;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      cursor: pointer;
      font-weight: 500;
      transition: var(--transition-medium);
      margin-top: 10px;
    }

    .btn-editorial-submit:hover {
      background-color: var(--deep-accent);
    }

    .form-success-state {
      margin-top: 15px;
      font-family: var(--font-head);
      font-style: italic;
      color: var(--deep-accent);
      font-size: 1.05rem;
      display: none;
    }

    @media (max-width: 1024px) {
      .hub-split-layout { flex-direction: column; gap: 60px; }
      .hub-left-narrative, .hub-right-forms-panel { width: 100%; }
      .hub-right-forms-panel { padding: 40px 25px; gap: 50px; }
    }

    /* =========================================================================
       4. DYNAMIC SEPARATE SUBPAGE ARCHITECTURES
       ========================================================================= */
    /* Our Story Section View Configuration */
    .story-timeline-axis {
      margin-top: 100px;
    }

    .story-timeline-row {
      display: flex;
      gap: 80px;
      margin-bottom: 140px;
      align-items: center;
    }

    .story-timeline-row:nth-child(even) {
      flex-direction: row-reverse;
    }

    .timeline-image-frame {
      width: 50%;
    }

    .timeline-description-frame {
      width: 50%;
      padding: 0 40px;
    }

    .timeline-description-frame .epoch-tag {
      font-family: var(--font-head);
      font-size: 2.5rem;
      color: var(--deep-accent);
      margin-bottom: 15px;
      display: block;
    }

    .timeline-description-frame h3 {
      font-size: 2.2rem;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .timeline-description-frame p {
      color: #444;
      font-size: 1.1rem;
      line-height: 1.75;
    }

    .founder-blockquote-block {
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
      padding: 80px 0;
      text-align: center;
      margin: 120px 0;
    }

    .founder-blockquote-block blockquote {
      font-family: var(--font-head);
      font-size: 2.4rem;
      font-style: italic;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.4;
    }

    .founder-blockquote-block cite {
      display: block;
      margin-top: 25px;
      font-family: var(--font-body);
      font-style: normal;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--deep-accent);
    }

    .fullwidth-gallery-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .fullwidth-strip-item {
      width: 100%;
      height: 60vh;
      overflow: hidden;
    }

    @media (max-width: 992px) {
      .story-timeline-row, .story-timeline-row:nth-child(even) { flex-direction: column; gap: 40px; }
      .timeline-image-frame, .timeline-description-frame { width: 100%; padding: 0; }
      .founder-blockquote-block blockquote { font-size: 1.8rem; }
    }

    /* Our Wall Art Catalog View Framework */
    .catalog-collection-segment {
      margin-bottom: 160px;
    }

    .catalog-fixed-story-panel {
      display: flex;
      gap: 60px;
      align-items: center;
      margin-bottom: 50px;
      border-bottom: 1px solid #111;
      padding-bottom: 20px;
    }

    .catalog-fixed-story-panel h2 {
      font-size: 2.8rem;
      white-space: nowrap;
    }

    .catalog-fixed-story-panel p {
      color: #666;
      font-size: 1.1rem;
    }

    .catalog-showcase-matrix-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .catalog-artwork-item-card {
      cursor: pointer;
    }

    .catalog-artwork-item-card .art-img-box {
      width: 100%;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .catalog-artwork-item-card h4 {
      font-size: 1.4rem;
      margin-bottom: 6px;
    }

    .catalog-artwork-item-card p {
      color: #666;
      font-size: 0.95rem;
    }

    @media (max-width: 992px) {
      .catalog-fixed-story-panel { flex-direction: column; align-items: flex-start; gap: 15px; }
      .catalog-showcase-matrix-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    }
    @media (max-width: 600px) {
      .catalog-showcase-matrix-grid { grid-template-columns: 1fr; }
    }

    /* Events Exhibition Timeline Framework */
    .events-editorial-axis {
      max-width: 1100px;
      margin: 80px auto 0 auto;
    }

    .event-strip-row-node {
      display: flex;
      gap: 60px;
      background-color: #FBFBFB;
      margin-bottom: 60px;
      padding: 50px;
      border-left: 5px solid var(--rich-black);
    }

    .event-strip-row-node.upcoming-priority {
      border-left-color: var(--deep-accent);
      background-color: #FFFDFE;
    }

    .event-poster-viewport {
      width: 280px;
      aspect-ratio: 3 / 4;
      flex-shrink: 0;
      overflow: hidden;
    }

    .event-details-panel h3 {
      font-size: 2.2rem;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .event-details-panel .event-metadata {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--deep-accent);
      font-weight: 500;
      margin-bottom: 25px;
      display: block;
    }

    .event-details-panel p {
      color: #444;
      font-size: 1.1rem;
      line-height: 1.7;
    }

    @media (max-width: 768px) {
      .event-strip-row-node { flex-direction: column; gap: 30px; padding: 30px; }
      .event-poster-viewport { width: 100%; }
    }

    /* Gallery Mosaic Grid Architecture & Immersive Lightbox */
    .gallery-masonry-container {
      columns: 3 360px;
      column-gap: 40px;
      margin-top: 60px;
    }

    .gallery-masonry-brick-block {
      display: inline-block;
      width: 100%;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background-color: var(--rich-black);
    }

    .gallery-masonry-brick-block img {
      width: 100%;
      height: auto;
    }

    .gallery-hover-metadata-layer {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 40px;
      text-align: center;
      opacity: 0;
      transition: opacity 0.5s var(--ease-cinematic);
      z-index: 2;
    }

    .gallery-masonry-brick-block:hover .gallery-hover-metadata-layer {
      opacity: 1;
    }

    .gallery-masonry-brick-block:hover img {
      transform: scale(1.05);
    }

    .gallery-hover-metadata-layer h3 {
      color: var(--pure-white);
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .gallery-hover-metadata-layer p {
      color: #999;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Core Lightbox Overlay Modals */
    .system-lightbox-modal {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.97);
      z-index: 2000;
      display: none;
      justify-content: center;
      align-items: center;
      padding: 50px;
    }

    .system-lightbox-modal.lightbox-visible {
      display: flex;
    }

    .lightbox-render-image {
      max-width: 92%;
      max-height: 85vh;
      object-fit: contain;
      box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    }

    .lightbox-dismiss-button {
      position: absolute;
      top: 40px; right: 50px;
      background: none; border: none;
      color: var(--pure-white);
      font-size: 3rem;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .lightbox-dismiss-button:hover {
      color: var(--deep-accent);
    }

    /* Contact Subpage Split Framework Design */
    .contact-split-interface-row {
      display: flex;
      gap: 100px;
      margin-top: 60px;
    }

    .contact-left-aesthetic-column {
      width: 45%;
      height: 75vh;
      overflow: hidden;
    }

    .contact-right-formulation-column {
      width: 55%;
    }

    .studio-coordinates-matrix {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      margin-top: 80px;
      padding-top: 50px;
      border-top: 1px solid #EAEAEA;
    }

    .studio-coordinate-card h4 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .studio-coordinate-card p {
      color: #555;
      font-size: 1rem;
      line-height: 1.6;
    }

    .editorial-map-placeholder-box {
      width: 100%;
      height: 400px;
      background-color: #F7F7F7;
      margin-top: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px solid #EEEEEE;
    }

    .editorial-map-placeholder-box span {
      font-family: var(--font-head);
      color: #999;
      font-style: italic;
    }

    @media (max-width: 1024px) {
      .contact-split-interface-row { flex-direction: column; gap: 50px; }
      .contact-left-aesthetic-column, .contact-right-formulation-column { width: 100%; }
      .contact-left-aesthetic-column { height: 45vh; }
    }

    /* Legal Content Framework Custom Sub-Modules */
    .legal-document-box {
      max-width: 850px;
      margin: 0 auto;
      padding-bottom: 120px;
    }

    .legal-document-box p {
      font-size: 1.15rem;
      line-height: 1.8;
      color: #222;
      margin-bottom: 30px;
    }

    .legal-document-box h3 {
      font-size: 1.8rem;
      margin: 45px 0 20px 0;
    }

    /* =========================================================================
       5. CORE BRAND FOOTER & KINETIC TERMINAL CLOSING SECTIONS
       ========================================================================= */
    .magazine-global-footer {
      background-color: var(--rich-black);
      color: var(--pure-white);
      padding: 140px 0 60px 0;
    }

    .footer-columns-layout-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 60px;
      margin-bottom: 100px;
    }

    .footer-structural-node h4 {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #555;
      margin-bottom: 35px;
      font-weight: 700;
    }

    .footer-structural-node ul {
      list-style: none;
    }

    .footer-structural-node ul li {
      margin-bottom: 18px;
    }

    .footer-structural-node ul li a {
      color: #999;
      font-size: 0.95rem;
    }

    .footer-structural-node ul li a:hover {
      color: var(--pure-white);
      padding-left: 6px;
    }

    .footer-terminal-compliance-line {
      border-top: 1px solid #151515;
      padding-top: 45px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: #555;
    }

    .compliance-anchors-set a {
      margin-left: 35px;
      color: #555;
    }

    .compliance-anchors-set a:hover {
      color: var(--pure-white);
    }

    @media (max-width: 992px) {
      .footer-columns-layout-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    }
    @media (max-width: 576px) {
      .footer-columns-layout-grid { grid-template-columns: 1fr; }
      .footer-terminal-compliance-line { flex-direction: column; gap: 25px; text-align: center; }
      .compliance-anchors-set a { margin: 0 15px; }
    }

    /* Fullscreen Continuous Infinite Ken Burns Structural Section Element */
    .terminal-cinematic-stage-canvas {
      height: 65vh;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .ken-burns-image-layer {
      width: 100%;
      height: 100%;
      background-image:url('https://i.pinimg.com/736x/05/90/52/059052d502cec88b05de336827a10c39.jpg');
      background-size: cover;
      background-position: center;
    }

    

    .terminal-cinematic-stage-canvas .quote-container-center-overlay {
      position: absolute;
      top: 70%; left: 50%;
      transform: translate(-50%, -50%);
      width: 85%;
      max-width: 1100px;
      text-align: center;
      z-index: 2;
    }

.terminal-cinematic-stage-canvas blockquote {
    font-family: var(--font-head);
    color: #222;
    font-size: 3.5rem;
    line-height: 1.3;
}

.quote-logo {
    display: block;
    margin-top: 35px;
}

.quote-logo img {
    height: 230px;
    width: auto;
    object-fit: contain;
    display: inline-block;

}

/* Larger luxury look */
@media (min-width: 1200px) {
    .quote-logo img {
        height: 380px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .terminal-cinematic-stage-canvas blockquote {
        font-size: 1.8rem;
    }

    .quote-logo img {
        height: 45px;
    }
}