    /* --- DESIGN SYSTEM CONSTANTS --- */
    :root {
      --burgundy: #860A35;
      --bg-editorial: #F2EFE5;
      --text-black: #000000;
      --white-pure: #FFFFFF;
      --font-stack: "Source Sans 3", sans-serif;
      --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* --- ARCHITECTURAL RESET --- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
    }
    body {
      font-family: var(--font-stack);
      background-color: var(--bg-editorial);
      color: var(--text-black);
      overflow-x: hidden;
    }
    img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    button, input, textarea {
      font-family: var(--font-stack);
    }

    /* --- TYPOGRAPHIC UTILITIES --- */
    .editorial-h1 {
      font-weight: 900;
      font-size: clamp(3.5rem, 8vw, 8rem);
      line-height: 0.9;
      letter-spacing: -0.04em;
      text-transform: uppercase;
    }
    .editorial-h2 {
      font-weight: 800;
      font-size: clamp(2rem, 4.5vw, 4.5rem);
      line-height: 1.05;
      letter-spacing: -0.03em;
    }
    .editorial-h3 {
      font-weight: 700;
      font-size: clamp(1.4rem, 2.5vw, 2.5rem);
      line-height: 1.1;
    }
    .editorial-meta {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--burgundy);
      margin-bottom: 1.5rem;
      display: block;
    }
    .editorial-p {
      font-weight: 300;
      font-size: clamp(1.1rem, 1.4vw, 1.6rem);
      line-height: 1.7;
      letter-spacing: -0.01em;
    }
    .whitespace-block {
      padding: 160px 0;
    }

    /* --- BUTTONS & INTERACTIVE ELEMENTS --- */
    .editorial-btn {
      display: inline-flex;
      align-items: center;
      padding: 18px 40px;
      background-color: var(--text-black);
      color: var(--bg-editorial);
      border: 1px solid var(--text-black);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      text-decoration: none;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .editorial-btn:hover {
      background-color: transparent;
      color: var(--text-black);
      transform: translateY(-4px);
    }
    .editorial-btn.variant-burgundy {
      background-color: var(--burgundy);
      border-color: var(--burgundy);
      color: var(--bg-editorial);
    }
    .editorial-btn.variant-burgundy:hover {
      background-color: transparent;
      color: var(--burgundy);
    }

    /* --- UNIQUE HALF-WIDTH ARCHITECTURAL HEADER --- */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      pointer-events: none; /* Let background show through right transparent side */
    }
    .header-container {
      width: 60%;
      
      background-color: var(--bg-editorial);
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 0 60px 0 0; /* Zero left gap to secure logo to extreme top left */
      height: 100px;
      pointer-events: auto;
      box-shadow: 10px 0 30px rgba(0,0,0,0.02);
    }
    .logo-frame {
      height: 100px;
      background-color: var(--bg-editorial);
      display: flex;
      margin-left: -2.5rem;
      align-items: center;
      padding: 0 40px;
      cursor: pointer;
    }
    .logo-image {
      height: 200px;
      margin-right: 5rem;
      width: auto;
      object-fit: contain;
    }
    .logo-fallback {
      font-weight: 900;
      font-size: 1.3rem;
      letter-spacing: -0.05em;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 35px;
      margin-left: auto;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text-black);
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      position: relative;
      padding: 8px 0;
      cursor: pointer;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--burgundy);
      transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }
    .cart-pill-trigger {
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      background-color: var(--text-black);
      color: var(--bg-editorial);
      padding: 8px 16px;
      cursor: pointer;
      margin-left: 35px;
      transition: var(--transition-smooth);
    }
    .cart-pill-trigger:hover {
      background-color: var(--burgundy);
      color: var(--white-pure);
    }
    .cart-pill-count {
      background-color: var(--burgundy);
      color: var(--white-pure);
      font-size: 0.7rem;
      padding: 2px 6px;
      margin-left: 4px;
    }
    .hamburger-action {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      margin-left: auto;
    }
    .hamburger-action span {
      display: block;
      width: 26px;
      height: 2px;
      background-color: var(--text-black);
      transition: var(--transition-smooth);
    }

    /* --- MAIN SITE MULTI-VIEW ROUTING INTERFACE --- */
    .studio-view-pane {
      display: none;
    }
    .studio-view-pane.active-pane {
      display: block;
    }

    /* ==================== HOMEPAGE SECTIONS ==================== */
    /* Section 01: Hero Layout with Overlapping Dynamic Cards */
    .hero-magazine-showcase {
      height: 100vh;
      width: 100%;
      background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('https://i.pinimg.com/736x/6a/61/8e/6a618e96b22a0e7877d3e94efb9e06f8.jpg') no-repeat center center;
      background-size: cover;
      position: relative;
      overflow: hidden;
    }
    .hero-overlapping-deck {
      position: absolute;
      bottom: -60px;
      right: 5%;
      width: 540px;
      height: 720px;
      z-index: 10;
    }
    .hero-card-back {
      position: absolute;
      top: 0;
      left: 0;
      width: 90%;
      height: 90%;
      background-color: var(--burgundy);
      transform: translate(-40px, -40px);
    }
    .hero-card-front {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 90%;
      height: 90%;
      background-color: var(--bg-editorial);
      padding: 60px 45px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: -30px 30px 60px rgba(0,0,0,0.08);
    }

    /* Section 02: Split Philosophy Reading */
    .split-reading-matrix {
      background-color: var(--bg-editorial);
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 120px;
      padding: 160px 10% 100px;
      align-items: start;
    }
    .divider-burgundy-line {
      border: none;
      height: 1px;
      background-color: var(--burgundy);
      margin-top: 60px;
      width: 100%;
    }

    /* Section 03: Architectural Asymmetric Gallery */
    .asymmetric-gallery-strip {
      background-color: var(--white-pure);
      padding: 140px 5%;
    }
    .gallery-composition-grid {
      display: flex;
      align-items: flex-start;
      gap: 40px;
      margin-top: 80px;
    }
    .gallery-node-item {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .gallery-node-item img {
      width: 100%;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .gallery-node-item:hover img {
      transform: scale(1.03);
    }
    .gallery-node-item.height-alpha img { height: 650px; }
    .gallery-node-item.height-beta img { height: 480px; margin-top: 80px; }
    .gallery-node-item.height-gamma img { height: 580px; margin-top: 160px; }
    .gallery-node-details {
      margin-top: 25px;
    }
    .gallery-node-title {
      font-weight: 700;
      font-size: 1.1rem;
      text-transform: uppercase;
      margin-bottom: 5px;
    }
    .gallery-node-desc {
      font-weight: 300;
      font-size: 0.95rem;
      opacity: 0.7;
    }

    /* Section 04: Luxury Manifesto Block */
    .manifesto-darkroom-block {
      background-color: var(--burgundy);
      color: var(--bg-editorial);
      padding: 160px 8%;
    }
    .manifesto-statement-lockup {
      text-align: center;
      max-width: 1100px;
      margin: 0 auto 100px;
    }
    .manifesto-columns-trio {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 60px;
      border-top: 1px solid rgba(242, 239, 229, 0.15);
      padding-top: 60px;
    }
    .manifesto-column h4 {
      font-weight: 700;
      font-size: 1.3rem;
      text-transform: uppercase;
      margin-bottom: 20px;
      letter-spacing: 0.05em;
    }
    .manifesto-column p {
      font-weight: 300;
      font-size: 1.05rem;
      line-height: 1.7;
      opacity: 0.8;
    }

    /* Section 05: Asymmetrical Layered Showcase */
    .asymmetrical-showcase-zone {
      background-color: var(--bg-editorial);
      padding: 160px 5%;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 60px;
      align-items: center;
    }
    .showcase-monolith-image-wrapper {
      position: relative;
    }
    .showcase-monolith-image-wrapper img {
      height: 850px;
      width: 100%;
    }
    .showcase-cards-stack {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-left: -100px;
      position: relative;
      z-index: 5;
    }
    .showcase-overlapping-card-node {
      background-color: var(--white-pure);
      padding: 60px 50px;
      box-shadow: 0 40px 80px rgba(0,0,0,0.04);
    }

    /* Section 06: Fullscreen Living Quote Chapter */
    .fullscreen-quote-chapter-banner {
      height: 85vh;
      background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)), url('https://i.pinimg.com/736x/59/a1/06/59a1063a722226280bddf25063c95880.jpg') no-repeat center center;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }
    .glassmorphism-quote-plate {
      background: rgba(242, 239, 229, 0.75);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      padding: 80px 100px;
      max-width: 1000px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.4);
    }

    /* Section 07: Featured Collections Grid Matrix */
    .featured-collections-zone {
      background-color: var(--white-pure);
      padding: 160px 8%;
    }
    .collection-alternating-row {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 120px;
      align-items: center;
      margin-bottom: 160px;
    }
    .collection-alternating-row:last-child {
      margin-bottom: 0;
    }
    .collection-alternating-row.invert-layout {
      grid-template-columns: 1fr 1.2fr;
    }
    .collection-alternating-row.invert-layout .collection-image-hull {
      grid-column: 2;
    }
    .collection-alternating-row.invert-layout .collection-text-hull {
      grid-column: 1;
      grid-row: 1;
    }
    .collection-image-hull img {
      height: 640px;
      width: 100%;
    }

    /* Section 08: Editorial Journal Press Layout */
    .editorial-journal-zone {
      background-color: var(--bg-editorial);
      padding: 160px 5%;
    }
    .journal-publication-architecture {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 90px;
      margin-top: 60px;
    }
    .journal-featured-column {
      border-right: 1px solid rgba(0,0,0,0.1);
      padding-right: 90px;
    }
    .journal-featured-column img {
      height: 480px;
      width: 100%;
      margin-bottom: 30px;
    }
    .journal-sidebar-stack {
      display: flex;
      flex-direction: column;
      gap: 60px;
    }
    .journal-sidebar-node {
      border-bottom: 1px solid rgba(0,0,0,0.08);
      padding-bottom: 40px;
    }
    .journal-sidebar-node:last-child {
      border-bottom: none;
    }

    /* Section 09: Client Inspirations Slider */
    .client-inspirations-zone {
      background-color: var(--burgundy);
      color: var(--bg-editorial);
      padding: 140px 0;
    }
    .slider-overflow-track {
      overflow-x: auto;
      display: flex;
      gap: 40px;
      padding: 60px 5% 20px;
      scroll-snap-type: x mandatory;
    }
    .slider-overflow-track::-webkit-scrollbar {
      height: 4px;
    }
    .slider-overflow-track::-webkit-scrollbar-thumb {
      background-color: rgba(242, 239, 229, 0.3);
    }
    .slider-project-card {
      scroll-snap-align: start;
      flex: 0 0 520px;
    }
    .slider-project-card img {
      height: 380px;
      width: 100%;
      margin-bottom: 20px;
    }

    /* Section 10: Membership Studio Journal Form (Dual Action System) */
    .membership-journal-zone {
      background-color: var(--bg-editorial);
      padding: 160px 40px;
      text-align: center;
    }
    .membership-form-wrapper {
      max-width: 650px;
      margin: 50px auto 0;
    }
    .membership-text-input {
      width: 100%;
      padding: 24px;
      background: transparent;
      border: none;
      border-bottom: 2px solid var(--text-black);
      font-size: 1.2rem;
      outline: none;
      text-align: center;
      margin-bottom: 40px;
      font-weight: 300;
      transition: var(--transition-smooth);
    }
    .membership-text-input:focus {
      border-bottom-color: var(--burgundy);
    }
    .membership-actions-box {
      display: flex;
      justify-content: center;
      gap: 20px;
    }
    .membership-feedback-log {
      margin-top: 30px;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
    }

    /* Section 11: Architectural Contact Split Layout */
    .architectural-contact-zone {
      background-color: var(--white-pure);
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .contact-monograph-image {
      height: 100%;
      min-height: 700px;
      width: 100%;
    }
    .contact-studio-details-container {
      padding: 120px 12%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .studio-directory-table {
      margin: 40px 0 50px;
      border-top: 1px solid rgba(0,0,0,0.1);
      padding-top: 40px;
    }
    .directory-row {
      display: flex;
      justify-content: space-between;
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .directory-label {
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      opacity: 0.5;
    }
    .directory-value {
      font-weight: 400;
      font-size: 1.05rem;
    }

    /* ==================== SHOP ALL COMPOSITION PAGE ==================== */
    .shop-hero-asymmetric-canvas {
      padding: 220px 5% 100px;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: center;
    }
    .layered-product-montage {
      position: relative;
      height: 500px;
    }
    .montage-image-back {
      position: absolute;
      top: 0;
      left: 0;
      width: 70%;
      height: 80%;
    }
    .montage-image-front {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 65%;
      height: 75%;
      box-shadow: -20px -20px 50px rgba(0,0,0,0.1);
    }
    .editorial-catalog-matrix {
      padding: 80px 5% 160px;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 40px;
    }
    .catalog-product-card {
      background-color: var(--white-pure);
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .catalog-product-card img {
      width: 100%;
      margin-bottom: 30px;
      transition: var(--transition-smooth);
    }
    .catalog-product-card:hover img {
      transform: translateY(-8px);
    }
    .product-meta-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 25px;
    }
    .product-cost {
      font-weight: 700;
      font-size: 1.3rem;
    }
    /* Non-traditional custom asymmetrical sizing rules */
    .size-tall  { grid-column: span 4; min-height: 620px; }
    .size-wide  { grid-column: span 8; min-height: 520px; }
    .size-plain { grid-column: span 6; min-height: 560px; }

    /* ==================== ABOUT ARCHITECTURAL STORY PAGE ==================== */
    .about-hero-portrait-section {
      padding: 220px 5% 100px;
    }
    .about-portrait-frame img {
      height: 700px;
      width: 100%;
      margin-top: 60px;
    }
    .timeline-journey-track {
      max-width: 1000px;
      margin: 100px auto;
      border-left: 2px solid var(--burgundy);
      padding-left: 40px;
    }
    .timeline-node {
      margin-bottom: 60px;
      position: relative;
    }
    .timeline-node::before {
      content: '';
      position: absolute;
      left: -49px;
      top: 5px;
      width: 16px;
      height: 16px;
      background-color: var(--burgundy);
      border-radius: 50%;
    }
    .timeline-year {
      font-weight: 900;
      font-size: 2rem;
      color: var(--burgundy);
      margin-bottom: 10px;
    }

    /* ==================== FAQ MONOGRAPH ACCORDION PAGE ==================== */
    .faq-canvas-wrapper {
      max-width: 1100px;
      margin: 0 auto;
      padding: 220px 40px 160px;
    }
    .faq-accordion-block {
      margin-top: 60px;
    }
    .faq-chapter-row {
      border-bottom: 1px solid rgba(0,0,0,0.12);
      padding: 40px 0;
      cursor: pointer;
    }
    .faq-chapter-trigger-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .faq-chapter-icon {
      font-size: 1.5rem;
      font-weight: 300;
      transition: var(--transition-smooth);
    }
    .faq-chapter-expanded-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .faq-chapter-row.node-active .faq-chapter-expanded-content {
      max-height: 350px;
    }
    .faq-chapter-row.node-active .faq-chapter-icon {
      transform: rotate(45deg);
      color: var(--burgundy);
    }
    .faq-inner-text {
      padding-top: 30px;
      max-width: 850px;
    }

    /* ==================== CONTACT MINIMAL TERMINAL PAGE ==================== */
    .contact-page-canvas {
      padding: 220px 5% 160px;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 100px;
      align-items: start;
    }
    .oversized-contact-form {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-top: 60px;
    }
    .form-input-field {
      width: 100%;
      padding: 20px 0;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(0,0,0,0.2);
      font-size: 1.1rem;
      outline: none;
      transition: var(--transition-smooth);
    }
    .form-input-field:focus {
      border-bottom-color: var(--burgundy);
    }
    textarea.form-input-field {
      resize: none;
    }

    /* ==================== SEPARATE LEGAL INFRASTRUCTURE PANELS ==================== */
    .legal-content-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 220px 40px 160px;
    }
    .legal-text-spine {
      margin-top: 50px;
    }
    .legal-text-spine p {
      margin-bottom: 30px;
    }

    /* ==================== COMPREHENSIVE INTERACTIVE CART DRAWER ==================== */
    .cart-curation-overlay-panel {
      position: fixed;
      top: 0;
      right: -100%;
      width: 550px;
      height: 100vh;
      background-color: var(--bg-editorial);
      box-shadow: -30px 0 90px rgba(0,0,0,0.15);
      z-index: 2000;
      transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      padding: 60px 50px;
      display: flex;
      flex-direction: column;
    }
    .cart-curation-overlay-panel.drawer-active {
      right: 0;
    }
    .cart-header-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(0,0,0,0.1);
      padding-bottom: 30px;
    }
    .cart-close-btn {
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      line-height: 1;
    }
    .cart-items-scroll-deck {
      flex: 1;
      overflow-y: auto;
      margin-top: 30px;
    }
    .cart-item-functional-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .cart-remove-action {
      background: none;
      border: none;
      color: var(--burgundy);
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.05em;
      cursor: pointer;
    }
    .cart-summary-checkout-block {
      border-top: 1px solid var(--text-black);
      padding-top: 40px;
      margin-top: 20px;
    }
    .cart-total-counter-line {
      display: flex;
      justify-content: space-between;
      font-weight: 800;
      font-size: 1.4rem;
      margin-bottom: 30px;
    }
    .toast-alert-notification {
      position: fixed;
      bottom: 40px;
      right: 40px;
      background-color: var(--burgundy);
      color: var(--white-pure);
      padding: 20px 40px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.8rem;
      z-index: 3000;
      transform: translateY(150%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .toast-alert-notification.toast-visible {
      transform: translateY(0);
    }

    /* ==================== MUSEUM-QUALITY SYSTEM FOOTER ==================== */
    footer {
      background-color: var(--text-black);
      color: var(--bg-editorial);
      padding: 120px 8% 60px;
    }
    .footer-identity-crown {
      display: flex;
      justify-content: center;
      padding-bottom: 80px;
      border-bottom: 1px solid rgba(242, 239, 229, 0.1);
    }
    .footer-logo-fallback {
      font-weight: 900;
      font-size: 2.5rem;
      letter-spacing: -0.04em;
    }
    .footer-columns-quad-matrix {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 50px;
      padding: 80px 0;
    }
    .footer-column-stack h5 {
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--burgundy);
      margin-bottom: 30px;
    }
    .footer-column-stack ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .footer-column-stack ul li a {
      color: var(--bg-editorial);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 300;
      opacity: 0.7;
      transition: var(--transition-smooth);
      cursor: pointer;
    }
    .footer-column-stack ul li a:hover {
      opacity: 1;
      padding-left: 5px;
    }
    .footer-terminal-base-deck {
      border-top: 1px solid var(--burgundy);
      padding-top: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-legal-links-cluster {
      display: flex;
      gap: 30px;
    }
    .footer-legal-links-cluster a {
      color: var(--bg-editorial);
      text-decoration: none;
      font-size: 0.85rem;
      opacity: 0.5;
      cursor: pointer;
    }
    .footer-legal-links-cluster a:hover {
      opacity: 1;
    }
    .footer-copyright-mark {
      font-size: 0.85rem;
      opacity: 0.5;
    }

    /* ==================== SYSTEM RESPONSIVE MATRIX ==================== */
    @media (max-width: 1400px) {
      .header-container { width: 80%; }
      .asymmetrical-showcase-zone { grid-template-columns: 1fr; }
      .showcase-cards-stack { margin-left: 0; margin-top: -80px; }
      .showcase-monolith-image-wrapper img { height: 600px; }
    }

    @media (max-width: 1100px) {
      .header-container { width: 100%; padding-right: 40px; }
      .split-reading-matrix { grid-template-columns: 1fr; gap: 40px; }
      .gallery-composition-grid { flex-direction: column; gap: 60px; }
      .gallery-node-item img { height: 500px !important; margin-top: 0 !important; }
      .manifesto-columns-trio { grid-template-columns: 1fr; gap: 40px; }
      .collection-alternating-row, .collection-alternating-row.invert-layout { grid-template-columns: 1fr; gap: 40px; }
      .collection-alternating-row.invert-layout .collection-image-hull { grid-column: 1; }
      .collection-alternating-row.invert-layout .collection-text-hull { grid-column: 1; }
      .collection-image-hull img { height: 450px; }
      .journal-publication-architecture { grid-template-columns: 1fr; }
      .journal-featured-column { border-right: none; padding-right: 0; }
      .architectural-contact-zone { grid-template-columns: 1fr; }
      .contact-monograph-image { min-height: 450px; }
      .shop-hero-asymmetric-canvas { grid-template-columns: 1fr; }
      .editorial-catalog-matrix .catalog-product-card { grid-column: span 12 !important; min-height: auto !important; }
      .contact-page-canvas { grid-template-columns: 1fr; gap: 60px; }
      .footer-columns-quad-matrix { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .hamburger-action { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: var(--bg-editorial);
        flex-direction: column;
        padding: 50px 40px;
        gap: 30px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        margin-left: 0;
        align-items: flex-start;
      }
      .nav-links.mobile-menu-open {
        display: flex;
      }
      .cart-pill-trigger { margin-left: auto; }
      .hero-overlapping-deck { width: 100%; right: 0; bottom: 0; height: 550px; }
      .hero-card-back { display: none; }
      .hero-card-front { width: 100%; height: 100%; padding: 40px 25px; }
      .cart-curation-overlay-panel { width: 100%; right: -100%; padding: 40px 25px; }
      .footer-columns-quad-matrix { grid-template-columns: 1fr; }
      .footer-terminal-base-deck { flex-direction: column; gap: 20px; text-align: center; }
    }
