/* CORE VARIABLE CONFIGURATION MAP */
:root {
    --primary-coral: #E05454;
    --secondary-teal: #0A7C6E;
    --base-white: #FFFFFF;
    --editorial-offwhite: #FBF9F6;
    --accent-black: #111111;
    --muted-gray: #666666;
    --border-light: rgba(17, 17, 17, 0.08);
    --max-width: 1400px;
    --transition-main: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

/* RESET & BASE TOPOLOGY LAYER */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #d6c8c8;
    color: var(--accent-black);
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

/* DESIGN SYSTEM TYPOGRAPHY RULES */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bona Nova', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.serif-italic {
    font-family: 'Bona Nova', serif;
    font-style: italic;
}

.serif-bold {
    font-family: 'Bona Nova', serif;
    font-weight: 700;
}

p {
    font-weight: 300;
    color: var(--muted-gray);
}

/* STRUCTURAL LAYOUT COMPONENT BASES */
.page-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}


.image-container {
    overflow: hidden;
    position: relative;
    background-color: #EFEFEF;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-main);
}

/* STICKY LINE LAYOUT NAVIGATION HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
background: rgba(255, 255, 255, 0.85);

    border-bottom: 1px solid transparent;
    background: transparent;
}
header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-light);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    cursor: pointer;
}

.logo-box img {
    height: 22px;
    display: block;
}

.logo-text-fallback {
    font-family: 'Bona Nova', serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}

.nav-center-links {
    display: flex;
    gap: 3.5rem;
}

.nav-center-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-black);
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.nav-center-links a:hover, .nav-center-links a.active-route {
    color: var(--primary-coral);
}

.nav-right-controls {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.control-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(17, 17, 17, 0.08);
    transition: var(--transition-fast);
}

.control-icon-btn:hover {
    border-color: var(--secondary-teal);
    transform: scale(1.05);
}

.control-icon-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--accent-black);
    stroke-width: 1.5;
}

.cart-count-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--primary-coral);
    color: var(--base-white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: softPulse 2s infinite;
}

/* RESPONSIVE HAMBURGER NAVIGATION SETUP */
.hamburger-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-trigger span {
    width: 24px;
    height: 1.5px;
    background-color: var(--accent-black);
    transition: var(--transition-main);
}

.hamburger-trigger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger-trigger.active span:nth-child(2) { opacity: 0; }
.hamburger-trigger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-navigation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--base-white);
    z-index: 1050;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.mobile-navigation-overlay a {
    font-family: 'Bona Nova', serif;
    font-size: 2.2rem;
    color: var(--accent-black);
    text-decoration: none;
    cursor: pointer;
}

/* SYSTEM CORE STRUCTURAL VIEWPORTS */
.app-view-viewport {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.app-view-viewport.active-viewport {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* PREMIUM GLASS ACTION CONTROLS */
.glass-action-btn {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--accent-black);
    padding: 1rem 2.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-main);
    display: inline-block;
    text-decoration: none;
}

.glass-action-btn:hover {
    background: var(--primary-coral);
    color: var(--base-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(224, 84, 84, 0.2);
}

/* ================= HOME VIEW LAYOUTS ================= */

/* HERO COMPONENT */
.hero-editorial-window {
    height: calc(100vh - 90px);
    min-height: 600px;
    position: relative;
    margin-top: -5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(0,0,0,0.15)), url('https://www.allbirds.com/cdn/shop/files/26Q1_DasherNZ_Site_Homepage_Hero_Desktop_16x9-3.jpg?v=1779316981&width=2560');
    animation: slowParallaxBg 30s linear infinite alternate;
    display: flex;
    align-items: flex-end;
    padding: 4rem;
}

@keyframes slowParallaxBg {
    0% { background-position: center 45%; }
    100% { background-position: center 55%; }
}

.hero-bottom-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: var(--base-white);
    z-index: 2;
}

.hero-left-quote {
    max-width: 320px;
    font-size: 1.4rem;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero-right-headline {
    text-align: right;
    max-width: 550px;
}

.hero-right-headline h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.hero-right-headline p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

/* TOUCH CATEGORY FLOW CIRCLES */
.category-touch-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(220,84,84,0.04) 0%, rgba(10,124,110,0.04) 100%);
    padding: 6rem 4rem;
}

.touch-flow-card {
    flex: 1;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: border-radius 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.touch-flow-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-main);
    filter: saturate(0.8);
}

.touch-flow-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 124, 110, 0.25);
    mix-blend-mode: multiply;
    transition: var(--transition-main);
}

.touch-flow-card h3 {
    position: relative;
    z-index: 3;
    color: var(--base-white);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    text-align: center;
    transition: var(--transition-main);
}

.touch-flow-card:hover {
    border-radius: 50%;
    transform: scale(1.03);
}

.touch-flow-card:hover img {
    transform: scale(1.15);
    filter: saturate(1.1);
}

.touch-flow-card:hover .touch-flow-overlay {
    background: rgba(224, 84, 84, 0.35);
}

.touch-flow-card:hover h3 {
    font-weight: 700;
    transform: scale(1.05);
}

/* EDITORIAL HORIZONTAL SNAP SNAPSHOTS */
.editorial-scroll-collection {
    padding: 6rem 0;
}

.scroll-section-header {
    margin-bottom: 3rem;
}

.scroll-section-header h2 {
    font-size: 3rem;
}

.snap-scroll-ribbon {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 2rem;
}

.snap-scroll-ribbon::-webkit-scrollbar {
    display: none;
}

.snap-card-unit {
    flex: 0 0 380px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: var(--transition-main);
}

.snap-card-unit .image-container {
    height: 480px;
    margin-bottom: 1.2rem;
}

.snap-card-unit:hover {
    transform: translateY(-8px) rotate(1deg);
}

.snap-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 0.5rem;
}

.snap-card-meta h4 {
    font-size: 1.4rem;
}

.editorial-tag-flag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-teal);
    font-weight: 700;
}

/* FEATURE STORY BLOCKS (3 CINEMATIC BOARDS) */
.feature-cinematic-matrix {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.cinematic-board {
    height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.cinematic-board::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.25);
    transition: var(--transition-main);
}

.cinematic-board:hover::before {
    background: rgba(17, 17, 17, 0.35);
}

.cinematic-board-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: var(--base-white);
    max-width: 650px;
    padding: 2rem;
}

.cinematic-board-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.cinematic-btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* EDITORIAL INSIGHT SECTION STRIPS */
.insight-strips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    border-top: 1px solid var(--border-light);
    padding-top: 4rem;
}

.insight-text-node {
    padding: 1rem 0;
}

.insight-text-node h3 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.insight-text-node p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* STYLE JOURNAL ALTERNATING MASONRY GRID */
.journal-asymmetrical-matrix {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
}

.journal-grid-cell {
    position: relative;
    cursor: pointer;
}

.journal-grid-cell .image-container {
    width: 100%;
    height: 100%;
}

.journal-grid-cell:nth-child(1) { grid-column: span 7; height: 550px; }
.journal-grid-cell:nth-child(2) { grid-column: span 5; height: 700px; transform: translateY(4rem); }
.journal-grid-cell:nth-child(3) { grid-column: span 4; height: 600px; }
.journal-grid-cell:nth-child(4) { grid-column: span 8; height: 480px; }

.cell-tag-floating {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--base-white);
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    z-index: 4;
}

.cell-caption-floating {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--base-white);
    z-index: 4;
    max-width: 80%;
}

.cell-caption-floating h4 {
    font-size: 1.8rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* GRADIENT SYSTEM BLEND SUBSCRIBE SECTION */
.subscribe-gradient-shell {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--secondary-teal) 100%);
    padding: 10rem 4rem;
    text-align: center;
    color: var(--base-white);
}

.subscribe-gradient-shell h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.subscribe-gradient-shell p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.editorial-input-group {
    display: flex;
    max-width: 550px;
    margin: 0 auto 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 0.5rem;
}

.editorial-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--base-white);
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    padding: 0.5rem;
}

.editorial-input-group input::placeholder {
    color: rgba(255,255,255,0.5);
}

.editorial-input-group button {
    background: transparent;
    border: none;
    color: var(--base-white);
    font-family: 'Bona Nova', serif;
    font-style: italic;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.editorial-input-group button:hover {
    color: var(--accent-black);
    transform: translateX(5px);
}

/* ================= NEW ARRIVALS VIEW ================= */
.editorial-drop-header {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 3rem;
    margin-bottom: 5rem;
}

.editorial-drop-header h1 {
    font-size: 4.5rem;
    line-height: 1.1;
}

.editorial-drop-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-top: 1rem;
}

.story-product-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
}

.product-story-card {
    display: flex;
    flex-direction: column;
}

.product-story-card .image-container {
    height: 500px;
    margin-bottom: 1.5rem;
}

.product-story-card .image-container:hover img {
    transform: scale(1.04);
}

.product-story-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.product-story-info h3 {
    font-size: 1.6rem;
}

.product-price-row {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.price-current {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-coral);
}

.price-original {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: var(--muted-gray);
}

.action-add-bag-link {
    font-family: 'Bona Nova', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--accent-black);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    margin-top: 0.6rem;
    width: fit-content;
    transition: var(--transition-fast);
}

.action-add-bag-link:hover {
    color: var(--secondary-teal);
    transform: translateX(4px);
}

/* ================= SHOP VIEW (NARRATIVE FILTER SYSTEM) ================= */
.shop-narrative-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
}

.narrative-filter-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.story-filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.story-filter-list li {
    font-family: 'Bona Nova', serif;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--muted-gray);
    transition: var(--transition-fast);
}

.story-filter-list li:hover, .story-filter-list li.active-filter {
    color: var(--secondary-teal);
    font-style: italic;
    padding-left: 0.5rem;
}

/* ================= MEN & WOMEN VIEW SPECIFICS ================= */
.gender-editorial-billboard {
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem;
    color: var(--base-white);
    margin-bottom: 6rem;
    background-size: cover;
    background-position: center;
}

.gender-editorial-billboard::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17,17,17,0.6), transparent);
}

.gender-billboard-inner {
    position: relative;
    z-index: 3;
    max-width: 550px;
}

.gender-billboard-inner h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

/* ================= SALE ARCHIVE LIMITED TIME NARRATIVES ================= */
.archive-event-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    background-color: var(--editorial-offwhite);
    padding: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.archive-event-card .image-container {
    height: 550px;
}

.archive-event-details h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.archive-countdown-ticker {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
}

.ticker-unit {
    text-align: center;
}

.ticker-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    color: var(--primary-coral);
}

.ticker-unit label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-gray);
}

/* ================= JOURNAL LOOKBOOK LOOKS ================= */
.journal-story-strip {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 10rem;
}

.journal-story-strip:nth-child(even) {
    grid-template-columns: 1.1fr 0.9fr;
}

.journal-story-strip:nth-child(even) .journal-story-image {
    order: 2;
}

.journal-story-image {
    height: 600px;
}

.journal-story-content span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary-teal);
    font-weight: 700;
}

.journal-story-content h2 {
    font-size: 3rem;
    margin: 1rem 0 1.5rem;
    line-height: 1.1;
}

.journal-story-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: justify;
}

/* ================= DYNAMIC SHOPPING CART SIDEBAR ENGINE ================= */
.cart-sidebar-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background-color: var(--base-white);
    box-shadow: -15px 0 40px rgba(0,0,0,0.05);
    z-index: 2000;
    transition: var(--transition-main);
    display: flex;
    flex-direction: column;
}

@media (max-width: 500px) {
    .cart-sidebar-drawer {
        width: 100vw;
        right: -100vw;
    }
}

.cart-sidebar-drawer.drawer-open {
    right: 0;
}

.cart-drawer-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h2 {
    font-size: 1.8rem;
}

.close-drawer-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.cart-items-scrollable-feed {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cart-item-row {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.cart-item-img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    background-color: #EEE;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-family: 'Bona Nova', serif;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.cart-item-price {
    font-size: 0.95rem;
    color: var(--primary-coral);
    font-weight: 500;
}

.cart-qty-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--border-light);
    padding: 0.2rem 0.6rem;
    width: fit-content;
    margin-top: 0.5rem;
}

.cart-qty-toggle button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cart-drawer-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-light);
    background-color: var(--editorial-offwhite);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cart-summary-line span:nth-child(2) {
    font-weight: 700;
    color: var(--accent-black);
}

.checkout-action-btn {
    width: 100%;
    background-color: var(--accent-black);
    color: var(--base-white);
    border: none;
    padding: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.checkout-action-btn:hover {
    background-color: var(--secondary-teal);
}

.cart-global-blur-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
    z-index: 1990;
    display: none;
}

.cart-global-blur-overlay.overlay-active {
    display: block;
}

/* ================= EDITORIAL END FOOTER LAYER ================= */
footer {
    background-color: var(--editorial-offwhite);
    border-top: 1px solid var(--border-light);
    padding: 8rem 0 3rem;
    margin-top: 12rem;
}

.footer-split-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border-light);
}

.footer-left-brand h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-left-brand p {
    max-width: 320px;
}

.footer-nav-col h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-gray);
    margin-bottom: 1.5rem;
}

.footer-nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-col ul li a {
    font-family: 'Bona Nova', serif;
    font-size: 1.15rem;
    color: var(--accent-black);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.footer-nav-col ul li a:hover {
    color: var(--primary-coral);
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.social-stroke-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-black);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-stroke-icon:hover {
    border-color: var(--primary-coral);
    color: var(--primary-coral);
    transform: scale(1.05);
}

.footer-copyright-strip {
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--muted-gray);
}

/* ================= MICRO ANIMATIONS KEYS ================= */
@keyframes softPulse {
    0% { box-shadow: 0 0 0 0 rgba(224, 84, 84, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(224, 84, 84, 0); }
    100% { box-shadow: 0 0 0 0 rgba(224, 84, 84, 0); }
}

/* ================= BREAKPOINT ADAPTATION SYSTEMS ================= */
@media (max-width: 1150px) {
    .story-product-matrix { grid-template-columns: repeat(2, 1fr); }
    .insight-strips-grid { grid-template-columns: 1fr; gap: 3rem; }
    .journal-asymmetrical-matrix { grid-template-columns: 1fr; }
    .journal-grid-cell:nth-child(1), .journal-grid-cell:nth-child(2), 
    .journal-grid-cell:nth-child(3), .journal-grid-cell:nth-child(4) {
        grid-column: span 1; height: 480px; transform: none;
    }
}

@media (max-width: 900px) {
    .nav-center-links { display: none; }
    .hamburger-trigger { display: flex; }
    .hero-bottom-container { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .hero-right-headline { text-align: left; }
    .hero-right-headline h1 { font-size: 3rem; }
    .category-touch-flow { flex-direction: column; padding: 4rem 2rem; }
    .touch-flow-card { width: 100%; max-width: 320px; }
    .archive-event-card { grid-template-columns: 1fr; }
    .archive-event-card .image-container { height: 350px; }
    .journal-story-strip { grid-template-columns: 1fr !important; gap: 3rem; }
    .journal-story-image { order: 1 !important; height: 400px; }
    .journal-story-content { order: 2 !important; }
    .footer-split-grid { grid-template-columns: 1fr; gap: 3rem; }
    .shop-narrative-shell { grid-template-columns: 1fr; }
}

/* ===== GLOBAL VIEWPORT ===== */
.app-view-viewport {
background: #f6f3ef;
color: #1b1b1b;
font-family: "Inter", system-ui, sans-serif;
padding-bottom: 6rem;
}

/* ===== PAGE WRAPPER ===== */
.page-wrapper {
max-width: 1050px;
margin: 0 auto;
padding: 0 24px;
}

/* ===== HERO HEADER ===== */
.editorial-drop-header {
text-align: center;
padding: 4rem 0 3rem;
}

.editorial-tag-flag {
display: inline-block;
font-size: 11px;
letter-spacing: 0.2em;
text-transform: uppercase;
border: 1px solid rgba(0,0,0,0.2);
padding: 6px 12px;
margin-bottom: 18px;
}

.editorial-drop-header h1 {
font-size: 3.2rem;
font-weight: 300;
letter-spacing: 0.05em;
margin-bottom: 16px;
}

.editorial-drop-header p {
max-width: 620px;
margin: 0 auto;
font-size: 14px;
opacity: 0.7;
line-height: 1.8;
}

/* ===== CONTENT BLOCKS ===== */
.editorial-context-block,
.featured-story-strip,
.insight-panel {
margin-top: 4rem;
padding: 2rem;
border-left: 2px solid rgba(0,0,0,0.1);
}

.editorial-context-block h2,
.featured-story-strip h2,
.insight-panel h2 {
font-size: 1.4rem;
font-weight: 400;
letter-spacing: 0.08em;
margin-bottom: 1rem;
}

.editorial-context-block p,
.insight-panel p {
font-size: 14px;
line-height: 1.9;
opacity: 0.75;
}

/* ===== FEATURE LIST ===== */
.featured-story-strip ul {
list-style: none;
padding: 0;
margin: 0;
}

.featured-story-strip li {
font-size: 13px;
padding: 10px 0;
border-bottom: 1px solid rgba(0,0,0,0.06);
letter-spacing: 0.03em;
}

/* ===== GRID ===== */
.story-product-matrix {
margin-top: 4rem;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}

/* card placeholder */
.story-product-matrix > div {
background: white;
border: 1px solid rgba(0,0,0,0.06);
min-height: 220px;
transition: all 0.4s ease;
}

.story-product-matrix > div:hover {
transform: translateY(-6px);
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ===== INSIGHT PANEL ===== */
.insight-panel {
background: #fff;
border: 1px solid rgba(0,0,0,0.06);
}

/* ===== CTA ===== */
.final-cta-block {
text-align: center;
margin-top: 6rem;
}

.final-cta-block h2 {
font-size: 2rem;
font-weight: 300;
letter-spacing: 0.05em;
}

.final-cta-block p {
opacity: 0.7;
max-width: 500px;
margin: 1rem auto;
font-size: 14px;
}

.final-cta-block button {
margin-top: 20px;
padding: 12px 26px;
border: 1px solid #1b1b1b;
background: transparent;
font-size: 11px;
letter-spacing: 0.15em;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
}

.final-cta-block button:hover {
background: #1b1b1b;
color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
.story-product-matrix {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 600px) {
.story-product-matrix {
    grid-template-columns: 1fr;
}

.editorial-drop-header h1 {
    font-size: 2.2rem;
}
}

