@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
html,
body {
  height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  z-index: 160;
  pointer-events: none;
}
.topbar .brand {
  display: block;
  pointer-events: auto;
}
.topbar .brand img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu-toggle, .to-top-fixed {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: relative;
  z-index: 90;
}
.menu-toggle .bar, .to-top-fixed .bar {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.menu-toggle .bar:nth-child(1), .to-top-fixed .bar:nth-child(1) {
  transform: translate(-50%, -5px);
}
.menu-toggle .bar:nth-child(2), .to-top-fixed .bar:nth-child(2) {
  transform: translate(-50%, 5px);
}
.menu-toggle[aria-expanded=true] .bar:nth-child(1), [aria-expanded=true].to-top-fixed .bar:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}
.menu-toggle[aria-expanded=true] .bar:nth-child(2), [aria-expanded=true].to-top-fixed .bar:nth-child(2) {
  transform: translate(-50%, 0) rotate(-45deg);
}
.menu-toggle .bar, .to-top-fixed .bar {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.menu-toggle .bar:nth-child(1), .to-top-fixed .bar:nth-child(1) {
  transform: translate(-50%, -6px);
}
.menu-toggle .bar:nth-child(2), .to-top-fixed .bar:nth-child(2) {
  transform: translate(-50%, 6px);
}
.menu-toggle[aria-expanded=true] .bar:nth-child(1), [aria-expanded=true].to-top-fixed .bar:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
  transform-origin: center;
}
.menu-toggle[aria-expanded=true] .bar:nth-child(2), [aria-expanded=true].to-top-fixed .bar:nth-child(2) {
  transform: translate(-50%, 0) rotate(-45deg);
  transform-origin: center;
}

/* Up-arrow: same look as menu, fixed at bottom-right */
.to-top-fixed {
  position: fixed;
  right: clamp(16px, 2.2vw, 24px);
  bottom: calc(env(safe-area-inset-bottom, 0px) + 24px);
  top: auto;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  pointer-events: auto;
  color: #fff;
}

.sheet {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 88vw);
  height: 100dvh;
  z-index: 80;
  padding: 92px 28px 84px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  transform: translateX(100%);
  opacity: 0.3;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.sheet.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.sheet .sheet-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
.sheet .sheet-nav a {
  text-decoration: none;
  color: #fff;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(18px, 2.4vw, 22px);
  padding: 18px 2px 14px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.sheet .sheet-nav a:hover {
  color: #585858;
}
.sheet .sheet-social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.sheet .sheet-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.sheet .sheet-social a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #585858;
}
.sheet .sheet-mail {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.sheet .sheet-mail span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

#hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}
#hero .panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 650ms ease, transform 650ms ease;
  transform: scale(1.02);
  pointer-events: none;
}
#hero .panel.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
#hero .panel .media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
#hero .panel h1 {
  margin: 0 0 8vh 6vw;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  font-size: clamp(22px, 4vw, 48px);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
#hero .hint {
  position: absolute;
  right: 18px;
  bottom: 16px;
  opacity: 0.75;
  font-size: 12px;
  z-index: 10;
}

@media (prefers-reduced-motion: reduce) {
  #hero .panel {
    transition: none;
  }
}
.landing-hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem 1.5rem;
  gap: 1.25rem;
}
.landing-hero h1 {
  margin: 0;
  line-height: 1.1;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 6rem);
}
.landing-hero .t1 {
  color: #ff3bad;
}
.landing-hero .outline {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.landing-hero .tag {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  font-size: 0.9rem;
  margin: 0;
}

.circle-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle-btn img {
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-hscroll {
  padding: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  /* defaults for tile size */
  --tile-w: clamp(260px, 48vw, 520px);
  --tile-h: clamp(220px, 52vh, 440px);
  /* -------------------- TILE -------------------- */
}
.page-hscroll .hero {
  position: relative;
  width: -moz-min-content;
  width: min-content;
  padding: 80px clamp(16px, 4vw, 40px) 12px;
  margin: 0;
  overflow: hidden;
}
.page-hscroll .hero h1 {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #cdd6f4;
  margin: 0;
}
.page-hscroll .hero.gone h1 {
  opacity: 0;
}
.page-hscroll .h-track {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 48px);
  padding: 12px clamp(16px, 4vw, 40px) 40px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.page-hscroll .h-track::-webkit-scrollbar {
  display: none;
}
.page-hscroll .tile {
  position: relative;
  flex: 0 0 var(--tw, var(--tile-w));
  height: var(--th, var(--tile-h));
  background: #0f1114;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  scroll-snap-align: start;
  transform: translateZ(0);
  transition: transform 0.35s ease;
  /* allow hover lines to overhang */
  overflow: visible;
  border-radius: 0;
  /* link fills tile; clips image */
  /* size variants */
  /* -------- hover lines (bottom + right only) -------- */
  --overhang: 24px; /* how far the lines stick out */
  --line-w: 1px;
  --line-color: rgba(255, 255, 255, 0.9);
  --line-dur: 0.45s;
  --line-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  /* right line */
  /* bottom line */
}
.page-hscroll .tile > a {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
}
.page-hscroll .tile > a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateZ(0) scale(1);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.page-hscroll .tile .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.page-hscroll .tile .meta h3 {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  margin: 0;
  font-size: 16px;
}
.page-hscroll .tile .meta .year {
  opacity: 0.9;
  font-weight: 700;
}
.page-hscroll .tile.is-sm {
  --tw: clamp(220px, 36vw, 360px);
}
.page-hscroll .tile.is-md {
  --tw: clamp(300px, 44vw, 520px);
}
.page-hscroll .tile.is-lg {
  --tw: clamp(380px, 60vw, 720px);
}
.page-hscroll .tile.is-short {
  --th: clamp(180px, 40vh, 320px);
}
.page-hscroll .tile.is-tall {
  --th: clamp(300px, 68vh, 620px);
}
.page-hscroll .tile.ratio-16x9 {
  --th: auto;
  aspect-ratio: 16/9;
}
.page-hscroll .tile.ratio-4x5 {
  --th: auto;
  aspect-ratio: 4/5;
}
.page-hscroll .tile::before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--overhang));
  bottom: calc(-1 * var(--overhang));
  right: 0;
  width: var(--line-w);
  background: var(--line-color);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--line-dur) var(--line-ease);
  pointer-events: none;
  z-index: 3;
}
.page-hscroll .tile::after {
  content: "";
  position: absolute;
  left: calc(-1 * var(--overhang));
  right: calc(-1 * var(--overhang));
  bottom: 0;
  height: var(--line-w);
  background: var(--line-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--line-dur) var(--line-ease) 0.08s;
  pointer-events: none;
  z-index: 3;
}
.page-hscroll .tile:hover > a img {
  transform: translateZ(0) scale(1.04);
}
.page-hscroll .tile:hover::before {
  transform: scaleY(1);
}
.page-hscroll .tile:hover::after {
  transform: scaleX(1);
}

.services-body {
  overflow-y: auto !important;
}

.services-page {
  --maxw: 1320px;
  --side: clamp(16px, 5vw, 64px);
  --gap: clamp(24px, 3vw, 48px);
  position: relative;
  padding: 12vh var(--side) 18vh;
  color: #fff;
  background: #000;
  /* vertical guide lines */
}
.services-page::before, .services-page::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  left: calc(50% - 1px);
  transform: translateX(-420px);
  pointer-events: none;
}
.services-page::after {
  transform: translateX(420px);
}

/* textured paper/fabric background */
.services-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(1000px 600px at 20% 10%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 60%), radial-gradient(1000px 600px at 80% 90%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, rgba(0, 0, 0, 0.02) 1px 2px), #0c0c0c;
}

/* hero */
.services-hero {
  max-width: var(--maxw);
  margin: 0 auto 10vh;
}
.services-hero__title {
  margin: 0 0 8px;
  font-size: clamp(48px, 12vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: lowercase;
}
.services-hero__sub {
  opacity: 0.85;
  margin: 0;
}

/* stages container */
.services-stages {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  row-gap: clamp(96px, 30vh, 180px);
}

/* stage layout */
.services-stage__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.services-stage--flip .services-stage__grid {
  grid-template-columns: 0.95fr 1.05fr;
}
.services-stage--flip .services-stage__media {
  order: 2;
}
.services-stage--flip .services-stage__content {
  order: 1;
}
.services-stage__content {
  position: relative;
}
.services-stage__num {
  position: absolute;
  top: -56px;
  left: -12px;
  font-size: clamp(40px, 10vw, 96px);
  line-height: 1;
  font-weight: 900;
  opacity: 0.22;
  letter-spacing: -0.02em;
}
.services-stage__title {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  margin: 0 0 8px;
  font-size: clamp(24px, 4vw, 48px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.services-stage__lede {
  margin: 0 0 10px;
  opacity: 0.9;
}
.services-stage__desc {
  margin: 0 0 14px;
  max-width: 62ch;
  opacity: 0.95;
}

/* media stack (large + small tile) */
.services-media__stack {
  position: relative;
}
.services-media__main, .services-media__tile {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}
.services-media__main {
  aspect-ratio: 16/10;
}
.services-media__tile {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: clamp(180px, 40%, 320px);
  aspect-ratio: 4/3;
  z-index: 2;
}

/* bullets */
.services-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.services-bullets li {
  line-height: 1.55;
  max-width: 70ch;
}

/* dividers between stages */
.services-stage + .services-stage {
  padding-top: clamp(48px, 8vh, 96px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* responsive */
@media (max-width: 980px) {
  .services-stage__grid {
    grid-template-columns: 1fr;
  }
  .services-stage__num {
    top: -36px;
    left: 0;
  }
  .services-media__tile {
    right: -4%;
    bottom: -6%;
    width: 46%;
  }
}/*# sourceMappingURL=style.css.map */