:root{
    --bg: #0b0b0b;
    --panel: #121212;
    --text: #f2f2f2;
    --muted: rgba(242,242,242,0.72);
    --line: rgba(255,255,255,0.18);
    --wrap: 1200px;
  }
  
  *{ box-sizing: border-box; }
  html,body{ height:100%; }
  
  body{
    margin:0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
  }
  
  /* Top bar */
  .topbar{
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
  }
  .brand{
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 14px 18px;
    text-align: center;
    letter-spacing: 0.18em;
    font-weight: 700;
    font-size: 13px;
  }
  
  /* HERO */
  .hero{
    position: relative;
    width: 100%;
    height: min(78vh, 760px);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
  }
  .hero__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05);
  }
  .hero__quote{
    position: absolute;
    right: 4vw;
    top: 7vh;
    text-align: right;
    font-weight: 800;
    line-height: 0.95;
    font-size: clamp(26px, 4.6vw, 30px);
    text-shadow: 0 2px 18px rgba(0,0,0,0.65);
  }
  
  /* Sections */
  section{
    padding: 64px 18px;
  }
  .section-heading{
    max-width: var(--wrap);
    margin: 0 auto 28px;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: clamp(20px, 2.6vw, 34px);
  }
  .section-title{
    margin:0 0 10px;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 500;
  }
  
  /* ABOUT */
  .about{
    background:
      linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
      url("hero image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a; /* fallback */
  }
  
  
  .about__frame{
    max-width: var(--wrap);
    margin: 0 auto;
    background: #0e0e0e;
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    overflow: hidden;
  }
  .about__left{
    padding: 54px 54px 46px;
  }
  .about__name{
    font-size: 16px;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    color: var(--muted);
  }
  .about__left p{
    max-width: 46ch;
    margin: 0 0 16px;
    font-weight: 600;
    line-height: 1.5;
  }
  .about__links{
    display: flex;
    gap: 16px;
    margin-top: 18px;
    font-weight: 700;
  }
  .about__links a{
    color: var(--text);
    text-decoration: none;
    opacity: 0.85;
  }
  .about__links a:hover{
    opacity: 1;
  }
  .about__right{
    background: #0b0b0b;
  }
  .about__right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.02) saturate(0.95);
  }
  
  /* GALLERY (masonry) */
  .gallery{
    background:
      linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
      url("hero image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a; /* fallback */
  }
  
  .masonry{
    max-width: var(--wrap);
    margin: 0 auto;
    column-count: 3;
    column-gap: 14px;
  }
  .masonry img{
    width: 100%;
    margin: 0 0 14px;
    display: block;
    border-radius: 2px;
    break-inside: avoid;
    cursor: pointer;
    transition: transform 160ms ease, opacity 160ms ease;
    opacity: 0.95;
  }
  .masonry img:hover{
    transform: scale(1.01);
    opacity: 1;
  }
  
  /* MOTION */
  .motion{
    background:
      linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
      url("hero image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a; /* fallback */
  }
  
  /* Make the section feel tighter + less massive */
  .video-grid{
    max-width: 1000px;                /* smaller than --wrap */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns desktop */
    gap: 20px;
  }
  
  .video-card{
    border: 1px solid var(--line);
    background: #0b0b0b;
  }
  
  .video-embed{
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #000;
  }
  
  .video-player{
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    object-fit: contain;
  }
  
  .video-title{
    padding: 14px 12px 18px;
    text-align: center;
    letter-spacing: 0.06em;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--muted);
  }
  
  /* FOOTER */
.site-footer{
    background: #000;
    border-top: 1px solid var(--line);
    padding: 48px 18px 28px;
  }
  
  .footer-inner{
    max-width: var(--wrap);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
  }
  
  .footer-brand{
    font-size: 14px;
    letter-spacing: 0.2em;
    font-weight: 700;
  }
  
  .footer-sub{
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.04em;
  }
  
  .footer-right{
    display: flex;
    gap: 20px;
  }
  
  .footer-right a{
    font-size: 12px;
    text-decoration: none;
    color: var(--text);
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }
  
  .footer-right a:hover{
    opacity: 1;
  }
  
  .footer-bottom{
    max-width: var(--wrap);
    margin: 32px auto 0;
    font-size: 11px;
    color: var(--muted);
    opacity: 0.6;
  }
  
  /* Mobile */
  @media (max-width: 540px){
    .footer-inner{
      flex-direction: column;
      gap: 18px;
    }
  
    .footer-right{
      gap: 16px;
    }
  }
/* WHAT I DO */
.what-i-do{
    background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("wwq.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1a; /* fallback */
}
  
  .what-grid{
    max-width: var(--wrap);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  
  .what-card{
    border: 1px solid var(--line);
    background: rgba(14,14,14,0.78);
    padding: 22px 22px 20px;
    transition: transform 180ms ease, opacity 180ms ease;
    opacity: 0.95;
  }
  
  .what-card:hover{
    transform: translateY(-2px);
    opacity: 1;
  }
  
  .what-tag{
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
  }
  
  .what-title{
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
  }
  
  .what-text{
    margin: 0 0 16px;
    color: var(--text);
    line-height: 1.55;
    font-weight: 600;
    max-width: 55ch;
  }
  
  .what-notes{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
  }
  
  .what-notes span{
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--line);
    padding: 6px 10px;
    border-radius: 999px;
  }
  
  /* Mobile */
  @media (max-width: 900px){
    .what-grid{
      grid-template-columns: 1fr;
    }
  }
  
  /* GEAR (clean kit list) */
.gear{
    background:
      linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
      url("background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a; /* fallback */
  }
  
  .gear-wrap{
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  
  .gear-card{
    border: 1px solid var(--line);
    background: rgba(14,14,14,0.72);
    padding: 16px 16px 10px;
    opacity: 0.96;
    transition: transform 160ms ease, opacity 160ms ease;
  }
  
  .gear-card:hover{
    transform: translateY(-2px);
    opacity: 1;
  }
  
  .gear-head{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 10px;
  }
  
  .gear-tag{
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  
  .gear-items{
    display: grid;
    gap: 8px;
  }
  
  .gear-item{
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.30);
  }
  
  .gear-note{
    max-width: 980px;
    margin: 18px auto 0;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--muted);
    opacity: 0.75;
  }
  
  /* Mobile */
  @media (max-width: 820px){
    .gear-wrap{ grid-template-columns: 1fr; }
  }
  

  /* DIRECTION (dark, designed, not-essay) */
/* CLEAN DIRECTION SECTION */
.direction-clean{
    background: #060606;
    border-top: 1px solid var(--line);
  }
  
  .direction-clean__wrap{
    max-width: 900px;
    margin: 0 auto;
    padding: 96px 18px 88px;
  }
  
  .direction-clean__title{
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin: 0 0 56px;
    letter-spacing: 0.02em;
  }
  
  /* List */
  .direction-clean__list{
    display: grid;
    gap: 44px;
  }
  
  /* Item */
  .direction-item{
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 28px;
    align-items: flex-start;
  }
  
  .direction-item__num{
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: rgba(242,242,242,0.35);
    padding-top: 6px;
  }
  
  .direction-item__content h3{
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
  }
  
  .direction-item__content p{
    margin: 0;
    max-width: 65ch;
    line-height: 1.6;
    font-weight: 600;
    color: rgba(242,242,242,0.75);
  }
  
  /* Footer */
  .direction-clean__footer{
    margin-top: 64px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(242,242,242,0.55);
    letter-spacing: 0.08em;
  }
  /* Make the embed area a real 16:9 frame */
.video-embed{
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
  }
  
  /* If you keep "vertical", give it 9:16 */
  .video-embed.vertical{
    aspect-ratio: 9 / 16;
  }
  
  /* Force the iframe to FULL COVER the frame */
  .video-embed iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  .video-card{
    border: 1px solid var(--line);
    background: #0b0b0b;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .video-title{
    margin-top: auto;
  }
  