 <style>


            html, body {
                margin: 0;
                padding: 0;
            }
            *{
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
            
            /* Typography */
            body {
                font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
                line-height: 2;
                color: #000;
                background: #fff;
            }

            h1, h2, h3, h4 {
                font-weight: 400;
                line-height: 1.2;
                margin-bottom: 16px;
            }

            h1 {
            font-size: 72px;
            font-weight: 300;
            letter-spacing: -2px;
            margin-bottom: 8px;
            text-transform: uppercase;
            font-family: 'Tiempos Text', Georgia, serif;
        }
            h2 { font-size: 32px; }
            h3 { font-size: 24px; }
            h4 { font-size: 18px; }

            p {
                font-size: 16px;
                line-height: 1.7;
                margin-bottom: 20px;
                max-width: 600px; /* keeps line length readable */
            }


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

            a:hover {
                opacity: 0.7;
            }

            .italic{
                font-style: italic;
            }

            /* Content */
            img {
                width: 100%;
                height: auto;
                display: block;
            }

            video {
                width: 100%;
                height: auto;
                display: block;
            }

            .flipped {
                transform: scaleX(-1);
            }

            .header-block{
                padding: 40px;
                margin-bottom: 20px;
            }

            .catalog-number{
                background: #fff;
                color: #000;
                display: inline-block;
                padding: 6px 12px;
                margin-bottom: 100px;
                font-size: 12px;
                letter-spacing: 1px;

            }

            .title-block {
                text-align: margin-left;
                background: #fff;
                height: 50px;
                max-width: 500px;
                margin-bottom: 60px;
            }
        
            .description-block {
                text-align: margin-left;
                background: #e8e8e8;
                height: 30px;
                max-width: 600px;
            }
        
            .hero-block {
                width: 100%;
                height: 75vh;
                overflow: hidden;
                margin-bottom: 150px;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .hero-block img {
                width: 100%;
                height: 100%;
                object-fit: cover;
}

            .hero-img {
                object-position: center center;
            }

            .hero-img-2 {
                object-position: center center;
            }

            /* Asymmetric content zones*/

            .zone{
                padding: 0px 40px;
                margin-bottom: 200px;

            }

            .reduce-margin{
                margin-bottom: 50px;
            }

            .zone.align-right h3 {
                margin-left: auto;
                margin-right: 0;
                max-width: 600px;
            }

            .zone.align-right p{
                margin-left: auto;
                margin-right: 0;
            }

            .zone.tight{
                margin-bottom: 80px;
            }

            .zone.sparse{
                margin-bottom: 300px;
            }

            /* Content blocks - various widths */
            .content-block {
                background: #f5f5f5;
                height: 100px;
                margin-bottom: 32px;
            }
            .content-wrapper {
                max-width: 1300px;
                margin: 0 auto;
            }
        
            .content-block.narrow {
                max-width: 500px;
            }
        
            .content-block.medium {
                max-width: 700px;
            }
        
            .content-block.offset-right {
                margin-left: auto;
                margin-right: 0;
            }
            /* Tinted background sections */

            .zone.tinted-light {
                background: #fafafa;
                padding-top: 30px;
                padding-bottom: 30px;
            }

            .zone.tinted-mid {
                background: #C0C0C0;
                padding-top: 30px;
                padding-bottom: 30px;
            }

            .zone.tinted-dark {
                background: #848884;
                padding-top: 30px;
                padding-bottom: 30px;
            }

            /* Full bleed image moment */
            .full-bleed-image {
                width: 100vw;
                margin-left: calc(-50vw + 50%);
                margin-bottom: 200px;
            }

            .full-bleed-image img {
                width: 100%;
                height: 65vh;
                object-fit: cover;
            }

            /* Visual break section */
            .break-section {
                background: #f0f0f0;
                padding: 120px 60px;
                text-align: center;
                margin-bottom: 200px;
            }

            .large-quote {
                font-size: 28px;
                line-height: 1.4;
                max-width: 800px;
                margin: 0 auto;
                font-style: italic;
                font-weight: 300;
            }




            /* flexible grid NOT Centred */

            .grid{
                display: grid;
                gap: 24px;
                overflow: hidden;
                margin:0 auto;
                max-width: 1300px;

            }
            .grid-span-2 {
                grid-column: span 2;
            }

            .grid-stack {
                display: grid;
                gap: 12px;
            }

            .grid-text {
                padding: 20px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .grid-text h3 {
                font-size: 18px;
                margin-bottom: 12px;
            }

            .grid-text p {
                font-size: 14px;
                line-height: 1.6;
                max-width: none;
            }
            /* Asymmetric grids */

            .grid img {
                width: 100%;
                object-fit: cover;  /* THIS makes them crop to fit */
            }

            .grid video {
                width: 100%;
                object-fit: cover;
            }
            .grid.grid-uneven-2 {
                grid-template-columns: 1.5fr 1fr;
            }
            
            .grid.grid-uneven-3 {
                grid-template-columns: 1fr 2fr 1fr;
            }

            .grid.grid-uneven-4 {
                grid-template-columns: 2fr 1fr 1fr;
                
            }

            .grid.grid-uneven-5 {
            grid-template-columns: 1fr 1fr 2fr;
                
            }
            
            .grid.grid-offset {
                grid-template-columns: 1fr 1fr;
                margin-left: 250px;
            }

            .grid.grid-split {
                grid-template-columns: 1fr 1fr;
            }
            
            /* Grid items - variable heights */
            .grid.grid-item {
                background: #ccc;
            }

            /* Audio player styling */
            .audio-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 40px 24px;
                max-width: 1300px;
                margin: 0 auto;
            }

            .audio-item {
                display: flex;
                flex-direction: column;
            }

            .audio-label {
                font-size: 14px;
                margin-bottom: 12px;
                font-weight: 400;
            }

            .custom-audio-player {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 12px 16px;
                background: #f5f5f5;
                border-radius: 4px;
            }

            .custom-audio-player audio {
                display: none;
            }

            .play-btn {
                width: 36px;
                height: 36px;
                border: none;
                background: #000;
                color: #fff;
                border-radius: 50%;
                cursor: pointer;
                font-size: 12px;
                flex-shrink: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: opacity 0.2s;
            }

            .play-btn:hover {
                opacity: 0.8;
            }

            .progress-bar {
                flex: 1;
                height: 4px;
                background: #ddd;
                border-radius: 2px;
                cursor: pointer;
                position: relative;
            }

            .progress-fill {
                height: 100%;
                background: #000;
                border-radius: 2px;
                width: 0%;
                transition: width 0.1s linear;
            }

            .time {
                font-size: 11px;
                font-family: 'Courier New', monospace;
                min-width: 80px;
                text-align: right;
                flex-shrink: 0;
            }

            @media (max-width: 768px) {
                .audio-grid {
                    grid-template-columns: 1fr;
                    gap: 32px;
                }
                
                .custom-audio-player {
                    gap: 8px;
                    padding: 10px 12px;
                }
                
                .time {
                    font-size: 10px;
                    min-width: 70px;
                }
            }


            /* Full Bleed Media */

            .media-full{
                background: #aaa;
                height: 70vh;
                margin-bottom: 200px;
            }
            .media-contained{
                background: #aaa;
                height: 500px;
                max-width: 900px;
                margin-left: 80px;
            }

            /* Sidebar layout */

            .sidebar-layout {
                display: grid;
                grid-template-columns: 300px 1fr;
                gap: 60px;
                padding: 0 40px;
                margin-bottom: 200px;
                max-width: 1400px;
            }
            
            .sidebar-content {
                background: #f0f0f0;
                padding: 32px;
            }
            
            .sidebar-item {
                background: #e0e0e0;
                height: 24px;
                margin-bottom: 12px;
            }
            
            .sidebar-main {
                background: #ccc;
                height: 600px;
            }

            /* Specs - data table style */
            .details-block {
                padding: 80px 60px;
                background: #000;
                color: #fff;
                border-top: 1px solid #fff;
            }

            .details-block h3 {
                font-size: 11px;
                letter-spacing: 2px;
                font-weight: 700;
                margin-bottom: 40px;
                text-transform: uppercase;
            }

            .details-block dl {
                display: grid;
                grid-template-columns: 200px 1fr;
                gap: 20px 40px;
                font-size: 14px;
                font-family: 'Courier New', monospace;
            }

            .details-block dt,
            .details-block dd {
                padding: 12px 0;
                border-bottom: 1px solid #333;
            }

            .details-block strong {
                font-weight: 700;
            }
            
            .detail-item {
                background: #e0e0e0;
                height: 28px;
                margin-bottom: 16px;
            }

            /* CTA - stark */
            .cta-block {
                padding: 80px 60px;
                background: #fff;
                color: #000;
                text-align: center;
            }

            .cta-block h2 {
                font-size: 32px;
                margin-bottom: 20px;
            }

            .cta-block p {
                font-size: 14px;
                letter-spacing: 1px;
                max-width: none;
            }

            /* Responsive */
            @media (max-width: 1024px) {
                .grid-uneven-2,
                .grid-uneven-3,
                .grid-offset,
                .sidebar-layout {
                    grid-template-columns: 1fr;
                    margin-left: 0;
                }
                
                .media-contained {
                    margin-left: 40px;
                }
                
                .cta-block {
                    margin-left: 0px;
                }
                
                .zone {
                    margin-bottom: 120px;
                }
                
                .zone.sparse {
                    margin-bottom: 180px;
                }
            }

        @media (max-width: 768px) {
            /* Header and zones */
            .header-block,
            .zone {
                padding: 0 20px;
            }
            
            .zone {
                padding: 40px 20px;
                margin-bottom: 60px; /* Set default, was 0px which breaks spacing */
            }
            
            .zone.tight {
                margin-bottom: 40px;
            }
            
            .zone.sparse {
                margin-bottom: 80px;
            }
            
            /* Hero */
            .hero-block {
                grid-template-columns: 1fr 1fr;
                height: auto;
                margin-bottom: 50px;
            }
            
            .hero-block img {
                height: 50vh;
            }
            
            /* Details/specs block */
            .details-block {
                padding: 60px 20px;
            }
            
            .details-block dl {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            /* Media */
            .media-contained {
                margin-left: 20px;
            }
            
            /* CTA */
            .cta-block {
                margin-left: 0;
                background: #fff;
            }
            
            /* Text width constraints */
            p {
                max-width: 75vw;
            }
            
            .zone.align-right h3 {
                max-width: 75vw;
            }
            
            /* Grid layouts - asymmetric with adjusted ratios */
            .grid.grid-uneven-2 {
                grid-template-columns: 1.2fr 1fr;
                max-height: none;
            }
            
            .grid.grid-uneven-3 {
                grid-template-columns: 1fr 1fr;
                max-height: none;
            }
            
            .grid.grid-uneven-4 {
                grid-template-columns: 1fr 1fr;
                max-height: none;
            }
            .grid.grid-uneven-5 {
            grid-template-columns: 1fr 1fr;
            max-height: none;
            }
            
            /* Featured images span full width */
            .grid.grid-uneven-4 > img:first-child,
            .grid.grid-uneven-3 > img:nth-child(2) {
                grid-column: span 2;
                order: -1;
            }
            .grid.grid-uneven-5 > img:nth-child(2) {
                grid-column: span 2;
                order: -1;
            }
            
            /* Grid offset and split - single column stack */
            .grid.grid-offset,
            .grid.grid-split {
                grid-template-columns: 1fr; /* Changed from 2fr which makes no sense */
                margin-left: 0;
            }
            
            /* For text/audio split: text appears first on mobile */
            .grid.grid-split > div:nth-child(2) {
                order: -1;
            }
            
            /* Nested grids */
            .grid-stack {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            
            .grid-span-2 {
                grid-column: span 2;
            }
            
            /* Grid text */
            .grid-text {
                padding: 16px 0;
            }
            
            .grid-text p {
                font-size: 13px;
                line-height: 1.5;
            }
            
            /* Grid gaps */
            .grid {
                gap: 12px;
            }
            
            /* Audio grid */
            .audio-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            /* Typography */
            h1 { font-size: 32px; }
            h2 { font-size: 24px; }
            h3 { font-size: 20px; }
            p { font-size: 15px; }
        }


        </style>