:root {
  --ink: #090909;
  --paper: #f0efe9;
  --muted: #a6a39a;
  --line: rgba(240, 239, 233, 0.23);
  --red: #a9db18;
  --mono: "Courier New", monospace;
  --display: Arial, Helvetica, sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; overflow-x: hidden; background: var(--ink); color: var(--paper); font-family: var(--body); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link { position: fixed; z-index: 30; top: -4rem; left: 1rem; background: var(--paper); color: var(--ink); padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    height: 84px;
    padding: 0 3vw;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;

    background: rgba(9, 9, 9, .96);
    border-bottom: 1px solid rgba(240, 239, 233, .16);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
    color: var(--paper);
    transition: transform .35s ease, background .2s ease;
}

.site-header nav {
    display: flex;
    gap: 1.5rem;
    font: 500 .7rem/1 var(--mono);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.site-header nav a,
footer a {
    opacity: .82;
    transition: opacity .2s ease;
}

.site-header nav a:hover,
footer a:hover {
    opacity: 1;
}

.brand {
    grid-column: 1;
    justify-self: start;
    display: inline-flex;
    width: 116px;
    align-items: center;
}

.brand img {
    width: 100%;
    height: auto;
    display: block;
}

.header-cta {
    grid-column: 3;
    justify-self: end;

    font: 500 .7rem/1 var(--mono);
    text-transform: uppercase;
    letter-spacing: .06em;
    border: 1px solid rgba(240, 239, 233, .56);
    border-radius: 999px;
    padding: .75rem 1rem;
}

.header-cta:hover {
    background: var(--paper);
    color: var(--ink);
}

/* ===========================
   Hero
=========================== */

.hero {
    min-height: 100svh;
    position: relative;
    isolation: isolate;

    padding: 20vh 3vw 3vw;

    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    grid-template-rows: auto 1fr auto;

    column-gap: clamp(2rem, 5vw, 6rem);
    row-gap: 2rem;

    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 84% 28%, rgba(169,219,24,.2), transparent 22%),
        linear-gradient(125deg, #111 0%, #090909 66%, #171717 100%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .045;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-index {
    grid-column: 1 / -1;
    grid-row: 1;

    align-self: start;

    margin: 0;
    font: 500 .66rem/1 var(--mono);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-copy {
    grid-column: 1;
    grid-row: 2;

    align-self: center;
    justify-self: end;

    max-width: 850px;
}

.hero-copy h1 {
    position: relative;
    display: inline-block;
    
    margin: 0;
    font-size: clamp(4.6rem, 10.7vw, 11rem);
    line-height: .8;
}

.hero-star {
    position: absolute;

    width: clamp(500px, 55vw, 1300px);

    top: -27vw;
    left: -33vw;

    transform: rotate(-40deg);

    pointer-events: none;
}

.hero-lead {
    margin: 2rem 0 0;
    max-width: 27rem;

    font-size: clamp(1.25rem, 1.7vw, 1.75rem);
    line-height: 1.1;
}

.hero-media {
    grid-column: 2;
    grid-row: 2;

    align-self: center;
    justify-self: end;

    width: min(100%, 670px);
    height: 75vh;

    border-radius: 24px;

    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
    object-position: center;
}


.scroll-hint {
    grid-column: 1 / -1;
    grid-row: 3;

    margin-top: 1rem;
    padding-top: .8rem;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid var(--line);

    font: 500 .66rem/1 var(--mono);
    text-transform: uppercase;
    letter-spacing: .07em;
}
h1, h2 { font-family: var(--display); letter-spacing: -.075em; font-weight: 500; margin: 0; }
h1 { font-size: clamp(4.6rem, 10.7vw, 11rem); line-height: .8; }
.hero-lead { font-size: clamp(1.25rem, 1.7vw, 1.75rem); max-width: 27rem; margin: 2.5rem 0 0 .25rem; line-height: 1.1; }
.placeholder { position: relative; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015) 43%, rgba(169,219,24,.12)); display: flex; flex-direction: column; justify-content: space-between; padding: 1rem; font-family: var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.placeholder::before, .placeholder::after { content: ""; position: absolute; width: 60%; height: 1px; background: rgba(240,239,233,.3); transform: rotate(-36deg); transform-origin: left center; }
.placeholder::before { left: -10%; top: 22%; }
.placeholder::after { right: -27%; bottom: 19%; transform: rotate(39deg); }
.placeholder span { font-size: .62rem; opacity: .72; z-index: 1; }
.placeholder strong { position: relative; z-index: 1; font: 500 clamp(1.35rem, 2vw, 2.2rem)/.95 var(--display); letter-spacing: -.05em; text-transform: none; }
.hero-media {
    width: min(100%, 670px);
    height: 75vh;
    align-self: end;
    justify-self: end;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.placeholder-hero { width: min(100%, 670px); min-height: 68vh; align-self: end; justify-self: end; }
.placeholder-hero i { position: absolute; border: 1px solid rgba(240,239,233,.55); border-radius: 50%; width: 60%; aspect-ratio: 1; right: -15%; bottom: -20%; }
.scroll-hint { grid-column: 1 / -1; margin-top: 3rem; font: 500 .66rem/1 var(--mono); text-transform: uppercase; letter-spacing: .07em; display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: .8rem; }

section:not(.hero) { padding: 9vw 3vw; }
.section-meta { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: .85rem; color: var(--muted); }
.moments { background: var(--paper); color: var(--ink); min-height: 100svh; }
.moments .section-meta, .product .section-meta { border-color: rgba(9,9,9,.24); color: rgba(9,9,9,.68); }
.moments h2 { font-size: clamp(3.4rem, 7.9vw, 8.6rem); line-height: .86;  margin: 12vw 0 10vw; }
.moment-rail { border-top: 1px solid rgba(9,9,9,.24); display: grid; grid-template-columns: repeat(4, 1fr); }
.moment-rail p { margin: 0; padding: 1rem 1rem 6vw 0; border-right: 1px solid rgba(9,9,9,.24); font: 500 clamp(.85rem, 1.3vw, 1.25rem)/1.1 var(--display); }
.moment-detail { margin-top: 8vw; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 8vw; }
.placeholder-square { aspect-ratio: 1 / .85; color: var(--paper); background-color: var(--ink); }
.moment-detail > p { font: 500 clamp(1.4rem, 2.6vw, 3.1rem)/.98 var(--display); letter-spacing: -.06em; max-width: 15ch; margin: 0 0 2vw; }

.product { min-height: 100svh; position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; background: var(--red); color: var(--ink); overflow: hidden; }
.product-visual { font: 700 clamp(3rem, 8vw, 10rem)/.72 var(--display); letter-spacing: -.09em; display: flex; flex-direction: column; align-self: center; transform: rotate(-12deg) translateX(-8%); opacity: .9; }
.product-visual span:nth-child(even) { padding-left: 17%; color: var(--paper); }
.product-copy { position: relative; z-index: 1; }
.product h2 { margin: 11vw 0 4vw; font-size: clamp(3.1rem, 6.4vw, 7.4rem); line-height: .84; }
.product-intro { max-width:32ch; margin:0 0 2rem; font-size:clamp(.92rem,1.2vw,1.2rem); line-height:1.28; }
.placeholder-wide { aspect-ratio: 1.45 / 1; color: var(--paper); background: #141414; }
.raw-image { position:relative; overflow:hidden; margin:0; border:1px solid var(--line); background:#151515; }
.raw-image img { width:100%; height:100%; object-fit:cover; }
.raw-image-wide { aspect-ratio:1.45 / 1; }
.raw-image-wide img { object-position:center; }

.universe { min-height: 85svh; display: flex; flex-direction: column; justify-content: space-between; }
.universe-layout { display: grid; grid-template-columns: 1fr .85fr 1fr; align-items: end; padding-top: 7vw; }
.universe h2 { font-size: clamp(5rem, 12.5vw, 14rem); line-height: .72; }
.universe-layout > p { align-self: end; justify-self: end; max-width: 12ch; font: 500 clamp(1.1rem, 1.75vw, 1.9rem)/1 var(--display); letter-spacing: -.05em; margin: 0 0 .6vw; }
.universe-orbit { width: min(30vw, 360px); aspect-ratio: 1; justify-self: center; border: 1px solid rgba(240,239,233,.55); border-radius: 50%; position: relative; transform: rotate(-22deg); }
.universe-orbit::before, .universe-orbit::after { content: ""; position: absolute; inset: 31% -18%; border: 1px solid var(--red); border-radius: 50%; }
.universe-orbit::after { inset: 11% 38%; border-color: rgba(240,239,233,.7); }
.universe-orbit span { position: absolute; top: -3%; left: 42%; color: var(--red); font-size: 2.2rem; }

.media { background: #181818; }
.media h2 { margin: 9vw 0 7vw; font-size: clamp(3.5rem, 8.5vw, 9.7rem); line-height: .82; }
.media-copy { max-width:42ch; margin:-4vw 0 5vw auto; font-size:clamp(1rem,1.4vw,1.45rem); line-height:1.12; }
.media-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 1rem; }
.placeholder-video { min-height: 56vw; max-height: 760px; }
.placeholder-video button { position: absolute; left: 50%; top: 50%; z-index: 2; transform: translate(-50%, -50%); border: 1px solid var(--paper); color: var(--paper); border-radius: 50%; width: 76px; aspect-ratio: 1; background: transparent; opacity: .75; }
.placeholder-tall { min-height: 56vw; max-height: 760px; }
.raw-image-media { min-height:56vw; max-height:760px; }
.raw-image-media img { object-position:center 48%; }
.raw-image-tall { min-height:56vw; max-height:760px; }
.raw-image-tall img { object-position:center; }

.shop { min-height: 85svh; position: relative; background: var(--paper); color: var(--ink); overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.shop .section-meta { position: absolute; inset: 3vw 3vw auto; border-color: rgba(9,9,9,.24); color: rgba(9,9,9,.68); }
.shop h2 { position: relative; z-index: 1; font-size: clamp(5rem, 14vw, 15rem); line-height: .72; }
.shop > p:not(.section-meta) { position: relative; z-index: 1; max-width:34ch; font: 500 clamp(1.1rem, 2vw, 2.2rem)/1 var(--display); letter-spacing: -.05em; margin: 3rem 0 1.6rem; }
.shop-copy-grid { position:relative; z-index:1; width:min(100%,820px); display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1px; margin:0 0 2rem; background:rgba(9,9,9,.24); border:1px solid rgba(9,9,9,.24); text-align:left; }
.shop-copy-grid article { min-height:180px; padding:1.25rem; background:rgba(240,239,233,.76); }
.shop-copy-grid h3 { margin:0 0 1.5rem; font:500 clamp(1.15rem,1.8vw,1.75rem)/.94 var(--display); letter-spacing:-.06em; }
.shop-copy-grid p { margin:0; font-size:.78rem; line-height:1.3; }
.shop-orb { position: absolute; width: min(68vw, 1000px); aspect-ratio: 1; border-radius: 50%; background: var(--red); filter: blur(.1px); box-shadow: 0 0 10rem 2rem rgba(169,219,24,.22); }
.button { position: relative; z-index: 1; padding: 1rem 1.3rem; background: var(--ink); color: var(--paper); font: 500 .72rem/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.button { border-radius:999px; transition:transform .2s ease, background .2s ease; }
.button:hover { background:var(--red); transform:translateY(-3px); }

/* ===========================
   Footer
=========================== */

footer {
    padding: clamp(2.5rem, 5vw, 5rem) 3vw;
    background: var(--red);
    color: var(--ink);
    font: 500 clamp(.72rem, .85vw, .9rem)/1.4 var(--body);

    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-brand {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--ink);
    color: var(--paper);
    border-radius: 24px 0 24px 0;
    transition: .25s ease;
}

.footer-brand:hover {
    color: var(--paper);
    transform: translateY(-3px);
}

.footer-brand img {
    width: min(100%, 150px);
}

.footer-brand span {
    max-width: 18ch;
    font: 500 1.1rem/.98 var(--display);
    letter-spacing: -.05em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-title {
    margin: 0;
    font: 500 .68rem/1 var(--mono);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: inherit;
    text-decoration: none;
    opacity: .88;
    transition: opacity .2s ease, color .2s ease;
}

.footer-links a:hover {
    color: var(--paper);
    opacity: 1;
}

.instagram-link { display:inline-flex; align-items:center; gap:.45rem; }
.instagram-link svg { width:1rem; height:1rem; fill:none; stroke:currentColor; stroke-width:1.7; }
.legal-page { background:var(--paper); color:var(--ink); }
.legal-content { width:min(100% - 2rem, 900px); margin:0 auto; padding:clamp(2rem,7vw,7rem) 0; }
.legal-back { display:inline-flex; margin-bottom:clamp(3rem,8vw,7rem); font:500 .72rem/1 var(--mono); text-transform:uppercase; letter-spacing:.06em; }
.legal-content .section-meta { border-color:rgba(9,9,9,.24); color:rgba(9,9,9,.68); }
.legal-content h1 { margin:clamp(2.5rem,6vw,5rem) 0; font-size:clamp(4rem,10vw,8rem); line-height:.82; }
.legal-content section { max-width:58ch; margin:0 0 3rem; }
.legal-content section h2 { margin-bottom:1rem; font-size:clamp(1.65rem,3vw,2.5rem); line-height:.95; }
.legal-content section p,.legal-note { font-size:1rem; line-height:1.55; }
.legal-content section a { text-decoration:underline; text-underline-offset:.18em; }
.legal-note { max-width:68ch; padding-top:2rem; border-top:1px solid rgba(9,9,9,.24); color:rgba(9,9,9,.72); }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; } }
@media (max-width: 760px) {
  .site-header { height: 66px; padding: 0 1rem; grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .brand { width: 96px; }
  .header-cta { font-size: .62rem; }

    .hero-star {
        width: 65vw;

        top: -30vw;
        left: -37vw;

        transform: rotate(-40deg);
    }

  .hero { min-height: 100svh; padding: 17vh 1rem 1rem; display: flex; flex-direction: column; }
  .hero-index { margin-bottom: auto; }
  .hero-copy { padding: 0; }
  h1 { font-size: clamp(4.2rem, 20vw, 6.5rem); }
  .hero-lead { margin: 1.5rem 0 2.25rem; max-width: 17rem; font-size: 1.2rem; }
  .placeholder-hero { min-height: 40svh; width: 100%; }
  .scroll-hint { margin-top: 1rem; }
  section:not(.hero) { padding: 5.5rem 1rem; }
  .moments h2 { font-size: clamp(3.15rem, 14vw, 5.3rem); margin: 6rem 0 4rem; }
  .moment-rail { grid-template-columns: 1fr 1fr; }
  .moment-rail p { padding: .85rem .75rem 4.2rem 0; font-size: 1rem; }
  .moment-rail p:nth-child(2n) { padding-left: .75rem; }
  .moment-detail { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 4.5rem; }
  .moment-detail > p { font-size: 2.1rem; }
  .product { grid-template-columns: 1fr; gap: 1.8rem; min-height: auto; }
  .product-visual { height: 32vw; align-self: start; font-size: 4rem; }
  .product h2 { font-size: clamp(3.2rem, 14vw, 5.2rem); margin: 3rem 0 2rem; }
  .product-intro { font-size:.9rem; }
  .universe { min-height: 75svh; }
  .universe-layout { grid-template-columns: 1fr 1fr; row-gap: 3rem; }
  .universe h2 { grid-column: 1 / -1; font-size: 5.2rem; }
  .universe-orbit { width: 35vw; }
  .universe-layout > p { font-size: 1.25rem; }
  .media h2 { font-size: clamp(3.1rem, 14vw, 5.2rem); margin: 5rem 0 3rem; }
  .media-copy { margin:0 0 2.5rem; font-size:1rem; }
  .media-grid { grid-template-columns: 1fr; }
  .placeholder-video { min-height: 84vw; }
  .placeholder-tall { min-height: 110vw; }
  .raw-image-media { min-height:84vw; }
  .raw-image-tall { min-height:110vw; }
  .shop { min-height: 75svh; }
  .shop .section-meta { inset: 1rem 1rem auto; }
  .shop h2 { font-size: clamp(5.8rem, 25vw, 8.5rem); }
  .shop > p:not(.section-meta) { margin:2rem 0 1.2rem; font-size:1.05rem; }
  .shop-copy-grid { grid-template-columns:1fr; margin-bottom:1.2rem; }
  .shop-copy-grid article { min-height:0; padding:1rem; }
  .shop-copy-grid h3 { margin-bottom:.9rem; }
  footer { padding:2rem 1rem; grid-template-columns:1fr 1fr; gap:2rem 1rem; }
  .footer-brand { grid-column:1 / -1; min-height:145px; padding:1.2rem; }
  .footer-brand img { width:120px; }
  footer div { gap:.65rem; font-size:.72rem; }
  .legal-content { width:min(100% - 2rem, 900px); }
}
