@charset "UTF-8";

/* Theme Name:   original-child
 Template:     original */
/* Add your custom css below */
/* =========================
RESET
========================= */
/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#080808;
  color:#fff;
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","Yu Gothic","YuGothic",sans-serif;
  line-height:1.7;
  overflow-x:hidden;
}

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

img{
  max-width:100%;
  display:block;
}

ul,ol{
  list-style:none;
}

input,textarea,select,button{
  font:inherit;
}

/* ========================================
COMMON
======================================== */
.section{
  position:relative;
  max-width:1240px;
  margin:0 auto;
  padding:110px 32px;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  margin-bottom:50px;
}

.section-label{
  font-size:12px;
  letter-spacing:.35em;
  color:rgba(255,222,140,.88);
  margin-bottom:22px;
}

.section-title{
  font-size:clamp(38px,4vw,56px);
  line-height:1.12;
  font-weight:700;
  letter-spacing:-.03em;
}

.section-lead{
  max-width:620px;
  font-size:14px;
  color:rgba(255,255,255,.56);
}

.grain{
  pointer-events:none;
  position:absolute;
  inset:0;
  z-index:1;
  opacity:.16;
  background-image:radial-gradient(rgba(255,255,255,.32) 1px,transparent 1px);
  background-size:18px 18px;
  mask-image:linear-gradient(to bottom,#000,transparent 80%);
}

.glass-card{
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
  border-radius:32px;
}

.small{
  font-size:70%;
}

/* ========================================
HEADER
======================================== */
.site-header{
  position:fixed;
  top:0;
  left:0;
  z-index:100;
  width:100%;
  border-bottom:1px solid rgba(255,255,255,.1);
  background:rgba(8,8,8,.72);
  backdrop-filter:blur(18px);
}

.header-inner{
  max-width:1240px;
  margin:0 auto;
  padding:18px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:18px;
  font-weight:700;
  letter-spacing:.28em;
}

.global-nav{
  display:flex;
  gap:28px;
  font-size:12px;
  letter-spacing:.22em;
  color:rgba(255,255,255,.7);
}

.global-nav a{
  transition:.25s;
}

.global-nav a:hover,
.global-nav .current{
  color:#fff;
}

/* ========================================
HERO COMMON
======================================== */
.hero,
.page-hero{
  position:relative;
  min-height:720px;
  padding:170px 32px 100px;
  overflow:hidden;
  display:flex;
  align-items:center;
}

.hero::before,
.page-hero::before{
  content:"";
  position:absolute;
  left:-14%;
  top:8%;
  width:560px;
  height:560px;
  border-radius:50%;
  background:rgba(255,255,255,.09);
  filter:blur(90px);
}

.hero::after,
.page-hero::after{
  content:"";
  position:absolute;
  right:max(-560px, calc((100vw - 1240px) / 2 - 200px));
  bottom:-20%;
  width:720px;
  height:720px;
  border-radius:50%;
  background:rgba(212,175,55,.24);
  filter:blur(100px);
}

.hero-inner,
.page-hero-inner{
  position:relative;
  z-index:2;
  max-width:1240px;
  width:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:70px;
  align-items:center;
}

.hero-title,
.page-title{
  font-size:clamp(48px,6vw,80px);
  line-height:1.05;
  letter-spacing:-.04em;
  font-weight:700;
}

.page-title span{
  display:block;
  margin-top:18px;
  font-size:clamp(22px,3vw,34px);
  letter-spacing:.12em;
  color:rgba(255,255,255,.68);
}

.hero-text,
.page-lead{
  margin-top:34px;
  max-width:580px;
  font-size:17px;
  color:rgba(255,255,255,.68);
}

.hero-tags{
  margin-top:34px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-tags span{
  padding:9px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  font-size:12px;
  letter-spacing:.14em;
  color:rgba(255,255,255,.66);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  background:rgba(255,255,255,.06);
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  margin:5px auto;
  background:#fff;
  border-radius:999px;
  transition:.25s;
}

/* HEADER - SP MENU */
@media (max-width:900px){
  body.menu-open{
    overflow:hidden;
  }
  .site-header{
    z-index:9999;
  }
  .menu-toggle{
    display:block;
    position:relative;
    z-index:10002;
  }
  .menu-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2){
    opacity:0;
  }
  .menu-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }
  .global-nav{
    position:fixed;
    inset:0;
    z-index:10001;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:28px;
    width:100vw;
    height:100vh;
    padding:80px 24px;
    border:none;
    background:rgba(8,8,8,.96);
    backdrop-filter:blur(22px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:none;
  }
  .global-nav.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transition:opacity .55s ease;
  }
  .global-nav a{
    position:relative;
    display:block;
    width:auto;
    font-size:20px;
    line-height:1;
    letter-spacing:.24em;
    color:#fff;
    text-align:center;
  }
  .global-nav a::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:-14px;
    width:54px;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
    transform:translateX(-50%);
  }
  .global-nav a:last-child::after{
    display:none;
  }
}

/* ========================================
BUTTON
======================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:160px;
  padding:14px 26px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  transition:.25s;
}

.btn-primary{
  background:#fff;
  color:#000;
}

.btn-primary:hover{
  background:#fff0ba;
}

.btn-outline{
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
}

.btn-outline:hover{
  background:rgba(255,255,255,.08);
}

.hero-buttons{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

/* ========================================
TOP
======================================== */
.hero-visual{
  position:relative;
}

.visual-card{
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.05);
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.visual-card img{
  width:100%;
  height:560px;
  object-fit:cover;
  filter:saturate(.9) contrast(1.05);
}

.works-badge{
  position:absolute;
  left:28px;
  bottom:-32px;
  padding:20px 24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(18px);
  box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.works-badge span{
  display:block;
  color:rgba(255,255,255,.52);
  font-size:11px;
  letter-spacing:.25em;
}

.works-badge strong{
  display:block;
  margin-top:4px;
  font-size:34px;
  line-height:1;
}

.works-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.work-card{
  overflow:hidden;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
  transition:.3s;
}

.work-card:hover{
  transform:translateY(-5px);
  background:rgba(255,255,255,.07);
}

.work-card img{
  width:100%;
  height:330px;
  object-fit:cover;
  transition:.7s;
  filter:saturate(.9) contrast(1.04);
}

.work-card:hover img{
  transform:scale(1.06);
}

.work-body{
  padding:26px;
}

.work-type{
  font-size:11px;
  letter-spacing:.25em;
  color:rgba(255,222,140,.75);
}

.work-title{
  margin-top:6px;
  font-size:24px;
  font-weight:700;
}

.work-text{
  margin-top:12px;
  color:rgba(255,255,255,.58);
  font-size:14px;
}

.work-link{
  margin-top:22px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,.86);
}

.about-box{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  overflow:hidden;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
}

.about-text{
  padding:48px;
}

.about-text p{
  margin-top:24px;
  font-size:14px;
  color:rgba(255,255,255,.6);
}

.about-info{
  margin-top:32px;
  display:grid;
  gap:12px;
  font-size:14px;
  color:rgba(255,255,255,.62);
}

.about-image{
  min-height:380px;
  background:url("assets/images/about.jpg") center/cover;
}

/* ========================================
ABOUT
======================================== */
.hero-visual{
  position:relative;
}

.hero-image{
  overflow:hidden;
  border-radius:36px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  box-shadow:0 35px 90px rgba(0,0,0,.5);
}

.hero-image img{
  width:100%;
  height:560px;
  object-fit:cover;
  filter:saturate(.9) contrast(1.05);
}

.profile-badge{
  position:absolute;
  left:28px;
  bottom:-32px;
  z-index:5;
  padding:22px 26px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(18px);
  box-shadow:0 24px 60px rgba(0,0,0,.5);
}

.profile-badge span{
  display:block;
  font-size:11px;
  letter-spacing:.24em;
  color:rgba(255,255,255,.5);
}

.profile-badge strong{
  display:block;
  margin-top:5px;
  font-size:28px;
  line-height:1.2;
}

.stats-band{
  max-width:1240px;
  margin:-40px auto 0;
  padding:0 32px;
  position:relative;
  z-index:5;
}

.stats-inner{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(16,16,16,.82);
  backdrop-filter:blur(20px);
  box-shadow:0 24px 80px rgba(0,0,0,.35);
}

.stat-item{
  padding:28px;
  border-right:1px solid rgba(255,255,255,.1);
}

.stat-item:last-child{
  border-right:none;
}

.stat-item strong{
  display:block;
  font-size:34px;
  line-height:1;
}

.stat-item span{
  display:block;
  margin-top:10px;
  font-size:11px;
  letter-spacing:.18em;
  color:rgba(255,222,140,.72);
}

.intro-grid{
  display:grid;
  grid-template-columns:.86fr 1.14fr;
  gap:56px;
  align-items:start;
}

.intro-card{
  position:sticky;
  top:110px;
  padding:28px;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
}

.portrait-frame{
  overflow:hidden;
  margin-bottom:26px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.1);
}

.portrait-frame img{
  width:100%;
  height:340px;
  object-fit:cover;
}

.intro-card h2{
  font-size:30px;
  line-height:1.35;
}

.intro-card p{
  margin-top:20px;
  font-size:14px;
  color:rgba(255,255,255,.58);
}

.skill-pills{
  margin-top:24px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.skill-pills span{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(212,175,55,.13);
  color:rgba(255,230,170,.86);
  font-size:12px;
}

.intro-text{
  display:grid;
  gap:22px;
}

.text-block{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:76px 1fr;
  gap:22px;
  padding:28px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:28px;
  background:rgba(255,255,255,.04);
}

.text-block::after{
  content:"";
  position:absolute;
  right:-80px;
  top:-80px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(212,175,55,.1);
  filter:blur(30px);
}

.text-icon{
  position:relative;
  z-index:2;
  display:grid;
  place-items:center;
  width:64px;
  height:64px;
  border-radius:22px;
  background:rgba(212,175,55,.15);
  color:#ffe08a;
  font-size:26px;
}

.text-block h3{
  position:relative;
  z-index:2;
  margin-bottom:10px;
  font-size:22px;
}

.text-block p{
  position:relative;
  z-index:2;
  font-size:15px;
  color:rgba(255,255,255,.64);
}

.gallery-strip{
  padding:20px 0 70px;
  overflow:hidden;
}

.gallery-track{
  display:grid;
  grid-template-columns:repeat(4,280px);
  gap:18px;
  width:max-content;
  padding-left:max(32px, calc((100vw - 1240px) / 2 + 32px));
}

.strip-card{
  overflow:hidden;
  height:210px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.05);
}

.strip-card:nth-child(even){
  margin-top:36px;
}

.strip-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.86) contrast(1.05);
}

.strength-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.strength-card{
  position:relative;
  overflow:hidden;
  min-height:310px;
  padding:32px;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
  transition:.25s;
}

.strength-card::before{
  content:attr(data-icon);
  position:absolute;
  right:24px;
  bottom:10px;
  font-size:90px;
  opacity:.16;
}

.strength-card:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.075);
}

.strength-number{
  margin-bottom:36px;
  font-size:13px;
  letter-spacing:.24em;
  color:rgba(255,222,140,.8);
}

.strength-card h3{
  font-size:24px;
  line-height:1.35;
  margin-bottom:16px;
}

.strength-card p{
  font-size:14px;
  color:rgba(255,255,255,.58);
}

.flow-layout{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:42px;
  align-items:center;
}

.flow-visual{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.flow-photo{
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.05);
}

.flow-photo:first-child{
  margin-top:58px;
}

.flow-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.flow-list{
  display:grid;
  gap:14px;
}

.flow-item{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:116px 1fr;
  gap:26px;
  padding:24px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  background:rgba(255,255,255,.04);
}

.flow-num{
  position:relative;
  padding-bottom:54px;
  font-size:12px;
  letter-spacing:.25em;
  color:rgba(255,222,140,.78);
}

.flow-num::after{
  position:absolute;
  left:0;
  bottom:0;
  font-size:34px;
  line-height:1;
  opacity:.9;
}

.flow-item:nth-child(1) .flow-num::after{
  content:"🎧";
}

.flow-item:nth-child(2) .flow-num::after{
  content:"◈";
}

.flow-item:nth-child(3) .flow-num::after{
  content:"📷";
}

.flow-item:nth-child(4) .flow-num::after{
  content:"⚡";
}

.flow-item h3{
  font-size:22px;
  margin-bottom:6px;
}

.flow-item p{
  font-size:14px;
  color:rgba(255,255,255,.58);
}

.company-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:stretch;
}

.company-box{
  overflow:hidden;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
}

.company-row{
  display:grid;
  grid-template-columns:220px 1fr;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.company-row:last-child{
  border-bottom:none;
}

.company-term,
.company-desc{
  padding:23px 28px;
  font-size:14px;
}

.company-term{
  color:rgba(255,222,140,.78);
  background:rgba(255,255,255,.035);
  letter-spacing:.12em;
}

.company-desc{
  color:rgba(255,255,255,.66);
}

.company-side{
  position:relative;
  overflow:hidden;
  min-height:100%;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.1);
  background:url("assets/images/company.webp") center/cover;
}

.company-side::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.74),rgba(0,0,0,.08));
}

.company-side-text{
  position:absolute;
  z-index:2;
  left:28px;
  right:28px;
  bottom:28px;
}

.company-side-text span{
  font-size:11px;
  letter-spacing:.24em;
  color:rgba(255,222,140,.82);
}

.company-side-text p{
  margin-top:8px;
  font-size:24px;
  font-weight:700;
  line-height:1.35;
}

@media (max-width:767px){
  .company-side-text p{
    font-size:20px;
  }
}

/* ========================================
PHOTO
======================================== */
.hero-photo-stack{
  position:relative;
  min-height:460px;
}

.hero-photo{
  position:absolute;
  overflow:hidden;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  box-shadow:0 35px 90px rgba(0,0,0,.5);
}

.hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.88) contrast(1.06);
}

.hero-photo.main{
  right:0;
  top:0;
  width:74%;
  height:430px;
}

.hero-photo.sub01{
  left:0;
  bottom:0;
  width:44%;
  height:260px;
}

.photo-count-badge,
.movie-count-badge,
.website-count-badge{
  position:absolute;
  right:36px;
  bottom:-12px;
  z-index:5;
  padding:22px 26px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(18px);
  box-shadow:0 24px 60px rgba(0,0,0,.5);
}

.photo-count-badge span,
.movie-count-badge span,
.website-count-badge span{
  display:block;
  font-size:11px;
  letter-spacing:.24em;
  color:rgba(255,255,255,.5);
}

.photo-count-badge strong,
.movie-count-badge strong,
.website-count-badge strong{
  display:block;
  margin-top:5px;
  font-size:34px;
  line-height:1;
}

.filter-wrap{
  position:sticky;
  top:72px;
  z-index:20;
  margin-bottom:38px;
  padding:16px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  background:rgba(8,8,8,.68);
  backdrop-filter:blur(20px);
  display:flex;
  gap:10px;
  overflow-x:auto;
  scrollbar-width:none;
}

.filter-wrap::-webkit-scrollbar{
  display:none;
}

.filter-btn{
  flex:0 0 auto;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.68);
  padding:10px 18px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.16em;
  cursor:pointer;
  transition:.25s;
}

.filter-btn:hover,
.filter-btn.active{
  background:#fff;
  color:#000;
}

.masonry{
  position:relative;
  width:100%;
}

.photo-item{
  position:relative;
  display:block;
  width:calc(25% - 14px);
  margin-bottom:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  border-radius:26px;
  background:rgba(255,255,255,.045);
  cursor:pointer;
  box-shadow:0 16px 44px rgba(0,0,0,.28);
}

.photo-item img{
  width:100%;
  object-fit:cover;
  transition:.65s;
  filter:saturate(.9) contrast(1.04);
}

.photo-item:hover img{
  transform:scale(1.055);
}

.photo-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.72),transparent 54%);
  opacity:0;
  transition:.28s;
}

.photo-item:hover::after{
  opacity:1;
}

.photo-caption{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:2;
  opacity:0;
  transform:translateY(10px);
  transition:.28s;
}

.photo-item:hover .photo-caption{
  opacity:1;
  transform:translateY(0);
}

.photo-category{
  display:block;
  margin-bottom:4px;
  font-size:10px;
  letter-spacing:.24em;
  color:rgba(255,222,140,.88);
}

.photo-caption strong{
  color:#FFFFFF;
  display:block;
  font-size:17px;
  line-height:1.35;
}

.photo-item{
  opacity:0;
  transition:opacity .45s ease;
}

.photo-item.is-visible{
  opacity:1;
}

/* ========================================
LIGHTBOX
======================================== */
.lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:32px;
  background:rgba(0,0,0,.88);
  backdrop-filter:blur(14px);
}

.lightbox.active{
  display:flex;
}

.lightbox-inner{
  position:relative;
  max-width:min(1180px,92vw);
  max-height:88vh;
}

.lightbox-img{
  max-width:100%;
  max-height:82vh;
  border-radius:24px;
  box-shadow:0 30px 100px rgba(0,0,0,.7);
}

.lightbox-info{
  margin-top:16px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:rgba(255,255,255,.82);
  font-size:14px;
}

.lightbox-info span{
  color:rgba(255,222,140,.82);
  letter-spacing:.18em;
  font-size:11px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next{
  position:fixed;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  backdrop-filter:blur(18px);
  cursor:pointer;
  transition:.25s;
  z-index:100;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{
  background:rgba(255,255,255,.18);
}

.lightbox-close{
  top:28px;
  right:28px;
  width:54px;
  height:54px;
  border-radius:50%;
  font-size:28px;
  line-height:1;
}

.lightbox-prev,
.lightbox-next{
  top:50%;
  transform:translateY(-50%);
  width:58px;
  height:58px;
  border-radius:50%;
  font-size:34px;
  line-height:1;
}

.lightbox-prev{
  left:28px;
}

.lightbox-next{
  right:28px;
}

.lightbox-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative;
}

.lightbox-img{
  max-height:72vh;
}

.lightbox-info{
  width:100%;
  min-height:44px;
  position:absolute;
  left:0;
  right:0;
  bottom:-54px;
}

.lightbox-info{
  opacity:0;
  transition:opacity .25s ease;
}

.lightbox.loaded .lightbox-info{
  opacity:1;
}

/* ========================================
MOVIE
======================================== */
.hero-movie-stack{
  position:relative;
  min-height:470px;
}

.hero-movie{
  position:absolute;
  overflow:hidden;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  box-shadow:0 35px 90px rgba(0,0,0,.5);
}

.hero-movie img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.86) contrast(1.08);
}

.hero-movie.main{
  right:0;
  top:0;
  width:78%;
  height:430px;
}

.hero-movie.sub{
  left:0;
  bottom:0;
  width:44%;
  height:240px;
}

.hero-movie .play-badge{
  position:absolute;
  left:50%;
  top:50%;
  z-index:5;
  width:72px;
  height:72px;
  transform:translate(-50%,-50%);
  display:block;
  border-radius:50%;
  background:rgba(0,0,0,.58);
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(14px);
  box-shadow:0 18px 50px rgba(0,0,0,.45);
}

.hero-movie .play-badge{
  position:absolute;
  left:50%;
  top:50%;
  z-index:5;
  width:88px;
  height:88px;
  transform:translate(-50%,-50%);
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(0,0,0,.58);
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(14px);
  color:#fff;
  font-size:32px;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
}

@media (max-width:767px){
  .hero-movie .play-badge{
    width:58px;
    height:58px;
    font-size:20px;
    z-index:2;
  }
}

.hero-movie .play-badge::before,
.hero-movie .play-badge::after{
  content:none;
}

.movie-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.movie-card{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  border-radius:32px;
  background:rgba(255,255,255,.045);
  box-shadow:0 20px 60px rgba(0,0,0,.28);
}

.movie-thumb{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  border:none;
  background:#111;
  color:#fff;
  cursor:pointer;
  overflow:hidden;
  display:block;
}

.movie-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.65s;
  filter:saturate(.9) contrast(1.06);
}

.movie-thumb:hover img{
  transform:scale(1.055);
}

.movie-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.72),transparent 56%);
}

.movie-play{
  position:absolute;
  left:50%;
  top:50%;
  z-index:3;
  width:76px;
  height:76px;
  border-radius:50%;
  display:grid;
  place-items:center;
  transform:translate(-50%,-50%);
  background:rgba(255,255,255,.92);
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  transition:.25s;
}

.movie-thumb:hover .movie-play{
  transform:translate(-50%,-50%) scale(1.08);
}

.movie-play::before{
  content:"";
  display:block;
  margin-left:5px;
  width:0;
  height:0;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  border-left:20px solid #000;
}

.movie-label{
  position:absolute;
  left:22px;
  bottom:18px;
  z-index:3;
  font-size:11px;
  letter-spacing:.22em;
  color:rgba(255,222,140,.88);
}

.movie-body{
  padding:24px 26px 28px;
}

.movie-body h3{
  font-size:24px;
  line-height:1.35;
  margin-bottom:10px;
}

.movie-body p{
  color:rgba(255,255,255,.58);
  font-size:14px;
}

.movie-meta{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:9px;
}

.movie-meta span{
  padding:7px 10px;
  border-radius:999px;
  background:rgba(212,175,55,.12);
  color:rgba(255,230,170,.86);
  font-size:11px;
  letter-spacing:.12em;
}

.movie-modal{
  position:fixed;
  inset:0;
  z-index:999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:32px;
  background:rgba(0,0,0,.9);
  backdrop-filter:blur(14px);
}

.movie-modal.active{
  display:flex;
}

.movie-modal-inner{
  width:min(1100px,92vw);
}

.movie-player{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:26px;
  background:#000;
  box-shadow:0 30px 100px rgba(0,0,0,.72);
}

.movie-player video{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  background:#000;
}

.movie-modal-info{
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  gap:24px;
  color:rgba(255,255,255,.82);
}

.movie-modal-info span{
  display:block;
  margin-bottom:5px;
  font-size:11px;
  letter-spacing:.22em;
  color:rgba(255,222,140,.82);
}

.modal-close{
  position:fixed;
  top:28px;
  right:28px;
  width:54px;
  height:54px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  backdrop-filter:blur(18px);
  cursor:pointer;
  font-size:28px;
  line-height:1;
  transition:.25s;
}

.modal-close:hover{
  background:rgba(255,255,255,.18);
}

/* ========================================
WEBSITE
======================================== */
.hero-website-stack{
  position:relative;
  width:100%;
  max-width:560px;
  min-height:470px;
  margin-left:auto;
}

.browser-card{
  position:absolute;
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  box-shadow:0 35px 90px rgba(0,0,0,.5);
}

.browser-card.main{
  right:0;
  top:0;
  width:80%;
  height:390px;
}

.browser-card.sub{
  left:0;
  bottom:0;
  width:45%;
  height:250px;
}

.browser-top{
  height:38px;
  display:flex;
  align-items:center;
  gap:7px;
  padding:0 16px;
  border-bottom:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.08);
}

.browser-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:rgba(255,255,255,.38);
}

.browser-card img{
  width:100%;
  height:calc(100% - 38px);
  object-fit:cover;
  filter:saturate(.86) contrast(1.06);
}

.website-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.website-card{
  overflow:hidden;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
  box-shadow:0 20px 60px rgba(0,0,0,.28);
  transition:.3s;
}

.website-card:hover{
  transform:translateY(-5px);
  background:rgba(255,255,255,.07);
}

.website-thumb{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/11;
  background:#111;
}

.website-thumb::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  z-index:2;
  width:100%;
  height:34px;
  background:rgba(0,0,0,.42);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.1);
}

.website-thumb::after{
  content:"";
  position:absolute;
  left:15px;
  top:12px;
  z-index:3;
  width:9px;
  height:9px;
  border-radius:50%;
  background:#ff5f57;
  box-shadow:16px 0 0 #febc2e,
    32px 0 0 #28c840;
}

.website-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.65s;
  filter:saturate(.88) contrast(1.04);
}

.website-card:hover .website-thumb img{
  transform:scale(1.055);
}

.website-body{
  padding:24px 24px 26px;
}

.website-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  letter-spacing:.12em;
}

.website-status.live{
  background:rgba(212,175,55,.13);
  color:rgba(255,230,170,.9);
}

.website-status.closed{
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.56);
}

.website-status::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:currentColor;
}

.website-body h3{
  font-size:23px;
  line-height:1.35;
  margin-bottom:12px;
}

.website-body p{
  min-height:72px;
  color:rgba(255,255,255,.58);
  font-size:14px;
}

.website-actions{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.site-link,
.closed-text{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:130px;
  padding:11px 18px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
}

.site-link{
  background:#fff;
  color:#000;
}

.site-link:hover{
  background:#fff0ba;
}

.closed-text{
  border:1px solid rgba(255,255,255,.16);
  color:rgba(255,255,255,.52);
}

.scope-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.scope-list span{
  padding:6px 9px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.58);
  font-size:11px;
}

/* ========================================
CONTACT
======================================== */
.contact-section{
  padding:80px 20px 120px;
}

.contact-box{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  padding:64px;
  border-radius:36px;
  background:linear-gradient(
      180deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.03)
    );
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(20px);
  overflow:hidden;
  box-shadow:0 40px 100px rgba(0,0,0,.45);
}

.contact-box::before{
  content:'';
  position:absolute;
  width:520px;
  height:520px;
  right:-180px;
  top:-180px;
  border-radius:50%;
  background:radial-gradient(
      circle,
      rgba(220,220,230,.18),
      transparent 70%
    );
  pointer-events:none;
}

.contact-box .section-title{
  margin-bottom:18px;
  font-size:clamp(32px, 4vw, 54px);
}

@media (max-width:767px){
  .contact-page .section-title{
    font-size:26px;
  }
}

.contact-box p{
  max-width:640px;
  color:rgba(255,255,255,.72);
}

.contact-box .btn{
  margin-top:34px;
}

.form-grid{
  margin-top:34px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

input,
textarea,
select{
  width:100%;
  border:1px solid #ddd;
  border-radius:18px;
  padding:16px 18px;
  outline:none;
  background:#fff;
}

input:focus,
textarea:focus,
select:focus{
  border-color:#111;
}

.full{
  grid-column:1/-1;
}

textarea{
  min-height:150px;
  resize:vertical;
}

.submit-btn{
  margin-top:24px;
  border:none;
  border-radius:999px;
  background:#000;
  color:#fff;
  padding:16px 34px;
  font-weight:700;
  cursor:pointer;
  transition:.25s;
}

.submit-btn:hover{
  opacity:.85;
}

/* ========================================
CONTACT PAGE
======================================== */
.contact-layout{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:28px;
  align-items:start;
}

.contact-info{
  display:grid;
  gap:18px;
}

.info-card{
  position:relative;
  overflow:hidden;
  padding:28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
}

.info-card::after{
  content:attr(data-icon);
  position:absolute;
  right:22px;
  bottom:4px;
  font-size:76px;
  opacity:.14;
}

.info-card span{
  display:block;
  margin-bottom:10px;
  font-size:11px;
  letter-spacing:.24em;
  color:rgba(255,222,140,.78);
}

.info-card strong{
  display:block;
  font-size:22px;
  line-height:1.4;
}

.info-card p{
  margin-top:10px;
  color:rgba(255,255,255,.58);
  font-size:14px;
}

.form-box{
  position:relative;
  overflow:hidden;
  padding:40px;
  border-radius:34px;
  background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(247,244,236,.98));
  color:#000;
  box-shadow:0 40px 120px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.7);
}

.form-inner{
  position:relative;
  z-index:2;
}

.form-box .section-label{
  color:#777;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.service-grid-contact{
  grid-template-columns:repeat(3,1fr);
}

.service-grid-contact .service-card:nth-child(4){
  grid-column:1/-1;
  min-height:210px;
}

.service-card{
  position:relative;
  overflow:hidden;
  min-height:250px;
  padding:30px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
}

.service-card::after{
  content:attr(data-icon);
  position:absolute;
  right:22px;
  bottom:2px;
  font-size:88px;
  opacity:.15;
}

.service-card span{
  display:block;
  margin-bottom:34px;
  font-size:12px;
  letter-spacing:.24em;
  color:rgba(255,222,140,.78);
}

.service-card h3{
  font-size:24px;
  line-height:1.35;
  margin-bottom:14px;
}

.service-card p{
  color:rgba(255,255,255,.58);
  font-size:14px;
}

.flow-card{
  position:relative;
  padding:28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
}

.flow-card h3{
  font-size:21px;
  margin-bottom:10px;
}

.flow-card p{
  color:rgba(255,255,255,.58);
  font-size:14px;
}

.flow-icon{
  display:block;
  margin-bottom:18px;
  font-size:34px;
  color:rgba(255,222,140,.9);
}

/* ========================================
FOOTER
======================================== */
.site-footer{
  border-top:1px solid rgba(255,255,255,.1);
  padding:60px 20px;
  background:#080808;
}

.footer-inner{
  max-width:1240px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}

.footer-logo a{
  font-size:18px;
  font-weight:700;
  letter-spacing:.24em;
  color:#fff;
}

.footer-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:22px;
}

.footer-nav a{
  font-size:12px;
  letter-spacing:.18em;
  color:rgba(255,255,255,.6);
  transition:.25s;
}

.footer-nav a:hover{
  color:#fff;
}

.copyright{
  font-size:11px;
  letter-spacing:.18em;
  color:rgba(255,255,255,.35);
}

/* ========================================
COMMON RESPONSIVE
======================================== */
@media (max-width:1100px){
  .hero-inner,
  .page-hero-inner,
  .intro-grid,
  .strength-grid,
  .flow-layout,
  .company-layout,
  .contact-layout{
    grid-template-columns:1fr;
  }
  .stats-inner{
    grid-template-columns:repeat(2,1fr);
  }
  .website-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .service-grid,
  .service-grid-contact{
    grid-template-columns:repeat(2,1fr);
  }
  .service-grid-contact .service-card:nth-child(4){
    grid-column:1/-1;
  }
  .company-side{
    min-height:360px;
  }
  .photo-item{
    width:calc(33.333% - 12px);
  }
}

@media (min-width:767px) and (max-width:1100px){
  .works-grid{
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
  }
}

@media (max-width:1100px){
  .intro-card{
    position:static;
  }
}

@media (max-width:767px){
  .header-inner{
    padding:16px 20px;
  }
  .logo{
    font-size:14px;
  }
  .hero,
  .page-hero{
    min-height:auto;
    padding:120px 20px 70px;
  }
  .hero-title,
  .page-title{
    font-size:58px;
  }
  .section{
    padding:80px 20px;
  }
  .section-head{
    display:block;
  }
  .section-lead{
    margin-top:20px;
  }
  .visual-card img,
  .hero-image img{
    height:420px;
  }
  .works-grid,
  .movie-grid,
  .website-grid{
    grid-template-columns:1fr;
  }
  .about-box{
    grid-template-columns:1fr;
  }
  .about-text{
    padding:32px 24px;
  }
  .stats-band{
    margin-top:0;
    padding:0 20px;
  }
  .stats-inner{
    grid-template-columns:1fr;
  }
  .stat-item{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.1);
  }
  .stat-item:last-child{
    border-bottom:none;
  }
  .intro-card{
    position:static;
  }
  .text-block{
    grid-template-columns:1fr;
  }
  .gallery-track{
    grid-template-columns:repeat(4,220px);
    padding-left:20px;
  }
  .strip-card{
    height:170px;
  }
  .flow-item{
    grid-template-columns:1fr;
    gap:10px;
  }
  .company-row{
    grid-template-columns:1fr;
  }
  .company-term,
  .company-desc{
    padding:18px 22px;
  }
  .hero-photo-stack{
    min-height:460px;
  }
  .hero-photo.main{
    width:80%;
    height:390px;
  }
  .hero-photo.sub01{
    width:48%;
    height:230px;
  }
  .hero-movie-stack,
  .hero-website-stack{
    min-height:460px;
  }
  .hero-movie.main,
  .browser-card.main{
    width:80%;
    height:390px;
  }
  .hero-movie.sub,
  .browser-card.sub{
    width:48%;
    height:230px;
  }
  .filter-wrap{
    top:64px;
    border-radius:24px;
  }
  .photo-item{
    width:calc(50% - 7px);
  }
  .lightbox{
    padding:20px;
  }
  .lightbox-prev,
  .lightbox-next{
    width:48px;
    height:48px;
    font-size:28px;
  }
  .lightbox-prev{
    left:12px;
  }
  .lightbox-next{
    right:12px;
  }
  .lightbox-close{
    top:82px;
    right:16px;
  }
  .movie-modal{
    padding:18px;
  }
  .movie-modal-info{
    display:block;
  }
  .modal-close{
    top:16px;
    right:16px;
  }
  .contact-section{
    padding:20px 20px 90px;
  }
  .contact-box{
    padding:32px 24px;
  }
  .form-grid{
    grid-template-columns:1fr;
  }
  .service-grid,
  .service-grid-contact{
    grid-template-columns:repeat(2,1fr);
  }
  .service-grid-contact .service-card:nth-child(4){
    grid-column:auto;
  }
  .site-footer{
    padding:50px 20px;
  }
  .footer-nav{
    gap:14px 18px;
  }
}

@media (max-width:900px){
  .lightbox-close{
    top:82px;
    right:16px;
  }
}

@media (max-width:560px){
  .hero-title,
  .page-title{
    font-size:44px;
  }
  .photo-item{
    width:calc(33.333% - 6px);
    margin-bottom:8px;
    border-radius:12px;
  }
  .photo-caption{
    display:none;
  }
  .service-card{
    min-height:220px;
    padding:22px;
  }
  .service-card h3{
    font-size:20px;
  }
}

/* CONTACT HERO */
.hero-contact-card{
  position:relative;
  overflow:hidden;
  min-height:430px;
  border-radius:36px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(135deg,rgba(255,255,255,.11),rgba(255,255,255,.035)),
    url("assets/images/contact-hero.webp") center/cover;
  box-shadow:0 35px 90px rgba(0,0,0,.5);
}

.hero-contact-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.82),rgba(0,0,0,.18));
}

.hero-contact-content{
  position:absolute;
  left:34px;
  right:34px;
  bottom:34px;
  z-index:2;
}

.hero-contact-content span{
  display:block;
  margin-bottom:10px;
  font-size:11px;
  letter-spacing:.24em;
  color:rgba(255,222,140,.84);
}

.hero-contact-content strong{
  display:block;
  font-size:32px;
  line-height:1.3;
}

.floating-mail{
  position:absolute;
  right:34px;
  top:34px;
  z-index:3;
  width:78px;
  height:78px;
  display:grid;
  place-items:center;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.64);
  backdrop-filter:blur(18px);
  font-size:32px;
  box-shadow:0 20px 60px rgba(0,0,0,.36);
}

/* CONTACT FORM 7 */
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select{
  font-size:16px;
}

.wpcf7 label{
  display:block;
  margin-bottom:8px;
  color:#333;
  font-size:13px;
  font-weight:700;
}

/* CONTACT PAGE FLOW */
.contact-flow-list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

@media (max-width:1100px){
  .contact-flow-list{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:900px){
  .hero-contact-card{
    min-height:360px;
  }
  .hero-contact-content strong{
    font-size:25px;
  }
  .contact-flow-list{
    grid-template-columns:1fr;
  }
}

.not-available-box{
  display:grid;
  grid-template-columns:90px 1fr;
  gap:28px;
  padding:36px;
  align-items:start;
}

.not-available-icon{
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  border-radius:24px;
  background:rgba(212,175,55,.13);
  color:rgba(255,222,140,.9);
  font-size:30px;
}

.not-available-content p:not(.section-label){
  margin-top:18px;
  max-width:780px;
  color:rgba(255,255,255,.62);
  font-size:15px;
}

@media (max-width:900px){
  .not-available-box{
    grid-template-columns:1fr;
    padding:28px;
  }
}

/* ========================================
LOAD MORE BUTTON
======================================== */
.load-more-wrap{
  margin-top:60px;
  text-align:center;
}

.load-more-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-width:220px;
  height:62px;
  padding:0 34px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:linear-gradient(
      180deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.03)
    );
  backdrop-filter:blur(14px);
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.28em;
  text-transform:uppercase;
  cursor:pointer;
  transition:transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    opacity .25s ease;
  overflow:hidden;
}

/* subtle glow */
.load-more-btn::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
      120deg,
      transparent 20%,
      rgba(255,255,255,.12) 50%,
      transparent 80%
    );
  transform:translateX(-120%);
  transition:transform .8s ease;
}

.load-more-btn:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.26);
  background:linear-gradient(
      180deg,
      rgba(255,255,255,.12),
      rgba(255,255,255,.05)
    );
  box-shadow:0 10px 30px rgba(0,0,0,.28),
    0 0 24px rgba(255,255,255,.06);
}

.load-more-btn:hover::before{
  transform:translateX(120%);
}

.load-more-btn:active{
  transform:translateY(0);
}

.load-more-btn:disabled{
  opacity:.55;
  cursor:wait;
  transform:none;
}

/* loading */
.load-more-btn.loading{
  letter-spacing:.18em;
}

/* mobile */
@media (max-width:767px){
  .load-more-wrap{
    margin-top:44px;
  }
  .load-more-btn{
    min-width:190px;
    height:56px;
    padding:0 26px;
    font-size:11px;
    letter-spacing:.22em;
  }
}

@media (max-width:767px){
  .website-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
  }
  .website-card{
    border-radius:18px;
    overflow:hidden;
  }
  .website-thumb{
    aspect-ratio:1 / 1.05;
  }
  .website-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .website-card h3,
  .website-title{
    display:none;
  }
  .scope-list{
    display:flex;
    gap:8px;
    overflow-x:auto;
    overflow-y:hidden;
    flex-wrap:nowrap;
    padding-bottom:4px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .scope-list::-webkit-scrollbar{
    display:none;
  }
  .scope-list span{
    flex:none;
    white-space:nowrap;
  }
  .website-body{
    padding:16px 12px 12px 12px;
  }
}

.top-hero-parallax{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.top-hero-bg{
  position:absolute;
  inset:-18% -10%;
  background:url("assets/images/top-hero.jpg") center/cover no-repeat;
  z-index:0;
  transform:translate3d(0,0,0);
  will-change:transform;
  backface-visibility:hidden;
}

.top-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(
      90deg,
      rgba(0,0,0,.82),
      rgba(0,0,0,.52) 45%,
      rgba(0,0,0,.18)
    );
}

.top-hero-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:180px 32px 120px;
}

.top-hero-content .hero-title{
  max-width:760px;
}

.top-hero-content .hero-text{
  max-width:640px;
}

@media (max-width:900px){
  .top-hero-parallax{
    min-height:100svh;
  }
  .top-hero-bg{
    inset:-28% -12%;
  }
}

@media (max-width:767px){
  .hero-buttons{
    display:flex;
    flex-direction:row;
    gap:10px;
  }
  .hero-buttons .btn{
    flex:1;
    min-width:0;
    padding:14px 12px;
    font-size:11px;
    letter-spacing:.12em;
  }
}

.sp-only{
  display:none;
}

@media (max-width:767px){
  .sp-only{
    display:block;
  }
}

.archive-section{
  padding-top:80px;
  padding-bottom:70px;
}

.archive-section .stats-band{
  max-width:none;
  margin:0;
  padding:0;
}

.portfolio-archive-head{
  margin-bottom:28px;
}

.portfolio-archive-head span{
  display:block;
  margin-bottom:10px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.32em;
  color:rgba(255,255,255,.42);
}

.portfolio-archive-head strong{
  display:block;
  font-size:clamp(34px,5vw,72px);
  line-height:1;
  letter-spacing:-.04em;
  color:#fff;
}

.stat-link{
  display:block;
  transition:.25s;
}

.stat-link:hover{
  background:rgba(255,255,255,.06);
}

.stat-link:hover strong{
  color:#fff0ba;
}

@media (max-width:767px){
  .gallery-strip{
    overflow:hidden;
    padding:20px 0 70px;
  }
  .gallery-track{
    display:flex;
    gap:18px;
    width:auto;
    max-width:none;
    padding-left:20px;
    padding-right:20px;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .gallery-track::-webkit-scrollbar{
    display:none;
  }
  .strip-card{
    flex:0 0 210px;
    height:170px;
    border-radius:26px;
  }
  .strip-card:nth-child(even){
    margin-top:36px;
  }
}

@media (max-width:767px){
  .not-available-content .section-title{
    font-size:26px;
    line-height:1.3;
  }
}

/* ========================================
PHOTO PAGE - SP
======================================== */
.photo-count-badge-sp{
  display:none;
}

@media (max-width:767px){
  .photo-page .page-hero{
    padding-bottom:36px;
  }
  .photo-page .page-hero-inner{
    position:relative;
    display:grid;
    grid-template-columns:1fr 170px;
    gap:12px;
    align-items:start;
  }
  .photo-page .page-title{
    position:relative;
    z-index:2;
    font-size:48px;
    line-height:.95;
  }
  .photo-page .page-title span{
    font-size:18px;
  }
  .photo-page .page-lead{
    position:relative;
    z-index:2;
    display:block;
    width:calc(100% + 170px);
    margin-top:18px;
    font-size:13px;
    line-height:1.8;
    text-shadow:0 2px 10px rgba(0,0,0,.55),
      0 0 20px rgba(0,0,0,.35);
  }
  .photo-page .hero-photo-stack{
    position:relative;
    width:170px;
    min-height:210px;
    margin-left:auto;
  }
  .photo-page .hero-photo.main{
    right:0;
    top:0;
    width:138px;
    height:185px;
    border-radius:20px;
  }
  .photo-page .hero-photo.sub01{
    left:0;
    bottom:0;
    width:92px;
    height:122px;
    border-radius:18px;
  }
  .photo-page .hero-photo img{
    filter:brightness(.5);
  }
  .photo-page .hero-photo-stack .photo-count-badge{
    display:none;
  }
  .photo-count-badge-sp{
    display:block;
    position:relative;
    z-index:30;
    width:max-content;
    margin:-36px -20px 40px auto;
  }
  .photo-page .section-head .section-label,
  .photo-page .section-head .section-title{
    display:none;
  }
  .photo-page .filter-wrap{
    margin-top:0;
  }
  .masonsection{
    padding-top:0;
  }
  .photo-page .section-head{
    margin-bottom:30px;
  }
}

/* ========================================
MOVIE PAGE - SP
======================================== */
.movie-count-badge-sp{
  display:none;
}

@media (max-width:767px){
  .movie-page .page-hero{
    padding-bottom:36px;
  }
  .movie-page .page-hero-inner{
    position:relative;
    display:grid;
    grid-template-columns:1fr 170px;
    gap:12px;
    align-items:start;
  }
  .movie-page .page-title{
    position:relative;
    z-index:2;
    font-size:48px;
    line-height:.95;
  }
  .movie-page .page-title span{
    font-size:18px;
  }
  .movie-page .page-lead{
    position:relative;
    z-index:5;
    display:block;
    width:calc(100% + 170px);
    margin-top:18px;
    font-size:13px;
    line-height:1.8;
    text-shadow:0 2px 10px rgba(0,0,0,.55),
      0 0 20px rgba(0,0,0,.35);
  }
  .movie-page .hero-movie-stack{
    position:relative;
    width:170px;
    min-height:210px;
    margin-left:auto;
  }
  .movie-page .hero-movie.main{
    right:0;
    top:0;
    width:138px;
    height:185px;
    border-radius:20px;
    z-index:1;
  }
  .movie-page .hero-movie.sub{
    left:0;
    bottom:0;
    width:92px;
    height:122px;
    border-radius:18px;
    z-index:3;
  }
  .movie-page .hero-movie img{
    filter:brightness(.5);
  }
  .movie-page .hero-movie-stack .movie-count-badge{
    display:none;
  }
  .movie-count-badge-sp{
    display:block;
    position:relative;
    z-index:30;
    width:max-content;
    margin:-36px -20px 40px auto;
  }
  .movie-page .section-head .section-label,
  .movie-page .section-head .section-title{
    display:none;
  }
  .movie-page .filter-wrap{
    margin-top:0;
  }
  .masonsection{
    padding-top:0;
  }
  .movie-page .section-head{
    margin-bottom:30px;
  }
}

@media (max-width:767px){
  .movie-page .hero-tags{
    position:relative;
    z-index:2;
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    width:calc(100% + 170px);
    margin-top:18px;
  }
  .movie-page .hero-tags span{
    padding:6px 8px;
    font-size:9px;
    letter-spacing:.08em;
    white-space:nowrap;
  }
  section.movielist{
    padding-top:0;
  }
}

@media (max-width:900px){
  .modal-close{
    top:82px;
    right:16px;
  }
}

/* ========================================
WEBSITE PAGE - SP
======================================== */
.website-count-badge-sp{
  display:none;
}

@media (max-width:767px){
  .website-page .page-hero{
    padding-bottom:36px;
  }
  .website-page .page-hero-inner{
    position:relative;
    display:grid;
    grid-template-columns:1fr 170px;
    gap:12px;
    align-items:start;
  }
  .website-page .page-title{
    position:relative;
    z-index:2;
    font-size:48px;
    line-height:.95;
  }
  .website-page .page-title span{
    font-size:18px;
  }
  .website-page .page-lead{
    position:relative;
    z-index:5;
    display:block;
    width:calc(100% + 170px);
    margin-top:18px;
    font-size:13px;
    line-height:1.8;
    text-shadow:0 2px 10px rgba(0,0,0,.55),
      0 0 20px rgba(0,0,0,.35);
  }
  .website-page .hero-website-stack{
    position:relative;
    width:170px;
    min-height:210px;
    margin-left:0;
  }
  .website-page .browser-card.main{
    right:0;
    top:0;
    width:138px;
    height:185px;
    border-radius:20px;
    z-index:1;
  }
  .website-page .browser-card.sub{
    left:0;
    bottom:0;
    width:92px;
    height:122px;
    border-radius:18px;
    z-index:3;
  }
  .website-page .browser-card img{
    filter:brightness(.5);
  }
  .website-page .hero-website-stack .website-count-badge{
    display:none;
  }
  .website-count-badge-sp{
    display:block;
    position:relative;
    z-index:30;
    width:max-content;
    margin:-36px -20px 40px auto;
  }
  .website-page .section-head .section-label,
  .website-page .section-head .section-title{
    display:none;
  }
  .website-page .filter-wrap{
    margin-top:0;
  }
  .masonsection{
    padding-top:0;
  }
  .movie-page .section-head{
    margin-bottom:30px;
  }
}

@media (max-width:767px){
  .website-page .hero-tags{
    position:relative;
    z-index:2;
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    width:calc(100% + 170px);
    margin-top:18px;
  }
  .website-page .hero-tags span{
    padding:6px 8px;
    font-size:9px;
    letter-spacing:.08em;
    white-space:nowrap;
  }
  section.websitelist{
    padding-top:0;
  }
  .website-page .page-title{
    font-size:38px;
  }
  .website-page .page-title span{
    font-size:14px;
  }
  .contact-page .section-title{
    font-size:30px;
  }
}
