    :root {
      --bg: #0a0a0a;
      --surface: #111111;
      --surface2: #1a1a1a;
      --white: #ffffff;
      --muted: #888888;
      --accent: #ffffff;
      --border: #2a2a2a;
      --pink: #e91e8c;
    }

    * { box-sizing: border-box; }
    body {
      background: #fff;
      color: #333;
      font-family: 'Barlow', sans-serif;
      font-size: 15px;
      margin: 0;
    }

    a { color: inherit; text-decoration: none; }
    a:hover { color: #000; }

    /* -- NAVBAR -- */
    .site-nav {
      background: #fff;
      padding: 18px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .nav-logo-box {
      border: 2px solid #000;
      padding: 2px 8px;
      font-weight: 800;
      font-size: 20px;
      letter-spacing: 1px;
      line-height: 1.1;
    }
    .nav-logo-sub {
      font-size: 11px;
      line-height: 1.6;
      color: var(--white);
      padding-top: 2px;
    }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: #000;
      transition: opacity 0.2s;
    }
    .nav-links a:hover { opacity: 0.6; }

    /* -- HERO -- */
    .hero {
      position: relative;
      width: 100%;
      height: 500px;
      overflow: hidden;
      background: #1a1a1a;
    }
    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.75);
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
    }
    .hero-caption {
      position: absolute;
      bottom: 30px;
      left: 30px;
      max-width: 380px;
    }
    .hero-caption h1 {
      background: rgba(0,0,0,0.75);
      display: inline;
      padding: 4px 8px;
      font-size: 24px;
      font-weight: 700;
      line-height: 1.4;
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
    }
    .hero-read-more {
      position: absolute;
      bottom: 30px;
      right: 30px;
      background: var(--white);
      color: var(--bg);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s, color 0.2s;
    }
    .hero-read-more:hover { background: #ddd; color: var(--bg); }
    .hero-arrow { font-size: 16px; }

    /* -- NEWS GRID -- */
    .section-news {
      padding: 40px 30px 20px;
    }
    .news-card {
      border-bottom: none;
	  padding-bottom:5%;
	  
    }
    .news-card img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      display: block;
    }
    .news-card h3 {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 6px;
    }
    .news-date {
      color: var(--pink);
      font-size: 13px;
      margin-bottom: 10px;
	  line-height: 30px;
    }
	 .news-date span{
      color: #333;
      font-size: 13px;
      margin-bottom: 10px;
	  line-height: 30px;
	  font-weight:bold;
    }
    .news-desc {
      color: #333;
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .btn-read-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid #333;
      color: #333;
      background: transparent;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 8px 14px;
      transition: background 0.2s, color 0.2s;
    }
    .btn-read-more:hover {
      background: var(--white);
      color: var(--bg);
      text-decoration: none;
    }
    .news-divider {
      border-top: 1px solid var(--border);
      margin: 30px 0 24px;
    }
    .btn-see-all-news {
      display: block;
      width: fit-content;
      margin: 0 auto 50px;
      border: 1px solid var(--white);
      color: var(--white);
      background: transparent;
      font-size: 13px;
      font-weight: 500;
      padding: 10px 28px;
      letter-spacing: 0.5px;
      transition: background 0.2s, color 0.2s;
    }
    .btn-see-all-news:hover {
      background: var(--white);
      color: var(--bg);
      text-decoration: none;
    }

    /* -- TABS -- */
    .portfolio-tabs {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-bottom: 30px;
    }
    .tab-btn {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 10px 30px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .tab-btn.active {
      background: var(--white);
      color: var(--bg);
      border-color: var(--white);
    }
    .tab-btn:hover:not(.active) {
      color: var(--white);
      border-color: var(--white);
    }

    /* -- PORTFOLIO GRID -- */
    .section-portfolio {
      padding: 0 30px 50px;
    }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }
    .portfolio-card {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: var(--surface2);
      cursor: pointer;
    }
    .portfolio-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
      filter: brightness(0.7);
    }
    .portfolio-card:hover img { transform: scale(1.04); filter: brightness(0.5); }
    .portfolio-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 16px;
    }
    .portfolio-card-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      line-height: 1.2;
      text-align: center;
      width: 100%;
    }
    .portfolio-card-status {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #aaaaaa;
      text-align: center;
      margin-top: 3px;
    }
    .portfolio-card-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 5px;
    }
    .portfolio-card-logo img {
      width: auto;
      height: 24px;
      filter: brightness(10);
      object-fit: contain;
    }
    .btn-see-all {
      display: block;
      width: 260px;
      margin: 30px auto 0;
      border: 1px solid var(--white);
      color: var(--white);
      background: transparent;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 12px 0;
      text-align: center;
      transition: background 0.2s, color 0.2s;
    }
    .btn-see-all:hover {
      background: var(--white);
      color: var(--bg);
      text-decoration: none;
    }

    /* -- FOOTER -- */
    footer {
      background: #0d0d0d;
      border-top: 1px solid var(--border);
      padding: 24px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-logo-box {
      border: 2px solid var(--white);
      padding: 2px 8px;
      font-weight: 800;
      font-size: 16px;
      letter-spacing: 1px;
      line-height: 1.1;
    }
    .footer-copy {
      font-size: 12px;
      color: var(--muted);
    }
    .footer-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .footer-links a {
      font-size: 12px;
      color: var(--muted);
      text-decoration: underline;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-credit {
      font-size: 11px;
      color: #555;
      text-align: right;
    }

    /* -- PLACEHOLDER IMAGES (colored blocks) -- */
    .img-placeholder {
      background: var(--surface2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #444;
      font-size: 12px;
    }
    .hero-placeholder {
      width: 100%;
      height: 500px;
      background: linear-gradient(135deg, #1a1a2e 0%, #2d2d2d 50%, #1a1a1a 100%);
      position: relative;
      overflow: hidden;
    }
    .hero-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../img/Recommended-By.jpg') center/cover no-repeat;
      <!-- filter: brightness(0.5) grayscale(0.3);  -->
    }

    /* card placeholder tints */
    .card-pretty { background: linear-gradient(135deg, #1a0025 0%, #3d0060 100%); }
    .card-asc    { background: linear-gradient(135deg, #0a001a 0%, #1a0066 100%); }
    .card-dune   { background: linear-gradient(135deg, #1a0a00 0%, #3d2200 100%); }
    .card-dune-s2 { background: linear-gradient(135deg, #1a1000 0%, #3d2800 100%); }
    .card-dune3  { background: linear-gradient(135deg, #1a0800 0%, #4d1800 100%); }
    .card-tv     { background: linear-gradient(135deg, #000000 0%, #111111 100%); }
    .card-orphan { background: linear-gradient(135deg, #0a0a14 0%, #14141e 100%); }
    .card-spy    { background: linear-gradient(135deg, #1a0000 0%, #3d0000 100%); }
    .card-3body  { background: linear-gradient(135deg, #000a14 0%, #001428 100%); }

    .portfolio-card .card-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* -- HAMBURGER BUTTON -- */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 1001;
    }
    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: #000;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* -- MOBILE MENU OVERLAY -- */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: #fff;
      z-index: 1000;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .mobile-menu.open {
      display: flex;
      opacity: 1;
    }
    .mobile-menu ul {
      list-style: none;
      margin: 0;
      padding: 0;
      text-align: center;
    }
    .mobile-menu ul li {
      border-bottom: 1px solid var(--border);
    }
    .mobile-menu ul li:first-child {
      border-top: 1px solid var(--border);
    }
    .mobile-menu ul li a {
      display: block;
      font-size: 20px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #000;
      padding: 20px 60px;
      transition: color 0.2s, background 0.2s;
    }
    .mobile-menu ul li a:hover {
      color: var(--bg);
      background: var(--white);
      text-decoration: none;
    }
    .mobile-menu-logo {
      position: absolute;
      top: 18px;
      left: 30px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
	.container {
  max-width:1150px;
}

.sub{
    color: var(--grey);
    font-size: 13px;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .roll-meta{
    display:flex;
    justify-content:center;
    gap: 28px;
    margin-top: 22px;
    font-size: 11px;
    color: var(--grey);
    letter-spacing: 0.08em;
  }
  .roll-meta b{ color: var(--paper-dim); font-weight: 500; }

  main{
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 6% 80px;
  }

  .sheet{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .frame{
    position:relative;
    background: var(--paper);
    padding: 10px 10px 34px;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.35);
    transform: rotate(var(--tilt, 0deg));
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .frame:nth-child(1){ --tilt: -0.6deg; }
  .frame:nth-child(2){ --tilt: 0.4deg; }
  .frame:nth-child(3){ --tilt: -0.3deg; }
  .frame:nth-child(4){ --tilt: 0.5deg; }
  .frame:nth-child(5){ --tilt: -0.5deg; }
  .frame:nth-child(6){ --tilt: 0.3deg; }

  .frame:hover{
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  }
  .frame:hover .frame-img img{ filter: saturate(1.05) contrast(1.02); }
  .frame:focus-visible{
    outline: 2px solid var(--safelight);
    outline-offset: 4px;
  }

  .frame-img{
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--ink);
  }
  .frame-img img{
    width:100%; height:100%;
    object-fit: cover;
    display:block;
    filter: saturate(0.96);
    transition: transform 0.6s ease, filter 0.4s ease;
  }
  .frame:hover .frame-img img{ transform: scale(1.045); }

  .frame-foot{
    display:flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 10px;
    color: var(--ink);
  }
  .frame-num{
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--safelight-dim);
    font-weight: 500;
  }
  .frame-cap{
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 13.5px;
    color: var(--ink);
  }

  .frame.picked::after{
    content:"";
    position:absolute;
    inset: -8px;
    border: 2px solid var(--safelight);
    border-radius: 50%;
    transform: rotate(-4deg);
    pointer-events:none;
    opacity: 0.85;
  }

  footer{
    text-align:center;
    color: var(--grey);
    font-size: 11px;
    letter-spacing: 0.08em;
    padding-bottom: 30px;
  }

  /* ---------- Lightbox ---------- */
  .lightbox{
    position: fixed;
    inset: 0;
    background: rgba(10,8,7,0.94);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 100;
    padding: 30px;
  }
  .lightbox.open{ opacity: 1; visibility: visible; }
  .lightbox::before{
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at 50% 40%, rgba(184,66,47,0.10), transparent 60%);
    pointer-events:none;
  }

  .lb-stage{
    position:relative;
    max-width: 900px;
    width: 100%;
    text-align:center;
  }
  .lb-frame{
    background: var(--paper);
    padding: 16px 16px 40px;
    border-radius: 2px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
    transform: scale(0.94);
    transition: transform 0.3s ease;
  }
  .lightbox.open .lb-frame{ transform: scale(1); }

  .lb-img-wrap{
    max-height: 68vh;
    background: var(--ink);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
  }
  .lb-img-wrap img{
    max-width:100%;
    max-height: 68vh;
    display:block;
  }

  .lb-foot{
    display:flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 14px;
    color: var(--ink);
    padding: 0 4px;
  }
  .lb-cap{
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 18px;
  }
  .lb-num{
    font-size: 12px;
    color: var(--safelight-dim);
    letter-spacing: 0.06em;
  }

  .lb-close, .lb-nav{
    position:absolute;
    background: transparent;
    border: 1px solid rgba(239,232,218,0.35);
    color: var(--paper);
    font-family: 'IBM Plex Mono', monospace;
    cursor:pointer;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 16px;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .lb-close:hover, .lb-nav:hover{
    background: rgba(184,66,47,0.25);
    border-color: var(--safelight);
  }
  .lb-close{ top: -54px; right: 0; }
  .lb-prev{ left: -56px; top: 50%; transform: translateY(-50%); }
  .lb-next{ right: -56px; top: 50%; transform: translateY(-50%); }

  @media (max-width: 860px){
    .sheet{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .lb-prev{ left: 8px; }
    .lb-next{ right: 8px; }
    .lb-close{ top: -46px; }
  }
  @media (max-width: 520px){
    .sheet{ grid-template-columns: 1fr; }
    .roll-meta{ flex-wrap: wrap; gap: 12px 22px; }
  }

  @media (prefers-reduced-motion: reduce){
    *{ transition: none !important; }
  }