/* ─────────────────────────────────────────
   UR PRODUCTIONS — style.css
   Brand red: #B31B1B  |  Font: Inter
───────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #f4320c;
  --red-dark: #d42a09;
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #F5F3F0;
  --hero-bg: #ece8e4;
  --font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--off-white);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--black);
}

.section__title em {
  font-style: normal;
  color: var(--red);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 13px 26px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}

.btn--red {
  background: var(--red);
  color: var(--white);
}
.btn--red:hover { background: var(--red-dark); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  padding-left: 0;
}
.btn--ghost:hover { color: var(--red); }

.btn--pill {
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}
.btn--pill:hover { background: #333; }

.btn__arrow { font-size: 14px; }

/* ════════════════════════════════════════
   NAV  — transparent over hero
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 25px;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: transparent;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.nav__links {
  display: none;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--black); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: opacity 0.3s, visibility 0.3s;
}

/* Hamburger — always visible */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: background 0.2s;
}

/* Responsive nav */
@media (max-width: 1100px) {
  .nav__links { gap: 20px; }
}

@media (max-width: 900px) {
  .nav { padding: 0 24px; top: 16px; }
  .nav__logo-img { height: 50px; }
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex !important; }
  .hero { margin-top: 0; }

  .hero__content {
    top: 51%;
    width: 72vw;
  }

  .hero__headline {
    font-size: clamp(18px, 7vw, 44px);
    margin-bottom: 6px;
  }

  .hero__body {
    font-size: clamp(10px, 2.8vw, 15px);
    margin-bottom: 14px;
  }

  .btn--pill {
    font-size: 11px;
    padding: 9px 20px;
  }
}

@media (max-width: 480px) {
  .nav { padding: 0 16px; top: 12px; }
  .nav__logo-img { height: 40px; }
}

/* Scrolled state */
.nav--scrolled {
  background: transparent;
}

/* Drawer */
.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  height: 100dvh;
  background: var(--off-white);
  z-index: 800;
  display: flex;
  flex-direction: column;
  padding: 72px 52px 48px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.nav__drawer.open { transform: translateX(0); }

.nav__drawer-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  font-size: 20px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: rgba(10,10,10,0.35);
  transition: color 0.2s;
}
.nav__drawer-close:hover { color: var(--black); }

.nav__drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}

.nav__drawer-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav__drawer-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.3);
  margin: 0 0 14px;
}

.nav__drawer-group a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(10,10,10,0.55);
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.15s;
}
.nav__drawer-group a:hover { color: var(--black); }

.nav__drawer-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 4px;
  width: fit-content;
  transition: opacity 0.2s;
  margin-top: 8px;
}
.nav__drawer-contact:hover { opacity: 0.85; }
.nav__drawer-contact span { font-size: 16px; }

.nav__drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(10,10,10,0.1);
  margin-top: 40px;
}

.nav__drawer-socials {
  display: flex;
  gap: 20px;
}
.nav__drawer-socials a {
  color: rgba(10,10,10,0.3);
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.nav__drawer-socials a:hover { color: var(--black); }
.nav__drawer-socials svg { width: 22px; height: 22px; }

/* body.menu-open scroll unlock */

@media (hover: none), (pointer: coarse) {
  .portfolio__panel-overlay {
    opacity: 1;
    pointer-events: auto;
    background: linear-gradient(to top, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.18) 62%, transparent 100%);
  }
  .portfolio__panel-list li { opacity: 1; transform: none; }
  .portfolio__panel-label { opacity: 0; }
  .portfolio__panel-play { opacity: 1; }
}

@media (max-width: 900px) {
  .portfolio__panel-overlay { display: none; }
  .portfolio__panel-label { opacity: 1; }
}

.nav__drawer-copy {
  font-size: 11px;
  color: rgba(10,10,10,0.25);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════
   HERO — full-bleed, scroll to reveal
════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  background: var(--hero-bg);
  margin-top: -80px;
}


.hero__media {
  position: relative;
}

/* Image drives the section height — sits on top of video */
.hero__bg-img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.hero__overlay { display: none; }

.hero__ipad-video {
  position: absolute;
  top: 13.8%;
  left: 2.3%;
  width: 94.55%;
  height: 74.42%;
  object-fit: cover;
  z-index: 1;
  display: block;
  filter: brightness(0.5);
}

.hero__dust { display: none; }

/* Vertical dot navigation — fixed to left edge while in hero */
.hero__dots {
  position: fixed;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.hero__dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.hero__dot--active {
  background: var(--black);
}

/* Main hero content — centred over the iPad screen */
.hero__content {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: min(700px, 74vw);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  font-size: clamp(8px, 0.8vw, 10px);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
  margin-bottom: clamp(10px, 1.5vw, 20px);
  text-transform: uppercase;
}

.hero__headline {
  font-size: clamp(28px, 7.2vw, 106px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: clamp(10px, 1.5vw, 20px);
  letter-spacing: -0.02em;
}

.hero__headline em {
  font-style: normal;
  color: var(--red);
}

.hero__body {
  font-size: clamp(13px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: clamp(20px, 2.5vw, 36px);
}

/* Dark overlay behind text, on top of video, under the iPad frame */

/* Bottom bar — pinned to bottom of viewport */
.hero__bottom {
  position: fixed;
  bottom: 36px;
  left: 80px;
  right: 320px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__counter {
  font-size: 11px;
  color: rgba(0,0,0,0.4);
  letter-spacing: 0.1em;
}
.hero__counter strong {
  color: var(--black);
  font-weight: 700;
}

.hero__socials {
  display: flex;
  gap: 28px;
}

.hero__socials a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.hero__socials a:hover { color: var(--black); }

/* Right panel — fixed bottom-right */
.hero__right-panel {
  position: fixed;
  right: 48px;
  bottom: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.hero__right-thumb {
  position: relative;
  width: 220px;
  height: 138px;
  overflow: hidden;
  border-radius: 4px;
}

.hero__right-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
}

.hero__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.hero__play-btn:hover {
  background: rgba(255,255,255,0.28);
  border-color: var(--white);
}
.hero__play-btn svg { margin-left: 2px; }

.hero__right-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.45);
  text-transform: uppercase;
}

/* ── HERO V1 — text overlaid on image negative space ── */
.hero--v1 {
  margin-top: 0;
}

.hero--v1 .hero__media {
  transform: translateY(-10px);
  margin-bottom: -10px;
}

.hero--v1 .hero__content {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px));
  width: min(700px, 80vw);
  text-align: center;
  align-items: center;
  gap: 20px;
}

.hero--v1 .hero__headline {
  font-size: clamp(37px, 5.93vw, 94px);
  color: var(--black);
  margin-bottom: 0;
}

.hero--v1 .hero__headline em {
  color: var(--red);
}

.play-word {
  display: inline-flex;
  overflow: visible;
  padding-bottom: 0.12em;
  vertical-align: baseline;
}

.play-word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.65em) rotate(8deg);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero__headline.is-visible .play-word span {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.hero__headline.is-visible .play-word span:nth-child(1) { transition-delay: 0.06s; }
.hero__headline.is-visible .play-word span:nth-child(2) { transition-delay: 0.15s; }
.hero__headline.is-visible .play-word span:nth-child(3) { transition-delay: 0.25s; }
.hero__headline.is-visible .play-word span:nth-child(4) { transition-delay: 0.35s; }
.hero__headline.is-visible .play-word span:nth-child(5) { transition-delay: 0.45s; }

.hero--v1 .hero__body {
  font-size: clamp(16px, 1.8vw, 24px);
  color: rgba(0,0,0,0.5);
  margin-bottom: 0;
}

.hero--v1 .btn--pill {
  background: var(--black);
  color: var(--white);
  margin-top: 16px;
}

.hero__video-copy {
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

/* Title overlay on the video */
.hero__video-title {
  font-size: clamp(54px, 8.4vw, 116px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  text-align: center;
  width: max-content;
  max-width: 86vw;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out, filter 0.55s ease-out;
  transform: translateY(10px);
}

.hero__video-cta {
  pointer-events: auto;
  opacity: 0;
  transform: translateY(18px);
  margin-top: 0;
  background: rgba(10,10,10,0.36);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 38px;
  font-size: 16px;
  transition: opacity 0.5s ease-out 0.18s, transform 0.5s ease-out 0.18s, background 0.2s, color 0.2s;
}

.hero__video-cta:hover {
  background: rgba(10,10,10,0.52);
}

.hero--v1 .hero__video-cta {
  background: rgba(10,10,10,0.36);
}

.hero--v1 .hero__video-cta:hover {
  background: rgba(10,10,10,0.52);
}

.hero__video-title span {
  color: var(--red);
}

.hero__video-title.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero__video-title.is-visible + .hero__video-cta {
  opacity: 1;
  transform: translateY(0);
}

/* V1 video — behind transparent iPad screen */
.hero__ipad-video--v1 {
  position: absolute;
  top: 32.21%;
  left: 1.94%;
  width: 95.12%;
  height: 58.59%;
  object-fit: cover;
  z-index: 1;
  display: block;
  filter: brightness(0.6);
}

/* ════════════════════════════════════════
   IMMERSIVE SOUND
════════════════════════════════════════ */
.sound {
  position: relative;
  background: var(--off-white);
  min-height: 76vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 1;
}

.sound::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/homepage/Surround Room 2.webp') center / cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.sound::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #F5F3F0 0%,
    transparent 18%,
    transparent 72%,
    #F5F3F0 100%
  );
  z-index: 4;
  pointer-events: none;
}


.sound-orbs {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 120;
}

.sound__text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.sound__headline {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0;
  white-space: nowrap;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out, filter 0.55s ease-out;
}

.sound__headline.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.sound__headline em {
  font-style: normal;
  color: var(--black);
}

.sound__headline span {
  color: var(--red);
}

.sound__body {
  margin-top: 28px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(10,10,10,0.55);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out 0.35s, transform 0.5s ease-out 0.35s;
}
.sound__headline.is-visible ~ .sound__body {
  opacity: 1;
  transform: translateY(0);
}

.sound__logo {
  display: block;
  width: clamp(150px, 18vw, 240px);
  height: auto;
  margin: 34px auto 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease-out 0.7s, transform 0.4s ease-out 0.7s;
}
.sound__headline.is-visible ~ .sound__logo {
  opacity: 0.72;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .sound { min-height: 380px; }
  .sound__headline { font-size: clamp(32px, 8vw, 58px); }
  .sound__body {
    font-size: clamp(12px, 3.2vw, 15px);
    line-height: 1.6;
    max-width: 92vw;
    padding: 0 24px;
  }
  .sound__logo {
    width: clamp(132px, 34vw, 180px);
    margin-top: 26px;
  }
}

/* ════════════════════════════════════════
   FINISHING
════════════════════════════════════════ */
.finishing {
  background: url('../assets/images/homepage/Section 3.webp') center / cover no-repeat;
  color: var(--black);
  position: relative;
  min-height: 63.8vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.finishing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 243, 240, 0.55);
  z-index: 1;
  pointer-events: none;
}


.finishing__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 72px 64px;
  width: 100%;
}

.finishing .section__title {
  color: var(--black);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-align: center;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out, filter 0.55s ease-out;
}

.finishing .section__title.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.finishing .section__title       { color: var(--black); }
.finishing .section__title span  { color: var(--red); }
.finishing .section__title em    { color: var(--black); font-style: normal; }

.finishing__body {
  margin-top: 24px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(10,10,10,0.55);
  max-width: 760px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out 0.35s, transform 0.5s ease-out 0.35s;
}
.finishing .section__title.is-visible ~ .finishing__body {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .finishing__body {
    font-size: clamp(12px, 3.2vw, 15px);
    line-height: 1.6;
    max-width: 92%;
  }
}

/* ── Workflow Timeline ── */
.workflow {
  display: flex;
  align-items: center;
  margin-top: 64px;
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  left: -20px;
}

.workflow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.workflow.is-visible .workflow__step {
  opacity: 1;
  transform: translateY(0);
}

.workflow.is-visible .workflow__step:nth-child(1)  { transition-delay: 0.06s; }
.workflow.is-visible .workflow__step:nth-child(3)  { transition-delay: 0.22s; }
.workflow.is-visible .workflow__step:nth-child(5)  { transition-delay: 0.38s; }
.workflow.is-visible .workflow__step:nth-child(7)  { transition-delay: 0.54s; }
.workflow.is-visible .workflow__step:nth-child(9)  { transition-delay: 0.69s; }
.workflow.is-visible .workflow__step:nth-child(11) { transition-delay: 0.85s; }

.workflow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black);
  border: 1.5px solid var(--black);
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.workflow__dot--end {
  background: var(--red);
  border-color: var(--red);
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 4px rgba(244,50,12,0.25);
  animation: deliveryPulse 2s ease-in-out infinite;
}

@keyframes deliveryPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(244,50,12,0.25); }
  50%       { box-shadow: 0 0 0 10px rgba(244,50,12,0); }
}

.workflow__label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.65);
  white-space: nowrap;
}

.workflow__label--end {
  color: var(--red);
  font-weight: 700;
}

.workflow__line {
  flex: 1;
  height: 1px;
  background: rgba(10,10,10,0.15);
  position: relative;
  margin-bottom: 24px;
  min-width: 32px;
  overflow: hidden;
}

.workflow__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.workflow.is-visible .workflow__line:nth-child(2)::after  { transform: scaleX(1); transition-delay: 0.13s; }
.workflow.is-visible .workflow__line:nth-child(4)::after  { transform: scaleX(1); transition-delay: 0.29s; }
.workflow.is-visible .workflow__line:nth-child(6)::after  { transform: scaleX(1); transition-delay: 0.44s; }
.workflow.is-visible .workflow__line:nth-child(8)::after  { transform: scaleX(1); transition-delay: 0.60s; }
.workflow.is-visible .workflow__line:nth-child(10)::after { transform: scaleX(1); transition-delay: 0.76s; }

.workflow__line--arrow::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  border: 4px solid transparent;
  border-left-color: var(--black);
  border-right: none;
  transition: transform 0.3s ease 1.05s;
}

.workflow.is-visible .workflow__line--arrow::before {
  transform: translateY(-50%) scaleX(1);
}

.workflow__outputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 20px;
  margin-bottom: 22px;
  position: relative;
}

/* vertical trunk line */
.workflow__outputs::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(10,10,10,0.15);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.workflow.is-visible .workflow__outputs::before {
  transform: scaleY(1);
  transition-delay: 1.05s;
}

.workflow__output {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
  padding-left: 20px;
}

/* horizontal branch line per output */
.workflow__output::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.workflow.is-visible .workflow__output:nth-child(1)::before { transform: scaleX(1); transition-delay: 1.04s; }
.workflow.is-visible .workflow__output:nth-child(2)::before { transform: scaleX(1); transition-delay: 1.20s; }
.workflow.is-visible .workflow__output:nth-child(3)::before { transform: scaleX(1); transition-delay: 1.36s; }
.workflow.is-visible .workflow__output:nth-child(4)::before { transform: scaleX(1); transition-delay: 1.51s; }

.workflow__output svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

.workflow__output span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.65);
  white-space: nowrap;
}

.workflow.is-visible .workflow__output:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 1.01s; }
.workflow.is-visible .workflow__output:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 1.17s; }
.workflow.is-visible .workflow__output:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 1.32s; }
.workflow.is-visible .workflow__output:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 1.48s; }

/* Below desktop, the horizontal timeline (nowrap labels + connecting lines) doesn't
   fit — including on foldables like the Z Fold 7 unfolded (~984-1092px). Switch to
   a wrapped pill-badge layout instead of hiding the section. */
@media (max-width: 1100px) {
  .workflow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 10px;
    max-width: 100%;
    margin-top: 40px;
    align-items: stretch;
    left: 0;
  }

  .workflow__step {
    width: calc(50% - 8px);
    gap: 8px;
    padding: 12px 10px;
    border: 1px solid rgba(10,10,10,0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.38);
    flex-direction: row;
    justify-content: center;
  }

  .workflow__line {
    display: none;
  }

  .workflow__label {
    font-size: 11px;
    letter-spacing: 0.06em;
    white-space: normal;
    text-align: center;
  }

  .workflow__dot {
    width: 8px;
    height: 8px;
  }

  .workflow__dot--end {
    width: 10px;
    height: 10px;
  }

  .workflow__outputs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    margin-left: 0;
  }

  .workflow__outputs::before {
    display: none;
  }

  .workflow__output {
    width: calc(50% - 6px);
    justify-content: center;
    padding: 10px 8px;
    border-radius: 999px;
    background: rgba(10,10,10,0.06);
    transform: translateY(8px);
  }

  .workflow__output::before {
    display: none;
  }

  .workflow__output span {
    font-size: 11px;
    letter-spacing: 0.06em;
    white-space: normal;
    text-align: center;
  }

  .workflow__output svg {
    width: 14px;
    height: 14px;
  }
}

/* ════════════════════════════════════════
   PORTFOLIO
════════════════════════════════════════ */
/* ════════════════════════════════════════
   PORTFOLIO — editorial split panels
════════════════════════════════════════ */
.portfolio {
  background: var(--black);
}

.portfolio__header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-bottom: 48px;
  padding: 0 80px 0 0;
}

.portfolio__heading {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--black);
  margin: 0;
}

.portfolio__heading em {
  font-style: normal;
  color: var(--red);
}

/* Two full-height image panels */
.portfolio__panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  isolation: isolate;
}

.portfolio__panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.portfolio__panel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 40px;
  background: rgba(10,10,10,0.55);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.portfolio__panel:hover .portfolio__panel-overlay {
  opacity: 1;
  pointer-events: auto;
}

.portfolio__panel-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
}

.portfolio__panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.portfolio__panel-list li {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.portfolio__panel:hover .portfolio__panel-list li:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.portfolio__panel:hover .portfolio__panel-list li:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.portfolio__panel:hover .portfolio__panel-list li:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.19s; }
.portfolio__panel:hover .portfolio__panel-list li:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.portfolio__panel:hover .portfolio__panel-list li:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }

.portfolio__panel-list li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.portfolio__panel-list li a:hover,
.portfolio__panel-list li a.is-active {
  color: var(--red);
}

.portfolio__panel-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.portfolio__panel:hover .portfolio__panel-label {
  opacity: 0;
}
.portfolio__panel-label em {
  font-style: normal;
  color: var(--red);
  margin-right: 0.25em;
}

.portfolio__panel-label span {
  margin-left: 0.3em;
  font-size: 0.75em;
  transition: transform 0.25s ease;
}

.portfolio__panel:hover .portfolio__panel-label span,
.portfolio__panel:focus-visible .portfolio__panel-label span {
  transform: translate(3px, -3px);
}

.portfolio__panel:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -3px;
}

/* Image layer — zooms on hover */
.portfolio__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio__panel:hover::before { transform: scale(1.05); }

.portfolio__panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: background 0.4s ease;
  z-index: 1;
}
.portfolio__panel:hover .portfolio__panel-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.05) 100%);
}

.portfolio__panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 40px 44px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.portfolio__panel:hover .portfolio__panel-content { transform: translateY(0); }

.portfolio__panel-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.portfolio__panel-title {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.portfolio__panel-client {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* Play button centred, visible on hover */
.portfolio__panel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio__panel:hover .portfolio__panel-play { opacity: 1; }
.portfolio__panel-play svg {
  width: 56px;
  height: 56px;
  color: #fff;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

/* Thin divider between panels */
.portfolio__panel:first-child {
  border-right: none;
}

@media (max-width: 768px) {
  .portfolio { padding: 0; }
  .portfolio__panels {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    height: auto;
    padding: 0;
  }
  .portfolio__panel {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .portfolio__panel:first-child { border-right: none; border-bottom: none; }
}

/* ════════════════════════════════════════
   HOW WE WORK
════════════════════════════════════════ */
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 64px;
  background: url('../assets/images/homepage/Section 3.webp') top center / cover no-repeat;
}

.how__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.how__body {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  max-width: 380px;
}

.how__steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.how__step {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.how__step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  min-width: 28px;
  padding-top: 2px;
}

.how__step h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}

.how__step p {
  font-size: 13px;
  line-height: 1.75;
  color: #555;
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about {
  background: url('../assets/images/homepage/Section 4.webp') top center / cover no-repeat;
}

.about__image-col { overflow: hidden; position: relative; display: none; }

/* Carousel replaces static image */
.about__carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about__carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about__carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}

.about__carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 50px;
  box-sizing: border-box;
}

.about__carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.about__carousel-arrow:hover { background: rgba(255,255,255,0.3); }
.about__carousel-arrow--prev { left: 16px; }
.about__carousel-arrow--next { right: 16px; }

.about__carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.about__carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.about__carousel-dot--active {
  background: #fff;
  transform: scale(1.3);
}

.about__image-wrap {
  width: 100%;
  height: 100%;
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 48px;
  gap: 16px;
  border-right: 1px solid rgba(10,10,10,0.08);
}

/* Get In Touch section */
.contact {
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 48px;
  gap: 0;
}

.contact .section__eyebrow {
  margin-bottom: 20px;
}

.contact__title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0 0 20px;
}

.contact__title em {
  font-style: normal;
  color: var(--red);
}

.contact__sub {
  font-size: 16px;
  color: rgba(10,10,10,0.5);
  margin: 0 0 36px;
}

.contact__cta {
  display: inline-block;
  padding: 14px 32px;
  background: rgba(10,10,10,0.08);
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s;
}

.contact__cta:hover {
  background: rgba(10,10,10,0.15);
}

.about__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px;
  gap: 20px;
}

.about__contact-sub {
  font-size: 16px;
  color: rgba(10,10,10,0.5);
  margin: 0;
}

.about__contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about__contact-cta {
  display: inline-block;
  padding: 14px 32px;
  background: rgba(10,10,10,0.08);
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s;
}

.about__contact-cta:hover {
  background: rgba(10,10,10,0.15);
}

.about__contact-email {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid rgba(10,10,10,0.2);
  padding-bottom: 4px;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}
.about__contact-email:hover {
  color: var(--red);
  border-color: var(--red);
}

.about__body {
  font-size: 14px;
  line-height: 1.85;
  color: #444;
  max-width: 460px;
}

/* ════════════════════════════════════════
   HERITAGE CAROUSEL
════════════════════════════════════════ */
.heritage {
  display: grid;
  grid-template-columns: 1fr 500px;
  background: var(--off-white);
  overflow: hidden;
}

.heritage__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px;
  gap: 20px;
}

.heritage__track-wrap {
  position: relative;
  overflow: hidden;
  cursor: grab;
}
.heritage__track-wrap:active { cursor: grabbing; }

.heritage__track {
  display: flex;
  will-change: transform;
  user-select: none;
}

.heritage__slide {
  flex: 0 0 100%;
  aspect-ratio: 4 / 5;
}

.heritage__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.heritage__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 5;
}
.heritage__arrow:hover { background: var(--white); }
.heritage__arrow--prev { left: 16px; }
.heritage__arrow--next { right: 16px; }

.heritage__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.heritage__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.heritage__dot--active {
  background: var(--white);
  transform: scale(1.4);
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact {
  background: var(--black);
  padding: 140px 64px;
}

.contact__inner { max-width: 700px; }

.contact .section__eyebrow { color: var(--red); }

.contact__title { color: var(--white); }

.contact__email {
  display: inline-block;
  margin-top: 40px;
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.contact__email:hover { color: var(--red); border-color: var(--red); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: url('../assets/images/homepage/Footer.webp') top center / cover no-repeat;
  color: var(--black);
}

.footer__inner {
  padding: 80px 120px 28px 120px;
}

/* CTA block */
.footer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 64px;
  gap: 20px;
}
.footer__cta-title {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--black);
}
.footer__cta-title em {
  font-style: italic;
  color: var(--black);
}
.footer__cta-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(10,10,10,0.5);
  line-height: 1.6;
}
.footer__cta-sub span { display: inline; }
.footer__cta-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer__cta-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 132px;
  padding: 14px 32px;
  background: rgba(10,10,10,0.08);
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .footer__cta-btn:hover { background: rgba(10,10,10,0.15); }
}

.footer__cta-btn--address {
  min-width: 330px;
}

.footer__cta-label,
.footer__cta-detail {
  grid-area: 1 / 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.footer__cta-detail {
  opacity: 0;
  transform: translateY(6px);
  font-size: 13px;
}

.footer__cta-btn:focus-visible .footer__cta-label {
  opacity: 0;
  transform: translateY(-6px);
}

.footer__cta-btn:focus-visible .footer__cta-detail {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .footer__cta-btn:hover .footer__cta-label {
    opacity: 0;
    transform: translateY(-6px);
  }

  .footer__cta-btn:hover .footer__cta-detail {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(10,10,10,0.1);
  margin-bottom: 48px;
}

/* Top row */
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(10,10,10,0.1);
  align-items: start;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
}

.footer__cta-title {
  font-size: clamp(48px, 6vw, 88px) !important;
}
.footer__cta-title span { color: var(--red); }
.footer__cta-title em   { color: var(--black); font-style: normal; }

/* CTA block */
.footer__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
  padding-top: 8px;
}

.footer__about-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--black);
  margin: 0;
}
.footer__about-title em {
  font-style: normal;
  color: var(--red);
}

.footer__about-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(10,10,10,0.5);
}

.footer__socials-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__socials-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.35);
  margin: 0;
}

.footer__cols {
  display: flex;
  gap: 48px;
}

.footer__col h4.footer__col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.35);
  margin: 0 0 14px;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul li a {
  font-size: 16px;
  color: rgba(10,10,10,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col ul li {
  font-size: 16px;
  color: rgba(10,10,10,0.6);
}
.footer__col ul li a:hover { color: var(--black); }

/* Bottom row */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  text-align: center;
}

.footer__copy {
  font-size: 13px;
  color: rgba(10,10,10,0.35);
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.15);
  color: rgba(10,10,10,0.45);
  transition: border-color 0.2s, color 0.2s;
}
.footer__socials a:hover {
  border-color: var(--black);
  color: var(--black);
}
.footer__socials svg {
  width: 20px;
  height: 20px;
}

/* ── Announcement ── */
.announce__fab-wrap {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.announce__preview {
  background: var(--off-white);
  border: 1px solid rgba(10,10,10,0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  width: 280px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: bottom right;
}
.announce__preview.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.announce__preview-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.announce__preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.announce__preview-date {
  font-size: 11px;
  color: rgba(10,10,10,0.35);
  letter-spacing: 0.04em;
}
.announce__preview-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 6px;
}
.announce__preview-sub {
  font-size: 12px;
  color: rgba(10,10,10,0.5);
  line-height: 1.5;
}
.announce__preview-more {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red);
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s;
}
.announce__preview-more:hover { opacity: 0.7; }

.announce__fab {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 12px 20px 12px 16px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.2s;
}
.announce__fab:hover { background: var(--red); transform: translateY(-2px); }
.announce__fab svg { width: 18px; height: 18px; flex-shrink: 0; }
.announce__fab-label { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; }

.announce__modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(10,10,10,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.announce__modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.announce__modal {
  background: var(--off-white);
  border-radius: 16px;
  padding: 36px 40px 40px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.announce__modal-overlay.open .announce__modal {
  transform: translateY(0) scale(1);
}
.announce__modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.announce__banner-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(10,10,10,0.35);
}
.announce__banner-close {
  background: none;
  border: none;
  font-size: 16px;
  color: rgba(10,10,10,0.4);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.announce__banner-close:hover { color: var(--black); }
.announce__banner-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.announce__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.announce__item-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  margin-top: 3px;
}
.announce__item-tag--gallery {
  background: var(--red-dark);
}
.announce__item-tag--studio {
  background: #4a4a4a;
}
.announce__item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
}
.announce__item-sub {
  font-size: 13px;
  color: rgba(10,10,10,0.5);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .announce__fab-wrap { bottom: 20px; right: 20px; }
  .announce__fab { padding: 10px 16px 10px 14px; }
  .announce__preview { width: 240px; }
  .announce__banner-inner { padding: 20px 24px 28px; }
  .announce__banner-items { gap: 16px; }
}

@media (max-width: 1024px) {
  .footer__inner { padding: 56px 24px 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
  .footer__cta {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer__cta-title,
  .footer__cta-sub {
    text-align: center;
    width: 100%;
  }
  .footer__cta-actions { flex-direction: column; width: 100%; }
  .footer__cta-btn {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
    text-align: center;
  }
  .footer__cta-detail {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .footer__cta-btn--address.is-revealed .footer__cta-label {
    opacity: 0;
    transform: translateY(-6px);
  }
  .footer__cta-btn--address.is-revealed .footer__cta-detail {
    opacity: 1;
    transform: none;
  }
  .footer__top { flex-direction: column; align-items: center; gap: 32px; text-align: center; }
  .footer__brand { max-width: 100%; align-items: center; }
  .footer__socials-block { align-items: center; gap: 16px; }
  .footer__cols {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
  }
  .footer__col { width: 100%; text-align: center; }
  .footer__col ul { align-items: center; }
  .footer__col h4.footer__col-heading { margin-bottom: 10px; }
  .footer__col ul { gap: 8px; }
  .footer__bottom { padding-top: 16px; }
  .footer__socials a { width: 44px; height: 44px; }
  .footer__about-body { font-size: 13px; }
}

@media (max-width: 900px) {
  .services,
  .how,
  .contact {
    padding: 88px 32px;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how,
  .about,
  .heritage {
    grid-template-columns: 1fr;
  }

  .how {
    gap: 48px;
  }

  .about__image-wrap {
    aspect-ratio: 16 / 10;
  }

  .about__content,
  .heritage__header {
    padding: 72px 32px;
  }

  .heritage__track-wrap {
    width: 100%;
  }

  .heritage__slide {
    aspect-ratio: 16 / 11;
  }

  .finishing__content {
    order: 1;
    padding: 64px 32px 44px;
  }

  .finishing__floaters {
    height: 170px;
    bottom: 44px;
  }

  .finishing__gallery-track {
    gap: 18px;
  }

  .finishing__floater {
    width: clamp(150px, 26vw, 220px);
  }

  .hero--v1 {
    display: block;
    padding-top: 0;
  }

  .hero--v1 .hero__media {
    transform: translateY(72px);
    margin-bottom: 72px;
  }

  .hero--v1 .hero__content {
    position: absolute;
    top: 29%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(560px, 86vw);
    padding: 0;
    margin: 0;
    gap: 8px;
    z-index: 5;
  }

  .hero--v1 .hero__headline {
    font-size: clamp(34px, 6.4vw, 54px);
  }

  .hero--v1 .hero__body {
    font-size: clamp(14px, 2.4vw, 18px);
    line-height: 1.35;
  }

  .hero--v1 .btn--pill {
    margin-top: 6px;
  }

  .hero__video-title {
    font-size: clamp(40px, 9vw, 68px);
  }
}

@media (max-width: 600px) {
  a,
  button,
  [role="button"],
  .portfolio__panel,
  .cat-nav__item {
    -webkit-tap-gallery-color: transparent;
  }

  .workflow { display: none; }

  .footer__cta-sub span { display: block; }

  .portfolio__panel { cursor: pointer; }
  .portfolio__panel {
    transition: transform 0.1s ease;
    transform-origin: center;
  }
  .portfolio__panel.is-pressed { transform: scale(0.98); }
  .portfolio__panel.is-pressed .portfolio__panel-label { color: var(--red); }
  .portfolio__panel-overlay { display: none; }
  .portfolio__panel-label {
    opacity: 1 !important;
    transition: none;
  }
  .portfolio__panel-play { display: none; }
  .portfolio__panel-list li a {
    display: block;
    padding: 5px 0;
    -webkit-tap-gallery-color: transparent;
  }
  .portfolio__panel-list { max-width: 100%; overflow: hidden; }
  .portfolio__panel-list li {
    max-width: 100%;
    font-size: clamp(18px, 5.5vw, 23px);
    line-height: 1.12;
  }
  a,
  button,
  [role="button"],
  .portfolio__panel {
    transition: transform 0.1s ease, color 0.1s ease;
  }
  a:active,
  button:active,
  [role="button"]:active,
  .portfolio__panel:active {
    transform: scale(0.97);
    color: var(--red) !important;
  }
  .portfolio__panel:active .portfolio__panel-label,
  .portfolio__panel:active .portfolio__panel-list a {
    color: var(--red) !important;
  }

  .finishing { min-height: auto; }

  .services__intro,
  .service-card__body,
  .how__intro,
  .how__step-body,
  .about__body,
  .heritage__body,
  .contact__body {
    font-size: 16px;
    line-height: 1.6;
  }

  .portfolio__panel-client,
  .footer__copy {
    font-size: 14px;
    line-height: 1.55;
  }

  /* Homepage body copy on mobile */
  .sound__body,
  .finishing__body {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
  }

  .footer__about-body,
  .footer__cta-sub {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
  }

  .announce__preview-sub,
  .announce__item-sub {
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
  }

  .section__eyebrow,
  .portfolio__panel-cat,
  .workflow__label,
  .workflow__output span,
  .footer__socials-label,
  .footer__col h4.footer__col-heading {
    font-size: 12px;
  }

  .services,
  .how,
  .contact {
    padding: 72px 24px;
  }

  .section__title {
    font-size: clamp(34px, 12vw, 46px);
  }

  .hero--v1 .hero__content {
    gap: 8px;
    width: min(330px, 86vw);
    top: 30%;
    padding: 0;
  }

  .hero--v1 .hero__headline {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero--v1 .hero__body {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 400;
  }

  .hero__video-title {
    font-size: clamp(30px, 7.4vw, 40px);
  }

  .hero__video-cta {
    padding: 11px 26px;
    min-height: 44px;
    font-size: 13px;
  }

  .services__header {
    margin-bottom: 40px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 32px 24px;
  }

  .how {
    gap: 36px;
  }

  .how__step {
    gap: 18px;
    padding: 28px 0;
  }

  .about__content,
  .heritage__header {
    padding: 64px 24px;
  }

  .finishing__content {
    padding: 56px 24px;
  }

  .finishing__floaters {
    height: 128px;
    bottom: 34px;
    opacity: 0.72;
  }

  .finishing__gallery-track {
    gap: 12px;
    animation-duration: 18s;
  }

  .finishing__floater {
    width: 150px;
  }

  .about {
    min-height: 0;
  }

  .heritage__slide {
    aspect-ratio: 4 / 5;
  }

  .contact__email {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .footer {
    padding: 0;
  }

  .sound-orbs {
    opacity: 0.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media (max-width: 420px) {
  .nav__drawer {
    width: min(320px, 86vw);
    padding: 60px 24px 32px;
  }

  .nav__drawer-nav { gap: 28px; }
  .nav__drawer-group a { font-size: 23px; }
  .nav__drawer-footer { margin-top: 28px; padding-top: 20px; }
  .nav__drawer-socials { gap: 10px; }

  .hero--v1 .hero__content {
    top: 30%;
  }

  .hero--v1 .hero__headline {
    font-size: clamp(25px, 8vw, 32px);
  }

  .hero--v1 .btn--pill {
    margin-top: 8px;
  }

  .sound {
    min-height: 340px;
  }

  .sound__headline {
    font-size: clamp(24px, 6.5vw, 34px);
  }

  .hero__video-title {
    font-size: clamp(24px, 6.5vw, 34px);
  }

  .finishing .section__title {
    font-size: clamp(24px, 6.5vw, 34px);
  }

  .sound__body {
    width: min(36ch, calc(100% - 48px));
    max-width: none;
    padding: 0;
    font-size: 18px;
    line-height: 1.65;
    margin-top: 22px;
  }

  .finishing__body {
    width: min(36ch, 100%);
    max-width: none;
    font-size: 18px;
    line-height: 1.65;
  }
}

/* Instagram's WebView enlarges text more aggressively than mobile browsers. */
@media (max-width: 600px) {
  html.is-instagram-browser .hero--v1 .hero__body,
  html.is-instagram-browser .footer__about-body,
  html.is-instagram-browser .footer__cta-sub {
    font-size: 16px;
    font-weight: 400;
  }

  html.is-instagram-browser .sound__body,
  html.is-instagram-browser .finishing__body {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
  }

  .announce__item {
    position: relative;
    padding-right: 24px;
    cursor: pointer;
  }

  .announce__item::after {
    content: '+';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    line-height: 1;
    color: rgba(10,10,10,0.45);
  }

  .announce__item.is-expanded::after {
    content: '−';
  }

  .announce__item-sub {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.2s ease;
  }

  .announce__item.is-expanded .announce__item-sub {
    max-height: 180px;
    margin-top: 6px;
    opacity: 1;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .nav__drawer {
    padding: 48px 32px 24px;
  }
  .nav__drawer-nav { gap: 20px; }
  .nav__drawer-label { margin-bottom: 6px; }
  .nav__drawer-group a { min-height: 38px; font-size: 22px; }
  .nav__drawer-contact { margin-top: 4px; }
  .nav__drawer-footer { margin-top: 20px; padding-top: 16px; }
}

/* Keep tablet and unfolded-foldable layouts tied to the visible viewport. */
@media (min-width: 601px) and (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .hero,
  .hero--v1 .hero__media,
  .hero__bg-img,
  .sound,
  .finishing,
  .portfolio,
  .footer {
    width: 100vw;
    max-width: 100vw;
  }
}
