/* ==========================================================================
   GLOBAL RESET & COLOR TOKENS
   ========================================================================== */
:root {
  --color-bg: #EAEAEA; 
  --color-text-main: #000000;
  --color-text-dim: #222222;
  --color-text-works-dim: #A0A0A0;
  --color-border: rgba(0, 0, 0, 0.12);
  --color-border-grid: rgba(0, 0, 0, 0.18);
  --color-pill-border: #999999;
  --font-main: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100vw; height: 100vh;
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  overflow: hidden; 
}

/* LAYOUT TOGGLE BASE DEFAULTS */
.desktop-only-wrapper {
  display: block;
}
.mobile-only-wrapper {
  display: none !important;
}

/* ENTRY OVERLAY */
.entry-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background-color: var(--color-bg);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
}

.entry-button {
  background: transparent; border: none;
  font-family: var(--font-main); font-size: 14px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-main);
  cursor: pointer; opacity: 0.5; transition: opacity 0.3s ease;
}
.entry-button:hover { opacity: 1; }

/* CURSOR & FLOATING PILL */
.cursor-container {
  position: fixed; top: 0; left: 0; width: 0; height: 0;
  pointer-events: none; z-index: 999999; will-change: transform;
}

.cursor-ring {
  position: absolute; top: 0; left: 0; width: 14px; height: 14px;
  background-color: #2B00FF; border: 1px solid transparent; border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.25s ease, border-color 0.25s ease;
}

.cursor-container.expanded .cursor-ring { width: 42px; height: 42px; background-color: transparent !important; border-color: rgba(0, 0, 0, 0.8) !important; }
.footer-container:hover ~ .cursor-container.expanded .cursor-ring { border-color: rgba(255, 255, 255, 0.8) !important; }

.cursor-pill {
  position: absolute; top: -14px; left: 24px; background-color: #FFFFFF;
  border: 1px solid #C5C5C5; color: #333333; padding: 5px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  opacity: 0; filter: blur(8px); transform: scale(0.95);
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease, width 0.3s ease;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}

.cursor-container.show-pill .cursor-pill { opacity: 1; filter: blur(0px); transform: scale(1); }
.pill-text-wrapper { display: inline-flex; white-space: nowrap; will-change: opacity, filter, transform; }

.cursor-pill.marquee-mode { padding: 8px 0; width: 330px; }
.cursor-pill.marquee-mode .pill-text-wrapper { animation: pillMarquee 4.5s linear infinite; font-size: 12.6px; }
.marquee-content { padding-right: 14px; }
@keyframes pillMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* GLOBAL TUMBLER LINK LOGIC */
.tumbler-link {
  --tumbler-ht: 16px; 
  display: inline-flex; overflow: hidden; height: var(--tumbler-ht); line-height: var(--tumbler-ht); text-decoration: none;
}
.tumbler-link .char-slot { display: inline-block; position: relative; overflow: hidden; height: 100%; vertical-align: top; }
.tumbler-link .char-inner { display: flex; flex-direction: column; will-change: transform; }
.tumbler-link .char-inner span { display: block; height: var(--tumbler-ht); line-height: var(--tumbler-ht); }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; height: 52px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background-color: var(--color-bg); 
  z-index: 999; border-bottom: none;
  transform: translateY(0%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-border {
  position: absolute; bottom: 0; left: 60px; right: 60px; height: 1px;
  background-color: var(--color-border); 
}

.nav-logo { cursor: pointer; font-size: 15px; font-weight: 900; letter-spacing: -0.5px; text-transform: uppercase; display: inline-flex; overflow: hidden; height: 16px; line-height: 16px;}
.nav-logo .char-slot { display: inline-block; position: relative; overflow: hidden; height: 100%; vertical-align: top; }
.nav-logo .char-inner { display: flex; flex-direction: column; }
.nav-logo .char-inner span { display: block; height: 16px; line-height: 16px; }

.nav-links { display: flex; gap: 48px; }
.nav-links a { color: var(--color-text-main); font-size: 13px; font-weight: 500; text-transform: uppercase; }
.nav-links a.active-nav { font-weight: 800; }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: space-between;
  width: 24px; height: 18px; padding: 0; z-index: 1000;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background-color: var(--color-text-main);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* REVEAL WRAPPERS */
.reveal-wrapper { overflow: hidden; display: inline-block; padding: 4px; margin: -4px; }
.phil-wipe-1, .phil-wipe-2, .works-wipe { transform: translateY(110%); display: block; }

/* ==========================================================================
   1. HERO SECTION (DESKTOP)
   ========================================================================== */
.hero-container {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100dvh;  padding-top: 52px;  overflow: hidden;  will-change: transform;}
.hero-layout {  display: grid;  grid-template-columns: 54.16% 45.84%;  height: calc(100dvh - 52px);  width: 100%;}
.hero-col-left { position: relative; grid-column: 1; border-right: 1px solid var(--color-border); height: 100%; width: 100%; z-index: 10; background-color: transparent; }
.hero-col-right { position: relative; grid-column: 2; width: 100%; height: 100%; display: flex; align-items: flex-end; justify-content: flex-end; }
.hero-slide {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  padding: clamp(24px, 4vh, 36px) 44px 0;  display: flex;  flex-direction: column;  justify-content: space-between;}
.bio-top { display: flex; gap: 22px; align-items: flex-start; }
.thumb-frame { height: 162px; flex-shrink: 0; overflow: hidden; cursor: pointer; }
.avatar-thumb { height: 100%; width: auto; object-fit: contain; display: block; }
.bio-intro-text {  display: flex;  flex-direction: column;  align-items: flex-start;  gap: 0;  font-size: 19px;  line-height: 1.2;  font-weight: 300;  letter-spacing: -0.2px;}.intro-title { color: #000; font-weight: 500; }
.dim-text { color: var(--color-text-dim); font-weight: 300; margin-top: 2px; }
.text-uppercase { text-transform: uppercase; }
.bio-middle {  max-width: 690px;  margin-top: clamp(70px, 16vh, 180px);}
.hero-statement {  font-size: clamp(22px, min(2.1vw, 3.5vh), 30px);  line-height: 1.2;  font-weight: 300;  letter-spacing: -0.9px;  color: #111111;}
.concentric-circles { width: 18px; height: 18px; display: block; opacity: 0.45; }
.tag-location { position: absolute; right: 20px; top: 36%; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.tag-alias { position: absolute; right: 20px; bottom: 75px; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.tag-text-right { font-size: 11px; font-weight: 350; color: #444444; text-align: right; line-height: 1.2; letter-spacing: -0.2px; opacity: 0.6; }
.bio-bottom { margin-bottom: -7px; z-index: 20; }
.hero-name {  font-size: clamp(68px, 5vw, 92px);  font-weight: 900;  -webkit-text-stroke: 0px transparent;  text-shadow: 0.3px 0 0 #000, -0.3px 0 0 #000;  letter-spacing: clamp(-7px, -0.4vw, -5px);  text-transform: uppercase;  line-height: 0.88;  color: #000000;  display: inline-flex;  white-space: nowrap;}
/* Philosophy Text */
.phil-text-group {  display: flex;  flex-direction: column;  gap: clamp(24px, 3.5vh, 40px);}
.phil-top-section { width: 100%; }
.phil-row-1 { display: flex; justify-content: space-between; align-items: flex-start; }
.phil-photo-block { display: flex; align-items: flex-start; gap: 12px; }
.phil-tag { font-size: 11px; font-weight: 500; color: #666; text-align: right; line-height: 1.2; letter-spacing: -0.2px; text-transform: uppercase; }
.phil-photo { height: 90px; width: auto; filter: grayscale(100%); object-fit: contain; }
.phil-row-2 { margin-top: 5px; }
.phil-line {  font-size: clamp(48px, 4.2vw, 60px);  font-weight: 900;  letter-spacing: clamp(-3.5px, -0.25vw, -2.5px);  line-height: 1.05;  text-transform: uppercase;}
.phil-mid-section { width: 100%; display: flex; flex-direction: column; gap: 14px;}
.phil-line-split {  display: flex;  justify-content: space-between;  align-items: flex-end;  font-size: clamp(48px, 4.2vw, 60px);  font-weight: 900;  letter-spacing: clamp(-3.5px, -0.25vw, -2.5px);  line-height: 1.05;  text-transform: uppercase;}
.q-mark { opacity: 0.2; color: #000; }
.become-line { display: flex; justify-content: space-between; align-items: flex-start; width: 100%; margin-top: 4px; }
.become-line .bold {  font-size: clamp(22px, 2vw, 28px);  font-weight: 700;  letter-spacing: -1px;  line-height: 1;}
.become-line .small {  font-size: clamp(12px, 1vw, 20px);  font-weight: 400;  color: #666;  margin-top: 3px;  text-transform: lowercase;}
.phil-desc-container { margin-bottom: 24px; max-width: 640px; }
.phil-desc {  font-size: clamp(24px, 2.1vw, 30px);  line-height: 1.2;  font-weight: 300;  letter-spacing: -0.8px;  color: #111;}
.art-stack { display: grid; grid-template-areas: "stack"; width: 100%; height: 100%; align-items: end; justify-items: end; cursor: none; }
.swipe-up-mask { clip-path: inset(100% 0 0 0); }
.scan-down-mask { z-index: 4; clip-path: inset(0 0 100% 0); }
.art-layer {  grid-area: stack;  width: min(120%, 58vw);  max-width: 120%;  max-height: 100%;  object-fit: contain;  object-position: bottom right;  display: block;  image-rendering: -webkit-optimize-contrast;  pointer-events: none;}
.layer-archi { z-index: 1; }
.layer-blobs { z-index: 2; opacity: 0.20; }
.layer-portrait { z-index: 3; scale: 1.15; padding-bottom: 32px; padding-right: 22px; }
.layer-internals { z-index: 4; scale: 1.15; padding-bottom: 32px; padding-right: 22px; }

/* ==========================================================================
   2. SELECTED WORKS SECTION (DESKTOP)
   ========================================================================== */
.projects-container { position: absolute; top: 100vh; left: 0; width: 100vw; height: 100vh; padding-top: 52px; overflow: hidden; will-change: transform; }
.projects-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; height: calc(100vh - 52px); min-height: 0; }
.works-header-flex { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.col-left { 
  grid-column: 1; 
  display: flex; flex-direction: column; justify-content: space-between; 
  height: 100%; min-height: 0; padding: 24px 0 24px 0; position: relative; border-right: none !important; 
}

.col-right { 
  grid-column: 2; 
  display: flex; align-items: center; justify-content: center; height: 100%; min-height: 0; 
}

.section-header { display: flex; align-items: center; justify-content: space-between; padding: 0 40px; flex-shrink: 0; }
.section-title { font-size: 24px; font-weight: 400; letter-spacing: -0.5px; text-transform: uppercase; color: #929292; }

.btn-pill-viewall { display: none !important; }

.project-list-wrapper { flex: 1; min-height: 0; overflow-y: auto; margin: 12px 0; padding: 16px 24px 16px 40px; scrollbar-width: none; -ms-overflow-style: none; }
.project-list-wrapper::-webkit-scrollbar { display: none; }
.project-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.project-item { display: flex; align-items: center; cursor: pointer; user-select: none; transition: all 0.2s ease; width: fit-content; padding-right: 24px; }
.item-index-wrap { width: 52px; display: flex; align-items: center; flex-shrink: 0; }
.item-index { font-size: 16px; font-weight: 400; color: var(--color-text-works-dim); }
.item-arrow-svg { width: 34px; height: 34px; fill: #000000; display: none; transform: scale(1.7); transform-origin: center; }
.item-title { font-size: 55px; font-weight: 400; text-transform: uppercase; letter-spacing: -1.5px; line-height: 1.05; color: var(--color-text-works-dim); transition: all 0.25s ease; white-space: nowrap; }

.project-item.active .item-index { display: none; }
.project-item.active .item-arrow-svg { display: block; }
.project-item.active .item-title { font-size: 60px; font-weight: 700; letter-spacing: -3px; color: #000000; margin-left: 8px; }

.project-meta-box { padding: 18px 40px 12px 40px; flex-shrink: 0; border-top: none; background: transparent; }
.meta-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.meta-label { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.meta-description {  font-size: clamp(12.5px, 0.9vw, 15px);  line-height: 1.5;  color: #222222;  max-width: 100%;  will-change: opacity, filter, transform;}


@media (min-width: 901px) {
  .project-pills { display: none !important; }
}

.image-preview-frame { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.preview-img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }

/* ==========================================================================
   3. FAQ SECTION (DESKTOP)
   ========================================================================== */
.faq-container { position: absolute; top: 200vh; left: 0; width: 100vw; height: 100vh; padding-top: 52px; overflow: hidden; will-change: transform; }
.faq-layout { display: grid; grid-template-columns: 54.16% 45.84%; height: calc(100vh - 52px); width: 100%; }

.faq-col-left { position: relative; padding: 40px 44px; display: flex; flex-direction: column; border-right: none; }
.faq-col-right { position: relative; padding: 40px 44px; display: flex; flex-direction: column; gap: 40px; }

.faq-title {  font-size: clamp(48px, 4.2vw, 60px);  font-weight: 900;  letter-spacing: clamp(-3.5px, -0.25vw, -2.5px);  line-height: 1.05;  text-transform: uppercase;  margin-bottom: 60px;}
.faq-image-reveal-wrap { align-self: flex-start; margin-left: 20px; }
.faq-image-hover {
  position: relative; display: inline-flex; flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center; cursor: pointer; scale: .8;
}
.faq-image-hover:hover { transform: rotate(-4deg) scale(1.03); }
.faq-photo-main { width: 340px; height: 340px; object-fit: cover; filter: grayscale(100%); }

.faq-recap-box { display: flex; flex-direction: column; gap: 12px; max-width: 90%; }
.faq-recap-title {  font-size: clamp(20px, 1.65vw, 24px); font-weight: 400; letter-spacing: -0.8px; color: #888; }
.faq-recap-desc {  font-size: clamp(14px, 1.05vw, 15px); line-height: 1.5; letter-spacing: -0.8px; font-weight: 400; color: #111; }
.faq-know-more { font-weight: 700; color: #000; cursor: pointer; display: inline-flex; font-size: 14px; letter-spacing: -0.2px; margin-top: 8px; }

.faq-accordion { display: flex; flex-direction: column; width: 100%; border-top: 1px solid var(--color-border-grid); }
.faq-item { border-bottom: 1px solid var(--color-border-grid); cursor: pointer; transition: background-color 0.3s; padding: 20px 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-main); font-size: 20px; font-weight: 700; text-transform: uppercase; color: #000; letter-spacing: -0.6px; }
.faq-icon { font-size: 32px; font-weight: 300; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); line-height: 1; display: inline-flex; align-items: center; justify-content: center; }
.faq-answer { font-family: var(--font-main); font-size: 17px; letter-spacing: -0.4px; color: #666; max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), margin-top 0.4s ease; line-height: 1.45; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 180px; margin-top: 14px; }

/* ==========================================================================
   4. FOOTER (DESKTOP)
   ========================================================================== */
.footer-container {
  position: absolute; top: 300vh; left: 0; width: 100vw; height: 460px;
  background-color: #0d0d0d; color: #fff; z-index: 200;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 60px 40px 40px; will-change: transform;
}

.footer-top { display: flex; justify-content: space-between; }
.footer-back-top a { color: #fff; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; }

.footer-menus { display: flex; gap: 120px; width: 45.84%; }
.footer-menu-col { display: flex; flex-direction: column; gap: 16px; }
.footer-menu-title { color: #666; font-size: 11px; margin-bottom: 8px; border-bottom: 1px solid #333; padding-bottom: 8px; width: 150px; text-transform: uppercase;}

.footer-link, .contact-link { color: #fff; font-size: 15px; text-decoration: none; position: relative; width: fit-content;}
.footer-link::after, .contact-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0%; height: 1px; background: #fff; transition: width 0.3s ease; }
.footer-link:hover::after, .contact-link:hover::after { width: 100%; }

.phone-accordion-wrap { display: flex; flex-direction: column; }
.phone-number-reveal { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin-top 0.3s ease; color: #999; font-size: 14px; }
.phone-accordion-wrap.active .phone-number-reveal { max-height: 50px; margin-top: 8px; }

.footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.footer-big-cta { display: flex; flex-direction: column; }
.footer-cta-sub { font-size: 12px; color: #999; margin-bottom: 8px; }
.footer-cta-main { --tumbler-ht: 80px; font-size: 80px; font-weight: 900; letter-spacing: -3px; color: #fff; line-height: 0.9; text-transform: uppercase; }
.footer-copyright { text-align: right; font-size: 11px; color: #666; line-height: 1.5; text-transform: uppercase; }













/* ========================================================================== 
   ISOLATED MOBILE STYLES (<= 900px)
   ========================================================================== */
@media (max-width: 900px) {

  .desktop-only-wrapper { display: none !important; }
  .mobile-only-wrapper { display: block !important; }

  /* RESTORED SNAP SCROLLING */
  html, body { 
  width: 100%; 
  height: 100%; 
  overflow-x: hidden; 
  overflow-y: auto; 
  scroll-snap-type: none;
  scroll-behavior: smooth;
}
  body { background: var(--color-bg); }
  .cursor-container { display: none !important; }

  /* MOBILE NAVBAR */
 .navbar.mobile-navbar { 
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 52px !important;
    padding: 0 20px !important;
    background-color: var(--color-bg) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    z-index: 10000 !important;
    border-bottom: 1px solid var(--color-border) !important;
}

.mobile-navbar .nav-hamburger {
    display: flex !important;
    position: relative;
    z-index: 10002 !important;
    pointer-events: auto !important;
}

.mobile-navbar .nav-links {
    position: fixed;
    top: 52px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 52px);
    background-color: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease;
    border-bottom: 1px solid var(--color-border);
    z-index: 10001;
}
  .mobile-navbar .nav-links.mobile-open { transform: translateY(0); opacity: 1; }
  .mobile-navbar .nav-links a { font-size: 20px; font-weight: 700; text-decoration: none; color: #000; }

  /* MOBILE SLIDE 1 VIEWPORT FRAME */
#mobileSlide1.mobile-section {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 600px;
  padding: 72px 20px 0 20px;
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

  /* TEXT BLOCKS */
  .mobile-intro-text {
    position: relative; width: 100%; margin-bottom: 10px; padding-bottom: 10px;
  min-height: 0;
  }
  
  .mobile-slide-text {
    position: absolute; top: 0; left: 0; width: 100%;
    opacity: 0; visibility: hidden; transform: translateY(6px); transition: 0.4s ease; 
  }
  .mobile-slide-text.active { opacity: 1; visibility: visible; transform: translateY(0); }

  .mobile-title {
    width: 100%; margin: 0 0 12px 0; padding: 0 2px; box-sizing: border-box;
    font-size: clamp(32px, 11vw, 54px); font-weight: 900 !important; line-height: 0.95;
    letter-spacing: -2px; color: #000; text-transform: uppercase; text-align: left; white-space: nowrap;
  }
  .mobile-statement { font-size: clamp(15px, 3.8vw, 15px); font-weight: 400; color: #222222; line-height: 1.45; letter-spacing: -0.2px; margin: 0; }

  .mobile-title-row { display: flex !important; justify-content: space-between !important; align-items: flex-start !important; gap: 12px !important; width: 100% !important; margin-bottom: 12px !important; }
  /*.mobile-title-row .mobile-title { font-size: clamp(24px, 7.5vw, 94px) !important; letter-spacing: -1.2px !important; white-space: normal !important; flex: 1; text-align: left !important; }
  .mobile-question-tag { font-size: 13px !important; font-weight: 700 !important; color: #888888 !important; flex-shrink: 0; margin-top: 2px; }

  /* FLOATING THUMBNAIL */

.mobile-thumb-frame { width: 68px; height: 80px; flex-shrink: 0; overflow: hidden; }
  .mobile-thumb-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* WEBP ARTWORK STACK */
.mobile-art-stack {
  position: absolute;
  width: 100%;
  height: 48%;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}
   
.mobile-art-layer { position: absolute; bottom: -2%; left: 50%; transform: translateX(-50%); width: 115%; height: auto; object-fit: contain; object-position: center bottom; display: block; transition: opacity 0.5s ease; }
  .mobile-art-layer.layer-archi { width: 110%; transform: translateX(-50%) translateY(5%); z-index: 1; }
  .mobile-art-layer.layer-blobs { z-index: 2; opacity: 0.2; }
  .mobile-art-layer.layer-portrait { z-index: 3; opacity: 1; }
  .mobile-art-layer.layer-internals { z-index: 4; opacity: 0; }
  .mobile-art-stack.show-internals .layer-internals { opacity: 1; }
  .mobile-art-stack.show-internals .layer-portrait { opacity: 0; }

.mobile-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #000;
  cursor: pointer;
}


.mobile-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 72px 20px 0 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.mobile-hero-slide-1 {
  z-index: 2;
  background: #f1f1f1;
}

.mobile-hero-slide-2 {
  z-index: 1;
}




/* ================================
   MOBILE PHILOSOPHY TITLE
================================ */

.mobile-philosophy-title {
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 900 !important;
  line-height: 0.95;
  letter-spacing: -1.5px;
  text-align: left;
  margin: 0 0 18px 0;
  padding: 0;
  white-space: nowrap;
}


/* ================================
   MOBILE HERO — NEXT REVEAL
================================ */

/* Slide 1 content fades out */

.mobile-hero-slide-1 .mobile-intro-text {
  transition: opacity 350ms ease;
}

.mobile-hero-slide-1.revealing .mobile-intro-text {
  opacity: 0;
}


/* Slide 2 text rises + fades in */

.mobile-hero-slide-2 .mobile-intro-text {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 450ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-hero-slide-2.revealed .mobile-intro-text {
  opacity: 1;
  transform: translateY(0);
}


/* Slide 2 — internals scan */

.mobile-art-stack-2 .layer-internals {
  position: absolute;
  z-index: 4;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 700ms cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-hero-slide-2.revealed .layer-internals {
  clip-path: inset(0 0 0 0);
}


/* Bring Slide 2 above Slide 1 */

.mobile-hero-slide-2.revealed {
  z-index: 3;
}


/* Slide 1 artwork fades out */

.mobile-hero-slide-1 .mobile-art-stack-1 {
  transition: opacity 350ms ease;
}

.mobile-hero-slide-1.revealing .mobile-art-stack-1 {
  opacity: 0;
}


/* ================================
   MOBILE THUMBNAIL
================================ */

.mobile-thumb-row {
  position: absolute;
  top: 38%;
  right: 0%;
  width: clamp(90px, 16vw, 120px);
  z-index: 9999 !important;
  pointer-events: none;
}

.mobile-thumb-frame {
  width: 70%;
}

.mobile-thumb-frame img {
  display: block;
  width: 100%;
  height: auto;
}














  /* ==========================================================================
     YOUR ORIGINAL WORKS SECTION (RESTORED EXACTLY)
     ========================================================================== */
  .projects-container { 
    position: relative; top: auto; left: auto; 
    width: 100%; height: 100svh; 
    padding-top: 52px; overflow: hidden; transform: none !important; 
    background: var(--color-bg);
    scroll-snap-align: start; scroll-snap-stop: always;
  }
  .projects-layout { display: flex; flex-direction: column; height: 100%; width: 100%; }
  
  .projects-layout .col-right {
    order: 1; grid-column: auto;
    position: relative; z-index: 30;
    width: 100%; flex: 0 0 36vh; padding: 12px 20px 0px !important;
    background: var(--color-bg); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(234, 234, 234, 0.9);
  }
  .image-preview-frame { padding: 0 !important; height: 100% !important; width: 100% !important; display: flex; align-items: center; justify-content: center; }
  .preview-img { width: auto; height: 100%; max-height: 100%; max-width: 100%; object-fit: contain; display: block; }

  .col-left {
    order: 2;
    grid-column: auto;

    position: relative;

    height: auto;
    flex: 1;

    display: flex;
    flex-direction: column;

    min-height: 0;

    z-index: 10;
}

  .section-header { display: none; }
  
  .project-list-wrapper { 
    flex: 1; overflow-y: auto; overflow-x: hidden; margin-top: -20px; 
    padding: 24px 24px 320px; scroll-behavior: smooth; scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .project-list-wrapper::-webkit-scrollbar { display: none; }
  .project-list { display: flex; flex-direction: column; gap: 12px; }
  
  .project-item { 
    width: 100%; min-height: 38px; padding: 0; opacity: 1 !important; transform: none !important; filter: none !important; 
    display: flex; align-items: center; justify-content: flex-start;
  }
  .item-index-wrap { display: none; }
  
  .item-title { 
    font-size: 30px; font-weight: 500; line-height: 0.1; letter-spacing: -0.5px; color: #B0B0B0; 
    transition: color 0.15s ease, font-weight 0.15s ease, font-size 0.15s ease; 
  }
  .project-item.active .item-title { 
    font-weight: 700; font-size: 34px; color: #000000; margin-left: 0; letter-spacing: -2.5px;
  }
  
  .project-meta-box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 40;

    margin: 0;

    padding: 10px 24px calc(12px + env(safe-area-inset-bottom, 12px));

    border-top: 1px solid var(--color-border-grid);

    background: var(--color-bg);

    box-sizing: border-box;
}
  .meta-header { align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
  .meta-label { font-size: 10px; font-weight: 800; color: #000; }
  .project-pills { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 4px; }
  .project-pill { border: 1px solid #000000; border-radius: 100px; padding: 3px 10px; color: #000000; font-size: 9px; font-weight: 700; text-transform: uppercase; }
  .meta-description { font-size: 13.5px; line-height: 1.35; color: #111; letter-spacing: -.3px; }

  /* ==========================================================================
     YOUR ORIGINAL FAQ & FOOTER (RESTORED EXACTLY)
     ========================================================================== */
  .faq-container { 
    position: relative; top: auto; left: auto; width: 100%; height: auto; padding-top: 52px; 
    overflow: visible; transform: none !important; scroll-snap-align: start; scroll-snap-stop: always;
  }
  .faq-layout { display: block; overflow: visible; height: auto; padding-bottom: 0; }
  .faq-gsap-target { opacity: 1 !important; transform: translateY(0) !important; }
  .faq-col-left { padding: 34px 20px 20px; }
  .faq-col-right { margin-top: 0; gap: 36px; }
  .faq-title { font-size: clamp(36px, 9vw, 48px); letter-spacing: -2.6px; margin-bottom: 36px; }
  .faq-recap-box { max-width: 100%; gap: 11px; }
  .faq-recap-title { font-size: 18px; }
  .faq-recap-desc { font-size: 16px; line-height: 1.35; }
  .faq-question { font-size: 16px; line-height: 1.1; }
  .faq-answer { font-size: 14px; }
  .faq-item { padding: 18px 0; }

  .footer-container { 
    position: relative; top: auto; left: auto; width: 100%; height: auto; min-height: 460px; 
    padding: 50px 20px 40px 20px; transform: none !important; scroll-snap-align: start; scroll-snap-stop: always;
  }
  .footer-top { flex-direction: column; gap: 40px; margin-bottom: 40px; }
  .footer-menus { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .footer-menu-col { width: 100%; }
  .footer-menu-title { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 30px; margin-top: 30px; }
  .footer-cta-main { font-size: 9.5vw; letter-spacing: -1px; white-space: nowrap; width: 100%; display: block; padding-bottom: 10px; --tumbler-ht: 10vw; }
  .footer-copyright { text-align: left; align-self: flex-start; font-size: 11px; }
}

@media (max-width: 600px) {
  .faq-col-left { padding: 30px 20px 0; }
  .faq-title { margin-bottom: 24px; }
  .faq-image-reveal-wrap { width: min(100%, 340px); margin-left: 0; }
  .faq-image-hover { width: 100%; scale: 1; }
  .faq-photo-main { display: block; width: 100%; height: auto; }
  .faq-col-right { padding: 30px 20px 44px; gap: 30px; }
  .faq-recap-desc { font-size: 15px; }
  .faq-item { padding: 0; }
  .faq-question { gap: 16px; min-height: 58px; font-size: 15px; line-height: 1.15; }
  .faq-question > span:first-child { flex: 1; }
  .faq-icon { flex: 0 0 28px; font-size: 28px; }
  .faq-answer { padding-right: 18px; font-size: 14px; line-height: 1.45; }
  .faq-answer p { margin: 0; padding-bottom: 18px; }
  .faq-item.active .faq-answer { max-height: 280px; margin-top: 0; }
  .footer-container { min-height: 0; padding: 36px 20px 26px; }
  .footer-top { gap: 30px; }
  .footer-menus { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 18px; }
  .footer-menu-col { gap: 12px; min-width: 0; }
  .footer-menu-title { width: 100%; margin-bottom: 2px; }
  .footer-link, .contact-link { font-size: 14px; }
  .phone-number-reveal { font-size: 13px; }
  .footer-bottom { gap: 26px; margin-top: 34px; padding-top: 24px; border-top: 1px solid #333; }
  .footer-cta-sub { margin-bottom: 7px; }
  .footer-cta-main { --tumbler-ht: clamp(33px, 10vw, 39px); display: inline-block; font-size: clamp(27px, 9.5vw, 39px); letter-spacing: -1.8px; white-space: nowrap; }
  .footer-copyright { text-align: left; }
}


/* ============================================================
   SHORT DESKTOP SAFETY
   Prevents the hero composition from overflowing vertically
   on short/wide laptop and monitor viewports.
   ============================================================ */
@media (min-width: 901px) and (max-height: 820px) {

  .hero-statement {
    font-size: clamp(21px, 2vw, 26px);
  }

  .bio-middle {
    margin-top: clamp(50px, 10vh, 120px);
  }

  .layer-portrait,
  .layer-internals {
    scale: 1.05;
    padding-bottom: 20px;
    padding-right: 16px;
  }

  .art-layer {
    max-width: 112%;
  }
}















/* =========================================================
   MOBILE FAQ — STANDALONE
   ========================================================= */

@media (max-width: 900px) {

  .mobile-faq-section {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100svh;

    padding: 70px 20px 80px;

    background: var(--color-bg);

    overflow: visible;
    transform: none !important;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }


  .mobile-faq-inner {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }


  /* TITLE */

  .mobile-faq-title {
    margin: 0 0 28px;

    font-family: var(--font-main);
    font-size: clamp(38px, 10vw, 52px);
    font-weight: 900;

    line-height: 0.95;
    letter-spacing: -2.5px;

    text-transform: uppercase;
  }


  /* IMAGE */

  .mobile-faq-image {
    width: min(100%, 320px);
    margin-bottom: 40px;
  }

  .mobile-faq-image img {
    display: block;

    width: 100%;
    height: auto;

    filter: grayscale(100%);
  }


  /* RECAP */

  .mobile-faq-recap {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-bottom: 45px;
  }

  .mobile-faq-recap-title {
    font-size: 18px;
    font-weight: 400;

    color: #888;

    letter-spacing: -0.5px;
    text-transform: uppercase;
  }

  .mobile-faq-recap p {
    margin: 0;

    font-size: 16px;
    line-height: 1.4;

    letter-spacing: -0.3px;
    color: #111;
  }

  .mobile-faq-recap a {
    width: fit-content;

    margin-top: 4px;

    color: #000;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.2px;
  }


  /* FAQ LIST */

  .mobile-faq-list {
    width: 100%;

    border-top: 1px solid var(--color-border-grid);
  }


  /* INDIVIDUAL ITEM */

  .mobile-faq-item {
    width: 100%;

    border-bottom: 1px solid var(--color-border-grid);
  }


  /* QUESTION */

  .mobile-faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 0;

    border: 0;
    background: transparent;

    color: #000;

    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;

    line-height: 1.15;
    letter-spacing: -0.5px;

    text-align: left;
    text-transform: uppercase;

    cursor: pointer;
  }


  .mobile-faq-question span:first-child {
    flex: 1;
  }


  /* PLUS */

  .mobile-faq-icon {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    font-size: 25px;
    font-weight: 300;
    line-height: 1;

    transition:
      transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  }


  /* ANSWER */

  .mobile-faq-answer {
    height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
      height 0.45s cubic-bezier(0.25, 1, 0.5, 1),
      opacity 0.25s ease;
  }


  .mobile-faq-answer p {
    margin: 0;

    padding: 0 35px 20px 0;

    font-size: 14px;
    line-height: 1.45;

    letter-spacing: -0.25px;

    color: #666;
  }


  /* OPEN STATE */

  .mobile-faq-item.is-open .mobile-faq-icon {
    transform: rotate(45deg);
  }

  .mobile-faq-item.is-open .mobile-faq-answer {
    opacity: 1;
  }

}


/* Smaller phones */

@media (max-width: 600px) {

  .mobile-faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-faq-title {
    font-size: clamp(36px, 10vw, 46px);
    letter-spacing: -2.2px;
  }

}