/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --brand-gold:       #cb8a31;
  --brand-brown:      #925e28;
  --brand-brown-deep: #6f4317;
  --text-dark:        #444443;
  --text-muted:       #9b948b;
  --surface:          #faf8f5;
  --surface-alt:      #ffffff;
  --page-pad:         clamp(28px, 5vw, 96px);
  --content-max:      1600px;
  --cover-nav-safe:   74px;
  --section-height:   100svh;
}

@supports (height: 100dvh) {
  :root { --section-height: 100dvh; }
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: var(--surface);
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo {
  width: 80px;
  height: auto;
  animation: preloader-pulse 1.4s ease-in-out infinite alternate;
}

@keyframes preloader-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
    filter: drop-shadow(0 0 10px rgba(203, 138, 49, 0.2));
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(203, 138, 49, 0.6));
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: rgba(255, 248, 238, 0.16);
}

.scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, #f8d689 0%, var(--brand-gold) 55%, #fff4d9 100%);
  box-shadow: 0 0 18px rgba(248, 214, 137, 0.55);
}

.motion-spotlight {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      circle at var(--cursor-x, 50%) var(--cursor-y, 45%),
      rgba(255, 223, 156, 0.16),
      rgba(203, 138, 49, 0.06) 16%,
      transparent 34%
    );
  mix-blend-mode: screen;
  transition: opacity 380ms ease;
}

.motion-ready .motion-spotlight {
  opacity: 1;
}

.motion-ready .reveal-on-scroll {
  opacity: 0;
  transform:
    perspective(900px)
    translate3d(var(--reveal-x, 0px), 52px, 0)
    rotateX(4deg)
    scale(0.965);
  transform-origin: center bottom;
  transition:
    opacity 980ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1080ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .reveal-media {
  transform:
    perspective(1100px)
    translate3d(var(--reveal-x, 0px), 62px, 0)
    rotateX(5deg)
    scale(0.94);
}

.motion-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: perspective(900px) translate3d(0, 0, 0) rotateX(0deg) scale(1);
}

.motion-ready .has-revealed {
  will-change: auto;
}

.gsap-motion-ready .reveal-on-scroll,
.gsap-motion-ready .reveal-item,
.gsap-motion-ready .title-char,
.gsap-motion-ready .section-title {
  transition: none;
}

.gsap-motion-ready .sheet:not(.sheet-cover)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--gsap-section-glow, 0);
  background:
    linear-gradient(
      104deg,
      transparent 0%,
      transparent calc(var(--gsap-section-sweep, -18%) - 18%),
      rgba(255, 245, 224, 0.34) var(--gsap-section-sweep, -18%),
      rgba(203, 138, 49, 0.18) calc(var(--gsap-section-sweep, -18%) + 9%),
      transparent calc(var(--gsap-section-sweep, -18%) + 24%),
      transparent 100%
    ),
    radial-gradient(circle at 18% 22%, rgba(203, 138, 49, 0.2), transparent 34%);
  mix-blend-mode: multiply;
  will-change: opacity;
}

.motion-ready .reveal-container {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0px), 28px, 0) scale(0.985);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1020ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .is-visible .reveal-item,
.motion-ready .sheet-cover .reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .title-char {
  display: inline-block;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 0.72em, 0) rotate(6deg) scaleY(1.08);
  transform-origin: left bottom;
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + var(--char-index, 0) * 16ms);
}

.title-word {
  display: inline-block;
  position: relative;
  isolation: isolate;
  white-space: nowrap;
}

.section-title .title-word::after,
.clients-label .title-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.06em;
  height: 0.075em;
  z-index: 0;
  background: currentColor;
  opacity: 0.18;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 280ms + var(--word-index, 0) * 74ms);
}

.motion-ready .is-visible .title-char,
.motion-ready .sheet-cover .title-char {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scaleY(1);
}

.motion-ready .is-visible .title-word::after,
.motion-ready .sheet-cover .title-word::after {
  transform: scaleX(1);
}

.motion-ready.gsap-motion-ready .title-char {
  opacity: 1;
  visibility: inherit;
  transform: none;
}

.motion-ready.gsap-motion-ready .title-word {
  will-change: opacity, transform;
}

.motion-item {
  position: relative;
  isolation: isolate;
}

.motion-item__scan,
.motion-item__edge {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.motion-item__scan {
  inset: 0;
  opacity: calc(0.03 + var(--item-visibility, 0) * 0.16);
  background:
    linear-gradient(
      105deg,
      transparent 0%,
      rgba(255, 245, 222, 0.16) 43%,
      rgba(255, 255, 255, 0.28) 50%,
      transparent 58%
    );
  transform: translate3d(calc((var(--item-progress, 0) - 0.5) * 82%), 0, 0);
  mix-blend-mode: screen;
}

.motion-item__edge {
  inset: 0;
  border: 1px solid rgba(203, 138, 49, calc(0.08 + var(--item-visibility, 0) * 0.26));
  transform: scaleX(calc(0.92 + var(--item-visibility, 0) * 0.08));
  transform-origin: left center;
}

.service-card .motion-item__scan,
.team-member .motion-item__scan,
.client-strip .motion-item__scan {
  opacity: calc(0.02 + var(--item-visibility, 0) * 0.12);
  mix-blend-mode: multiply;
}

.service-card .motion-item__edge,
.team-member .motion-item__edge {
  inset: -18px -14px -18px 38px;
  border-radius: 20px;
}

.motion-ready .about-hero img,
.motion-ready .services-hero img {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.045);
  will-change: transform;
}

.motion-ready .about-hero img {
  transform: none;
  will-change: auto;
}

.motion-ready .section-title {
  transform: translate3d(calc(var(--section-shift, 0px) * -0.18), 0, 0);
  transition: transform 120ms linear;
}

.floating-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(calc(100vw - 24px), 920px);
  padding: 10px 14px;
  border: 1px solid rgba(203, 138, 49, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(74, 46, 15, 0.08);
  transition:
    transform 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.floating-nav.is-scrolled {
  border-color: rgba(203, 138, 49, 0.28);
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 20px 54px rgba(74, 46, 15, 0.14);
}

.floating-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-brown);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(203, 138, 49, 0.08);
}

.floating-nav__brand img {
  width: 22px;
  height: 22px;
}

.floating-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.floating-nav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: #6f6559;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease;
}

.floating-nav__links a:hover,
.floating-nav__links a:focus-visible,
.floating-nav__links a.is-active,
.floating-nav__brand:hover,
.floating-nav__brand:focus-visible {
  color: var(--brand-brown);
  background: rgba(203, 138, 49, 0.14);
  outline: none;
}

.floating-nav__links a {
  position: relative;
  overflow: hidden;
}

.floating-nav__links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--brand-gold);
  transition: transform 240ms ease;
}

.floating-nav__links a:hover::after,
.floating-nav__links a:focus-visible::after,
.floating-nav__links a.is-active::after {
  transform: scaleX(1);
}

/* Hamburger button — ẩn trên desktop */
.floating-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(203, 138, 49, 0.08);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 180ms ease;
}

.floating-nav__toggle:hover,
.floating-nav__toggle:focus-visible {
  background: rgba(203, 138, 49, 0.18);
  outline: none;
}

.toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-brown);
  transition: transform 260ms ease, opacity 200ms ease;
}

/* Trạng thái open: biến thành dấu X */
.floating-nav.is-open .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.floating-nav.is-open .toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.floating-nav.is-open .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
   UNIFIED PAGE WRAPPER
   — Tất cả section chạy liên tục, full-width,
     không có card / border / shadow / gap
═══════════════════════════════════════════════ */
.site { width: 100%; overflow-x: hidden; }

.sheet {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  scroll-margin-top: 108px;
}

.sheet:not(.sheet-cover)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: calc(var(--section-visibility, 0) * 0.32);
  background:
    radial-gradient(circle at 12% 18%, rgba(203, 138, 49, 0.12), transparent 28%),
    linear-gradient(
      110deg,
      transparent 0%,
      rgba(203, 138, 49, 0.055) 36%,
      rgba(255, 244, 220, 0.16) 48%,
      transparent 64%
    );
  transform: translate3d(calc((var(--section-progress, 0) - 0.5) * 52px), 0, 0);
  mix-blend-mode: multiply;
}

.sheet > * {
  position: relative;
  z-index: 1;
}

/* Inner content wrapper used by multiple sections */
.inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

/* ═══════════════════════════════════════════════
   SHARED TYPOGRAPHY
═══════════════════════════════════════════════ */
.section-title {
  margin: 0;
  font-size: clamp(3rem, 4.35vw, 5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.section-title .accent       { color: var(--brand-gold); }
.section-title--light        { color: #ffffff; }
.section-title--split .accent{ color: var(--brand-gold); }

.title-rule {
  width: 92px;
  height: 4px;
  margin-top: 20px;
  background: var(--brand-gold);
}
.title-rule--dark  { background: #444443; }
.title-rule--light { background: rgba(255, 255, 255, 0.92); }

.brand-tagline {
  margin: 10px 0 0;
  font-size: clamp(1rem, 1vw, 1.1rem);
  font-style: italic;
  font-weight: 600;
}
.brand-tagline--gold { color: var(--brand-gold); }

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

/* ═══════════════════════════════════════════════
   1. COVER — HERO SECTION
═══════════════════════════════════════════════ */
.sheet-cover {
  background: #1a1208;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: max(calc(100svh + var(--cover-nav-safe)), 880px);
  isolation: isolate;
}

.hero-webgl {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 900ms ease;
}

.hero-canvas-ready .hero-webgl {
  opacity: calc(0.62 + var(--scroll-velocity, 0) * 0.028);
}

.sheet-cover::before,
.sheet-cover::after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: 0;
  pointer-events: none;
}

.sheet-cover::before {
  top: -12%;
  left: 28%;
  width: 34vw;
  height: 82%;
  transform-origin: top center;
  clip-path: polygon(43% 0, 58% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(203, 138, 49, 0.2), rgba(203, 138, 49, 0));
  filter: blur(10px);
  animation: stage-beam-left 8s ease-in-out infinite alternate;
}

.sheet-cover::after {
  top: -10%;
  right: 8%;
  width: 30vw;
  height: 78%;
  transform-origin: top center;
  clip-path: polygon(44% 0, 57% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(255, 236, 183, 0.14), rgba(255, 236, 183, 0));
  filter: blur(12px);
  animation: stage-beam-right 9.5s ease-in-out infinite alternate;
}

.sheet-cover .cover-semantic {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  height: clamp(880px, calc(100svh + var(--cover-nav-safe)), 1080px);
}

.sheet-cover .cover-brand {
  position: absolute;
  top: calc(72px + var(--cover-nav-safe));
  left: var(--page-pad);
  z-index: 3;
  width: min(460px, 35vw);
}

.sheet-cover .cover-brand img {
  width: 100%;
  height: auto;
  animation: logo-float 5.5s ease-in-out infinite;
}

.sheet-cover .cover-photo-frame {
  position: absolute;
  top: calc(52px + var(--cover-nav-safe));
  right: -72px;
  z-index: 1;
  width: 67%;
  height: 69%;
  padding: 22px;
  border-radius: 148px 0 0 120px;
  background: var(--brand-gold);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  transform:
    translate3d(
      calc(var(--pointer-x, 0) * -14px),
      calc(var(--pointer-y, 0) * -10px + var(--hero-scroll, 0px)),
      0
    )
    rotateX(calc(var(--pointer-y, 0) * -2deg))
    rotateY(calc(var(--pointer-x, 0) * 2deg));
  transition: transform 180ms ease-out;
}

.sheet-cover .cover-photo-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 18px solid #ffffff;
  border-radius: 114px 0 0 92px;
}

.sheet-cover .cover-photo-inner {
  position: absolute;
  inset: 40px 18px 18px 40px;
  overflow: hidden;
  border-radius: 92px 0 0 76px;
}

.sheet-cover .cover-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.04);
}

.sheet-cover .cover-banner {
  --banner-cut: clamp(86px, 7.4vw, 156px);
  position: absolute;
  top: auto;
  bottom: clamp(172px, 18svh, 220px);
  left: calc(var(--page-pad) * 0.42);
  z-index: 4;
  width: min(76vw, 1480px);
  max-width: calc(100% - var(--page-pad) * 0.72);
  min-height: clamp(112px, 11.5vw, 164px);
  display: flex;
  align-items: center;
  padding:
    clamp(24px, 3.2vw, 42px)
    calc(var(--banner-cut) + clamp(22px, 3.4vw, 54px))
    clamp(24px, 3.2vw, 42px)
    calc(var(--page-pad) * 0.72);
  border-radius: 0;
  background:
    linear-gradient(116deg, rgba(226, 158, 55, 0.98) 0%, rgba(190, 117, 32, 0.98) 52%, rgba(113, 62, 22, 0.98) 100%);
  clip-path: polygon(0 0, calc(100% - var(--banner-cut)) 0, 100% 50%, calc(100% - var(--banner-cut)) 100%, 0 100%);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.28);
  isolation: isolate;
  overflow: hidden;
}

.sheet-cover .cover-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 32%),
    linear-gradient(130deg, transparent 0 58%, rgba(34, 16, 4, 0.28) 58% 100%);
}

.sheet-cover .cover-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-115%);
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.26) 45%, transparent 72%);
  animation: banner-sweep 6.4s ease-in-out infinite;
}

.sheet-cover .display-title {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 28px);
  flex-wrap: nowrap;
  width: 100%;
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 0.9;
  font-weight: 800;
  text-transform: none;
  white-space: nowrap;
}

.sheet-cover .display-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-size: clamp(4.1rem, 5.55vw, 7.2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 0.82;
  text-transform: none;
  text-shadow: 0 8px 20px rgba(56, 25, 6, 0.22);
}

.sheet-cover .display-divider {
  flex: 0 0 clamp(34px, 4vw, 74px);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.sheet-cover .display-tagline {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  color: rgba(255, 250, 244, 0.92);
  font-size: clamp(1.1rem, 1.78vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.08;
  text-transform: none;
  white-space: nowrap;
}

.sheet-cover .display-tagline .title-word + .title-word {
  margin-left: 0.28em;
}

.sheet-cover .cover-meta {
  position: absolute;
  bottom: 48px;
  left: var(--page-pad);
  z-index: 4;
  color: #a9a6a4;
  font-size: clamp(0.96rem, 0.92vw, 1.12rem);
  font-weight: 500;
  line-height: 1.4;
}
.sheet-cover .cover-meta p { margin: 0; }
.sheet-cover .cover-meta::after {
  content: "";
  display: block;
  width: 66px; height: 5px;
  margin-top: 12px;
  background: var(--brand-gold);
}

.sheet-cover .cover-link {
  position: absolute;
  right: var(--page-pad);
  bottom: 48px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--brand-gold);
  font-size: clamp(1.2rem, 1.45vw, 1.65rem);
  font-weight: 700;
}
.sheet-cover .cover-link img { width: 44px; height: 44px; object-fit: contain; }

@keyframes stage-beam-left {
  from { transform: rotate(-10deg) translate3d(-16px, 0, 0); opacity: 0.3; }
  to { transform: rotate(5deg) translate3d(20px, 0, 0); opacity: 0.58; }
}

@keyframes stage-beam-right {
  from { transform: rotate(12deg) translate3d(18px, 0, 0); opacity: 0.22; }
  to { transform: rotate(-4deg) translate3d(-18px, 0, 0); opacity: 0.48; }
}

@keyframes logo-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes banner-sweep {
  0%, 42% { transform: translateX(-115%); }
  74%, 100% { transform: translateX(115%); }
}

/* ═══════════════════════════════════════════════
   2. ABOUT
═══════════════════════════════════════════════ */
.sheet-about { background: var(--surface-alt); }

.sheet-about .about-hero {
  width: 100%;
  max-width: none;
  aspect-ratio: 1528 / 440;
  margin: 0;
  height: auto;
  overflow: hidden;
  background: #14100b;
}
.sheet-about .about-hero img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: sepia(0.88) saturate(0.9) brightness(0.88);
}

.sheet-about .about-columns {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 54px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 40px var(--page-pad);
}

.sheet-about .about-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sheet-about .about-list li,
.sheet-about .about-profile p {
  font-size: clamp(1rem, 1.1vw, 1.28rem);
  line-height: 1.55;
  color: var(--text-muted);
}

.sheet-about .about-list strong { color: #88827b; font-weight: 700; }
.sheet-about .about-profile p   { margin: 30px 0 0; }

/* ═══════════════════════════════════════════════
   3. SERVICES
═══════════════════════════════════════════════ */
.sheet-services { background: var(--surface); }

.sheet-services .services-hero {
  position: relative;
  min-height: clamp(320px, 40vw, 580px);
  overflow: hidden;
}

.sheet-services .services-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(0.95) hue-rotate(-14deg) saturate(1.3) brightness(0.34);
}

.sheet-services .services-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(16, 6, 0, 0.38);
}

.sheet-services .services-hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 40px var(--page-pad);
}

.sheet-services .services-hero-copy p {
  max-width: 900px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.08vw, 1.24rem);
  line-height: 1.62;
}

.sheet-services .services-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 20px var(--page-pad) 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "design    media"
    "event     equipment"
    "advert    callout";
  gap: 52px 64px;
  align-items: start;
}

.service-card { position: relative; padding-left: 56px; }

.service-card::before {
  content: "";
  position: absolute;
  top: 4px; left: 0;
  width: 32px; height: 32px;
  background: url("assets/images/logo/logo2.png") center / contain no-repeat;
  transition: transform 260ms ease, filter 260ms ease;
}

.service-card {
  border-radius: 18px;
  transform:
    perspective(900px)
    translate3d(calc(var(--card-drift, 0px) * 0.28), 0, 0)
    translateX(calc((var(--item-progress, 0.5) - 0.5) * 18px))
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
  transition: transform 260ms ease, color 260ms ease;
  isolation: isolate;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -22px -18px -20px 36px;
  z-index: -1;
  border-radius: 22px;
  opacity: 0;
  background:
    radial-gradient(
      circle at var(--glow-x, 50%) var(--glow-y, 50%),
      rgba(203, 138, 49, 0.22),
      rgba(203, 138, 49, 0.05) 32%,
      transparent 66%
    );
  transition: opacity 260ms ease;
}

.service-card:hover {
  transform:
    perspective(900px)
    translate3d(calc(var(--card-drift, 0px) * 0.28), -10px, 0)
    translateX(calc((var(--item-progress, 0.5) - 0.5) * 18px))
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    scale(1.018);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover::before {
  filter: drop-shadow(0 8px 14px rgba(203, 138, 49, 0.24));
  transform: rotate(-8deg) scale(1.08);
}

.service-card--design    { grid-area: design; }
.service-card--media     { grid-area: media; }
.service-card--event     { grid-area: event; }
.service-card--equipment { grid-area: equipment; }
.service-card--advertising { grid-area: advert; }

.service-card h3 {
  margin: 0 0 12px;
  color: var(--brand-brown);
  font-size: clamp(2rem, 2.4vw, 3.2rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.service-card h3 .dark { color: var(--text-dark); }

.service-card p {
  margin: 0 0 12px;
  font-size: clamp(1rem, 1.06vw, 1.2rem);
  line-height: 1.52;
  color: var(--text-muted);
}

.service-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.service-card li {
  font-size: clamp(0.95rem, 0.96vw, 1.06rem);
  line-height: 1.45;
  color: #aaa39b;
  font-style: italic;
}

.service-callout {
  grid-area: callout;
  align-self: end; justify-self: end;
  width: min(100%, 92%);
  padding: 42px 48px;
  background: var(--brand-brown);
  color: #ffffff;
  font-size: clamp(1.02rem, 1.14vw, 1.3rem);
  line-height: 1.56;
  font-weight: 600;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 0 42%);
  border-radius: 90px 0 0 0;
}
.service-callout strong { font-weight: 800; }

.services-progress {
  display: none;
}

/* ═══════════════════════════════════════════════
   4. TEAM
═══════════════════════════════════════════════ */
.sheet-team { background: #ffffff; }

.sheet-team .team-semantic {
  display: block;
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 40px var(--page-pad);
}

.sheet-team .team-corner {
  position: absolute;
  top: 0; right: 0;
  width: clamp(180px, 20vw, 320px);
  height: clamp(120px, 14vw, 200px);
  background: var(--brand-brown);
  border-bottom-left-radius: 72px;
}

.sheet-team .sheet-header {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding-right: clamp(80px, 16vw, 260px);
}

.sheet-team .team-intro {
  max-width: 1180px;
  margin: 22px 0 0;
  color: #9f988f;
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.58;
}

.sheet-team .team-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: clamp(16px, 1.8vw, 24px);
  align-items: start;
  margin: 34px auto 0;
  max-width: 1360px;
}

.sheet-team .team-founder,
.sheet-team .team-member {
  margin: 0;
}

.sheet-team .team-founder {
  justify-self: start;
  margin-top: 42px;
}

.sheet-team .team-founder img {
  display: block;
  margin: 0 auto;
  width: min(100%, clamp(330px, 28vw, 420px));
  max-width: 100%;
  height: auto;
}

.sheet-team .team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 22px 14px;
  align-items: start;
  justify-items: center;
}

.sheet-team .team-member {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  perspective: 800px;
}

.sheet-team .team-member img {
  display: block;
  width: min(100%, clamp(230px, 17.8vw, 255px));
  height: auto;
}

.sheet-team .team-member img {
  filter: grayscale(1) saturate(0.2);
  transform:
    translate3d(0, calc(var(--team-float, 0px) * 0.32), 0)
    translateX(calc((var(--item-progress, 0.5) - 0.5) * 12px))
    rotateX(calc(var(--tilt-y, 0deg) * 0.42))
    rotateY(calc(var(--tilt-x, 0deg) * 0.42));
  transition: filter 320ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sheet-team .team-member:hover img,
.sheet-team .team-member:focus-within img,
.sheet-team .team-member:active img {
  filter: grayscale(0) saturate(1);
  transform:
    translate3d(0, calc(var(--team-float, 0px) * 0.32 - 8px), 0)
    translateX(calc((var(--item-progress, 0.5) - 0.5) * 12px))
    rotateX(calc(var(--tilt-y, 0deg) * 0.42))
    rotateY(calc(var(--tilt-x, 0deg) * 0.42))
    scale(1.025);
}


/* ═══════════════════════════════════════════════
   5. CLIENTS / WHAT WE DO
═══════════════════════════════════════════════ */
.sheet-clients {
  background: var(--surface-alt);
  border-top: 4px solid var(--brand-gold);
}

.sheet-clients .clients-copy {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 40px var(--page-pad);
}

.sheet-clients .clients-logo {
  width: min(280px, 55vw);
  height: auto;
  margin-bottom: 32px;
  opacity: 0.85;
}

.sheet-clients .section-title .title-word::after,
.sheet-clients .clients-label .title-word::after {
  display: none;
}

.sheet-clients .clients-copy p {
  max-width: 860px;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.08vw, 1.22rem);
  line-height: 1.68;
}

.sheet-clients .clients-label {
  margin: 40px 0 0;
  color: var(--brand-gold);
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.sheet-clients .client-strip {
  max-width: var(--content-max);
  margin: 0 auto 72px;
  padding: 0 var(--page-pad);
  overflow: hidden;
}

.sheet-clients .client-strip img {
  width: 100%;
  height: auto;
  transform: translate3d(calc(var(--section-shift, 0px) * 0.16 + (var(--item-progress, 0.5) - 0.5) * 28px), 0, 0);
}

/* ═══════════════════════════════════════════════
   6. PROJECTS
═══════════════════════════════════════════════ */

/* Feature project */
.sheet-project--feature { background: var(--surface); }

/* Alternating simple projects */
.sheet-project--simple:nth-of-type(odd)  { background: var(--surface-alt); }
.sheet-project--simple:nth-of-type(even) { background: var(--surface); }

.sheet-project {
  padding: 40px var(--page-pad);
}

.sheet-project .project-hero {
  position: relative;
  max-width: var(--content-max);
  aspect-ratio: 1754 / 380;
  margin: 0 auto 40px;
  border-radius: clamp(12px, 1.5vw, 24px);
  overflow: hidden;
  box-shadow: 0 24px 68px rgba(66, 45, 22, 0.12);
  transition: box-shadow 360ms ease;
}

.sheet-project .project-hero::after,
.sheet-project .project-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.2) 42%, transparent 62%),
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(255, 221, 154, 0.16), transparent 28%);
  opacity: var(--project-glow, 0);
  transform: translateX(calc((var(--section-progress, 0) - 0.5) * 42%));
  mix-blend-mode: screen;
}

.sheet-project .project-hero::before,
.sheet-project .project-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: calc(0.06 + var(--project-glow, 0) * 0.5);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 18%, transparent 82%, rgba(203, 138, 49, 0.16)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 42px
    );
  transform: translate3d(calc((var(--section-progress, 0) - 0.5) * -38px), 0, 0);
  mix-blend-mode: screen;
}

.sheet-project .project-copy {
  max-width: var(--content-max);
  margin: 0 auto;
}

.sheet-project .project-title {
  position: relative;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(2.35rem, 3vw, 4rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.05em;
  scroll-margin-top: clamp(60px, 8svh, 80px);
}

.sheet-project .project-title .title-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  height: 0.055em;
  z-index: 0;
  background: var(--brand-gold);
  opacity: 0.22;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 220ms + var(--word-index, 0) * 58ms);
}

.motion-ready .project-copy.is-visible .project-title .title-word::after {
  transform: scaleX(1);
}

.sheet-project .project-kicker {
  margin: 16px 0 10px;
  color: var(--brand-gold);
  font-size: clamp(0.88rem, 0.92vw, 1.02rem);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.sheet-project .project-copy p:not(.project-kicker) {
  margin: 8px 0 0;
  color: #8d8880;
  font-size: clamp(1rem, 1vw, 1.1rem);
  line-height: 1.5;
}

.sheet-project .project-copy-heading {
  display: grid;
  gap: clamp(8px, 1vh, 14px);
}

.sheet-project .project-copy-body,
.sheet-project .project-copy-slider {
  margin-top: clamp(14px, 2vh, 22px);
}

.sheet-project .project-copy-body p,
.sheet-project .project-copy-slide p {
  margin: 0;
}

.sheet-project .project-copy--full .project-copy-body {
  display: grid;
  gap: clamp(8px, 1vh, 12px);
  max-height: none;
  overflow: visible;
  align-content: start;
}

.sheet-project .project-copy-slider {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "track track"
    "dots controls";
  gap: 12px 14px;
  min-width: 0;
}

.sheet-project .project-copy-track {
  grid-area: track;
  display: flex;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.sheet-project .project-copy-track::-webkit-scrollbar {
  display: none;
}

.sheet-project .project-copy-slide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.sheet-project .project-copy-pagination,
.sheet-project .project-copy-controls {
  display: flex;
  align-items: center;
}

.sheet-project .project-copy-pagination {
  grid-area: dots;
  gap: 7px;
}

.sheet-project .project-copy-controls {
  grid-area: controls;
  gap: 8px;
}

.sheet-project .project-copy-dot,
.sheet-project .project-copy-button {
  appearance: none;
  border: 0;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, opacity 220ms ease;
}

.sheet-project .project-copy-dot {
  width: 22px;
  height: 3px;
  padding: 0;
  border-radius: 999px;
  background: rgba(146, 94, 40, 0.24);
}

.sheet-project .project-copy-dot.is-active {
  background: var(--brand-gold);
  transform: scaleX(1.35);
}

.sheet-project .project-copy-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-brown);
  background: rgba(203, 138, 49, 0.11);
  font-size: 1.15rem;
  line-height: 1;
}

.sheet-project .project-copy-button:hover,
.sheet-project .project-copy-button:focus-visible {
  background: var(--brand-gold);
  color: #ffffff;
  outline: none;
  transform: translateY(-2px);
}

.sheet-project .project-copy-button:disabled {
  cursor: default;
  opacity: 0.35;
  color: var(--brand-brown);
  background: rgba(203, 138, 49, 0.11);
  transform: none;
}

/* Custom project copy text reveal transitions have been generalized to the global .reveal-item class for clean dynamic staggered animations */

.sheet-project .project-hero img,
.sheet-project .project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 360ms ease, transform 360ms ease;
}


.sheet-project .project-gallery img {
  transform: scale(1.055);
}

.sheet-project .project-gallery--full img {
  object-position: center top;
  transform: scale(1.22);
  transform-origin: center top;
}

.sheet-project .project-hero:hover img,
.sheet-project .project-gallery:hover img {
  filter: saturate(1.08) contrast(1.03);
}

/* ═══════════════════════════════════════════════
   11. FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  position: relative;
  padding: 56px var(--page-pad) 28px;
  color: rgba(255, 247, 238, 0.92);
  background:
    radial-gradient(circle at top right, rgba(203, 138, 49, 0.18), transparent 28%),
    linear-gradient(135deg, #24160b 0%, #1a1108 48%, #120b05 100%);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(200px, 0.8fr));
  gap: 32px;
  align-items: start;
  max-width: var(--content-max);
  margin: 0 auto;
}

.site-footer__brand img {
  width: min(320px, 100%);
  height: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1) sepia(0.15) saturate(0.8) hue-rotate(340deg);
}

.site-footer__brand p,
.site-footer__block p,
.site-footer__block a,
.site-footer__meta span {
  margin: 0;
  color: rgba(255, 244, 231, 0.76);
  font-size: 0.98rem;
  line-height: 1.7;
  text-decoration: none;
}

.site-footer__block {
  display: grid;
  gap: 4px;
}

.site-footer__block h3 {
  margin: 0 0 10px;
  color: var(--brand-gold);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__block a:hover,
.site-footer__block a:focus-visible {
  color: #ffffff;
  outline: none;
}

.site-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--content-max);
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 230, 198, 0.14);
}

.sheet-project .project-gallery {
  max-width: var(--content-max);
  margin: 40px auto 0;
  border-radius: clamp(10px, 1.2vw, 22px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(66, 45, 22, 0.1);
}

.sheet-project .project-gallery-frame {
  position: relative;
  max-width: var(--content-max);
  margin: 40px auto 0;
}

.sheet-project .project-gallery-frame > .project-gallery {
  width: 100%;
  max-width: none;
  margin: 0;
}

.sheet-project .project-gallery__item {
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 320ms ease;
}

.sheet-project .project-gallery__item.is-gallery-active {
  transform: translate3d(0, 0, 0) scale(1.012);
  filter: saturate(1.05) contrast(1.02);
}

.sheet-project .project-gallery__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(10px, 1.1vw, 18px);
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(50, 31, 12, 0.16);
  transform: translateX(-50%);
}

@media (min-width: 781px) {
  .sheet-project .project-gallery__dots {
    display: none;
  }
}

.sheet-project .project-gallery__dot {
  appearance: none;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(146, 94, 40, 0.24);
  transition:
    background-color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.sheet-project .project-gallery__dot.is-active {
  width: 10px;
  height: 10px;
  background: var(--brand-gold);
  transform: translateY(-1px) scale(1.08);
}

.sheet-project .project-gallery__dot:focus-visible {
  outline: 2px solid rgba(203, 138, 49, 0.55);
  outline-offset: 4px;
}

.sheet-project .project-gallery__button {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: none;
  place-items: center;
  width: clamp(38px, 3.4vw, 52px);
  height: clamp(38px, 3.4vw, 52px);
  border: 0;
  border-radius: 50%;
  color: var(--brand-brown);
  background: rgba(255, 250, 244, 0.9);
  box-shadow: 0 16px 36px rgba(50, 31, 12, 0.16);
  cursor: pointer;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  line-height: 1;
  transform: translateY(-50%);
  padding: 0;
  transition:
    background-color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.sheet-project .project-gallery__button--prev {
  left: clamp(10px, 1.2vw, 18px);
}

.sheet-project .project-gallery__button--next {
  right: clamp(10px, 1.2vw, 18px);
}

.sheet-project .project-gallery__button:hover,
.sheet-project .project-gallery__button:focus-visible {
  background: rgba(255, 250, 244, 1);
  transform: translateY(-50%) scale(1.06);
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px) clamp(72px, 9vw, 120px);
  background: rgba(20, 12, 6, 0.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.project-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.project-lightbox__image {
  max-width: min(100%, 1500px);
  max-height: 82svh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: clamp(10px, 1.2vw, 20px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.project-lightbox__caption {
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(16px, 3vw, 34px);
  margin: 0;
  color: rgba(255, 250, 244, 0.82);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  line-height: 1.4;
  text-align: center;
}

.project-lightbox__counter {
  position: absolute;
  top: clamp(18px, 2.2vw, 32px);
  left: 50%;
  margin: 0;
  padding: 7px 13px;
  border-radius: 999px;
  color: rgba(255, 250, 244, 0.9);
  background: rgba(255, 250, 244, 0.14);
  font-size: 0.82rem;
  font-weight: 700;
  transform: translateX(-50%);
}

.project-lightbox__close {
  position: absolute;
  top: clamp(14px, 2vw, 28px);
  right: clamp(14px, 2vw, 28px);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--brand-brown);
  background: rgba(255, 250, 244, 0.92);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  padding: 0;
}

.project-lightbox__button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(42px, 4vw, 58px);
  height: clamp(42px, 4vw, 58px);
  border: 0;
  border-radius: 50%;
  color: var(--brand-brown);
  background: rgba(255, 250, 244, 0.9);
  cursor: pointer;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  transform: translateY(-50%);
  padding: 0;
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.project-lightbox__button--prev {
  left: clamp(14px, 3vw, 42px);
}

.project-lightbox__button--next {
  right: clamp(14px, 3vw, 42px);
}

.project-lightbox__button:hover,
.project-lightbox__button:focus-visible,
.project-lightbox__close:hover,
.project-lightbox__close:focus-visible {
  background: rgba(255, 250, 244, 1);
  transform: translateY(-50%) scale(1.06);
}

.project-lightbox__close:hover,
.project-lightbox__close:focus-visible {
  transform: scale(1.06);
}

body.project-lightbox-open {
  overflow: hidden;
}

.sheet-project .project-gallery--full {
  width: 100%;
  aspect-ratio: 1754 / 200;
}
.sheet-project .project-gallery--inset {
  width: min(100%, 1460px);
  aspect-ratio: 1460 / 460;
}

@media (min-width: 781px) {
  .sheet {
    height: var(--section-height);
    min-height: var(--section-height);
    scroll-margin-top: 0;
  }

  .sheet-cover {
    min-height: var(--section-height);
  }

  .sheet-cover .cover-semantic {
    height: 100%;
    min-height: 0;
    max-height: 1080px;
  }

  .sheet-about .about-columns {
    padding-top: clamp(24px, 3.4svh, 40px);
    padding-bottom: clamp(24px, 3.6svh, 44px);
    gap: clamp(28px, 4vw, 54px);
  }

  .sheet-about .about-list {
    margin-top: clamp(16px, 2.1svh, 30px);
    gap: clamp(8px, 1.1svh, 12px);
  }

  .sheet-about .about-list li,
  .sheet-about .about-profile p {
    font-size: clamp(0.9rem, 0.94vw, 1.08rem);
    line-height: 1.42;
  }

  .sheet-about .about-profile p {
    margin-top: clamp(14px, 1.8svh, 24px);
  }

  .sheet-services .services-hero {
    min-height: 0;
    height: clamp(220px, 30svh, 340px);
  }

  .sheet-services .services-hero-copy {
    padding-top: clamp(24px, 3.4svh, 40px);
    padding-bottom: clamp(20px, 3svh, 36px);
  }

  .sheet-services .services-hero-copy p {
    max-width: 1060px;
    margin-bottom: 8px;
    font-size: clamp(0.9rem, 0.94vw, 1.05rem);
    line-height: 1.44;
  }

  .sheet-services .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
      "design equipment advert"
      "media event callout";
    gap: clamp(16px, 2svh, 26px) clamp(22px, 2.6vw, 48px);
    padding-top: clamp(18px, 2.6svh, 30px);
    padding-bottom: clamp(20px, 3.4svh, 38px);
  }

  .service-card {
    padding-left: clamp(38px, 3.8vw, 50px);
  }

  .service-card h3 {
    margin-bottom: 8px;
    font-size: clamp(1.18rem, 1.45vw, 1.95rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .service-card p {
    margin-bottom: 8px;
    font-size: clamp(0.86rem, 0.86vw, 1rem);
    line-height: 1.34;
  }

  .service-card ul {
    gap: 4px;
  }

  .service-card li {
    font-size: clamp(0.78rem, 0.78vw, 0.94rem);
    line-height: 1.3;
  }

  .service-callout {
    width: 100%;
    padding: clamp(22px, 2.6vw, 34px);
    font-size: clamp(0.88rem, 0.9vw, 1.06rem);
    line-height: 1.42;
  }

  .sheet-team .team-semantic {
    padding-top: clamp(72px, 8svh, 96px);
    padding-bottom: clamp(24px, 3.6svh, 42px);
  }

  .sheet-team .team-intro {
    margin-top: clamp(12px, 1.7svh, 20px);
    font-size: clamp(0.86rem, 0.86vw, 1rem);
    line-height: 1.42;
  }

  .sheet-team .team-layout {
    grid-template-columns: minmax(240px, 330px) 1fr;
    gap: clamp(14px, 1.8vw, 24px);
    margin-top: clamp(18px, 2.4svh, 28px);
  }

  .sheet-team .team-founder {
    margin-top: clamp(10px, 2svh, 26px);
  }

  .sheet-team .team-founder img {
    width: min(100%, clamp(250px, 21vw, 340px));
  }

  .sheet-team .team-grid {
    gap: clamp(14px, 1.8svh, 20px) clamp(10px, 1.4vw, 14px);
  }

  .sheet-team .team-member img {
    width: min(100%, clamp(160px, 13.4vw, 215px));
  }

  .sheet-clients .clients-copy {
    padding-top: clamp(72px, 8.4svh, 96px);
    padding-bottom: clamp(18px, 2.8svh, 32px);
  }

  .sheet-clients .clients-logo {
    width: min(240px, 16vw);
    margin-bottom: clamp(16px, 2.4svh, 28px);
  }

  .sheet-clients .clients-copy p {
    margin-top: clamp(12px, 1.8svh, 20px);
    font-size: clamp(0.92rem, 0.92vw, 1.06rem);
    line-height: 1.45;
  }

  .sheet-clients .clients-label {
    margin-top: clamp(18px, 2.8svh, 34px);
    font-size: clamp(2.4rem, 3.4vw, 4.1rem);
  }

  .sheet-clients .client-strip {
    margin-bottom: clamp(36px, 5svh, 60px);
  }

  .sheet-clients .client-strip img {
    max-height: clamp(150px, 22svh, 240px);
    object-fit: contain;
  }

  .sheet-project {
    display: grid;
    grid-template-columns: minmax(280px, min(39vw, 620px)) minmax(360px, min(52vw, 950px));
    grid-template-rows: clamp(190px, 31svh, 330px) minmax(0, 1fr);
    grid-template-areas:
      "hero hero"
      "copy gallery";
    justify-content: center;
    align-content: center;
    gap: clamp(16px, 2.2svh, 26px) clamp(20px, 2.2vw, 34px);
    padding-top: clamp(78px, 8.8svh, 108px);
    padding-bottom: clamp(16px, 2.8svh, 34px);
  }

  .sheet-project .project-hero {
    grid-area: hero;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    aspect-ratio: auto;
  }

  .sheet-project .project-copy {
    grid-area: copy;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  .sheet-project .project-title {
    font-size: clamp(1.45rem, 2.1vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .sheet-project .project-kicker {
    margin: 0;
    font-size: clamp(0.72rem, 0.72vw, 0.9rem);
    line-height: 1.32;
  }

  .sheet-project .project-copy p:not(.project-kicker) {
    font-size: clamp(0.84rem, 0.84vw, 0.98rem);
    line-height: 1.44;
  }

  .sheet-project .project-gallery {
    grid-area: gallery;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 0;
    margin: 0;
    align-self: stretch;
    aspect-ratio: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-webgl {
    display: none;
  }

  .motion-spotlight {
    display: none;
  }

  .motion-ready .reveal-on-scroll,
  .motion-ready .project-hero img,
  .motion-ready .project-gallery img,
  .motion-ready .about-hero img,
  .motion-ready .services-hero img {
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
  }

  .sheet-project .project-hero,
  .sheet-project .project-gallery,
  .sheet-project .project-copy,
  .motion-ready .section-title,
  .motion-ready .title-char,
  .motion-ready .title-word::after,
  .service-card,
  .sheet-team .team-member img {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤1024px
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* Cover: switch from absolute layout to stacked grid */
  .sheet-cover {
    display: grid;
    gap: clamp(12px, 1.8vw, 18px);
    padding: clamp(86px, 9vw, 104px) var(--page-pad) clamp(30px, 4vw, 44px);
    min-height: 100svh;
    align-content: start;
    align-items: stretch;
    justify-content: normal;
  }
  .sheet-cover .cover-semantic {
    display: contents;
    min-height: unset;
  }
  .sheet-cover .cover-brand,
  .sheet-cover .cover-photo-frame,
  .sheet-cover .cover-banner,
  .sheet-cover .cover-meta,
  .sheet-cover .cover-link {
    position: relative;
    top: auto; right: auto; bottom: auto; left: auto;
  }
  .sheet-cover .cover-brand { width: min(54vw, 500px); order: 1; }
  .sheet-cover .cover-photo-frame {
    order: 2;
    width: 100%; height: clamp(260px, 40vw, 420px);
    margin-left: auto;
    right: 0;
  }
  .sheet-cover .cover-banner {
    --banner-cut: clamp(58px, 8vw, 96px);
    order: 3;
    width: min(100%, 860px);
    max-width: 100%;
    min-height: clamp(80px, 10vw, 112px);
    margin-top: clamp(-66px, -6.5vw, -36px);
    padding: 18px calc(var(--banner-cut) + 22px) 18px 28px;
  }
  .sheet-cover .display-brand {
    font-size: clamp(2.75rem, 6.6vw, 4.5rem);
    letter-spacing: 0.08em;
  }
  .sheet-cover .display-divider {
    flex-basis: clamp(24px, 4vw, 44px);
    height: 3px;
  }
  .sheet-cover .display-tagline {
    font-size: clamp(0.82rem, 2vw, 1.22rem);
    letter-spacing: 0.022em;
  }
  .sheet-cover .cover-meta  { order: 4; }
  .sheet-cover .cover-link  { order: 5; justify-content: flex-end; }

  /* About */
  .sheet-about .about-columns { grid-template-columns: 1fr; }

  /* Services */
  .sheet-services .services-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "design" "media" "event" "equipment" "advert" "callout";
  }

  /* Team — tablet: collapse to single column, reset max-width */
  .sheet-team .sheet-header { max-width: 100%; padding-right: 0; }
  .sheet-team .team-layout  { grid-template-columns: 1fr; gap: 28px; max-width: 100%; }
  .sheet-team .team-founder { margin-top: 0; justify-self: center; }
  .sheet-team .team-grid    { grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 18px 14px; }
  .sheet-team .team-founder img { width: min(100%, 360px); height: auto; }
  .sheet-team .team-member { max-width: 220px; }
  .sheet-team .team-member img  { width: min(100%, 190px); height: auto; }

}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET / iPAD  ≤780px
═══════════════════════════════════════════════ */
@media (max-width: 780px) {

  /* Mobile optimized title animations (word-by-word cascade instead of character) */
  .motion-ready .title-char {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    display: inline !important;
  }

  .motion-ready .title-word {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition:
      opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--reveal-delay, 0ms) + var(--word-index, 0) * 44ms);
    will-change: opacity, transform;
  }

  .motion-ready .is-visible .title-word,
  .motion-ready .sheet-cover .title-word {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  /* Make reveal-items slide up slightly less on mobile for standard snappy responsiveness */
  .motion-ready .reveal-item {
    transform: translate3d(0, 14px, 0) scale(0.992);
    transition-duration: 780ms, 860ms;
  }

  .motion-ready .reveal-on-scroll,
  .motion-ready .reveal-media {
    transform: translate3d(0, 28px, 0) scale(0.982);
    transition-duration: 820ms, 920ms;
  }

  .motion-ready .reveal-on-scroll.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .motion-ready .is-visible .reveal-item {
    transform: translate3d(0, 0, 0);
  }

  .floating-nav {
    top: 10px;
    gap: 10px;
    width: calc(100vw - 24px);
    padding: 8px 12px;
    flex-wrap: wrap;
    border-radius: 20px;
  }

  .floating-nav__brand {
    flex: 1;
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .floating-nav__toggle {
    display: flex;
  }

  .floating-nav__links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
    padding: 8px 4px 4px;
    overflow: visible;
    scrollbar-width: none;
  }

  .floating-nav.is-open .floating-nav__links {
    display: flex;
  }

  .floating-nav__links::-webkit-scrollbar {
    display: none;
  }

  .floating-nav__links a {
    justify-content: flex-start;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    white-space: normal;
  }

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤480px  (hamburger menu)
═══════════════════════════════════════════════ */
}
@media (max-width: 480px) {

  .floating-nav {
    top: 10px;
    width: calc(100vw - 20px);
    padding: 8px 12px;
    gap: 0;
    align-items: center;
  }

  /* Khi mở menu, bo góc phía dưới thẳng hơn */
  .floating-nav.is-open {
    border-radius: 20px 20px 16px 16px;
  }

  .floating-nav__brand {
    flex: 1;
    padding: 6px 10px;
    font-size: 0.88rem;
  }

  .floating-nav__links a {
    font-size: 0.88rem;
  }

  /* Cover */
  .sheet-cover { padding: 96px 20px 40px; gap: 18px; }
  .sheet-cover .cover-photo-frame {
    height: clamp(200px, 60vw, 330px);
    padding: 14px;
    border-radius: 74px 0 0 62px;
  }
  .sheet-cover .cover-photo-frame::before {
    inset: 11px;
    border-width: 10px;
    border-radius: 58px 0 0 48px;
  }
  .sheet-cover .cover-photo-inner {
    inset: 22px 11px 11px 22px;
    border-radius: 48px 0 0 40px;
  }
  .sheet-cover .cover-banner {
    --banner-cut: clamp(32px, 8vw, 58px);
    width: 100%;
    max-width: 100%;
    min-height: clamp(58px, 8svh, 78px);
    margin-top: clamp(-42px, -6vw, -22px);
    padding: 14px calc(var(--banner-cut) + 14px) 14px 16px;
  }
  .sheet-cover .display-title {
    gap: clamp(7px, 1.8vw, 12px);
  }

  .sheet-cover .display-brand {
    font-size: clamp(1.85rem, 6.8vw, 3.2rem);
    letter-spacing: 0.07em;
  }

  .sheet-cover .display-divider {
    flex-basis: clamp(18px, 5vw, 34px);
    height: 3px;
  }

  .sheet-cover .display-tagline {
    font-size: clamp(0.66rem, 2.3vw, 1rem);
    letter-spacing: 0.018em;
  }

  /* About */
  .sheet-about .about-hero { height: clamp(160px, 52vw, 280px); }
  .sheet-about .about-columns { padding-top: 48px; padding-bottom: 64px; gap: 36px; }

  /* Services */
  .sheet-services .services-hero { min-height: clamp(240px, 65vw, 400px); }
  .sheet-services .services-hero-copy { padding-top: 48px; padding-bottom: 56px; }
  .sheet-services .services-grid { padding-top: 40px; padding-bottom: 56px; gap: 36px; }
  .service-card { padding-left: 46px; }
  .service-card::before { width: 28px; height: 28px; }
  .service-callout { width: 100%; padding: 28px 24px; }

  /* Team */
  .sheet-team .team-semantic { padding: 48px 20px 48px; }
  .sheet-team .sheet-header  { max-width: 100%; padding-right: 0; }
  .sheet-team .team-layout   { grid-template-columns: 1fr; gap: 28px; margin-top: 28px; max-width: 100%; }
  .sheet-team .team-founder  { margin-top: 0; justify-self: center; }
  .sheet-team .team-founder img { width: min(100%, 320px); height: auto; }
  .sheet-team .team-grid     { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 14px; }
  .sheet-team .team-corner   { width: 130px; height: 90px; border-bottom-left-radius: 48px; }
  .sheet-team .team-member { max-width: 220px; }
  .sheet-team .team-member img { width: min(100%, 220px); height: auto; }

  /* Clients */
  .sheet-clients .clients-label  { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .sheet-clients .clients-copy   { padding-top: 40px; }
  .sheet-clients .clients-logo   { width: min(200px, 50vw); margin-bottom: 24px; }
  .sheet-clients .client-strip   { margin-bottom: 48px; }

  /* Projects */
  .sheet-project { padding: 48px 20px 64px; }
  .sheet-project .project-title { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  .sheet-project .project-hero  { margin-bottom: 28px; }
  .sheet-project .project-gallery { margin-top: 28px; }

  /* Footer */
  .site-footer {
    padding: 42px 20px 24px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer__meta {
    flex-direction: column;
    gap: 6px;
  }
}

/* Mobile viewport packaging: each major section fits in one screen, with horizontal interaction inside dense content. */
@media (max-width: 780px) {
  .sheet {
    height: var(--section-height);
    min-height: var(--section-height);
    overflow: hidden;
    scroll-margin-top: 0;
  }

  .section-title {
    font-size: clamp(2.15rem, 10.8vw, 3.55rem);
    line-height: 0.94;
  }

  .title-rule {
    width: 60px;
    height: 3px;
    margin-top: 10px;
  }

  .sheet-cover {
    min-height: var(--section-height);
    padding: clamp(86px, 11svh, 104px) 18px 20px;
    gap: clamp(8px, 1.5svh, 14px);
    align-content: center;
  }

  .sheet-cover .cover-brand {
    width: min(58vw, 240px);
  }

  .sheet-cover .cover-photo-frame {
    height: clamp(150px, 27svh, 245px);
    min-height: 0;
  }

  .sheet-cover .cover-banner {
    --banner-cut: clamp(24px, 7vw, 34px);
    margin-top: clamp(-30px, -4svh, -14px);
    min-height: clamp(46px, 6.2svh, 56px);
    padding: 10px calc(var(--banner-cut) + 9px) 10px 12px;
  }

  .sheet-cover .display-title {
    gap: 6px;
  }

  .sheet-cover .display-brand {
    font-size: clamp(1.24rem, 5.2vw, 1.52rem);
    letter-spacing: 0.052em;
  }

  .sheet-cover .display-divider {
    flex-basis: clamp(12px, 4vw, 18px);
    height: 2px;
  }

  .sheet-cover .display-tagline {
    font-size: clamp(0.52rem, 2.15vw, 0.66rem);
    letter-spacing: 0.006em;
  }

  .sheet-cover .cover-meta {
    font-size: clamp(0.72rem, 2.8vw, 0.86rem);
    line-height: 1.28;
  }

  .sheet-cover .cover-link {
    justify-content: flex-start;
    font-size: clamp(0.8rem, 3vw, 0.98rem);
  }

  .sheet-about {
    display: grid;
    grid-template-rows: clamp(92px, 17svh, 140px) minmax(0, 1fr);
    padding: clamp(84px, 11svh, 102px) 0 18px;
    align-content: stretch;
  }

  .sheet-about .about-hero {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }

  .sheet-about .about-columns {
    display: flex;
    gap: 14px;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 14px 18px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .sheet-about .about-columns::-webkit-scrollbar {
    display: none;
  }

  .sheet-about .about-block {
    flex: 0 0 min(86vw, 370px);
    min-width: 0;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    scroll-snap-align: center;
    scrollbar-width: none;
  }

  .sheet-about .about-block::-webkit-scrollbar {
    display: none;
  }

  .sheet-about .about-list {
    margin-top: 12px;
    gap: 6px;
  }

  .sheet-about .about-list li,
  .sheet-about .about-profile p {
    font-size: clamp(0.72rem, 2.45vw, 0.86rem);
    line-height: 1.34;
  }

  .sheet-about .about-profile p {
    margin-top: 10px;
  }

  .sheet-services {
    display: grid;
    grid-template-rows: clamp(208px, 32svh, 280px) minmax(0, 1fr);
    align-content: stretch;
  }

  .sheet-services .services-hero {
    min-height: 0;
    height: 100%;
  }

  .sheet-services .services-hero-copy {
    padding: clamp(84px, 11svh, 100px) 20px 14px;
  }

  .sheet-services .services-hero-copy p {
    display: -webkit-box;
    max-width: none;
    margin-top: 10px;
    overflow: hidden;
    font-size: clamp(0.74rem, 2.4vw, 0.88rem);
    line-height: 1.36;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .sheet-services .services-grid {
    display: flex;
    gap: 12px;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 14px 18px 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .sheet-services .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .service-callout {
    flex: 0 0 min(82vw, 330px);
    width: auto;
    max-height: 100%;
    scroll-snap-align: center;
    overflow-y: auto;
    scrollbar-width: none;
  }

  .service-card::-webkit-scrollbar,
  .service-callout::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    padding: 18px 16px 16px 44px;
  }

  .service-card h3 {
    margin-bottom: 8px;
    font-size: clamp(1.32rem, 6vw, 1.8rem);
    line-height: 1.02;
  }

  .service-card p {
    margin-bottom: 8px;
    font-size: clamp(0.76rem, 2.55vw, 0.88rem);
    line-height: 1.34;
  }

  .service-card ul {
    gap: 4px;
  }

  .service-card li {
    font-size: clamp(0.7rem, 2.3vw, 0.82rem);
    line-height: 1.3;
  }

  .service-callout {
    align-self: stretch;
    justify-self: auto;
    padding: 24px 22px;
    font-size: clamp(0.84rem, 2.9vw, 1rem);
    line-height: 1.42;
  }

  .sheet-team {
    display: block;
  }

  .sheet-team .team-semantic {
    height: 100%;
    max-width: none;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    padding: clamp(84px, 11svh, 102px) 18px 18px;
  }

  .sheet-team .team-corner {
    width: 110px;
    height: 74px;
    border-bottom-left-radius: 34px;
  }

  .sheet-team .sheet-header {
    padding-right: 0;
  }

  .sheet-team .team-intro {
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    font-size: clamp(0.72rem, 2.35vw, 0.86rem);
    line-height: 1.34;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .sheet-team .team-layout {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(108px, 34vw) minmax(0, 1fr);
    gap: 10px;
    margin-top: 12px;
    align-items: stretch;
  }

  .sheet-team .team-founder {
    align-self: center;
    justify-self: center;
    margin: 0;
  }

  .sheet-team .team-founder img {
    width: min(100%, 140px);
  }

  .sheet-team .team-grid {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(92px, 34vw);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .sheet-team .team-grid::-webkit-scrollbar {
    display: none;
  }

  .sheet-team .team-member {
    max-width: none;
    scroll-snap-align: center;
  }

  .sheet-team .team-member img {
    width: min(100%, 118px);
  }

  .sheet-clients {
    height: var(--section-height);
    min-height: var(--section-height);
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: stretch;
  }

  .sheet-clients .clients-copy {
    min-height: 0;
    max-width: none;
    padding: clamp(84px, 11svh, 102px) 20px 10px;
    overflow: hidden;
  }

  .sheet-clients .clients-logo {
    width: min(140px, 44vw);
    margin-bottom: 14px;
  }

  .sheet-clients .clients-copy p {
    max-width: none;
    margin-top: 10px;
    font-size: clamp(0.78rem, 2.6vw, 0.92rem);
    line-height: 1.36;
  }

  .sheet-clients .clients-label {
    margin-top: 14px;
    font-size: clamp(2.05rem, 10vw, 3.1rem);
  }

  .sheet-clients .client-strip {
    max-width: none;
    margin: 0;
    padding: 0 18px clamp(24px, 4svh, 36px);
  }

  .sheet-clients .client-strip img {
    max-height: clamp(72px, 14svh, 118px);
    object-fit: contain;
    transform: none;
  }

  .sheet-projects-slider.sheet-project {
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    padding: clamp(24px, 4svh, 40px) clamp(16px, 5vw, 24px) clamp(14px, 2.6svh, 24px);
    scroll-margin-top: clamp(60px, 8svh, 80px);
  }

  .sheet-projects-slider.sheet-project .project-deck {
    height: 100%;
    min-height: 0;
  }

  .sheet-projects-slider.sheet-project .project-deck__track {
    height: 100%;
    min-height: 0;
  }

  .sheet-projects-slider .project-slide {
    grid-template-rows: clamp(118px, 19svh, 162px) clamp(142px, 24svh, 188px) minmax(0, 1fr);
    gap: clamp(8px, 1.35svh, 12px);
  }

  .sheet-projects-slider .project-title {
    font-size: clamp(1.02rem, 5vw, 1.45rem);
    line-height: 1.03;
    letter-spacing: -0.025em;
  }

  .sheet-projects-slider .project-kicker {
    font-size: clamp(0.56rem, 2vw, 0.68rem);
    line-height: 1.22;
  }

  .sheet-projects-slider .project-copy {
    justify-content: start;
  }

  .sheet-projects-slider .project-copy p:not(.project-kicker) {
    font-size: clamp(0.68rem, 2.25vw, 0.8rem);
    line-height: 1.28;
  }

  .sheet-projects-slider .project-copy-body,
  .sheet-projects-slider .project-copy-track {
    max-height: calc(1.28em * 3);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: clamp(1.95rem, 10.2vw, 3.15rem);
  }

  .sheet-about .about-block {
    flex-basis: 88vw;
  }

  .service-card,
  .service-callout {
    flex-basis: 84vw;
  }

  .sheet-team .team-layout {
    grid-template-columns: minmax(100px, 32vw) minmax(0, 1fr);
  }

  .sheet-team .team-founder img {
    width: min(100%, 126px);
  }

  .sheet-team .team-grid {
    grid-auto-columns: minmax(88px, 35vw);
  }
}

/* Final cascade guard: the single Project deck must not inherit the old per-section grid. */
.sheet-projects-slider.sheet-project {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
  align-content: stretch;
  align-items: stretch;
  justify-content: stretch;
  padding: clamp(76px, 8.4svh, 100px) var(--page-pad) clamp(16px, 2.2svh, 28px);
}

.sheet-projects-slider.sheet-project .project-deck {
  width: min(100%, var(--content-max));
  height: 100%;
  min-height: 0;
}

.sheet-projects-slider.sheet-project .project-deck__track {
  height: 100%;
}

@media (min-width: 781px) {
  .sheet-projects-slider.sheet-project {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    padding-top: clamp(76px, 8.4svh, 100px);
    padding-bottom: clamp(16px, 2.2svh, 28px);
  }
}

@media (max-width: 780px) {
  .sheet-projects-slider.sheet-project {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    padding: clamp(82px, 11svh, 104px) clamp(16px, 5vw, 24px) clamp(14px, 2.6svh, 24px);
  }
}

/* Project deck: all projects live inside one viewport-sized section with internal slides. */
.sheet-projects-slider {
  height: var(--section-height);
  min-height: var(--section-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
  justify-content: stretch;
  align-content: stretch;
  padding: clamp(76px, 8.4svh, 100px) var(--page-pad) clamp(16px, 2.2svh, 28px);
  background: var(--surface);
}

.sheet-projects-slider .project-deck {
  width: min(100%, var(--content-max));
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(8px, 1.2svh, 14px);
}

.sheet-projects-slider .project-deck__track {
  display: flex;
  min-width: 0;
  min-height: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  align-items: flex-start;
}

.sheet-projects-slider .project-deck__track::-webkit-scrollbar {
  display: none;
}

  .sheet-projects-slider .project-slide {
    flex: 0 0 100%;
    min-width: 0;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(320px, min(45vw, 760px)) minmax(320px, min(40vw, 620px));
    grid-template-rows: clamp(230px, 34svh, 430px) minmax(0, 1fr);
    grid-template-areas:
      "hero hero"
      "copy gallery";
  gap: clamp(14px, 1.8svh, 22px) clamp(18px, 2vw, 32px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.sheet-projects-slider .project-hero,
.sheet-projects-slider .project-copy,
.sheet-projects-slider .project-gallery-frame,
.sheet-projects-slider .project-gallery {
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 0;
  margin: 0;
}

.sheet-projects-slider .project-hero {
  grid-area: hero;
  height: 100%;
  aspect-ratio: auto;
  border-radius: clamp(12px, 1.25vw, 22px);
}

.sheet-projects-slider .project-hero img {
  object-position: left top;
  transform: none;
}

  .sheet-projects-slider .project-copy {
    grid-area: copy;
    height: 100%;
    display: flex;
    flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.sheet-projects-slider .project-title {
  font-size: clamp(1.35rem, 1.92vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.sheet-projects-slider .project-kicker {
  margin: 0;
  font-size: clamp(0.72rem, 0.72vw, 0.9rem);
  line-height: 1.32;
}

.sheet-projects-slider .project-copy p:not(.project-kicker) {
  font-size: clamp(0.84rem, 0.84vw, 0.98rem);
  line-height: 1.44;
}

.sheet-projects-slider .project-copy-body,
.sheet-projects-slider .project-copy-slider {
  margin-top: clamp(9px, 1.2svh, 16px);
}

.sheet-projects-slider .project-copy-track {
  max-height: min(18svh, 146px);
}

  .sheet-projects-slider .project-gallery-frame {
    grid-area: gallery;
    height: 100%;
    margin: 0;
  }

  .sheet-projects-slider .project-gallery {
    display: flex;
    height: 100%;
    align-self: stretch;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    border-radius: clamp(12px, 1.15vw, 22px);
  }

  .sheet-projects-slider .project-gallery::-webkit-scrollbar {
    display: none;
  }

  .sheet-projects-slider .project-gallery__item,
  .sheet-projects-slider .project-gallery--trio .project-gallery__item:first-child,
  .sheet-projects-slider .project-gallery--six .project-gallery__item {
    flex: 0 0 100%;
    height: 100%;
    aspect-ratio: auto;
    grid-row: auto;
    scroll-snap-align: center;
    cursor: zoom-in;
  }

.sheet-projects-slider .project-deck__controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 34px;
}

.sheet-projects-slider .project-deck__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.sheet-projects-slider .project-deck__dot,
.sheet-projects-slider .project-deck__button {
  appearance: none;
  border: 0;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, opacity 220ms ease;
}

.sheet-projects-slider .project-deck__dot {
  width: clamp(22px, 2.3vw, 40px);
  height: 4px;
  padding: 0;
  border-radius: 999px;
  background: rgba(146, 94, 40, 0.2);
}

.sheet-projects-slider .project-deck__dot.is-active {
  background: var(--brand-gold);
  transform: scaleX(1.25);
}

.sheet-projects-slider .project-deck__button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-brown);
  background: rgba(203, 138, 49, 0.11);
  font-size: 1.15rem;
  line-height: 1;
}

.sheet-projects-slider .project-deck__button:hover,
.sheet-projects-slider .project-deck__button:focus-visible {
  color: #ffffff;
  background: var(--brand-gold);
  outline: none;
  transform: translateY(-1px);
}

.sheet-projects-slider .project-deck__button:disabled {
  cursor: default;
  opacity: 0.35;
  color: var(--brand-brown);
  background: rgba(203, 138, 49, 0.11);
  transform: none;
}

@media (max-width: 780px) {
  .sheet-projects-slider {
    padding: clamp(82px, 11svh, 104px) clamp(16px, 5vw, 24px) clamp(14px, 2.6svh, 24px);
  }

  .sheet-projects-slider .project-deck {
    gap: 8px;
  }

  .sheet-projects-slider .project-slide {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: clamp(126px, 22svh, 190px) auto minmax(0, 1fr);
    grid-template-areas:
      "hero"
      "copy"
      "gallery";
    gap: clamp(10px, 1.6svh, 15px);
  }

  .sheet-projects-slider .project-title {
    font-size: clamp(1.22rem, 5.55vw, 1.92rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .sheet-projects-slider .project-kicker {
    font-size: clamp(0.62rem, 2.25vw, 0.76rem);
    line-height: 1.28;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .sheet-projects-slider .project-copy p:not(.project-kicker) {
    font-size: clamp(0.76rem, 2.45vw, 0.88rem);
    line-height: 1.34;
  }

  .sheet-projects-slider .project-copy-body,
  .sheet-projects-slider .project-copy-slider {
    margin-top: 7px;
  }

  .sheet-projects-slider .project-copy-body,
  .sheet-projects-slider .project-copy-track {
    max-height: calc(1.34em * 3);
  }

  .sheet-projects-slider .project-copy-body {
    overflow: hidden;
  }

  .sheet-projects-slider .project-gallery__item,
  .sheet-projects-slider .project-gallery--trio .project-gallery__item:first-child {
    flex-basis: min(76vw, 390px);
  }

  .sheet-projects-slider .project-deck__button {
    width: 30px;
    height: 30px;
  }
}

/* Project gallery rebuild: each project reads as one viewport, with dense galleries inside the section. */
.sheet-project .project-gallery {
  display: grid;
  gap: clamp(4px, 0.45vw, 8px);
  padding: clamp(4px, 0.45vw, 8px);
  background: rgba(255, 255, 255, 0.92);
}

.sheet-project .project-gallery__item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #1c1209;
}

.sheet-project .project-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.sheet-project .project-gallery--trio {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.sheet-project .project-gallery--trio .project-gallery__item:first-child {
  grid-row: 1 / -1;
}

.sheet-project .project-gallery--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

@media (min-width: 781px) {
  .sheet-project {
    grid-template-rows: clamp(168px, 27svh, 286px) minmax(0, 1fr);
    gap: clamp(14px, 1.9svh, 23px) clamp(18px, 2vw, 32px);
    padding-top: clamp(74px, 8.2svh, 98px);
    padding-bottom: clamp(14px, 2.4svh, 28px);
  }

  .sheet-project .project-hero {
    border-radius: clamp(12px, 1.25vw, 22px);
  }

  .sheet-project .project-copy-heading {
    gap: clamp(6px, 0.85svh, 12px);
  }

  .sheet-project .project-title {
    font-size: clamp(1.35rem, 1.92vw, 2.8rem);
    line-height: 1.04;
  }

  .sheet-project .project-copy-body,
  .sheet-project .project-copy-slider {
    margin-top: clamp(9px, 1.2svh, 16px);
  }

  .sheet-project .project-copy-track {
    max-height: min(20svh, 156px);
  }

  .sheet-project .project-gallery {
    border-radius: clamp(12px, 1.15vw, 22px);
  }
}

@media (max-width: 780px) {
  .sheet-project {
    height: var(--section-height);
    min-height: var(--section-height);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: clamp(126px, 22svh, 190px) auto minmax(0, 1fr);
    gap: clamp(10px, 1.6svh, 15px);
    justify-content: normal;
    align-content: stretch;
    padding: clamp(82px, 11svh, 104px) clamp(16px, 5vw, 24px) clamp(18px, 3svh, 28px);
    overflow: hidden;
  }

  .sheet-project .project-hero {
    width: 100%;
    height: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    aspect-ratio: auto;
    border-radius: 18px;
  }

  .sheet-project .project-copy {
    max-width: none;
    min-height: 0;
    margin: 0;
    overflow: hidden;
  }

  .sheet-project .project-copy-heading {
    gap: 7px;
  }

  .sheet-project .project-title {
    font-size: clamp(1.22rem, 5.55vw, 1.92rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .sheet-project .project-kicker {
    margin: 0;
    font-size: clamp(0.62rem, 2.25vw, 0.76rem);
    line-height: 1.28;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .sheet-project .project-copy p:not(.project-kicker) {
    font-size: clamp(0.76rem, 2.45vw, 0.88rem);
    line-height: 1.34;
  }

  .sheet-project .project-copy-body,
  .sheet-project .project-copy-slider {
    margin-top: 7px;
  }

  .sheet-project .project-copy-body,
  .sheet-project .project-copy-track {
    max-height: calc(1.34em * 3);
  }

  .sheet-project .project-copy-body {
    overflow: hidden;
  }

  .sheet-project .project-copy-slider {
    grid-template-columns: 1fr auto;
    gap: 7px 10px;
  }

  .sheet-project .project-copy-dot {
    width: 18px;
  }

  .sheet-project .project-copy-button {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }

  .sheet-project .project-gallery,
  .sheet-project .project-gallery--trio,
  .sheet-project .project-gallery--six {
    display: flex;
    gap: 6px;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 0;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px;
  }

  .sheet-project .project-gallery::-webkit-scrollbar {
    display: none;
  }

  .sheet-project .project-gallery__item,
  .sheet-project .project-gallery--trio .project-gallery__item:first-child {
    flex: 0 0 min(76vw, 390px);
    height: 100%;
    grid-row: auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

/* Desktop Project deck polish: full-width hero, frameless gallery, centered slide controls. */
@media (min-width: 781px) {
  .sheet-projects-slider.sheet-project {
    background: var(--surface);
    padding: clamp(72px, 8svh, 96px) 0 clamp(14px, 2svh, 24px);
    overflow: hidden;
  }

  .sheet-projects-slider.sheet-project .project-deck {
    width: 100%;
    max-width: none;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: clamp(8px, 1.1svh, 14px);
  }

  .sheet-projects-slider.sheet-project .project-slide {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: clamp(220px, 30svh, 340px) auto minmax(0, 1fr);
    grid-template-areas:
      "hero"
      "copy"
      "gallery";
    gap: clamp(10px, 1.35svh, 18px);
    overflow: hidden;
    width: 100%;
    margin-inline: 0;
  }

  .sheet-projects-slider.sheet-project .project-hero {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .sheet-projects-slider.sheet-project .project-hero::before,
  .sheet-projects-slider.sheet-project .project-hero::after,
  .sheet-projects-slider.sheet-project .project-gallery::before,
  .sheet-projects-slider.sheet-project .project-gallery::after {
    display: none;
  }

  .sheet-projects-slider.sheet-project .project-hero img {
    object-position: left top;
  }

  .sheet-projects-slider.sheet-project .project-copy,
  .sheet-projects-slider.sheet-project .project-gallery-frame,
  .sheet-projects-slider.sheet-project .project-gallery {
    width: min(calc(100% - var(--page-pad) - var(--page-pad)), var(--content-max));
    max-width: none;
    margin-inline: auto;
  }

  .sheet-projects-slider.sheet-project .project-copy {
    height: auto;
    display: grid;
    align-content: start;
    justify-content: stretch;
    overflow: visible;
  }

  .sheet-projects-slider.sheet-project .project-gallery-frame {
    grid-area: gallery;
    height: 100%;
    min-height: 0;
  }

  .sheet-projects-slider.sheet-project .project-copy-heading {
    width: 100%;
    max-width: none;
    gap: clamp(6px, 0.8svh, 10px);
  }

  .sheet-projects-slider.sheet-project .project-title {
    width: 100%;
    max-width: none;
    font-size: clamp(1.7rem, 2.75vw, 4.05rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .sheet-projects-slider.sheet-project .project-kicker {
    max-width: min(100%, 1180px);
    margin: 0;
    font-size: clamp(0.68rem, 0.72vw, 0.9rem);
    line-height: 1.26;
  }

  .sheet-projects-slider.sheet-project .project-copy p:not(.project-kicker) {
    font-size: clamp(0.78rem, 0.8vw, 0.96rem);
    line-height: 1.38;
  }

  .sheet-projects-slider.sheet-project .project-copy-body,
  .sheet-projects-slider.sheet-project .project-copy-slider {
    max-width: 980px;
    margin-top: clamp(6px, 0.8svh, 10px);
  }

  .sheet-projects-slider.sheet-project .project-copy-body,
  .sheet-projects-slider.sheet-project .project-copy-track {
    max-height: clamp(44px, 7.5svh, 86px);
  }

  .sheet-projects-slider.sheet-project .project-copy--full .project-copy-body {
    max-width: 100%;
    max-height: none;
  }

  .sheet-projects-slider.sheet-project .project-gallery {
    height: 100%;
    min-height: 0;
    padding: 0;
    display: flex;
    gap: 0;
    background: transparent;
    border-radius: clamp(10px, 1vw, 18px);
    box-shadow: none;
    transform: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .sheet-projects-slider.sheet-project .project-gallery::-webkit-scrollbar {
    display: none;
  }

  .sheet-projects-slider.sheet-project .project-gallery__item {
    flex: 0 0 100%;
    height: 100%;
    aspect-ratio: auto;
    grid-row: auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    background: transparent;
    box-shadow: none;
    cursor: zoom-in;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] {
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    grid-template-rows: clamp(220px, 30svh, 340px) auto minmax(0, 1fr);
    grid-template-areas:
      "hero hero"
      "heading heading"
      "description gallery";
    gap: clamp(10px, 1.35svh, 18px) clamp(22px, 3vw, 48px);
    width: min(calc(100% - var(--page-pad) - var(--page-pad)), var(--content-max));
    margin-inline: auto;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-copy {
    display: contents;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-copy-heading {
    grid-area: heading;
    width: 100%;
    max-width: none;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-copy-body {
    grid-area: description;
    max-width: none;
    max-height: none;
    overflow: visible;
    align-content: start;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-gallery-frame,
  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-gallery {
    width: 100%;
    margin: 0;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-gallery__dots {
    display: flex;
  }

  .sheet-projects-slider.sheet-project .project-deck__controls {
    width: fit-content;
    min-height: 0;
    margin: 0 auto;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 0.9vw, 14px);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 12px 34px rgba(66, 45, 22, 0.08);
  }

  .sheet-projects-slider.sheet-project .project-deck__dots {
    order: 2;
    gap: 7px;
  }

  .sheet-projects-slider.sheet-project .project-deck__button {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
    background: rgba(203, 138, 49, 0.12);
  }

  .sheet-projects-slider.sheet-project .project-deck__button:first-child {
    order: 1;
  }

  .sheet-projects-slider.sheet-project .project-deck__button:last-child {
    order: 3;
  }
}

/* Mobile repair: prioritize complete readable content over clipping a section to one fixed viewport. */
@media (max-width: 780px) {
  html,
  body {
    overflow-x: clip;
  }

  .sheet {
    height: auto;
    min-height: var(--section-height);
    overflow: visible;
  }

  .sheet-cover {
    height: var(--section-height);
    min-height: var(--section-height);
    overflow: hidden;
  }

  .sheet-about {
    display: block;
    padding: clamp(84px, 11svh, 102px) 0 34px;
  }

  .sheet-about .about-hero {
    height: auto;
    aspect-ratio: 1528 / 440;
  }

  .sheet-about .about-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    padding: 22px 20px 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .sheet-about .about-block {
    flex: none;
    max-height: none;
    overflow: visible;
    scroll-snap-align: unset;
  }

  .sheet-about .about-list li,
  .sheet-about .about-profile p {
    font-size: clamp(0.86rem, 3.4vw, 1rem);
    line-height: 1.42;
  }

  .sheet-services {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-rows: clamp(210px, 34svh, 292px) auto auto;
    align-content: start;
    overflow: hidden;
    background: var(--surface);
  }

  .sheet-services .services-hero {
    height: 100%;
    min-height: 0;
  }

  .sheet-services .services-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: clamp(74px, 10svh, 98px) 20px 16px;
  }

  .sheet-services .services-hero-copy .section-title {
    max-width: 12ch;
    font-size: clamp(2.8rem, 13vw, 4.4rem);
    line-height: 0.94;
  }

  .sheet-services .services-hero-copy .title-rule {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .sheet-services .services-hero-copy p {
    max-width: 100%;
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    font-size: clamp(0.78rem, 3vw, 0.92rem);
    line-height: 1.34;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .sheet-services .services-hero-copy p + p {
    display: none;
  }

  .sheet-services .services-grid {
    display: flex;
    min-height: 0;
    height: auto;
    gap: 14px;
    align-items: flex-start;
    padding: 10px 20px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 42px), transparent 100%);
  }

  .sheet-services .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .service-callout {
    flex: 0 0 min(82vw, 340px);
    width: auto;
    height: auto;
    max-height: 100%;
    min-height: 0;
    overflow: hidden;
    scroll-snap-align: center;
    scrollbar-width: none;
    scroll-margin-inline: 20px;
  }

  .service-card::-webkit-scrollbar,
  .service-callout::-webkit-scrollbar {
    display: none;
  }

  .services-progress {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 14px;
    width: min(100%, 390px);
    margin: 0 auto;
    padding: 8px 20px calc(14px + env(safe-area-inset-bottom));
  }

  .services-progress__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 0;
  }

  .services-progress__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(156, 119, 82, 0.26);
    box-shadow: inset 0 0 0 1px rgba(156, 119, 82, 0.08);
    transition: transform 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
  }

  .services-progress__dot.is-active {
    width: 10px;
    height: 10px;
    background: var(--accent);
    box-shadow: 0 7px 16px rgba(203, 138, 49, 0.26);
    transform: scale(1.08);
  }

  .services-progress__button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--brand-brown);
    background: rgba(248, 240, 229, 0.94);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 12px 26px rgba(80, 52, 24, 0.08);
    font-size: 2rem;
    line-height: 1;
    transition: transform 220ms ease, opacity 220ms ease, background-color 220ms ease;
  }

  .services-progress__button:active {
    transform: scale(0.94);
  }

  .services-progress__button:disabled {
    opacity: 0.34;
    pointer-events: none;
  }

  .service-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 14px;
    row-gap: 0;
    align-content: start;
    padding: 18px 18px 16px;
    background:
      linear-gradient(145deg, rgba(255, 253, 250, 0.96), rgba(248, 240, 230, 0.72)),
      var(--surface);
    border-radius: 24px;
    border: 1px solid rgba(157, 111, 55, 0.09);
    box-shadow: 
      inset 0 1px 1px rgba(255, 255, 255, 1),
      0 16px 36px rgba(66, 45, 22, 0.08);
    transform-origin: center center;
    will-change: transform, opacity;
  }

  .service-card::before {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 4px 12px rgba(203, 138, 49, 0.15));
  }

  .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 7px;
    font-size: clamp(1.22rem, 5.55vw, 1.68rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    text-wrap: balance;
  }

  .service-card p {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    margin: 0 0 10px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .service-card ul {
    grid-column: 2;
    grid-row: 3;
    width: 100%;
    min-height: 0;
    overflow: hidden;
    gap: 6px;
    align-content: start;
    padding: 10px 0 0;
    border-top: 1px solid rgba(158, 112, 59, 0.12);
  }

  .service-card p,
  .service-card li,
  .service-callout {
    font-size: clamp(0.74rem, 2.9vw, 0.88rem);
    line-height: 1.26;
  }

  .service-card li {
    position: relative;
    padding-left: 14px;
    color: rgba(82, 74, 66, 0.66);
    font-style: normal;
  }

  .service-card li::before {
    content: "";
    position: absolute;
    top: 0.56em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(203, 138, 49, 0.72);
  }

  .service-callout {
    position: relative;
    display: grid;
    align-content: center;
    justify-items: start;
    min-height: 0;
    padding: 26px 24px;
    border-radius: 24px;
    clip-path: none;
    background:
      radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.2), transparent 34%),
      var(--brand-brown);
    box-shadow: 0 18px 42px rgba(81, 48, 16, 0.18);
    font-size: clamp(0.92rem, 4.1vw, 1.16rem);
    line-height: 1.24;
    font-weight: 800;
    text-wrap: balance;
    isolation: isolate;
  }

  .service-callout::before {
    content: "";
    display: block;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    background: url("assets/images/logo/logo2.png") center / contain no-repeat;
    filter: brightness(0) invert(1);
    opacity: 0.72;
  }

  .service-callout::after {
    content: "05";
    position: absolute;
    right: -10px;
    bottom: -26px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.1);
    font-size: clamp(7rem, 34vw, 11rem);
    line-height: 0.78;
    font-weight: 900;
    letter-spacing: -0.08em;
  }

  .sheet-team {
    display: block;
  }

  .sheet-team .team-semantic {
    height: auto;
    min-height: var(--section-height);
    display: block;
    padding: clamp(86px, 11svh, 104px) 20px 40px;
  }

  .sheet-team .team-corner {
    width: 108px;
    height: 72px;
    border-bottom-left-radius: 34px;
  }

  .sheet-team .sheet-header {
    padding-right: 0;
  }

  .sheet-team .team-intro {
    display: block;
    overflow: visible;
    font-size: clamp(0.86rem, 3.35vw, 1rem);
    line-height: 1.42;
    -webkit-line-clamp: unset;
  }

  .sheet-team .team-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    margin-top: 24px;
  }

  .sheet-team .team-founder {
    justify-self: center;
    margin: 0;
  }

  .sheet-team .team-founder img {
    width: min(78vw, 260px);
  }

  .sheet-team .team-grid {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 18px 12px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .sheet-team .team-member {
    max-width: none;
    scroll-snap-align: unset;
  }

  .sheet-team .team-member img {
    width: min(100%, 165px);
  }

  .sheet-clients {
    height: auto;
    min-height: var(--section-height);
    display: block;
  }

  .sheet-clients .clients-copy {
    overflow: visible;
    padding: clamp(86px, 11svh, 104px) 20px 20px;
  }

  .sheet-clients .clients-logo {
    width: min(190px, 54vw);
    margin-bottom: 20px;
  }

  .sheet-clients .clients-copy p {
    font-size: clamp(0.86rem, 3.35vw, 1rem);
    line-height: 1.44;
  }

  .sheet-clients .clients-label {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .sheet-clients .client-strip {
    margin: 0;
    padding: 8px 18px 42px;
  }

  .sheet-clients .client-strip img {
    max-height: none;
    width: 100%;
    height: auto;
    transform: none;
  }

  .sheet-projects-slider.sheet-project {
    height: var(--section-height);
    min-height: var(--section-height);
    padding: clamp(76px, 10svh, 92px) 0 clamp(10px, 2svh, 16px);
    scroll-margin-top: clamp(60px, 8svh, 80px);
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(249, 242, 232, 0.94)),
      var(--surface);
  }

  .sheet-projects-slider.sheet-project .project-deck,
  .sheet-projects-slider.sheet-project .project-deck__track {
    height: 100%;
    min-height: 0;
  }

  .sheet-projects-slider.sheet-project .project-deck {
    gap: clamp(6px, 1.1svh, 10px);
    overflow: hidden;
  }

  .sheet-projects-slider.sheet-project .project-deck__track {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .sheet-projects-slider.sheet-project .project-slide {
    height: 100%;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: clamp(76px, 11svh, 106px) auto minmax(0, 1fr);
    grid-template-areas:
      "hero"
      "copy"
      "gallery";
    gap: clamp(8px, 1.2svh, 12px);
    align-content: stretch;
    overflow: hidden;
  }

  .sheet-projects-slider.sheet-project .project-hero {
    height: 100%;
    aspect-ratio: auto;
    width: 100%;
    border-radius: 0;
  }

  .sheet-projects-slider.sheet-project .project-copy {
    height: auto;
    width: calc(100% - 32px);
    margin-inline: auto;
    padding: clamp(13px, 3.5vw, 16px);
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(157, 111, 55, 0.1);
    background:
      linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(248, 238, 226, 0.82));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 16px 34px rgba(76, 48, 20, 0.08);
  }

  .sheet-projects-slider.sheet-project .project-title {
    font-size: clamp(0.98rem, 4.45vw, 1.34rem);
    line-height: 1.08;
    letter-spacing: -0.018em;
    overflow-wrap: break-word;
    scroll-margin-top: clamp(112px, 15svh, 132px);
    text-wrap: balance;
  }

  .sheet-projects-slider.sheet-project .project-title br {
    display: none;
  }

  .sheet-projects-slider.sheet-project .project-title .title-word {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .sheet-projects-slider.sheet-project .project-kicker {
    display: -webkit-box;
    overflow: hidden;
    margin-top: clamp(6px, 1.1svh, 9px);
    font-size: clamp(0.56rem, 2.35vw, 0.72rem);
    line-height: 1.24;
    letter-spacing: 0.02em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .section-title .title-word::after,
  .clients-label .title-word::after,
  .sheet-project .project-title .title-word::after {
    display: none;
  }

  .sheet-projects-slider.sheet-project .project-copy p:not(.project-kicker) {
    font-size: clamp(0.72rem, 2.9vw, 0.86rem);
    line-height: 1.34;
  }

  .sheet-projects-slider.sheet-project .project-copy-body,
  .sheet-projects-slider.sheet-project .project-copy-slider {
    margin-top: clamp(8px, 1.4svh, 12px);
  }

  .sheet-projects-slider.sheet-project .project-copy-body,
  .sheet-projects-slider.sheet-project .project-copy-track {
    max-height: clamp(92px, 17svh, 140px);
  }

  .sheet-projects-slider.sheet-project .project-copy-body {
    padding-right: 6px;
    overflow-y: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .sheet-projects-slider.sheet-project .project-copy--full .project-copy-body {
    display: grid;
    gap: 9px;
    max-height: clamp(140px, 24svh, 220px);
  }

  .sheet-projects-slider.sheet-project .project-copy-body p + p {
    margin-top: 0;
  }

  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-copy {
    padding-block: clamp(14px, 4svh, 22px);
  }

  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-title {
    font-size: clamp(1.08rem, 5.15vw, 1.58rem);
  }

  .sheet-projects-slider.sheet-project .project-gallery-frame {
    grid-area: gallery;
    width: calc(100% - 32px);
    height: clamp(232px, 31svh, 270px);
    min-height: 0;
    margin-inline: auto;
    align-self: start;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(157, 111, 55, 0.1);
    background: rgba(255, 252, 248, 0.88);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.85),
      0 18px 36px rgba(76, 48, 20, 0.1);
  }

  .sheet-projects-slider.sheet-project .project-gallery,
  .sheet-projects-slider.sheet-project .project-gallery--trio,
  .sheet-projects-slider.sheet-project .project-gallery--six {
    display: flex;
    width: 100%;
    margin-inline: auto;
    height: 100%;
    min-height: 0;
    padding: 10px;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    background: transparent;
    border-radius: inherit;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 10px;
  }

  .sheet-projects-slider.sheet-project .project-gallery__item,
  .sheet-projects-slider.sheet-project .project-gallery--trio .project-gallery__item:first-child {
    flex: 0 0 100%;
    height: 100%;
    aspect-ratio: auto;
    display: grid;
    place-items: center;
    grid-row: auto;
    padding: 6px;
    overflow: hidden;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    border-radius: 17px;
    background: rgba(244, 235, 224, 0.76);
  }

  .sheet-projects-slider.sheet-project .project-gallery__item img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: none;
    transform: none;
  }

  .sheet-projects-slider.sheet-project .project-gallery__dots {
    bottom: 14px;
    padding: 6px 9px;
    background: rgba(255, 250, 244, 0.86);
  }

  .sheet-projects-slider.sheet-project .project-deck__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-inline: auto;
    margin-top: 0;
    padding: 5px 8px;
    gap: 10px;
    border-radius: 999px;
    background: rgba(255, 252, 248, 0.82);
    box-shadow: 0 14px 32px rgba(72, 45, 20, 0.1);
    backdrop-filter: blur(12px);
  }

  .sheet-projects-slider.sheet-project .project-deck__dots {
    order: 2;
    gap: 7px;
  }

  .sheet-projects-slider.sheet-project .project-deck__button {
    order: 1;
    width: 36px;
    height: 36px;
    background: rgba(203, 138, 49, 0.12);
  }

  .sheet-projects-slider.sheet-project .project-deck__button:last-child {
    order: 3;
  }

  .sheet-projects-slider.sheet-project .project-deck__dot {
    width: 23px;
    height: 3px;
  }



  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery-frame {
    height: 100%;
    max-height: none;
    align-self: stretch;
  }

  /* Change mobile gallery for non-first projects into grid instead of slider */
  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery--trio,
  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery--six {
    display: grid;
    gap: 6px;
    scroll-snap-type: none;
  }

  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery--trio {
    grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery--trio .project-gallery__item:first-child {
    grid-row: 1 / -1;
  }

  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery__item {
    flex: none;
    height: auto;
    padding: 4px;
    border-radius: 12px;
    scroll-snap-align: unset;
  }

  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery__dots {
    display: none !important;
  }
}

/* Final desktop project layout: only the first project uses the text/gallery split. */
@media (min-width: 781px) {
  .sheet-projects-slider.sheet-project {
    --project-content-width: min(100%, var(--content-max));
  }

  .sheet-projects-slider.sheet-project .project-slide {
    width: 100%;
    margin-inline: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: clamp(220px, 30svh, 340px) auto minmax(0, 1fr);
    grid-template-areas:
      "hero"
      "copy"
      "gallery";
    row-gap: clamp(18px, 2.4svh, 30px);
    column-gap: clamp(22px, 2.4vw, 42px);
  }

  .sheet-projects-slider.sheet-project .project-hero {
    width: 100%;
    margin-inline: 0;
  }

  .sheet-projects-slider.sheet-project .project-copy,
  .sheet-projects-slider.sheet-project .project-gallery-frame,
  .sheet-projects-slider.sheet-project .project-gallery {
    width: var(--project-content-width);
    margin-inline: auto;
  }

  .sheet-projects-slider.sheet-project .project-copy {
    padding-inline: clamp(4px, 0.6vw, 12px);
  }

  .sheet-projects-slider.sheet-project .project-copy-heading {
    gap: clamp(10px, 1.4svh, 16px);
  }

  .sheet-projects-slider.sheet-project .project-gallery__dots {
    display: none;
  }

  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-copy {
    height: auto;
    margin-bottom: clamp(16px, 3svh, 32px);
    overflow: visible;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-copy {
    max-height: clamp(220px, 40svh, 360px);
    overflow-y: auto;
    padding-right: 8px;
    margin-bottom: clamp(16px, 3svh, 32px);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery,
  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery--trio,
  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery--six {
    display: grid;
    gap: clamp(4px, 0.45vw, 8px);
    height: 100%;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border-radius: clamp(10px, 1vw, 18px);
    scroll-snap-type: none;
  }

  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery--trio {
    grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery--trio .project-gallery__item:first-child {
    grid-row: 1 / -1;
  }

  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .sheet-projects-slider.sheet-project .project-slide:not([data-project-anchor="project-dong-hoi-tet"]) .project-gallery__item {
    flex: none;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    grid-row: auto;
    scroll-snap-align: unset;
    cursor: zoom-in;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] {
    width: var(--project-content-width);
    margin-inline: auto;
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    grid-template-rows: clamp(220px, 30svh, 340px) auto minmax(0, 1fr);
    grid-template-areas:
      "hero hero"
      "heading heading"
      "description gallery";
    column-gap: clamp(22px, 3vw, 48px);
    row-gap: clamp(18px, 2.2svh, 28px);
    padding-inline: clamp(10px, 1.2vw, 22px);
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-copy {
    display: contents;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-copy-heading {
    grid-area: heading;
    width: 100%;
    max-width: none;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-copy-body {
    grid-area: description;
    max-width: none;
    max-height: none;
    padding-right: clamp(6px, 1vw, 18px);
    overflow: visible;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-gallery-frame {
    grid-area: gallery;
    height: 100%;
    min-height: 0;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-gallery {
    display: flex;
    gap: 0;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-gallery__item {
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: center;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-gallery__dots {
    display: flex;
  }

  .sheet-projects-slider.sheet-project .project-slide[data-project-anchor="project-dong-hoi-tet"] .project-gallery__button {
    display: grid;
  }
}
