@font-face {
    font-family: "ABCDiatype";
    src: url("fonts/ABCDiatypePlusVariable.ttf") format("truetype");
    font-display: swap;
    }

    @font-face {
    font-family: "PPWoodland";
    src: url("fonts/PPWoodland-Ultralight.woff") format("woff"),
        url("fonts/PPWoodland-Ultralight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
    }

    :root {
    --bg: #e7e7df;
    --ink: #000000;
    --muted: rgba(20, 20, 20, 0.7);
    --stroke: rgba(20, 20, 20, 0.45);
    --accent: #EAF87B;
    --radius: 999px;
    --pad: clamp(26px, 3.2vw, 44px);
    }

    * {
    box-sizing: border-box;
    }

    html,
    body {
    height: 100%;
    }

    body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    }

    /* Layout */
    .layout {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 63% 37%;
    }

    /* LEFT */
    .left {
    position: relative;
    padding: var(--pad);
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    }

    .header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    }

    .logo {
    font-family: "ABCDiatype", system-ui, -apple-system, Segoe UI, Roboto, Arial,
        sans-serif;
    font-variation-settings: "wght" 760, "wdth" 100;
    font-size: clamp(68px, 6.6vw, 110px);
    line-height: 0.9;
    letter-spacing: -0.02em;
    }

    .strap {
    margin-top: 48px;
    font-family: "ABCDiatype", system-ui, -apple-system, Segoe UI, Roboto, Arial,
        sans-serif;
    font-variation-settings: "wght" 520, "wdth" 100;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: #000000;
    white-space: nowrap;
    }

    .center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    padding-top: clamp(18px, 3vw, 56px);
    padding-bottom: clamp(18px, 3vw, 56px);
    }

    .headline {
    margin: 0;
    font-family: "PPWoodland", Georgia, serif;
    font-weight: 200;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.01em;
    }
    .headline span {color: var(--ink);font-family: "ABCDiatype", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;font-size: 40px;line-height: 30px;letter-spacing: 0.02em;}

    .deck {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    text-decoration: none;
    color: var(--ink);
    
    font-family: "ABCDiatype", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.02em;
    }

    .deck__hl {
    padding: 1px 6px 2px;
    border-radius: 4px;
    position: relative;
    }

    .deck__hl::after {
        content: "";
        width: calc(100% - 10px);
        height: 10px;
        background: var(--accent);
        display: block;
        position: absolute;
        top: 1px;
        z-index: -1;
        left: 6px;
    }

    .deck:focus-visible {
    outline: 2px solid rgba(20, 20, 20, 0.45);
    outline-offset: 6px;
    border-radius: 8px;
    }

    /* Footer pills */
    .footer {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    }

    .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    text-decoration: none;
    color: var(--ink);
    background: transparent;
    font-family: "ABCDiatype", system-ui, -apple-system, Segoe UI, Roboto, Arial,
        sans-serif;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: transform 0.18s ease, background-color 0.18s ease,
        border-color 0.18s ease;
    will-change: transform;
    }

    .pill:hover {
    transform: translateY(-1px);
    }

    .pill:active {
    transform: translateY(0);
    }

    .pill--accent {
    background: var(--accent);
    border-color: transparent;
    }

    .pill:focus-visible {
    outline: 2px solid rgba(20, 20, 20, 0.5);
    outline-offset: 4px;
    }

    /* RIGHT */
    .right{
    background: #e7e7df;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    }

    .right__media{
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 3.6; /* matches visual proportion */
    overflow: hidden;
    }

    .right__media img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    .statement{
    padding: clamp(26px, 3.2vw, 52px)
            clamp(26px, 4.2vw, 78px);
            padding-left: 0px;
    }

    .statement p{
    margin: 0;
    font-family: "PPWoodland", Georgia, serif;
    font-weight: 200;
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -0.01em;
    }

    .statement p span{font-family: "ABCDiatype", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;}



    /* Cursor dot */
    .cursor-dot {
position: fixed;
top: 0;
left: 0;
width: 27px;
height: 27px;
border-radius: 999px;
background: var(--accent);
pointer-events: none;
z-index: 9999;
will-change: transform;
}


    /* ===== SLIDER ===== */
  .slider {
    position: relative;
  }

  .slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 900ms ease-in-out;
  }

  .slider img.active {
    opacity: 1;
  }


    /* Optional: hide system cursor */
    @media (pointer: fine) {
    body {
        cursor: none;
    }
    }

    /* Responsive */
    @media (max-width: 980px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .right {
        min-height: auto;
    }

    .photo {
        min-height: 44svh;
    }
    .right__media{
        aspect-ratio: 16 / 10;
    }
    .strap {
        letter-spacing: 0.28em;
        font-size: 10px;    margin-top: -10px;
    }

    .headline,
    .headline span {
        font-size: 32px;
        line-height: 36px;  
    }
    .headline br{
        display: none;
    }

    .header {
        display: flex;
        flex-direction: column;
    }

    .footer {
        gap: 10px;
    }

    .pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 9px 20px;
        font-size: 12px;
    }

    .statement {
        padding: clamp(26px, 3.2vw, 52px) clamp(26px, 4.2vw, 78px);
    }
    
    
    .cursor-dot{
        display: none;
    }

    @media (prefers-reduced-motion: reduce) {
    .pill {
        transition: none;
    }

    .cursor-dot {
        display: none;
    }

    @media (pointer: fine) {
        body {
        cursor: auto;
        }
    }
    }