/* ============================================================
   Reset & Base
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: #df0f0f transparent;
}

body {
  margin: 0;
  min-height: 100%;
  background: #fff;
  color: #000;
  font-family: Manrope, sans-serif;
  overflow-x: hidden;
}

/* ============================================================
   Custom Scrollbar (WebKit)
   ============================================================ */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: transparent;
}

::-webkit-scrollbar-track {
  background: transparent;
  border: none;
}

::-webkit-scrollbar-thumb {
  background: #df0f0f;
  border: 2px solid transparent;
  border-radius: 10px;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: #a00a0a;
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* ============================================================
   GSAP ScrollSmoother Wrapper
   ============================================================ */
#smooth-wrapper {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#smooth-content {
  overflow: visible;
  width: 100%;
}

img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  border: 0;
}

h1, h2, h3, h4, h5, h6, p, ul {
  margin: 0;
  padding: 0;
}

ul { list-style: none; }

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

.fp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fp-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: .5rem 1rem;
  background: #000;
  color: #fff;
}

.fp-skip-link:focus { left: 0; }

/* ============================================================
   Fonts
   ============================================================ */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLight.otf') format('opentype');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueMedium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}

/* ============================================================
   Page Wrapper
   ============================================================ */
.fp-page {
  width: 100%;
  margin: 0 auto;
  font-size: 1.111vw;
  position: relative;
}

/* ============================================================
   Navigation
   ============================================================ */
.fp-nav {
  z-index: 20;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1vw 7.5vw;
  background: #fff;
  border: none;
  box-shadow: none;
}

.fp-nav-brand {
  display: flex;
  flex-direction: column;
  gap: .417vw;
}

.fp-nav-name,
.fp-nav-sub {
  text-transform: uppercase;
  line-height: 1.05;
}

.fp-nav-name { font-size: 1.5vw; font-weight: 400; }
.fp-nav-sub  { font-size: 1.333vw; font-weight: 200; }

.fp-nav-links {
  display: flex;
  align-items: center;
  gap: 3.472vw;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.111vw;
}

.fp-nav-link,
.fp-nav-btn {
  text-decoration: none;
  color: inherit;
  transition: color .25s, background-color .25s, border-color .25s;
}

.fp-nav-link { font-size: 1vw; }

.fp-nav-link-arrow { display: none; }
.fp-nav-link-text { display: inline; }

.fp-nav-btn {
  border: .069vw solid #000;
  border-radius: .347vw;
  padding: .486vw 1.875vw;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1vw;
  line-height: 1.05;
}

.fp-nav-link:hover,
.fp-lt:hover,
.fp-loadmore:hover { color: #df0f0f; }

/* Hamburger toggle — desktop hidden by default */
.fp-nav-toggle {
  display: none;
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 22;
}

.fp-nav-toggle span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}

.fp-nav-toggle span:nth-child(1) { top: 9px; }
.fp-nav-toggle span:nth-child(2) { top: 15px; }
.fp-nav-toggle span:nth-child(3) { top: 21px; }

.fp-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.fp-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.fp-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

.fp-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 19;
  opacity: 0;
  transition: opacity .3s ease;
}

.fp-nav-backdrop:not([hidden]) {
  display: block;
  opacity: 1;
}

body.fp-nav-open { overflow: hidden; }

.fp-nav-btn:hover {
  color: #fff;
  background: #000;
  border-color: #000;
}

/* ============================================================
   Hero
   ============================================================ */
.fp-hero-sec {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 100vh;
  padding: 7.5vw;
  position: relative;
}

.fp-hero-bg-brand,
.fp-projects-title {
  z-index: 3;
  color: #ddd;
  letter-spacing: -.05em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  font-size: 15vw;
  font-weight: 700;
  line-height: .8em;
  position: relative;
}

.fp-projects-title { text-align: center; }

.fp-hero-brand-inner {
  position: relative;
  display: inline-block;
}

.fp-hero-star {
  position: absolute;
  top: -1.5vw;
  right: -1.5vw;
  width: 4.5vw;
  height: auto;
  z-index: 4;
  will-change: transform;
  transform-origin: 50% 50%;
}

.fp-hero-mascot {
  z-index: 2;
  width: 35%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 8%;
  object-fit: contain;
}

/* ============================================================
   Perception Block
   ============================================================ */
.fp-perc-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 7.5vw;
  background: #df0f0f;
  font-size: 14.719vw;
}

.fp-hero-bg-brand-copy {
  z-index: 3;
  position: relative;
  color: #fff;
  letter-spacing: -.05em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0 auto;
  font-size: 7vw;
  font-weight: 500;
  line-height: .8em;
  overflow: hidden;
}

.fp-reveal {
  display: inline-block;
  will-change: transform;
}

.fp-hero-bg-brand-copy._1,
.fp-hero-bg-brand-copy._2 { margin-left: 0; }

.fp-hero-bg-brand-copy._1 { padding-left: 3ch; }
.fp-hero-bg-brand-copy._3 { margin-right: 0; }
.fp-hero-bg-brand-copy._3._4 { margin: 0 auto; font-weight: 500; }

.fp-hero-bold { font-weight: 800; }

/* ============================================================
   Description Block (under perception, above services)
   ============================================================ */
.fp-desc-section {
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 5.625vw 7.5vw 5vw;
}

.fp-desc-inner {
  max-width: 32em;
}

.fp-desc {
  color: #df0f0f;
  letter-spacing: .02em;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.667vw;
  font-weight: 300;
  line-height: 1.02;
  margin: 0 0 2em;
}

.fp-desc-2 {
  color: #494949;
  margin-bottom: 0;
}

/* ============================================================
   Services
   ============================================================ */
.fp-services {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.556vw;
  padding: 7.5vw;
}

.fp-services-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4vw;
  width: 100%;
}

.fp-srv-col { flex: 0 0 auto; }

.fp-srv-icon {
  display: flex;
  align-items: center;
  height: 2.778vw;
  margin-bottom: 1.389vw;
}

.fp-srv-img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

.fp-srv-svg {
  height: 100%;
  width: auto;
  display: block;
}

.fp-eyelid {
  transform-box: fill-box;
  transform-origin: top;
  transform: scaleY(0);
  animation: fp-eye-blink 3.2s infinite ease-in-out;
}

.fp-heart {
  transform-box: fill-box;
  transform-origin: center;
  animation: fp-heart-beat 1.2s infinite ease-in-out;
}

@keyframes fp-heart-beat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.18); }
  28% { transform: scale(1); }
  42% { transform: scale(1.12); }
  70% { transform: scale(1); }
}

@keyframes fp-eye-blink {
  0%, 44%, 56%, 100% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
}

.fp-srv-num,
.fp-srv-title,
.fp-srv-desc {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.2;
}

.fp-srv-num   { color: #111; margin-bottom: .833vw;  font-size: 1vw;    font-weight: 500; }
.fp-srv-title { color: #111; margin: 0 0 2.5vw;      font-size: 1.25vw; font-weight: 500; line-height: 1.2em; font-family: 'Helvetica Neue', Arial, sans-serif; }
.fp-srv-desc  { color: #8a8a8a; margin: 0;           font-size: 1.25vw; font-weight: 300; line-height: 1.2em; font-family: 'Helvetica Neue', Arial, sans-serif; }

/* ============================================================
   Projects
   ============================================================ */
.fp-projects-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4vw;
  padding: 0 7.5vw;
  position: relative;
}

.fp-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5vw;
  align-items: start;
  position: relative;
  z-index: 2;
}

.fp-proj-col {
  display: flex;
  flex-direction: column;
  gap: 5vw;
  will-change: transform;
}

.fp-proj-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .3s ease;
}

.fp-proj-card:hover { transform: translateY(-.5vw); }

.fp-proj-visual {
  position: relative;
  width: 100%;
  border: .017vw solid #000;
  background: #fff;
}

.fp-proj-img {
  display: block;
  width: 100%;
  height: auto;
}

.fp-proj-caption { padding-top: 2.222vw; }

.fp-proj-name,
.fp-proj-role { font-family: Manrope, sans-serif; }

.fp-proj-name {
  margin-bottom: .644vw;
  font-size: 1.667vw;
  font-weight: 500;
  line-height: 1;
}

.fp-proj-role {
  letter-spacing: -.02em;
  margin-bottom: 1.111vw;
  font-size: 1.25vw;
  font-weight: 400;
}

.fp-proj-tags {
  display: flex;
  gap: .556vw;
}

.fp-proj-tag {
  display: flex;
  align-items: center;
  letter-spacing: -.02em;
  white-space: nowrap;
  height: 1.333vw;
  padding: 1vw;
  border: .035vw solid #000;
  border-radius: 11.5vw;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1vw;
}

/* Project visual color variants (only those that override defaults) */
.fp-haley  { background: #1c1c1c; border-color: #1c1c1c; }
.fp-fwp    { background: #dd4f5c; border-color: #dd4f5c; }
.fp-teri   { background: #252525; border-color: #252525; }
.fp-munjoh { background-size: cover; }

/* ============================================================
   Footer / Load More
   ============================================================ */
.fp-footer-wrap { width: 100%; }

.fp-loadmore-sec {
  display: flex;
  justify-content: center;
  padding: 4.167vw 0 5.556vw;
}

.fp-loadmore {
  color: inherit;
  font-size: 1.667vw;
  text-decoration: underline;
  transition: color .2s;
}

/* ============================================================
   Contact
   ============================================================ */
.fp-contact {
  padding: 5.556vw 9.008vw 4.743vw;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.fp-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 5vw;
}

.fp-contact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-style: normal;
  width: 100%;
}

.fp-contact-block-left { text-align: left; }
.fp-contact-block-right { text-align: right; }

.fp-contact-label {
  color: #111;
  font-size: 1.1vw;
  font-weight: 600;
  margin-bottom: .6vw;
  letter-spacing: 0;
}

.fp-contact-value {
  color: #8a8a8a;
  font-size: 1vw;
  font-weight: 300;
  line-height: 1.25;
}

.fp-contact-mail {
  display: inline-block;
  color: #df0f0f;
  font-size: 1vw;
  font-weight: 400;
  cursor: pointer;
  transition: opacity .2s;
  text-decoration: none;
}

.fp-contact-mail:hover { opacity: .75; }

.fp-contact-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.fp-contact-kicker {
  color: #464646;
  margin: 0 0 1vw;
  font-size: 1.1vw;
  font-weight: 400;
  font-family: Inter, Arial, sans-serif;
}

.fp-contact-title-row,
.fp-contact-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fp-contact-title { gap: 2.083vw; margin: 0; }

.fp-lt {
  color: #111;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-family: Manrope, sans-serif;
  font-size: 8.5vw;
  font-weight: 600;
  line-height: 1;
  transition: color .25s;
  text-decoration: none;
}

.fp-contact-arrow { display: block; }
.fp-contact-arrow svg { width: 5vw; height: 5vw; }

.fp-contact-line {
  width: 100%;
  height: 3px;
  margin-top: .4vw;
  background: #df0f0f;
  border-radius: 0;
}

/* ============================================================
   Responsive — Large Desktop Cap (≥ 1600px)
   Keep the page from getting absurdly large on ultra-wide screens
   ============================================================ */
@media screen and (min-width: 1600px) {
  .fp-page { font-size: 18px; }
  .fp-nav-name { font-size: 24px; }
  .fp-nav-sub { font-size: 22px; }
  .fp-nav-links { font-size: 18px; gap: 56px; }
  .fp-nav-link, .fp-nav-btn { font-size: 16px; }
  .fp-nav-btn { padding: 8px 30px; border-radius: 6px; border-width: 1px; }
  .fp-hero-bg-brand, .fp-projects-title { font-size: 240px; }
  .fp-proj-visual { border-width: 1px; }
  .fp-proj-name { font-size: 27px; }
  .fp-proj-role { font-size: 20px; }
  .fp-proj-tag { font-size: 16px; height: auto; padding: 10px 18px; border-width: 1px; border-radius: 100px; }
  .fp-lt { font-size: 135px; }
}

/* ============================================================
   Responsive — Tablet (≤ 991px)
   ============================================================ */
@media screen and (max-width: 991px) {
  .fp-page { font-size: 14px; }

  /* Nav */
  .fp-nav { padding: 16px 40px; }
  .fp-nav-name { font-size: 18px; }
  .fp-nav-sub { font-size: 14px; }
  .fp-nav-links { gap: 28px; font-size: 14px; }
  .fp-nav-link { font-size: 14px; }
  .fp-nav-btn {
    font-size: 13px;
    padding: 8px 20px;
    border-width: 1px;
    border-radius: 6px;
  }

  /* Hero */
  .fp-hero-sec { padding: 80px 40px 60px; min-height: 90vh; }
  .fp-hero-bg-brand { font-size: 18vw; }
  .fp-hero-mascot { width: 60%; right: 8%; }
  .fp-hero-star { width: 7vw; top: -2vw; right: -2vw; }

  /* Perception */
  .fp-perc-wrap { padding: 0 40px; font-size: 15vw; }
  .fp-hero-bg-brand-copy,
  .fp-hero-bg-brand-copy._1,
  .fp-hero-bg-brand-copy._2,
  .fp-hero-bg-brand-copy._3,
  .fp-hero-bg-brand-copy._3._4 { font-size: 10vw; }

  /* Description block */
  .fp-desc-section { padding: 6vw 40px; }
  .fp-desc { font-size: 18px; }

  /* Services */
  .fp-services { padding: 60px 40px; gap: 40px; }
  .fp-services-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
  }
  .fp-srv-col { flex: 0 1 calc(50% - 24px); }
  .fp-srv-icon { height: 40px; margin-bottom: 16px; }
  .fp-srv-svg { height: 40px; width: auto; }
  .fp-srv-num { font-size: 15px; margin-bottom: 8px; }
  .fp-srv-title { font-size: 20px; margin-bottom: 22px; }
  .fp-srv-desc { font-size: 15px; }

  /* Projects */
  .fp-projects-wrap { padding: 0 40px; gap: 28px; }
  .fp-projects-title { font-size: 18vw; }
  .fp-projects-grid { gap: 40px; }
  .fp-proj-visual { border-width: 1px; }
  .fp-proj-caption { padding-top: 20px; }
  .fp-proj-name { font-size: 22px; margin-bottom: 8px; }
  .fp-proj-role { font-size: 16px; margin-bottom: 14px; }
  .fp-proj-tags { gap: 8px; flex-wrap: wrap; }
  .fp-proj-tag {
    font-size: 13px;
    height: auto;
    padding: 7px 14px;
    border-width: 1px;
    border-radius: 100px;
  }

  /* Footer / Load More */
  .fp-loadmore-sec { padding: 40px 0 60px; }
  .fp-loadmore { font-size: 20px; }

  /* Contact */
  .fp-contact { padding: 60px 40px; }
  .fp-contact-grid { gap: 40px; }
  .fp-contact-top { gap: 24px; }
  .fp-contact-kicker { font-size: 14px; margin-bottom: 16px; }
  .fp-contact-title { gap: 20px; }
  .fp-lt { font-size: 14vw; line-height: .9; }
  .fp-contact-line { height: 3px; margin-top: 16px; border-radius: 2px; }
  .fp-contact-block { margin-bottom: 0; }
  .fp-contact-label { font-size: 16px; margin-bottom: 6px; }
  .fp-contact-value { font-size: 14px; }
  .fp-contact-mail { font-size: 14px; }
  .fp-contact-arrow svg { width: 48px; height: 48px; }
}

/* ============================================================
   Responsive — Mobile (≤ 767px)
   ============================================================ */
@media screen and (max-width: 767px) {
  /* Nav — compact with hamburger. */
  .fp-nav {
    padding: 14px 20px;
    gap: 10px;
    flex-wrap: nowrap;
    position: relative;
    z-index: 30;
  }
  .fp-nav-brand { flex-direction: row; align-items: baseline; gap: 8px; }
  .fp-nav-name { font-size: 16px; font-weight: 600; }
  .fp-nav-sub { font-size: 12px; }

  .fp-nav-toggle {
    display: block;
    margin-left: auto;
    width: 44px;
    height: 44px;
    z-index: 32;
  }
  .fp-nav-toggle span {
    left: 10px;
    right: 10px;
    height: 2px;
    background: #111;
  }
  .fp-nav-toggle span:nth-child(1) { top: 16px; }
  .fp-nav-toggle span:nth-child(2) { top: 22px; }
  .fp-nav-toggle span:nth-child(3) { top: 28px; }
  .fp-nav-toggle[aria-expanded="true"] span { background: #fff; }
  .fp-nav-toggle[aria-expanded="true"] span:nth-child(1),
  .fp-nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; }

  /* Full-screen modern mobile menu — red panel, large links, staggered reveal. */
  .fp-nav-links {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    padding: 96px 28px 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    background: #df0f0f;
    color: #fff;
    transform: translateY(-100%);
    transition: transform .55s cubic-bezier(.77, 0, .175, 1);
    z-index: 31;
    overflow-y: auto;
    font-family: Manrope, sans-serif;
  }

  body.fp-nav-open .fp-nav-links { transform: translateY(0); }

  .fp-nav-link {
    position: relative;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.02em;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease, transform .5s cubic-bezier(.2, .7, .3, 1);
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .fp-nav-link-text {
    display: inline-block;
    transition: transform .45s cubic-bezier(.2, .7, .3, 1), letter-spacing .45s cubic-bezier(.2, .7, .3, 1);
    will-change: transform;
  }

  .fp-nav-link-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #fff;
    color: #df0f0f;
    transform: translate(40px, -50%) scale(.4);
    opacity: 0;
    transition: transform .5s cubic-bezier(.2, .7, .3, 1), opacity .35s ease;
    pointer-events: none;
  }

  .fp-nav-link-arrow svg {
    width: 20px;
    height: 20px;
    display: block;
  }

  .fp-nav-link::after {
    content: "";
    position: absolute;
    left: -10%;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width .5s cubic-bezier(.2, .7, .3, 1);
  }

  .fp-nav-link:hover,
  .fp-nav-link:focus-visible { color: #fff; }

  .fp-nav-link:hover .fp-nav-link-text,
  .fp-nav-link:focus-visible .fp-nav-link-text {
    transform: translateX(14px);
    letter-spacing: 0;
    color: #fff;
  }

  .fp-nav-link:hover .fp-nav-link-arrow,
  .fp-nav-link:focus-visible .fp-nav-link-arrow {
    transform: translate(0, -50%) scale(1);
    opacity: 1;
  }

  .fp-nav-link:hover::after,
  .fp-nav-link:focus-visible::after {
    width: 120%;
  }

  .fp-nav-btn {
    font-size: 18px;
    padding: 14px 28px;
    text-align: center;
    border: 1.5px solid #fff;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    margin-top: 28px;
    align-self: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease, transform .5s cubic-bezier(.2, .7, .3, 1), background .25s, color .25s;
  }

  .fp-nav-btn:hover { background: #fff; color: #df0f0f; border-color: #fff; }

  body.fp-nav-open .fp-nav-link,
  body.fp-nav-open .fp-nav-btn {
    opacity: 1;
    transform: translateY(0);
  }
  body.fp-nav-open .fp-nav-link:nth-child(1) { transition-delay: .18s; }
  body.fp-nav-open .fp-nav-link:nth-child(2) { transition-delay: .26s; }
  body.fp-nav-open .fp-nav-link:nth-child(3) { transition-delay: .34s; }
  body.fp-nav-open .fp-nav-btn               { transition-delay: .42s; }

  .fp-nav-backdrop { display: none !important; }

  /* Hero */
  .fp-hero-sec { padding: 90px 20px 40px; min-height: 70vh; overflow: hidden; }
  .fp-hero-bg-brand { font-size: 17vw; max-width: 100%; }
  .fp-projects-title { max-width: 100%; overflow: hidden; }
  .fp-hero-mascot { width: 60%; right: 4%; bottom: 0; }
  .fp-hero-star { width: 8vw; top: -2vw; right: -2.5vw; }

  /* Perception — only shrink font, preserve desktop alignment stagger */
  .fp-perc-wrap { padding: 12px 20px; }
  .fp-hero-bg-brand-copy,
  .fp-hero-bg-brand-copy._1,
  .fp-hero-bg-brand-copy._2,
  .fp-hero-bg-brand-copy._3,
  .fp-hero-bg-brand-copy._3._4 {
    font-size: 9vw;
  }

  /* Description block */
  .fp-desc-section { padding: 10vw 20px; }
  .fp-desc { font-size: 16px; margin: 0 0 1.5em; }

  /* Services — stacked */
  .fp-services { padding: 10vw 20px; gap: 24px; }
  .fp-services-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
  }
  .fp-srv-col { flex: 0 0 auto; width: 100%; }
  .fp-srv-icon { height: 36px; margin-bottom: 14px; }
  .fp-srv-svg { height: 36px; width: auto; }
  .fp-srv-num { font-size: 14px; margin-bottom: 6px; }
  .fp-srv-title { font-size: 18px; margin-bottom: 14px; }
  .fp-srv-desc { font-size: 14px; }

  /* Projects — single column */
  .fp-projects-wrap { padding: 0 20px; gap: 20px; }
  .fp-projects-title { font-size: 16vw; }
  .fp-projects-grid { grid-template-columns: 1fr; gap: 40px; }
  .fp-proj-col { gap: 40px; will-change: auto; transform: none !important; }
  .fp-projects-grid { padding: 0; }
  .fp-proj-caption { padding-top: 16px; }
  .fp-proj-name { font-size: 20px; }
  .fp-proj-role { font-size: 14px; margin-bottom: 12px; }
  .fp-proj-tag { font-size: 12px; padding: 6px 12px; }

  /* Load more */
  .fp-loadmore-sec { padding: 28px 0 36px; }
  .fp-loadmore { font-size: 16px; }

  /* Contact */
  .fp-contact { padding: 40px 20px; }
  .fp-contact-grid { gap: 32px; }
  .fp-contact-top { gap: 16px; }
  .fp-contact-title {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }
  .fp-lt { font-size: 13vw; line-height: .9; }
  .fp-contact-arrow svg { width: 36px; height: 36px; }
  .fp-contact-line { height: 3px; margin-top: 14px; border-radius: 2px; }
  .fp-contact-kicker { font-size: 13px; margin-bottom: 12px; }
  .fp-contact-label { font-size: 14px; margin-bottom: 4px; }
  .fp-contact-value { font-size: 12px; }
  .fp-contact-mail { font-size: 13px; }
}

/* ============================================================
   Responsive — Small Mobile (≤ 479px)
   ============================================================ */
@media screen and (max-width: 479px) {
  .fp-nav { padding: 10px 16px; }
  .fp-nav-links { gap: 10px; }
  .fp-nav-btn { padding: 5px 10px; }

  .fp-hero-sec { padding: 80px 16px 30px; min-height: 55vh; ; }
  .fp-hero-mascot { width: 75%; }

  .fp-perc-wrap { padding: 10px 16px; }

  .fp-services { padding: 9vw 16px; }
  .fp-desc-section { padding: 9vw 16px; }
  .fp-desc { font-size: 15px; }
  .fp-projects-wrap { padding: 0 16px; }

  .fp-contact { padding: 32px 16px; }
  .fp-hero-bg-brand { font-size: 15vw; }
  .fp-projects-title { font-size: 15vw; }
  .fp-lt { font-size: 13vw; }

  .fp-hero-bg-brand-copy,
  .fp-hero-bg-brand-copy._1,
  .fp-hero-bg-brand-copy._2,
  .fp-hero-bg-brand-copy._3,
  .fp-hero-bg-brand-copy._3._4 {
    font-size: 7.5vw;
  }
}

/* ============================================================
   Horizontal-scroll section — 10 panels, 1000vw track
   ============================================================ */
.fp-projects-wrap { display: none; }

.fp-services {
  position: relative;
  z-index: 1;
  background: #fff;
}

.fp-hscroll {
  position: relative;
  width: 100vw;
  overflow: hidden;
  background: #fff;
  z-index: 2;
}

.fp-hscroll-pin {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

/* Stationary "PROJECTS" heading — lives in the pin, not the track,
   so it stays put while panels slide horizontally under it. */
.fp-hscroll-heading {
  position: absolute;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 14.7vw;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #e3e3e3;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.fp-hscroll-track {
  position: relative;
  display: flex;
  width: 1000vw;
  height: 100vh;
  will-change: transform;
  z-index: 2;
}

.fp-hscroll-panel {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  padding: 4vh 7.5vw 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 2vw;
  background: transparent;
}

.fp-hscroll-picture {
  display: contents;
}

.fp-hscroll-img {
  width: 85%;
  max-width: 85%;
  max-height: 60vh;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.fp-hscroll-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
  width: 65%;
  margin: 0 auto;
  box-sizing: border-box;
}

.fp-hscroll-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2vw;
  min-width: 0;
}

.fp-hscroll-name {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-weight: 500;
  font-size: 1.7vw;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #000;
}

.fp-hscroll-role {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-weight: 400;
  font-size: 1.25vw;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #000;
}

.fp-hscroll-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.6vw;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.fp-hscroll-tag {
  border: 1px solid #8a8a8a;
  border-radius: 999px;
  padding: 0.4vw 1.3vw;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 0.85vw;
  letter-spacing: -0.01em;
  color: #000;
  white-space: nowrap;
  background: transparent;
}

/* ============================================================
   Mobile: static vertical project list — no pin, no animation.
   ============================================================ */
@media screen and (max-width: 767px) {
  .fp-hscroll { overflow: visible; }

  .fp-hscroll-pin {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .fp-hscroll-heading {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 10vw 20px 4vw;
    font-size: 18vw;
    text-align: center;
  }

  .fp-hscroll-track {
    display: block;
    width: 100%;
    height: auto;
    will-change: auto;
  }

  .fp-hscroll-panel {
    position: relative;
    flex: none;
    width: 100%;
    height: auto;
    padding: 0 20px 10vw;
    gap: 16px;
    justify-content: flex-start;
  }

  .fp-hscroll-img {
    width: 100%;
    max-width: 100%;
    max-height: none;
    height: auto;
    margin: 0 auto;
  }

  .fp-hscroll-caption {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 12px;
  }

  .fp-hscroll-name { font-size: 20px; }
  .fp-hscroll-role { font-size: 14px; }

  .fp-hscroll-tags {
    justify-content: flex-start;
    gap: 8px;
  }

  .fp-hscroll-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media screen and (max-width: 479px) {
  .fp-hscroll-heading { padding: 9vw 16px 4vw; }
  .fp-hscroll-panel { padding: 0 16px 9vw; }
}

/* ============================================================
   Reduced Motion — honor user preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Project Popups — slide-up panels triggered from project cards
   ============================================================ */

.fp-hscroll-panel[data-popup-open] { cursor: pointer; outline: none; }
.fp-hscroll-panel[data-popup-open]:focus { outline: none; }
.fp-hscroll-panel[data-popup-open]:focus-visible {
  outline: 2px solid #df0f0f;
  outline-offset: 4px;
}

.global-px {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 125px;
  padding-right: 125px;
}
@media screen and (min-width: 1440px) {
  .global-px { max-width: 1720px; }
}
@media screen and (max-width: 767px) {
  .global-px { padding-left: 24px; padding-right: 24px; }
}

.sara-nabati,
.michelle-lawson,
.hillary-walsh,
.tom-elliott,
.rose-desauguste,
.munjoh-resort,
.flying-wish-paper,
.haley-dasovich,
.teri-citterman,
.jeancarlo-novelli,
.nikola-obradovic,
.rowan-sinclair {
  background-color: #fff;
  margin: 0;
  display: block;
}

.heading-4 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 56px;
  line-height: 1.2em;
}
.paragraph-3 {
  width: 40%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .heading-4 { font-size: 32px; }
  .paragraph-3 { width: 100%; font-size: 16px; }
}

.div-block-17.global-px {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .div-block-17.global-px { flex-flow: column; align-items: flex-start; gap: 16px; }
}
.div-block-19 {
  grid-column-gap: 150px;
  grid-row-gap: 150px;
  flex-flow: column;
  justify-content: space-between;
  padding-top: 200px;
  padding-bottom: 200px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .div-block-19 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.div-block-21 {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}
.div-block-24 {
  flex-flow: column;
  display: block;
}
.teri-fullbleed,
.teri-boxed,
.jc-fullbleed,
.jc-boxed,
.nk-fullbleed,
.nk-boxed,
.rw-fullbleed,
.rw-boxed {
  width: 100%;
  display: block;
}
.teri-fullbleed img,
.teri-boxed img,
.jc-fullbleed img,
.jc-boxed img,
.nk-fullbleed img,
.nk-boxed img,
.rw-fullbleed img,
.rw-boxed img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.jc-two-col,
.nk-two-col,
.rw-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
}
.jc-two-col > *,
.nk-two-col > *,
.rw-two-col > * { width: 100%; min-width: 0; }
.jc-two-col img,
.nk-two-col img,
.rw-two-col img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.teri-linkedin-card {
  border: 1px solid #00000080;
  background: #fff;
  padding: 64px 64px 56px;
  width: 100%;
  box-sizing: border-box;
}
.teri-section-title {
  margin: 0 0 56px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 767px) {
  .teri-linkedin-card { padding: 32px 20px 28px; }
  .teri-section-title { font-size: 32px; margin-bottom: 32px; }
}
.teri-linkedin-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  width: 100%;
}
.teri-linkedin-row > * { width: 100%; }
.teri-linkedin-row img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.teri-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
}
.teri-two-col > * { width: 100%; min-width: 0; }
.teri-two-col img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
/* ============================================================
   Popup multi-image row — slider on mobile with pagination dots
   ============================================================ */
@media screen and (max-width: 767px) {
  [data-popup] .div-block-21,
  [data-popup] .teri-linkedin-row,
  [data-popup] .teri-two-col,
  [data-popup] .jc-two-col,
  [data-popup] .nk-two-col,
  [data-popup] .rw-two-col {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    box-sizing: border-box;
  }
  /* Full-bleed sliders get gutters so each slide reads as a card with margins. */
  [data-popup] .div-block-21,
  [data-popup] .teri-two-col,
  [data-popup] .jc-two-col,
  [data-popup] .nk-two-col,
  [data-popup] .rw-two-col {
    padding-left: 20px;
    padding-right: 20px;
    gap: 40px;
    scroll-padding-left: 20px;
    scroll-padding-right: 20px;
  }
  [data-popup] .div-block-21::-webkit-scrollbar,
  [data-popup] .teri-linkedin-row::-webkit-scrollbar,
  [data-popup] .teri-two-col::-webkit-scrollbar,
  [data-popup] .jc-two-col::-webkit-scrollbar,
  [data-popup] .nk-two-col::-webkit-scrollbar,
  [data-popup] .rw-two-col::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
  [data-popup] .div-block-21 > *,
  [data-popup] .teri-linkedin-row > *,
  [data-popup] .teri-two-col > *,
  [data-popup] .jc-two-col > *,
  [data-popup] .nk-two-col > *,
  [data-popup] .rw-two-col > * {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    scroll-snap-align: start;
  }
  [data-popup] .div-block-21 img,
  [data-popup] .teri-linkedin-row img,
  [data-popup] .teri-two-col img,
  [data-popup] .jc-two-col img,
  [data-popup] .nk-two-col img,
  [data-popup] .rw-two-col img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.popup-slider-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
}
.popup-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.popup-slider-dot.is-active {
  background: #df0f0f;
  width: 24px;
}
@media screen and (max-width: 767px) {
  .popup-slider-dots { display: flex; }
}
.all-border {
  border: 1px solid #00000080;
  overflow: hidden;
}
[data-popup] img { max-width: 100%; height: auto; display: block; }

/* Glass-blur backdrop */
.popup-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  pointer-events: none;
}
.popup-overlay.is-active {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: all;
}

.popup-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
}

[data-popup] {
  display: block !important;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
  max-width: none;
  height: 100vh;
  background: #fff;
  border-radius: 32px 32px 0 0;
  margin: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%) scale(0.92);
  transform-origin: 50% 100%;
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    border-radius 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
  z-index: 10000;
  will-change: transform, opacity;
  box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.28);
}
[data-popup].is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-radius: 0;
  pointer-events: all;
}

/* Stagger-reveal the inner content once the panel has started moving. */
[data-popup] .div-block-19 > * {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-popup].is-open .div-block-19 > *               { opacity: 1; transform: translateY(0); }
[data-popup].is-open .div-block-19 > *:nth-child(1)  { transition-delay: 0.28s; }
[data-popup].is-open .div-block-19 > *:nth-child(2)  { transition-delay: 0.36s; }
[data-popup].is-open .div-block-19 > *:nth-child(3)  { transition-delay: 0.44s; }
[data-popup].is-open .div-block-19 > *:nth-child(4)  { transition-delay: 0.52s; }
[data-popup].is-open .div-block-19 > *:nth-child(5)  { transition-delay: 0.60s; }
[data-popup].is-open .div-block-19 > *:nth-child(6)  { transition-delay: 0.68s; }
[data-popup].is-open .div-block-19 > *:nth-child(7)  { transition-delay: 0.76s; }
[data-popup].is-open .div-block-19 > *:nth-child(n+8){ transition-delay: 0.84s; }

/* Heading + paragraph within the hero row get their own staggered slide. */
[data-popup] .div-block-17 .heading-4 {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-popup] .div-block-17 .paragraph-3 {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
[data-popup].is-open .div-block-17 .heading-4,
[data-popup].is-open .div-block-17 .paragraph-3 {
  opacity: 1;
  transform: translateY(0);
}
[data-popup].is-open .div-block-17 .heading-4  { transition-delay: 0.34s; }
[data-popup].is-open .div-block-17 .paragraph-3 { transition-delay: 0.46s; }

body.popup-lock { overflow: hidden; }

/* Hide any per-popup inline close buttons — we use one floating button
   at the wrapper level instead (see .popup-close-floating). */
[data-popup] .popup-close { display: none; }

.popup-close-floating {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: #df0f0f;
  cursor: pointer;
  color: #fff;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0) rotate(-90deg);
  box-shadow: 0 6px 20px rgba(223, 15, 15, 0.35);
  transition:
    opacity 0.35s ease 0.15s,
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}
.popup-close-floating.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) rotate(0deg);
  animation: popupClosePulse 2.4s ease-in-out 0.8s infinite;
}
.popup-close-floating:hover {
  background: #ff1a1a;
  box-shadow: 0 8px 28px rgba(223, 15, 15, 0.55);
  animation: none;
  transform: scale(1.12) rotate(90deg);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}
.popup-close-floating:active {
  transform: scale(0.95) rotate(90deg);
  transition: transform 0.1s ease;
}
.popup-close-floating:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.popup-close-icon {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  fill: none;
  pointer-events: none;
}

@keyframes popupClosePulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(223, 15, 15, 0.35); }
  50%      { box-shadow: 0 6px 28px rgba(223, 15, 15, 0.7); }
}
