    :root {
    --bg-pink: #FFEDF3;
    --gold: #FFDF88;
    --orange: #FFA55D;
    --dark-brown: #1F150C;
    --white: #FFFFFF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Spectral', serif;
    background-color: var(--bg-pink);
    color: var(--dark-brown);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

/* --- TYPOGRAPHY PRESETS --- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

p {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.65;
    opacity: 0.9;
}

.quote-italic {
    font-family: 'Spectral', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.4;
}

.drop-cap::first-letter {
    font-size: 5rem;
    font-weight: 700;
    float: left;
    margin-right: 15px;
    line-height: 0.85;
    color: var(--dark-brown);
}

/* --- GLOBAL HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--bg-pink);
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding: 0 50px;
    z-index: 1000;
    border-bottom: 1px solid rgba(31, 21, 12, 0.06);
}

.header-left {
    display: flex;
    align-items: center;
    margin-top: -5rem;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
    z-index: 1010;
}

.hamburger-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--dark-brown);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.menu-open-active .hamburger-btn span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-open-active .hamburger-btn span:nth-child(2) {
    opacity: 0;
}
.menu-open-active .hamburger-btn span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-center img {
    height: 232px;
    margin-top: -3rem;
    width: auto;
    object-fit: contain;
    cursor: pointer;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    margin-top: -4rem;
}

.book-now-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--dark-brown);
    color: var(--bg-pink);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
}

.book-now-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* --- SLIDE-FROM-RIGHT NAVIGATION OVERLAY --- */
.fullscreen-navigation-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background-color: var(--bg-pink);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 140px 60px 60px 60px;
    transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(31,21,12,0.05);
    border-left: 1px solid rgba(31, 21, 12, 0.08);
}

.fullscreen-navigation-drawer.drawer-visible {
    right: 0;
}

.drawer-links-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.drawer-links-stack a {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
}

.drawer-links-stack a:hover {
    transform: translateX(10px);
    opacity: 0.6;
}

/* --- MAGAZINE VIEWS ROUTER SHEET --- */
.magazine-view-sheet {
    display: none;
    margin-top: 100px;
    width: 100%;
    animation: sheetFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.magazine-view-sheet.sheet-active {
    display: block;
}

@keyframes sheetFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- ZOOM MECHANICS --- */
.zoom-target {
    transition: transform 1.8s cubic-bezier(0.1, 1, 0.1, 1), 
                box-shadow 1.8s ease,
                filter 1.8s ease;
    will-change: transform, box-shadow, filter;
    transform-origin: center center;
    backface-visibility: hidden;
}

body.scrolling-down-active .zoom-target {
    transform: scale(1.08);
}

/* Split Image Zoom */
.zoom-split {
    transition: transform 2s cubic-bezier(0.1, 1, 0.1, 1);
    will-change: transform;
    transform-origin: center center;
}

body.scrolling-down-active .zoom-split {
    transform: scale(1.12);
}

/* Card Zoom */
.zoom-card {
    transition: transform 2.2s cubic-bezier(0.1, 1, 0.1, 1),
                filter 2.2s ease;
    will-change: transform, filter;
    transform-origin: center center;
    backface-visibility: hidden;
}

body.scrolling-down-active .zoom-card {
    transform: scale(1.18);
    filter: brightness(1.05) contrast(1.02);
}

.zoom-card-wrapper {
    transition: transform 0.6s cubic-bezier(0.1, 1, 0.1, 1),
                box-shadow 0.6s ease;
    will-change: transform, box-shadow;
}

.zoom-card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Slide Zoom */
.slide-zoom {
    transition: transform 2.5s cubic-bezier(0.1, 1, 0.1, 1);
    will-change: transform;
    transform-origin: center center;
    backface-visibility: hidden;
}

body.scrolling-down-active .slide-zoom {
    transform: scale(1.22);
}

/* Insight Zoom */
.insight-zoom {
    transition: transform 1.6s cubic-bezier(0.1, 1, 0.1, 1),
                background-color 1.6s ease,
                padding 1.6s ease;
    will-change: transform, background-color, padding;
    transform-origin: center center;
    padding: 20px;
    border-radius: 4px;
}

body.scrolling-down-active .insight-zoom {
    transform: scale(1.04);
    background-color: rgba(212, 175, 55, 0.06);
    padding: 24px;
}

.insight-zoom:hover {
    transform: scale(1.02);
    background-color: rgba(212, 175, 55, 0.04);
    transition: transform 0.4s ease, background-color 0.4s ease;
}

/* Triptych Zoom */
.triptych-zoom {
    transition: transform 2s cubic-bezier(0.1, 1, 0.1, 1),
                box-shadow 2s ease,
                filter 2s ease;
    will-change: transform, box-shadow, filter;
    transform-origin: center center;
    backface-visibility: hidden;
}

body.scrolling-down-active .triptych-zoom {
    transform: scale(1.06);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    filter: brightness(1.02);
}

.triptych-zoom:hover {
    transform: scale(1.04);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
    transition: transform 0.5s cubic-bezier(0.1, 1, 0.1, 1),
                box-shadow 0.5s ease;
    z-index: 10;
}

/* Parallax Zoom */
.parallax-zoom {
    transition: transform 2.8s cubic-bezier(0.1, 1, 0.1, 1);
    will-change: transform;
    transform-origin: center center;
    backface-visibility: hidden;
}

body.scrolling-down-active .parallax-zoom {
    transform: scale(1.28);
}

/* Card Pop */
.card-pop {
    transition: transform 1.8s cubic-bezier(0.1, 1, 0.1, 1),
                box-shadow 1.8s ease;
    will-change: transform, box-shadow;
    transform-origin: center center;
}

body.scrolling-down-active .card-pop {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.card-pop:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.zoom-target:hover {
    transition: transform 0.5s cubic-bezier(0.1, 1, 0.1, 1);
}

/* --- SECTION COMPONENT: HERO --- */
.editorial-hero {
    height: calc(100vh - 100px);
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 60px;
    overflow: hidden;
}

.editorial-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-title-container {
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.hero-title-container h1 {
    font-size: 5.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.hero-title-container h1 span {
    display: block;
    transform: translateY(110%);
    animation: textLineReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-container h1 span:nth-child(1) { animation-delay: 0.1s; }
.hero-title-container h1 span:nth-child(2) { animation-delay: 0.2s; }
.hero-title-container h1 span:nth-child(3) { animation-delay: 0.3s; }

@keyframes textLineReveal {
    to { transform: translateY(0); }
}

.hero-title-container .quote-italic {
    color: var(--white);
    font-size: 1.4rem;
    margin-top: 15px;
}

.hero-bottom-right-panel {
    position: relative;
    z-index: 2;
    align-self: flex-end;
    max-width: 450px;
    text-align: right;
    color: var(--bg-pink);
    font-size: 1.25rem;
    line-height: 1.6;
}

/* --- SECTION COMPONENT: ASYMMETRICAL SPLIT BLOCK --- */
.asymmetrical-split-block {
    background-color: var(--white);
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.split-image-panel {
    overflow: hidden;
    height: 750px;
}

.split-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-text-panel-gold {
    background-color: var(--gold);
    padding: 80px 60px;
    height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.split-text-panel-gold h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--dark-brown);
}

.split-text-panel-gold p {
    color: var(--dark-brown);
}

/* --- SECTION COMPONENT: THREE COLUMN MATRIX DYNAMIC GRID --- */
.editorial-matrix-padding {
    padding: 140px 60px;
    background-color: var(--bg-pink);
    color: var(--dark-brown);
}

.matrix-intro-header {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    margin-bottom: 80px;
}

.matrix-intro-header h2 {
    font-size: 4rem;
}

.matrix-intro-header p {
    font-size: 1.35rem;
    align-self: center;
}

.zoom-scroll-matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.matrix-card-node {
    display: flex;
    flex-direction: column;
}

.matrix-card-image-wrap {
    overflow: hidden;
    width: 100%;
    height: 520px;
    margin-bottom: 25px;
    background-color: var(--dark-brown);
}

.matrix-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.matrix-card-node p {
    font-size: 1.15rem;
    line-height: 1.5;
}

/* --- SECTION COMPONENT: SLIDER --- */
/* --- SECTION COMPONENT: SLIDER --- */
.immersive-slider-section {
    padding: 120px 60px;
    background-color: var(--bg-pink);
    color: var(--dark-brown);
}

.immersive-slider-section h2 {
    font-size: 4rem;
    margin-bottom: 50px;
}

.magazine-slider-viewport {
    position: relative;
    width: 100%;
    height: 75vh;
    background-color: var(--dark-brown);
    overflow: hidden;
}

.magazine-slide-frame {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: cover;
    background-position: center;
    will-change: transform, opacity;
}

.magazine-slide-frame.slide-visible {
    opacity: 1;
    transform: scale(1);
}

.slider-navigation-deck {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: flex-end;
}

.deck-arrow-btn {
    background: transparent;
    border: 1px solid var(--dark-brown);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.deck-arrow-btn:hover {
    background-color: var(--dark-brown);
    color: var(--bg-pink);
}

.deck-arrow-btn:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .immersive-slider-section {
        padding: 60px 20px;
    }
    .immersive-slider-section h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    .magazine-slider-viewport {
        height: 50vh;
    }
    .deck-arrow-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}/* --- SECTION COMPONENT: EDITORIAL STORY GRID / SPLIT FEATURES --- */
.insights-asymmetric-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 100px;
}

.insights-asymmetric-layout h2 {
    font-size: 3.8rem;
}

.insights-asymmetric-layout p.left-sub-text {
    font-size: 1.3rem;
    margin-top: 25px;
    max-width: 90%;
}

.insights-stack-deck {
    display: flex;
    flex-direction: column;
}

.insight-row-item {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 40px;
    padding: 40px 0;
    align-items: baseline;
}
.insight-row-item:first-child { padding-top: 0; }
.insight-row-item:last-child { padding-bottom: 0; }

.insight-row-item h3 {
    font-size: 1.8rem;
    letter-spacing: 0px;
}

.insight-row-item p {
    font-size: 1.15rem;
}

hr.magazine-rule {
    border: none;
    border-top: 1px solid rgba(31, 21, 12, 0.15);
}

/* --- SECTION COMPONENT: TRIPTYCH DYNAMIC EXPERIENCE CARDS --- */
.triptych-section-header {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 60px;
}

.triptych-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.triptych-editorial-node {
    padding: 60px 40px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.triptych-gold { background-color: var(--gold); color: var(--dark-brown); }
.triptych-orange { background-color: var(--orange); color: var(--dark-brown); }
.triptych-brown { background-color: var(--dark-brown); color: var(--white); }

.triptych-editorial-node p {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 600;
}

/* --- SECTION COMPONENT: FULL WIDTH IMMERSIVE IMAGE + FLOATING CARD --- */
.cinematic-parallax-viewport {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 100px;
}

.parallax-background-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

.floating-editorial-card {
    position: relative;
    z-index: 2;
    background-color: var(--white);
    padding: 60px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 30px 60px rgba(31,21,12,0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-editorial-card:hover {
    transform: translateY(-5px);
}

.editorial-form-matrix {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.editorial-form-matrix input, .editorial-form-matrix textarea {
    width: 100%;
    padding: 16px;
    font-family: inherit;
    font-size: 1.1rem;
    border: 1px solid rgba(31, 21, 12, 0.2);
    background-color: transparent;
    color: var(--dark-brown);
}

.editorial-form-matrix input:focus, .editorial-form-matrix textarea:focus {
    outline: none;
    border-color: var(--dark-brown);
}

.form-info-links {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.6;
    display: flex;
    gap: 15px;
}
.form-info-links span {
    cursor: pointer;
    text-decoration: underline;
}

/* --- ACCORDION SYSTEM --- */
.accordion-block-item {
    padding: 25px 0;
    border-bottom: 1px solid rgba(31, 21, 12, 0.15);
}
.accordion-block-item:first-child { padding-top: 0; }

.accordion-trigger {
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

.accordion-panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-panel-content p {
    padding-top: 25px;
    font-size: 1.15rem;
}

/* --- SINGLE BLOG CHRONICLE INTERIOR LAYOUT --- */
.blog-article-body-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 40px;
    background-color: var(--white);
}

.blog-large-quote-box {
    background-color: var(--gold);
    padding: 50px;
    margin: 60px 0;
    border-left: 3px solid var(--dark-brown);
}

/* --- LEGAL MATRIX SHEETS --- */
.legal-document-container {
    max-width: 900px;
    margin: 80px auto;
    background-color: var(--white);
    padding: 80px 60px;
}

.legal-document-container h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.legal-document-container h4 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

/* --- HIGH DESIGN TRADITIONAL FOOTER --- */
footer {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 100px 60px 60px 60px;
}

.footer-columns-matrix {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-brand-statement h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.footer-bottom-baseline {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- MEDIA QUERIES & BREAKPOINTS --- */
@media (max-width: 1100px) {
    header {
        grid-template-columns: 1fr 1fr;
        padding: 0 30px;
    }
    .header-right {
        display: none;
    }
    
    .editorial-hero {
        padding: 60px 30px;
        height: auto;
        min-height: 80vh;
    }
    .hero-title-container {
        max-width: 100%;
    }
    .hero-title-container h1 {
        font-size: 3.5rem;
    }
    .hero-bottom-right-panel {
        text-align: left;
        align-self: flex-start;
        max-width: 100%;
        margin-top: 40px;
        font-size: 1.1rem;
    }

    .asymmetrical-split-block {
        grid-template-columns: 1fr;
        padding: 60px 30px;
        gap: 30px;
    }
    .split-image-panel, .split-text-panel-gold {
        height: 450px;
    }
    .split-text-panel-gold {
        padding: 40px 30px;
    }
    .split-text-panel-gold h2 {
        font-size: 2.8rem;
    }

    .editorial-matrix-padding {
        padding: 60px 30px;
    }
    .matrix-intro-header {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    .matrix-intro-header h2 {
        font-size: 3rem;
    }
    .zoom-scroll-matrix-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .matrix-card-image-wrap {
        height: 380px;
    }

    .immersive-slider-section {
        padding: 60px 30px;
    }
    .immersive-slider-section h2 {
        font-size: 3rem;
    }
    .magazine-slider-viewport {
        height: 50vh;
    }

    .insights-asymmetric-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .insights-asymmetric-layout h2 {
        font-size: 3rem;
    }
    .insight-row-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 25px 0;
    }
    .insight-row-item h3 {
        font-size: 1.5rem;
    }

    .triptych-section-header {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }
    .triptych-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .triptych-editorial-node {
        min-height: 250px;
        padding: 40px 30px;
    }

    .cinematic-parallax-viewport {
        padding: 60px 30px;
        justify-content: center;
        height: auto;
        min-height: 70vh;
        flex-direction: column;
        gap: 40px;
    }
    .parallax-background-image {
        height: 50vh;
        position: relative;
    }
    .floating-editorial-card {
        max-width: 100%;
        padding: 40px 30px;
        margin-top: -40px;
    }

    .footer-columns-matrix {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .legal-document-container {
        padding: 40px 25px;
        margin: 40px 20px;
    }

    .footer-bottom-baseline {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
        height: 80px;
    }
    .header-center img {
        height: 224px;
    }
    .hamburger-btn span {
        width: 24px;
        height: 1.5px;
    }

    .magazine-view-sheet {
        margin-top: 80px;
    }

    .editorial-hero {
        padding: 40px 20px;
        min-height: 70vh;
    }
    .hero-title-container h1 {
        font-size: 2.5rem;
    }
    .hero-title-container .quote-italic {
        font-size: 1.1rem;
    }
    .hero-bottom-right-panel {
        font-size: 1rem;
    }

    .asymmetrical-split-block {
        padding: 40px 20px;
    }
    .split-image-panel, .split-text-panel-gold {
        height: 320px;
    }
    .split-text-panel-gold h2 {
        font-size: 2.2rem;
    }
    .split-text-panel-gold p {
        font-size: 1rem;
    }

    .editorial-matrix-padding {
        padding: 40px 20px;
    }
    .matrix-intro-header h2 {
        font-size: 2.5rem;
    }
    .matrix-intro-header p {
        font-size: 1.1rem;
    }
    .matrix-card-image-wrap {
        height: 280px;
    }

    .immersive-slider-section {
        padding: 40px 20px;
    }
    .immersive-slider-section h2 {
        font-size: 2.5rem;
    }
    .magazine-slider-viewport {
        height: 40vh;
    }
    .deck-arrow-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .insights-asymmetric-layout h2 {
        font-size: 2.5rem;
    }
    .insights-asymmetric-layout p.left-sub-text {
        font-size: 1.1rem;
    }
    .insight-row-item p {
        font-size: 1rem;
    }

    .triptych-section-header {
        font-size: 2.2rem;
    }
    .triptych-editorial-node p {
        font-size: 1.1rem;
    }
    .triptych-editorial-node {
        min-height: 200px;
        padding: 30px 20px;
    }

    .cinematic-parallax-viewport {
        padding: 40px 20px;
    }
    .floating-editorial-card {
        padding: 30px 20px;
    }
    .floating-editorial-card h3 {
        font-size: 1.5rem;
    }

    footer {
        padding: 60px 20px 30px 20px;
    }
    .footer-columns-matrix {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-brand-statement h3 {
        font-size: 1.8rem;
    }

    .legal-document-container {
        padding: 30px 20px;
        margin: 30px 15px;
    }
    .legal-document-container h2 {
        font-size: 2.2rem;
    }

    .fullscreen-navigation-drawer {
        padding: 100px 30px 40px 30px;
        max-width: 100%;
    }
    .drawer-links-stack a {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title-container h1 {
        font-size: 2rem;
    }
    .split-text-panel-gold h2 {
        font-size: 1.8rem;
    }
    .matrix-intro-header h2 {
        font-size: 2rem;
    }
    .immersive-slider-section h2 {
        font-size: 2rem;
    }
    .insights-asymmetric-layout h2 {
        font-size: 2rem;
    }
    .triptych-section-header {
        font-size: 1.8rem;
    }
    .editorial-form-matrix input {
        font-size: 0.95rem;
        padding: 12px;
    }
    .book-now-cta {
        padding: 10px 20px;
        font-size: 0.7rem;
    }
}

    /* Additional styles for the forms */
    .form-message {
        font-size: 0.85rem;
        padding: 8px 12px;
        border-radius: 2px;
        margin-top: 8px;
        display: none;
        font-family: 'Spectral', serif;
    }
    
    .form-message.show {
        display: block;
    }
    
    .form-message.success {
        background-color: rgba(40, 167, 69, 0.1);
        border-left: 3px solid #28a745;
        color: #155724;
    }
    
    .form-message.error {
        background-color: rgba(220, 53, 69, 0.1);
        border-left: 3px solid #dc3545;
        color: #721c24;
    }
    
    .form-message.info {
        background-color: rgba(23, 162, 184, 0.1);
        border-left: 3px solid #17a2b8;
        color: #0c5460;
    }
    
    .unsubscribe-container {
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .unsubscribe-toggle-wrapper a {
        transition: opacity 0.3s ease;
    }
    
    .unsubscribe-toggle-wrapper a:hover {
        opacity: 0.8 !important;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .unsubscribe-container {
            padding: 10px 0;
        }
        
        .unsubscribe-container button {
            font-size: 0.75rem;
            padding: 8px 16px;
        }}
