/*
Theme Name: Design Lab
Author: Design Lab
Version: 1.0
*/


        /* =========================================
           CORE & VARIABLES
           ========================================= */
        :root {
            --bg-color: #080808;
            --text-color: #f0f0f0;
            --accent: #ffffff;
            --dim: #666;
            --line: rgba(255, 255, 255, 0.15);
            --font-jp: 'Noto Sans JP', sans-serif;
            --font-en: 'Oswald', sans-serif;
            --font-display: 'Teko', sans-serif;
            --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
            --ease-in-out: cubic-bezier(0.86, 0, 0.07, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
        
        html { scroll-behavior: smooth; }
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: var(--font-jp);
            line-height: 1.8;
            overflow-x: hidden;
            width: 100%;
        }

        /* Noise Texture */
        body::after {
            content: "";
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 999;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { width: 100%; height: 100%; object-fit: cover; display: block; }

        /* =========================================
           PRELOADER
           ========================================= */
        .preloader {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: #000;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 1s var(--ease-in-out);
        }
        .preloader.loaded { transform: translateY(-100%); }
        
        .loader-logo {
            font-family: var(--font-display);
            font-size: 4rem;
            letter-spacing: 0.1em;
            font-weight: 600;
            color: #fff;
            overflow: hidden;
            text-transform: uppercase;
        }
        .loader-logo span {
            display: inline-block;
            transform: translateY(100%);
            animation: slideUp 0.8s var(--ease-out) forwards;
        }
        @keyframes slideUp { to { transform: translateY(0); } }

        /* =========================================
           CUSTOM CURSOR
           ========================================= */
        .cursor {
            position: fixed;
            width: 10px; height: 10px;
            background: #fff;
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            transform: translate(-50%, -50%);
            mix-blend-mode: exclusion;
            transition: width 0.3s, height 0.3s, background 0.3s;
        }
        .cursor.hovered {
            width: 60px; height: 60px;
            background: #fff;
            mix-blend-mode: difference;
        }

        /* =========================================
           TYPOGRAPHY & UTILS
           ========================================= */
        .container { width: 90%; max-width: 1600px; margin: 0 auto; }
        .section-padding { padding: 180px 0; }
        .en-font { font-family: var(--font-en); text-transform: uppercase; }
        
        .section-title {
            font-family: var(--font-display);
            font-size: 13vw;
            line-height: 0.8;
            font-weight: 600;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255,255,255,0.5);
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }
        
        .btn-arrow {
            display: inline-flex;
            align-items: center;
            font-family: var(--font-en);
            font-size: 1.1rem;
            letter-spacing: 0.1em;
            border-bottom: 1px solid #fff;
            padding-bottom: 5px;
            transition: 0.3s;
        }
        .btn-arrow::after {
            content: '→';
            margin-left: 10px;
            transition: 0.3s;
        }
        .btn-arrow:hover { padding-right: 20px; color: var(--dim); }
        .btn-arrow:hover::after { transform: translateX(10px); }

        /* Animation Trigger */
        .reveal { opacity: 0; transform: translateY(50px); transition: 1s var(--ease-out); }
        .reveal.in-view { opacity: 1; transform: translateY(0); }

        /* =========================================
           HEADER
           ========================================= */
        header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            padding: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 500;
            mix-blend-mode: difference;
        }
        /* ロゴのスタイルを変更 */
        .logo {
            font-family: var(--font-jp); /* 日本語フォントに変更 */
            font-size: 1.8rem;
            letter-spacing: 0.05em;
            font-weight: 900;
            color: #fff;
            position: relative;
            overflow: hidden; /* 光がはみ出さないように */
            display: inline-block;
        }
        /* きらりと光るアクセントのアニメーション */
        .logo::after {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
            transform: skewX(-25deg);
            animation: shine 5s infinite linear; /* 5秒間隔でループ */
        }
        @keyframes shine {
            0% { left: -150%; }
            30% { left: 150%; }
            100% { left: 150%; }
        }

        nav ul { display: flex; gap: 50px; }
        nav a { font-family: var(--font-en); font-size: 0.9rem; letter-spacing: 0.1em; position: relative; }
        nav a::before {
            content: ''; position: absolute; top: 50%; left: -15px; width: 6px; height: 6px;
            background: #fff; border-radius: 50%; opacity: 0; transform: translateY(-50%); transition: 0.3s;
        }
        nav a:hover::before { opacity: 1; left: -20px; }

        /* =========================================
           HERO SECTION
           ========================================= */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }


        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .hero-title {
            font-family: var(--font-jp);
            font-size: 8vw;
            line-height: 1.1;
            font-weight: 900;
            letter-spacing: -0.03em;
            margin-bottom: 30px;
            mix-blend-mode: overlay;
            color: #fff;
        }
        .hero-title .highlight {
            font-size: 1.25em;
            display: inline-block;
            vertical-align: bottom;
        }

        .hero-title .line { display: block; overflow: hidden; }
        .hero-title .word {
            display: inline-block;
            transform: translateY(120%);
            transition: transform 1s var(--ease-out);
        }
        body.is-loaded .hero-title .word { transform: translateY(0); }
        
        .hero-sub {
            font-family: var(--font-en);
            font-size: 1.4rem;
            letter-spacing: 0.4em;
            font-weight: 400;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s 0.8s, transform 1s 0.8s;
            text-transform: uppercase;
        }
        body.is-loaded .hero-sub { opacity: 1; transform: translateY(0); }

        /* =========================================
           MARQUEE
           ========================================= */
        .marquee {
            width: 100%;
            padding: 20px 0;
            background: #fff;
            color: #000;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            z-index: 10;
            transform: rotate(-2deg) scale(1.05);
            border-top: 1px solid #000;
            border-bottom: 1px solid #000;
        }
        .marquee-content { display: inline-block; animation: scroll 20s linear infinite; }
        .marquee span {
            font-family: var(--font-display);
            font-size: 4rem;
            font-weight: 700;
            margin-right: 60px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        /* =========================================
           WORKS
           ========================================= */
        .works-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 80px;
            border-bottom: 1px solid var(--line);
            padding-bottom: 20px;
        }
        
        .works-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 100px 60px;
        }
        .work-item:nth-child(even) { margin-top: 150px; }

        .work-img-wrap {
            position: relative;
            width: 100%;
            padding-bottom: 130%;
            overflow: hidden;
            cursor: none;
        }
        /* Reveal Curtain */
        .work-img-wrap::after {
            content: '';
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: #111;
            z-index: 2;
            transition: transform 0.8s var(--ease-out);
        }
        .work-item.in-view .work-img-wrap::after { transform: translateY(-100%); }

        .work-img-wrap img {
            position: absolute; top: 0; left: 0;
            transition: transform 1.2s var(--ease-out);
            transform: scale(1.3);
            filter: grayscale(100%);
        }
        .work-item.in-view img { transform: scale(1); }
        .work-item:hover img { transform: scale(1.05); filter: grayscale(0%); }

        .work-info {
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
        }
        .work-info::before {
            content: ''; position: absolute; top: 0; left: 0; width: 0; height: 1px;
            background: #fff; transition: width 0.5s var(--ease-out);
        }
        .work-item:hover .work-info::before { width: 100%; }

        .work-title { font-size: 2rem; font-family: var(--font-en); font-weight: 400; }
        .work-cat { color: var(--dim); font-size: 0.9rem; margin-top: 5px; }

        /* =========================================
           JOURNAL
           ========================================= */
        .journal-item { border-bottom: 1px solid var(--line); transition: 0.4s; }
        .journal-link {
            display: grid;
            grid-template-columns: 150px 1fr 150px;
            align-items: center;
            padding: 40px 0;
            color: var(--dim);
        }
        .journal-item:hover { border-color: #fff; }
        .journal-item:hover .journal-link { color: #fff; padding-left: 20px; }
        .journal-date { font-family: var(--font-en); }
        .journal-title { font-size: 1.4rem; font-weight: 500; }
        .journal-cat { text-align: right; font-size: 0.8rem; border: 1px solid var(--dim); padding: 5px 15px; border-radius: 50px; }

        /* =========================================
           PHILOSOPHY / FOUNDER
           ========================================= */
        .phil-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            border-top: 1px solid var(--line);
        }
        .phil-item {
            padding: 60px 40px;
            border-right: 1px solid var(--line);
            position: relative;
            overflow: hidden;
        }
        .phil-item:last-child { border-right: none; }
        .phil-item:hover { background: #fff; color: #000; }
        .phil-num { font-size: 5rem; font-family: var(--font-display); opacity: 0.2; margin-bottom: 10px; display: block; font-weight: 700; }
        .phil-title { font-family: var(--font-en); font-size: 1.8rem; margin-bottom: 15px; }

        /* FOUNDER SECTION */
        .founder-wrapper {
            margin-top: 150px;
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        .founder-img {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
        }
        .founder-img img {
            transition: 1s var(--ease-out);
            filter: grayscale(100%) contrast(1.1);
        }
        .founder-img:hover img {
            transform: scale(1.05);
            filter: grayscale(0%);
        }

        .founder-content {
            padding-right: 5%;
        }

        .founder-name {
            font-family: var(--font-display);
            font-size: 4rem;
            line-height: 0.9;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: 600;
        }
        
        .founder-role {
            font-family: var(--font-en);
            color: var(--dim);
            font-size: 1rem;
            letter-spacing: 0.1em;
            display: block;
            margin-bottom: 40px;
        }

        .founder-profile {
            font-size: 1rem;
            line-height: 2;
            color: #ccc;
            margin-bottom: 40px;
            border-bottom: 1px solid var(--line);
            padding-bottom: 40px;
        }

        .founder-profile a {
          color: #fff;
          border-bottom: 1px solid #fff;
          padding-bottom: 2px;
          transition: 0.3s;
        }

        .founder-profile a:hover {
            color: var(--dim);
            border-bottom-color: var(--dim);
        }


        .founder-message h4 {
            font-family: var(--font-en);
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .founder-message p {
            font-size: 1.1rem;
            font-style: italic;
            color: #fff;
            line-height: 2;
        }

        /* =========================================
           FAQ
           ========================================= */
        .faq-wrapper { max-width: 1000px; margin: 100px auto 0; border-top: 1px solid var(--line); }
        .faq-item { border-bottom: 1px solid var(--line); }
        .faq-q { padding: 30px 0; font-size: 1.3rem; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-q::after { content: '+'; font-weight: 300; transition: 0.3s; }
        .faq-item.active .faq-q::after { transform: rotate(45deg); }
        .faq-a { height: 0; overflow: hidden; color: #aaa; transition: 0.5s var(--ease-out); }
        .faq-item.active .faq-a { height: auto; padding-bottom: 30px; }

        /* =========================================
           CTA
           ========================================= */
        .cta-section { background: #fff; color: #000; padding: 150px 0; text-align: center; }
        .cta-title {
            font-family: var(--font-display);
            font-size: 13vw;
            line-height: 0.85;
            margin-bottom: 50px;
            font-weight: 600;
            -webkit-text-stroke: 2px #000;
            color: transparent;
        }
        .cta-btns { display: flex; justify-content: center; gap: 30px; }
        .btn-large {
            padding: 25px 60px; background: #000; color: #fff;
            font-family: var(--font-en); font-size: 1.2rem; letter-spacing: 0.1em; transition: 0.3s; border: 1px solid #000;
        }
        .btn-large:hover { background: transparent; color: #000; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .btn-large.outline { background: transparent; color: #000; }
        .btn-large.outline:hover { background: #000; color: #fff; }

        /* Footer */
        footer { background: #000; padding: 60px 0; text-align: center; color: #444; font-size: 0.8rem; border-top: 1px solid #222; }

        /* Mobile */
        @media (max-width: 768px) {
            .hero-title { font-size: 11vw; }
            .section-title { font-size: 15vw; }
            .works-list { grid-template-columns: 1fr; gap: 60px; }
            .work-item:nth-child(even) { margin-top: 0; }
            .phil-grid { grid-template-columns: 1fr; }
            .phil-item { border-right: none; border-bottom: 1px solid var(--line); }
            
            /* Founder Mobile */
            .founder-wrapper { grid-template-columns: 1fr; gap: 40px; }
            .founder-img { height: 400px; }
            .founder-name { font-size: 3rem; }
            
            .journal-link { grid-template-columns: 1fr; gap: 10px; }
            .journal-date, .journal-cat { display: none; }
            .cta-btns { flex-direction: column; }
            .cursor { display: none; }
        }
/* =========================================
   RESPONSIVE ADDITION (TOPページ用)
   ========================================= */

/* 1) ヘッダー：スマホで詰まるのを防ぐ */
@media (max-width: 900px) {
  header{
    padding: 24px 18px;
  }
  nav ul{
    gap: 22px;
  }
  nav a{
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }
  .logo{
    font-size: 1.4rem;
  }
}

/* 2) Hero：高さと文字の見切れを防ぐ */
@media (max-width: 768px) {
  .hero{
    height: 90vh;
    min-height: 520px;
  }
  .hero-content{
    padding-top: 60px; /* fixed header分の余白 */
  }
  .hero-title{
    font-size: 11.5vw;
    line-height: 1.15;
    margin-bottom: 18px;
  }
  .hero-sub{
    font-size: 0.95rem;
    letter-spacing: 0.25em;
  }
}

/* 3) Marquee：大きすぎる文字を縮める */
@media (max-width: 768px) {
  .marquee{
    transform: rotate(-1deg) scale(1.02);
    padding: 14px 0;
  }
  .marquee span{
    font-size: 2.4rem;
    margin-right: 36px;
  }
}

/* 4) Works：カード間余白をスマホ最適化 */
@media (max-width: 768px) {
  .section-padding{
    padding: 120px 0;
  }
  .works-header{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
  }
  .work-title{
    font-size: 1.6rem;
  }
  .work-img-wrap{
    padding-bottom: 120%;
  }
}

/* 5) Journal：スマホでタイトルがでかすぎる問題 */
@media (max-width: 768px) {
  .journal-link{
    padding: 28px 0;
  }
  .journal-title{
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .journal-cat{
    width: fit-content;
  }
}

/* 6) Philosophy + Founder：縦並び時の余白と文字 */
@media (max-width: 768px) {
  .phil-item{
    padding: 46px 26px;
  }
  .phil-title{
    font-size: 1.5rem;
  }
  .founder-wrapper{
    margin-top: 90px;
  }
  .founder-content{
    padding-right: 0;
  }
  .founder-profile{
    padding-bottom: 28px;
    margin-bottom: 28px;
  }
  .founder-message p{
    font-size: 1rem;
  }
}

/* 7) FAQ：タップしやすく */
@media (max-width: 768px) {
  .faq-q{
    font-size: 1.05rem;
    padding: 22px 0;
  }
  .faq-a{
    font-size: 0.95rem;
    line-height: 1.9;
  }
}

/* 8) CTA：見切れ防止 */
@media (max-width: 768px) {
  .cta-section{
    padding: 110px 0;
  }
  .cta-title{
    font-size: 18vw;
    line-height: 0.9;
    margin-bottom: 30px;
  }
  .btn-large{
    width: 100%;
    text-align: center;
  }
}

/* =========================
   Sticky CTA (Global)
   ========================= */
:root{
  --gold: #B49E72;
  --gold-grad: linear-gradient(135deg, #8F7A52 0%, #DBCDAF 45%, #7D6942 60%, #DBCDAF 100%);
}

.sticky-cta{
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 130px;
  height: 130px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .3s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
}
.sticky-cta:hover{ transform: scale(1.1); }

.cta-ring{ position:absolute; inset:0; animation: rotateRing 15s linear infinite; }
.cta-ring svg{ width:100%; height:100%; }
.cta-ring text{
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  fill: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(180, 158, 114, 0.4);
}

@keyframes rotateRing { from{transform:rotate(0)} to{transform:rotate(360deg)} }

.cta-inner{
  width: 60px;
  height: 60px;
  background: var(--gold-grad);
  border-radius: 50%;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  position:relative;
  overflow:hidden;
  transition: .3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 0 20px rgba(143, 122, 82, 0.4);
}

.cta-inner::after{
  content:'';
  position:absolute;
  top:0;
  left:-150%;
  width:100%;
  height:100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.8) 50%, transparent 100%);
  transform: skewX(-25deg);
  animation: ctaShine 4s infinite linear;
}
@keyframes ctaShine{
  0%{ left:-150% }
  30%{ left:150% }
  100%{ left:150% }
}

.cta-icon{
  font-size: 1.2rem;
  color:#000;
  line-height:1;
  margin-bottom:2px;
  position:relative;
  z-index:1;
}
.cta-text-jp{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color:#000;
  line-height:1;
  letter-spacing: -0.05em;
  position:relative;
  z-index:1;
}

.sticky-cta:hover .cta-inner{
  transform: scale(1.2);
  box-shadow: 0 0 30px rgba(219, 205, 175, 0.5);
}

@media (max-width: 900px){
  .sticky-cta{ width: 90px; height: 90px; bottom: 20px; right: 20px; }
  .cta-ring text{ font-size: 16px; }
  .cta-inner{ width: 40px; height: 40px; }
  .cta-icon{ font-size: .9rem; margin-bottom:1px; }
  .cta-text-jp{ font-size: 7px; transform: scale(.9); }
}

.sticky-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 130px;
    height: 130px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Header base ===== */
header{
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 500;
  mix-blend-mode: difference;
}
nav ul{ display:flex; gap:50px; }
nav a{ font-family: var(--font-en); font-size: .9rem; letter-spacing: .1em; position: relative; }

/* ===== Hamburger ===== */
.hamburger{
  display:none;
  width:44px; height:44px;
  border:1px solid rgba(255,255,255,0.35);
  background:transparent;
  border-radius:999px;
  position:relative;
  cursor:pointer;
  padding:0;
}
.hamburger span{
  position:absolute;
  left:50%;
  width:18px; height:2px;
  background:#fff;
  transform:translateX(-50%);
  transition:0.35s var(--ease-out);
}
.hamburger span:nth-child(1){ top:15px; }
.hamburger span:nth-child(2){ top:21px; }
.hamburger span:nth-child(3){ top:27px; }

body.menu-open .hamburger span:nth-child(1){
  top:21px;
  transform:translateX(-50%) rotate(45deg);
}
body.menu-open .hamburger span:nth-child(2){ opacity:0; }
body.menu-open .hamburger span:nth-child(3){
  top:21px;
  transform:translateX(-50%) rotate(-45deg);
}

/* ===== Mobile Nav ===== */
.mobile-nav{ display:none; }
.mobile-nav-overlay{
  position:fixed; inset:0;
  background: rgba(0,0,0,0.85);
  z-index:450;
  opacity:0;
  pointer-events:none;
  transition:0.4s var(--ease-out);
}
body.menu-open .mobile-nav-overlay{
  opacity:1;
  pointer-events:auto;
}
.mobile-nav-panel{
  position:fixed;
  top:0; left:0;
  width:86%;
  max-width:360px;
  height:100%;
  background:#0b0b0b;
  border-right:1px solid rgba(255,255,255,0.12);
  z-index:460;
  transform: translateX(-105%);
  transition:0.45s var(--ease-out);
  padding:110px 28px 28px;
}
body.menu-open .mobile-nav-panel{
  transform: translateX(0);
}
.mobile-nav-panel ul{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.mobile-nav-panel a{
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color:#fff;
}

/* ===== Responsive ===== */
@media (max-width:768px){
  header{ padding:18px 16px; }
  .pc-nav{ display:none; }
  .hamburger{ display:inline-block; }
  .mobile-nav{ display:block; }
  body.menu-open{ overflow:hidden; }
}

/* =========================================
   FORCE PRELOADER HIDE (全ページ共通保険)
========================================= */
.preloader.loaded {
    transform: translateY(-100%) !important;
    pointer-events: none;
}

body.is-loaded .preloader {
    transform: translateY(-100%);
    pointer-events: none;
}

/* =========================
WORKS DETAIL
========================= */

.single-works .project-hero{
padding-top:200px;
margin-bottom:100px;
}

.single-works .project-header{
margin-bottom:60px;
border-bottom:1px solid rgba(255,255,255,0.15);
padding-bottom:40px;
display:flex;
justify-content:space-between;
align-items:flex-end;
flex-wrap:wrap;
gap:30px;
}

.single-works .project-title h1{
font-family:'Teko',sans-serif;
font-size:8vw;
line-height:0.9;
font-weight:600;
text-transform:uppercase;
color:#fff;
}

.single-works .project-subtitle{
font-size:1.1rem;
color:#888;
}

.single-works .main-visual{
width:100%;
height:80vh;
overflow:hidden;
position:relative;
}

.single-works .main-visual img{
width:100%;
height:100%;
object-fit:cover;
}

.single-works .concept-section{
margin:150px 0;
}

.single-works .concept-content{
display:grid;
grid-template-columns:300px 1fr;
gap:60px;
}

.single-works .concept-title{
font-family:'Oswald',sans-serif;
font-size:2.5rem;
letter-spacing:0.1em;
}

.single-works .concept-text{
font-size:1.1rem;
line-height:2.2;
color:#ccc;
}

.single-works .gallery-grid-1{
margin-bottom:100px;
}

.single-works .gallery-grid-2{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-bottom:100px;
}

.single-works .gallery-grid-3{
display:grid;
grid-template-columns:1fr 1.5fr;
gap:40px;
margin-bottom:100px;
align-items:center;
}

.single-works .gallery-item img{
width:100%;
height:auto;
}

.single-works .project-nav{
border-top:1px solid rgba(255,255,255,0.15);
border-bottom:1px solid rgba(255,255,255,0.15);
padding:50px 0;
display:flex;
justify-content:space-between;
}

.single-works .nav-link{
width:45%;
display:flex;
flex-direction:column;
color:#888;
}

.single-works .nav-link.next{
text-align:right;
align-items:flex-end;
}

.single-works .nav-project{
font-family:'Teko',sans-serif;
font-size:2.5rem;
text-transform:uppercase;
}
