/* Design tokens from shihanperies.framer.ai */
:root {
  --bg: #050100;
  --surface: #121212;
  --card: #282626;
  --text: #ffffff;
  --muted: #e1dcd9;
  --accent: #fd5539;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Roboto", sans-serif;
  --font-ui: "Inter", sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 3.5rem);
  --radius-pill: 200px;
  --radius-cta: 48px;
  --radius-btn: 30px;
  --maxw: 1200px;
  /* fixed header: pad + menu circle + bottom border — used to clear hero / nav */
  --header-bar-h: calc(1.35rem + 44px + 1px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-bar-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem var(--page-pad) 0.7rem;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header > * {
  pointer-events: auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
  line-height: 1;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.menu-toggle:hover {
  filter: brightness(1.05);
}

.menu-toggle:active {
  transform: scale(0.96);
}

.menu-icon {
  width: 14px;
  height: 14px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M9.316 15H6.684V9.207H1V6.736h5.684V1h2.632v5.736H15v2.471H9.316V15z' fill='%23fff'/%3E%3C/svg%3E");
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  transform: rotate(45deg);
}

/* —— Nav overlay (drops from top) —— */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(5, 1, 0, 0.98);
  display: grid;
  place-items: center;
  padding: var(--page-pad);
  padding-top: max(var(--page-pad), var(--header-bar-h));
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  transition:
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 1.05s;
  will-change: transform;
}

.nav-overlay.nav-overlay--open {
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.nav-overlay__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  max-width: 100%;
}

.nav-overlay__inner > a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(-1.5rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.nav-overlay--open .nav-overlay__inner > a:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.22s;
}

.nav-overlay--open .nav-overlay__inner > a:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.32s;
}

.nav-overlay--open .nav-overlay__inner > a:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.42s;
}

.nav-overlay--open .nav-overlay__inner > a:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.52s;
}

.nav-overlay:not(.nav-overlay--open) .nav-overlay__inner > a {
  transition-delay: 0s !important;
}

.nav-overlay__inner > a:hover {
  color: var(--accent);
}

.nav-overlay__social {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(-1.25rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.nav-overlay--open .nav-overlay__social {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.62s;
}

.nav-overlay:not(.nav-overlay--open) .nav-overlay__social {
  transition-delay: 0s !important;
}

.nav-overlay__social a {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.nav-overlay__social a:hover {
  color: var(--accent);
}

body.nav-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .nav-overlay {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .nav-overlay.nav-overlay--open {
    transition-duration: 0.01ms !important;
  }

  .nav-overlay__inner > a,
  .nav-overlay__social {
    transition-duration: 0.01ms !important;
  }

  .menu-icon {
    transition-duration: 0.15s !important;
  }
}

/* —— Hero (centered stack: title → portrait → tagline → CTA) —— */
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 1.4rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-slide-right {
  from {
    opacity: 0;
    transform: translate3d(-2.2rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-char-in {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(-1rem, 0, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

@keyframes hero-portrait-pop {
  from {
    opacity: 0;
    transform: translate3d(0, 1rem, 0) scale(0.82);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero-reveal {
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
  animation-duration: 0.72s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
}

.hero-reveal--1 {
  animation: none;
  opacity: 1;
}

.hero-reveal--2 {
  animation-name: hero-portrait-pop;
  animation-delay: 0.08s;
}

.hero-reveal--3 {
  animation-name: hero-rise;
  animation-delay: 0.2s;
}

.hero-reveal--4 {
  animation-name: hero-rise;
  animation-delay: 0.28s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__title-char {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-bar-h) + 1rem) var(--page-pad) clamp(2.5rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}

.hero__inner {
  width: min(52rem, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.25rem, 4vw, 1.75rem);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.55rem, 10vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.12em;
  white-space: nowrap;
}

.hero__title-line {
  display: inline-flex;
  white-space: nowrap;
}

.hero__title-char {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(-1rem, 0, 0);
  will-change: transform;
  animation: hero-char-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.8vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin: 0;
  max-width: 22em;
  color: var(--text);
  text-transform: uppercase;
}

.hero__figure {
  margin: 0;
  width: min(280px, 78vw);
  max-height: min(52vh, 420px);
  aspect-ratio: 1035 / 1097;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  flex-shrink: 0;
  contain: layout paint;
}

.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateZ(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

.btn--cta {
  background: var(--card);
  color: var(--text);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-cta);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn--cta:hover {
  background: #353232;
}

.btn--cta:active {
  transform: scale(0.98);
}

.btn--view {
  background: var(--card);
  color: var(--text);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-btn);
  transition: background 0.2s ease;
}

.btn--view:hover {
  background: #353232;
}

@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(1.9rem, 9.2vw, 3.35rem);
    letter-spacing: -0.03em;
  }

  .hero__inner {
    width: min(100%, 34rem);
  }
}

/* —— Thumbnail strip (auto marquee, right → left) —— */
@keyframes thumb-strip-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.thumb-strip {
  position: relative;
  padding: 0 var(--page-pad) 3rem;
  max-width: 100%;
  margin: 0 auto;
  background: #000000;
}

.thumb-strip__viewport {
  width: 100%;
  overflow: hidden;
  padding: 0.25rem 0;
  mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}

.thumb-strip__marquee {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: thumb-strip-marquee 55s linear infinite;
  will-change: transform;
}

.thumb-tile {
  flex: 0 0 auto;
  width: clamp(140px, 22vw, 200px);
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.thumb-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 720px) {
  .thumb-strip__viewport {
    width: min(100%, 18rem);
    margin: 0 auto;
    mask-image: none;
  }

  .thumb-tile {
    width: 18rem;
  }

  .thumb-strip--mobile-slider .thumb-strip__marquee {
    gap: 0;
    width: auto;
    animation: none;
    transform: translate3d(var(--thumb-strip-mobile-x, 0px), 0, 0);
    transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .thumb-strip--mobile-slider .thumb-strip__marquee.is-resetting {
    transition: none;
  }

  .thumb-strip--mobile-slider .thumb-tile {
    width: var(--thumb-strip-mobile-slide-w, 18rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thumb-strip__marquee {
    animation-duration: 120s;
  }
}

/* —— Tagline band (scroll: ash → white per line) —— */
.band--tagline {
  padding: clamp(4rem, 12vw, 7rem) var(--page-pad);
  background: #000000;
}

.band__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5.5vw, 4.375rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}

.band__phrase {
  display: block;
  max-width: 100%;
  color: #b5aea8;
  transition:
    color 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.band__phrase.is-lit {
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .band__phrase {
    color: #ffffff;
    transition: none;
  }
}

/* —— Sections —— */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 4.375rem);
  line-height: 1;
  letter-spacing: -0.5px;
  text-align: center;
  margin: 0 0 2.5rem;
}

.featured {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--page-pad) clamp(3rem, 7vw, 5.5rem);
  background: #000000;
}

.featured__lede,
.featured .project-card {
  opacity: 0;
  will-change: transform, opacity;
}

.featured__lede {
  transform: translate3d(-42px, 0, 0);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.92s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured .project-card {
  transform: translate3d(0, 48px, 0) scale(0.985);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.featured.is-visible .featured__lede,
.featured.is-visible .project-card {
  opacity: 1;
}

.featured.is-visible .featured__lede {
  transform: translate3d(0, 0, 0);
  transition-delay: 0.12s;
}

.featured.is-visible .project-card {
  transform: translate3d(0, 0, 0) scale(1);
}

.featured.is-visible .project-card:nth-child(1) {
  transition-delay: 0.18s;
}

.featured.is-visible .project-card:nth-child(2) {
  transition-delay: 0.28s;
}

.featured.is-visible .project-card:nth-child(3) {
  transition-delay: 0.38s;
}

.featured.is-visible .project-card:nth-child(4) {
  transition-delay: 0.48s;
}

.featured.is-visible .project-card:nth-child(5) {
  transition-delay: 0.58s;
}

/* —— Homepage title reveals —— */
@keyframes home-char-in {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(-1rem, 0, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

.home-char-reveal {
  will-change: transform;
}

.home-char-reveal__word {
  display: inline-flex;
  white-space: nowrap;
}

.home-char-reveal__char {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(-1rem, 0, 0);
  will-change: transform;
}

.home-char-reveal.is-visible .home-char-reveal__char {
  animation: home-char-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .featured__lede,
  .featured .project-card,
  .home-char-reveal__char {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none !important;
    transition: none !important;
  }
}

.featured__intro {
  max-width: var(--maxw);
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  display: grid;
  gap: 0.7rem;
}

.featured__eyebrow {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.featured__title {
  margin: 0;
  text-align: left;
}

.featured__lede {
  max-width: 44rem;
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.featured__grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
  max-width: var(--maxw);
  margin: 0 auto;
}

@media (min-width: 820px) {
  .featured__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.project-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.35s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-7px);
  border-color: rgba(253, 85, 57, 0.28);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.32);
}

.project-card__media {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 16 / 10;
}

.project-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.24) 100%);
  pointer-events: none;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.project-card:hover .project-card__media img {
  transform: scale(1.04);
}

.project-card__body {
  display: grid;
  gap: 0.55rem;
  padding: 1.1rem 1.1rem 1.2rem;
}

.project-card__meta {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.project-card__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
}

.project-card__summary {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.project-card__link {
  margin-top: 0.2rem;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* —— Contact page —— */
body.contact-page {
  background: #000000;
}

.contact-main {
  background: #000000;
  padding-top: calc(var(--header-bar-h) + 1.1rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.contact-hero,
.contact-faq-shell {
  width: min(1240px, calc(100% - clamp(1.5rem, 4vw, 3rem)));
  margin: 0 auto;
}

.contact-hero {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
  padding-bottom: clamp(2.2rem, 6vw, 4rem);
}

@media (min-width: 980px) {
  .contact-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  }
}

.contact-hero__intro {
  display: grid;
  gap: 1rem;
}

.contact-hero__eyebrow {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.contact-hero__title {
  --scroll-shift-x: 0px;
  --scroll-shift-y: 0px;
  --contact-reveal-x: 0px;
  --contact-reveal-y: 56px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 10vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(calc(var(--scroll-shift-x) + var(--contact-reveal-x)), calc(var(--scroll-shift-y) + var(--contact-reveal-y)), 0)
    scale(0.95);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-hero__text {
  max-width: 38rem;
  margin: 0;
  font-size: clamp(1rem, 1.9vw, 1.08rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.25rem;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-hero__panel {
  --scroll-shift-x: 0px;
  --scroll-shift-y: 0px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(var(--scroll-shift-x), calc(var(--scroll-shift-y) + 42px), 0) scale(0.96);
  transition:
    opacity 0.82s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.contact-hero__panel:hover {
  border-color: rgba(253, 85, 57, 0.18);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.contact-hero__panel-label {
  margin: 0 0 1rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.contact-cards {
  display: grid;
  gap: 0.9rem;
}

.contact-card {
  padding: 0.95rem 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.62s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease;
}

.contact-card:first-child {
  padding-top: 0.15rem;
}

.contact-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-card__label {
  margin: 0 0 0.2rem;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.contact-card__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-card:hover {
  border-bottom-color: rgba(253, 85, 57, 0.26);
}

.contact-faq-shell {
  padding-bottom: clamp(1rem, 3vw, 2rem);
}

.contact-section__title {
  --scroll-shift-x: 0px;
  --scroll-shift-y: 0px;
  --contact-reveal-x: 0px;
  --contact-reveal-y: 46px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(calc(var(--scroll-shift-x) + var(--contact-reveal-x)), calc(var(--scroll-shift-y) + var(--contact-reveal-y)), 0)
    scale(0.96);
  transition:
    opacity 0.82s ease,
    transform 0.98s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-faq {
  width: min(900px, 100%);
  margin: clamp(1.5rem, 4vw, 2rem) 0 0;
}

.contact-faq .about-faq__item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.68s ease,
    transform 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.about-reveal.is-visible .contact-hero__title,
.about-reveal.is-visible .contact-hero__text,
.about-reveal.is-visible .contact-hero__actions,
.about-reveal.is-visible .contact-hero__panel,
.about-reveal.is-visible .contact-section__title,
.about-reveal.is-visible .contact-card,
.about-reveal.is-visible .contact-faq .about-faq__item {
  opacity: 1;
}

.about-reveal.is-visible .contact-hero__title,
.about-reveal.is-visible .contact-section__title {
  transform: translate3d(var(--scroll-shift-x), var(--scroll-shift-y), 0) scale(1);
}

.about-reveal.is-visible .contact-hero__text,
.about-reveal.is-visible .contact-hero__actions,
.about-reveal.is-visible .contact-card,
.about-reveal.is-visible .contact-faq .about-faq__item {
  transform: translateY(0);
}

.about-reveal.is-visible .contact-hero__panel {
  transform: translate3d(var(--scroll-shift-x), var(--scroll-shift-y), 0) scale(1);
}

.about-reveal.is-visible .contact-hero__title {
  transition-delay: 0.08s;
}

.about-reveal.is-visible .contact-hero__text {
  transition-delay: 0.16s;
}

.about-reveal.is-visible .contact-hero__actions {
  transition-delay: 0.24s;
}

.about-reveal.is-visible .contact-hero__panel {
  transition-delay: 0.14s;
}

.about-reveal.is-visible .contact-card:nth-child(1) {
  transition-delay: 0.24s;
}

.about-reveal.is-visible .contact-card:nth-child(2) {
  transition-delay: 0.32s;
}

.about-reveal.is-visible .contact-card:nth-child(3) {
  transition-delay: 0.4s;
}

.about-reveal.is-visible .contact-section__title {
  transition-delay: 0.08s;
}

.about-reveal.is-visible .contact-faq .about-faq__item:nth-child(1) {
  transition-delay: 0.14s;
}

.about-reveal.is-visible .contact-faq .about-faq__item:nth-child(2) {
  transition-delay: 0.22s;
}

.about-reveal.is-visible .contact-faq .about-faq__item:nth-child(3) {
  transition-delay: 0.3s;
}

.about-reveal.is-visible .contact-faq .about-faq__item:nth-child(4) {
  transition-delay: 0.38s;
}

.about-reveal.is-visible .contact-faq .about-faq__item:nth-child(5) {
  transition-delay: 0.46s;
}

@media (max-width: 979px) {
  .contact-main {
    padding-top: calc(var(--header-bar-h) + 0.8rem);
  }

  .contact-hero__actions .project-btn {
    flex: 1 1 220px;
  }
}

@media (max-width: 640px) {
  .contact-hero,
  .contact-faq-shell {
    width: min(1240px, calc(100% - 1.1rem));
  }

  .contact-hero__title {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .contact-section__title {
    font-size: clamp(2.3rem, 12vw, 3.3rem);
  }

  .contact-hero__panel {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero__title,
  .contact-hero__text,
  .contact-hero__actions,
  .contact-hero__panel,
  .contact-card,
  .contact-section__title,
  .contact-faq .about-faq__item {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}

/* —— Project detail pages —— */
body.project-page {
  background: #050100;
}

.project-main {
  padding-top: calc(var(--header-bar-h) + 1.1rem);
}

.project-hero {
  --project-section-shift: 0px;
  width: min(1320px, calc(100% - clamp(1.5rem, 4vw, 3rem)));
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2.5rem) 0 clamp(2rem, 6vw, 4rem);
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, calc(54px + var(--project-section-shift)), 0) scale(0.985);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 980px) {
  .project-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  }
}

.project-hero__content {
  display: grid;
  gap: 1rem;
}

.project-hero__eyebrow {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-hero__title {
  --project-title-shift: 0px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(0, calc(32px + var(--project-title-shift)), 0) scale(0.965);
  will-change: transform, opacity;
  transition:
    opacity 0.75s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-hero__summary {
  max-width: 36rem;
  margin: 0;
  font-size: clamp(1rem, 1.85vw, 1.12rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.project-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(253, 85, 57, 0.28);
  background: rgba(253, 85, 57, 0.08);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.2rem;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.project-btn:hover {
  transform: translateY(-2px);
}

.project-btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.project-btn--secondary {
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}

.project-hero__media {
  --project-media-y: 0px;
  --project-media-rotate: 0deg;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translate3d(0, calc(46px + var(--project-media-y)), 0) scale(0.94) rotate(var(--project-media-rotate));
  will-change: transform, opacity;
  transition:
    opacity 0.8s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.project-hero__media:hover {
  border-color: rgba(253, 85, 57, 0.22);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.38);
}

.project-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: top center;
}

.project-section {
  --project-section-shift: 0px;
  width: min(1320px, calc(100% - clamp(1.5rem, 4vw, 3rem)));
  margin: 0 auto;
  padding-bottom: clamp(2.25rem, 6vw, 4.5rem);
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, calc(44px + var(--project-section-shift)), 0) scale(0.99);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.92s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.92s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-layout {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
}

@media (min-width: 980px) {
  .project-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: start;
  }
}

.project-panel,
.project-highlight {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.72s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.project-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.project-panel:hover,
.project-highlight:hover {
  border-color: rgba(253, 85, 57, 0.18);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.project-section__label {
  margin: 0 0 0.65rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.project-section__title {
  --project-title-shift: 0px;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(0, calc(28px + var(--project-title-shift)), 0) scale(0.97);
  will-change: transform, opacity;
  transition:
    opacity 0.72s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-copy {
  display: grid;
  gap: 1rem;
}

.project-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
}

.project-details {
  display: grid;
  gap: 0.9rem;
}

.project-detail {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.project-detail__label {
  margin: 0 0 0.2rem;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.project-detail__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.project-highlights {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .project-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.project-highlight {
  padding: 1.15rem 1.1rem;
}

.project-highlight__num {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
}

.project-highlight__title {
  margin: 2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
}

.project-highlight__text {
  margin: 0.7rem 0 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.project-return {
  --project-section-shift: 0px;
  width: min(1320px, calc(100% - clamp(1.5rem, 4vw, 3rem)));
  margin: 0 auto;
  padding-top: clamp(0.25rem, 1.5vw, 0.9rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  display: flex;
  justify-content: flex-start;
  opacity: 0;
  transform: translate3d(0, calc(34px + var(--project-section-shift)), 0);
  transition:
    opacity 0.72s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-hero.is-visible,
.project-section.is-visible,
.project-return.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, var(--project-section-shift), 0) scale(1);
}

.project-hero.is-visible .project-hero__eyebrow,
.project-hero.is-visible .project-hero__title,
.project-hero.is-visible .project-hero__summary,
.project-hero.is-visible .project-pills,
.project-hero.is-visible .project-actions,
.project-hero.is-visible .project-hero__media,
.project-section.is-visible .project-panel,
.project-section.is-visible .project-highlight,
.project-section.is-visible .project-section__title {
  opacity: 1;
}

.project-hero.is-visible .project-hero__eyebrow {
  transform: translateY(0);
  transition-delay: 0.08s;
}

.project-hero.is-visible .project-hero__title {
  transform: translate3d(0, var(--project-title-shift), 0) scale(1);
  transition-delay: 0.14s;
}

.project-hero.is-visible .project-hero__summary {
  transform: translateY(0);
  transition-delay: 0.2s;
}

.project-hero.is-visible .project-pills {
  transform: translateY(0);
  transition-delay: 0.28s;
}

.project-hero.is-visible .project-actions {
  transform: translateY(0);
  transition-delay: 0.36s;
}

.project-hero.is-visible .project-hero__media {
  transform: translate3d(0, var(--project-media-y), 0) scale(1) rotate(var(--project-media-rotate));
  transition-delay: 0.16s;
}

.project-section.is-visible .project-section__title {
  transform: translate3d(0, var(--project-title-shift), 0) scale(1);
  transition-delay: 0.08s;
}

.project-section.is-visible .project-panel:nth-child(1),
.project-section.is-visible .project-highlight:nth-child(1) {
  transform: translateY(0);
  transition-delay: 0.12s;
}

.project-section.is-visible .project-panel:nth-child(2),
.project-section.is-visible .project-highlight:nth-child(2) {
  transform: translateY(0);
  transition-delay: 0.2s;
}

.project-section.is-visible .project-highlight:nth-child(3) {
  transform: translateY(0);
  transition-delay: 0.28s;
}

.project-section.is-visible .project-highlight:nth-child(4) {
  transform: translateY(0);
  transition-delay: 0.36s;
}

.project-return.is-visible {
  transform: translate3d(0, var(--project-section-shift), 0);
}

@media (max-width: 719px) {
  .featured__lede,
  .project-hero__summary,
  .project-copy p {
    font-size: 0.96rem;
  }

  .project-card__body,
  .project-panel,
  .project-highlight {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 979px) {
  .project-main {
    padding-top: calc(var(--header-bar-h) + 0.75rem);
  }

  .project-hero {
    gap: 1.4rem;
    padding-bottom: clamp(1.5rem, 5vw, 2.4rem);
  }

  .project-hero__content {
    gap: 0.9rem;
  }

  .project-hero__media {
    order: -1;
  }

  .project-hero__media img {
    min-height: 260px;
    max-height: 62vh;
  }

  .project-actions {
    width: 100%;
  }

  .project-btn {
    min-width: 0;
    flex: 1 1 220px;
  }

  .project-section {
    padding-bottom: clamp(1.75rem, 5vw, 3rem);
  }
}

@media (max-width: 640px) {
  .project-hero {
    width: min(1320px, calc(100% - 1.1rem));
  }

  .project-section,
  .project-return {
    width: min(1320px, calc(100% - 1.1rem));
  }

  .project-hero__title {
    font-size: clamp(2.9rem, 16vw, 4.6rem);
  }

  .project-section__title {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .project-highlight__title {
    margin-top: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-hero,
  .project-section,
  .project-return,
  .project-hero__eyebrow,
  .project-hero__title,
  .project-hero__summary,
  .project-pills,
  .project-actions,
  .project-hero__media,
  .project-panel,
  .project-highlight,
  .project-section__title,
  .project-pill,
  .project-btn {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none !important;
  }
}

/* —— Services —— */
.services {
  background: #000000;
  padding: clamp(2.5rem, 6vw, 4.25rem) var(--page-pad) clamp(3rem, 7vw, 5rem);
  overflow: clip;
}

.services__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.services__title {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  font-size: clamp(3.1rem, 8vw, 5.8rem);
  text-align: left;
}

.service-rows {
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1rem clamp(1rem, 3vw, 2rem);
  align-items: center;
  min-height: clamp(5.75rem, 10vw, 7.6rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(1.1rem, 2vw, 1.35rem) 0;
  transition: border-color 0.28s ease, opacity 0.28s ease;
}

@media (min-width: 900px) {
  .service-row {
    grid-template-columns: 64px minmax(0, 1fr);
    padding-right: min(31vw, 25rem);
  }
}

.service-row__num {
  font-family: var(--font-ui);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.service-row__label {
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 900px) {
  .service-row__label {
    justify-content: center;
  }
}

.service-row__label h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  letter-spacing: -0.02em;
  line-height: 0.92;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    letter-spacing 0.3s ease;
}

.service-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: min(31vw, 25rem);
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: opacity 0.28s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row.is-active {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.service-row.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-row.is-active .service-row__label h3 {
  transform: translateX(-10px) scale(1.02);
  letter-spacing: -0.015em;
}

.services-preview {
  display: none;
}

@media (hover: hover) and (pointer: fine) and (min-width: 900px) {
  .services-preview {
    --preview-top: 0px;
    --preview-drift-x: 0px;
    --preview-drift-y: 0px;
    position: absolute;
    top: 0;
    right: 0;
    width: min(29vw, 340px);
    aspect-ratio: 4 / 5;
    display: block;
    pointer-events: none;
    opacity: 0;
    filter: blur(14px);
    z-index: 2;
    will-change: transform, opacity, filter;
    transform: translate3d(var(--preview-drift-x), calc(var(--preview-top) + var(--preview-drift-y)), 0) scale(0.88)
      rotate(-6deg);
    transition:
      opacity 0.22s ease,
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .services-preview.is-active {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(var(--preview-drift-x), calc(var(--preview-top) + var(--preview-drift-y)), 0) scale(1)
      rotate(-2deg);
  }

  .services-preview__media {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  }

  .services-preview__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform 0.55s ease, opacity 0.2s ease;
  }

  .services-preview.is-active .services-preview__image {
    transform: scale(1);
  }
}

@media (max-width: 899px) {
  .services__title {
    text-align: left;
  }

  .service-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .service-row__label h3 {
    text-align: left;
  }

  .service-row::after {
    right: 0;
  }
}

@media (max-width: 640px) {
  .services {
    padding-bottom: 3.5rem;
  }

  .service-row {
    min-height: 4.9rem;
  }

  .service-row__label h3 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-row,
  .service-row__label h3,
  .service-row::after,
  .services-preview,
  .services-preview__image {
    transition: none !important;
  }
}

/* —— Reviews (dual vertical marquees) —— */
@keyframes reviews-marquee-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes reviews-marquee-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

.reviews {
  background: #000000;
  color: #ffffff;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.reviews__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .reviews__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.reviews__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.25rem, 10vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: left;
  margin: 0;
  color: #ffffff;
}

.reviews__title-line {
  display: block;
}

.reviews__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.65rem, 2vw, 1.15rem);
  min-width: 0;
}

.reviews__col {
  min-width: 0;
  min-height: 0;
}

.reviews__viewport {
  position: relative;
  height: min(520px, 58vh);
  min-height: 280px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
}

.reviews__track {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  width: 100%;
  will-change: transform;
}

.reviews__track--up {
  animation: reviews-marquee-up 42s linear infinite;
}

.reviews__track--down {
  animation: reviews-marquee-down 48s linear infinite;
}

.review-card {
  position: relative;
  flex-shrink: 0;
  background: var(--card);
  border-radius: 14px;
  padding: 1.35rem 1.2rem 1.35rem 1.15rem;
  padding-right: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.review-card__mark {
  position: absolute;
  top: 1rem;
  right: 0.85rem;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.55);
}

.review-card__head {
  padding-right: 0.25rem;
}

.review-card__name {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.review-card__role {
  margin: 0.35rem 0 0;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.review-card__quote {
  margin: 0;
  font-size: clamp(0.8rem, 1.85vw, 0.95rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

@media (prefers-reduced-motion: reduce) {
  .reviews__track--up,
  .reviews__track--down {
    animation: none !important;
  }

  .reviews__viewport:hover .reviews__track {
    animation-play-state: running;
  }
}

/* —— Footer (contact hero — matches reference layout) —— */
.footer {
  position: relative;
  background: #000000;
  color: #ffffff;
  padding: clamp(1.5rem, 4vw, 2.25rem) var(--page-pad) clamp(2rem, 5vw, 3rem);
  overflow-x: hidden;
  overflow-y: visible;
}

.footer__shell {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
}

.footer__contact-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 15vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: left;
  margin: 0 0 clamp(1.25rem, 4vw, 2rem);
  color: #fff;
}

.footer__showcase {
  position: relative;
  max-width: 1400px;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  height: 450px;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__arch {
  position: absolute;
  width: min(42vw, 400px);
  height: min(62vh, 580px);
  max-height: 620px;
  border-radius: 999px;
  background: radial-gradient(ellipse 95% 85% at 50% 28%, #ff8a4c 0%, #ff4a2a 38%, #c41812 72%, #5c0707 100%);
  box-shadow:
    0 0 0 1px rgba(255, 120, 80, 0.25),
    0 0 100px rgba(255, 50, 30, 0.35);
  z-index: 0;
}

.footer__marquee-layer {
  position: absolute;
  left: 50%;
  bottom: clamp(0.75rem, 4vw, 2.25rem);
  top: auto;
  width: 100vw;
  margin-left: -50vw;
  z-index: 3;
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 0.4em;
  padding-bottom: 0.6em;
  box-sizing: content-box;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
}

.footer__marquee-layer a {
  pointer-events: auto;
}

.footer__marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: footer-email-marquee 28s linear infinite;
}

.footer__marquee-group {
  display: flex;
  gap: clamp(2rem, 7vw, 4.5rem);
  padding-right: clamp(2rem, 7vw, 4.5rem);
  flex-shrink: 0;
  align-items: center;
}

.footer__marquee-track a {
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 6.5vw, 4.25rem);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
  color: #ffffff;
  display: inline-block;
  padding: 0.12em 0 0.2em;
  text-shadow:
    0 0 28px rgba(0, 0, 0, 0.95),
    0 2px 12px rgba(0, 0, 0, 0.85);
}

.footer__marquee-track a:hover {
  opacity: 0.92;
}

@keyframes footer-email-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.footer__figure {
  position: relative;
  z-index: 1;
  width: min(42vw, 400px);
  height: min(62vh, 580px);
  max-height: 620px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
}

.footer__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.12) saturate(0.95);
}

.footer__bar {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.footer__bar-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.footer__follow {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #fff;
}

.footer__icons {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer__icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.footer__icon:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer__icon svg {
  display: block;
}

.footer__legal {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
}

/* Footer portrait + arch: same pill proportions as desktop (~400×567), not a tall narrow strip on small screens */
@media (max-width: 767.98px) {
  .footer__showcase {
    height: auto;
    min-height: calc(min(82vw, 400px) * 567 / 400 + clamp(4.5rem, 14vw, 6rem));
  }

  .footer__arch,
  .footer__figure {
    width: min(82vw, 400px);
    aspect-ratio: 400 / 567;
    height: auto;
    max-height: none;
  }
}

@media (max-width: 640px) {
  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__legal {
    align-self: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer__marquee-track {
    animation-duration: 90s;
  }
}

/* —— About page —— */
@keyframes about-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-page {
  background: #000000;
}

.about-page .site-header {
  padding: 0.7rem var(--page-pad) 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.about-page .logo {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.about-page .menu-toggle {
  width: 22px;
  height: 22px;
}

.about-page .menu-icon {
  width: 9px;
  height: 9px;
}

.about-main {
  padding-top: clamp(4.75rem, 10vw, 6.4rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.about-hero,
.about-process-shell,
.about-section,
.about-footer {
  width: min(1240px, calc(100% - clamp(1.5rem, 3vw, 2.25rem)));
  margin: 0 auto;
}

.about-reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.about-hero {
  width: min(560px, calc(100% - clamp(1.5rem, 3vw, 2.25rem)));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: clamp(3rem, 7vw, 4rem);
}

.about-hero__eyebrow,
.about-footer__eyebrow {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.about-hero__eyebrow {
  display: none;
}

.about-hero__title,
.about-section-heading,
.about-footer__title {
  --scroll-shift-x: 0px;
  --scroll-shift-y: 0px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero__title {
  --reveal-x: 0px;
  --reveal-y: 54px;
  margin-top: 0;
  font-size: clamp(4.8rem, 12vw, 7.8rem);
  line-height: 0.86;
  transform: translate3d(calc(var(--scroll-shift-x) + var(--reveal-x)), calc(var(--scroll-shift-y) + var(--reveal-y)), 0)
    scale(0.94);
}

.about-hero__figure {
  --scroll-shift-x: 0px;
  --scroll-shift-y: 0px;
  --reveal-y: 64px;
  position: relative;
  margin: clamp(1rem, 2.5vw, 1.5rem) 0 0;
  width: min(100%, 280px);
  aspect-ratio: 400 / 567;
  border-radius: 999px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, #ff6646 0%, #ff4c34 35%, #d11f1a 72%, #2d0806 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
  animation: none;
  opacity: 0;
  transform: translate3d(var(--scroll-shift-x), calc(var(--scroll-shift-y) + var(--reveal-y)), 0) scale(0.9)
    rotate(-5deg);
  transform-origin: center top;
  will-change: transform, opacity;
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.about-hero__figure img {
  display: block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  object-fit: cover;
  object-position: center 18%;
  mix-blend-mode: normal;
}

.about-hero__intro {
  width: min(100%, 500px);
  max-width: none;
  margin: clamp(0.75rem, 2vw, 1rem) auto 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.4rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
}

.about-hero__signature {
  margin: 1rem 0 0;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  color: #ffffff;
  font-family: "Brush Script MT", "Segoe Script", cursive;
}

.about-process-shell {
  padding-bottom: clamp(3.5rem, 8vw, 5rem);
}

.about-process-shell__inner {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 20px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-section-heading {
  --reveal-x: 0px;
  --reveal-y: 44px;
  font-size: clamp(3rem, 8vw, 5.4rem);
  text-align: center;
  transform: translate3d(calc(var(--scroll-shift-x) + var(--reveal-x)), calc(var(--scroll-shift-y) + var(--reveal-y)), 0)
    scale(0.96);
}

.about-section-heading--left {
  --reveal-x: -26px;
  text-align: left;
}

#experience-title {
  font-size: clamp(4rem, 8vw, 5.8rem);
  line-height: 0.9;
}

#faq-title {
  font-size: clamp(4rem, 8vw, 5.8rem);
  line-height: 0.9;
}

.about-process {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.5rem, 4vw, 2rem);
}

.about-process-card {
  min-height: 180px;
  padding: clamp(1.2rem, 3vw, 1.5rem);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.about-process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(253, 85, 57, 0.4);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.about-process-card__num {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.9rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.24);
}

.about-process-card__title {
  margin: 3.8rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
}

.about-process-card__text {
  max-width: 20rem;
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.about-section {
  padding-top: clamp(3.5rem, 8vw, 5rem);
}

.about-experience {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  padding: clamp(1.7rem, 3vw, 2.2rem) clamp(1rem, 2vw, 1.2rem) clamp(0.4rem, 1vw, 0.65rem);
  background: rgba(7, 2, 2, 0.72);
  border: 1px solid rgba(253, 85, 57, 0.08);
  box-shadow: none;
}

.about-experience__head,
.about-experience__row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) 88px;
  column-gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
}

.about-experience__head {
  padding: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-experience__row {
  padding: 0.8rem 0;
}

.about-experience__row h3,
.about-experience__row p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.about-experience__row h3 {
  color: rgba(255, 255, 255, 0.96);
}

.about-experience__head span:last-child,
.about-experience__row p:last-child {
  text-align: right;
}

.about-faq {
  width: min(820px, 100%);
  margin: clamp(1.9rem, 4vw, 2.6rem) auto 0;
  display: grid;
  gap: 1rem;
}

.about-faq__item {
  background: #141414;
  border: 1px solid rgba(253, 85, 57, 0.16);
  border-radius: 8px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.about-faq__item.is-open {
  border-color: rgba(253, 85, 57, 0.55);
  box-shadow: none;
}

.about-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.45rem 1.5rem;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.about-faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--accent);
}

.about-faq__icon::before,
.about-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.about-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.about-faq__item.is-open .about-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.about-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.about-faq__item.is-open .about-faq__panel {
  grid-template-rows: 1fr;
}

.about-faq__content {
  min-height: 0;
  overflow: hidden;
}

.about-faq__content p,
.about-faq__content a {
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

.about-faq__content p {
  margin: 0;
  padding: 0 1.5rem 1.45rem;
}

.about-faq__content a {
  color: #ffffff;
}

.about-footer {
  padding-top: clamp(4rem, 8vw, 5.5rem);
  text-align: center;
}

.about-footer__title {
  max-width: 11ch;
  margin: 0.35rem auto 0;
  font-size: clamp(3.2rem, 10vw, 6.4rem);
  --reveal-y: 58px;
  transform: translate3d(var(--scroll-shift-x), calc(var(--scroll-shift-y) + var(--reveal-y)), 0) scale(0.94);
}

.about-reveal.is-visible .about-hero__title,
.about-reveal.is-visible .about-section-heading,
.about-reveal.is-visible .about-footer__title,
.about-reveal.is-visible .about-hero__figure {
  opacity: 1;
}

.about-reveal.is-visible .about-hero__title {
  transform: translate3d(var(--scroll-shift-x), var(--scroll-shift-y), 0) scale(1);
  transition-delay: 0.08s;
}

.about-reveal.is-visible .about-hero__figure {
  transform: translate3d(var(--scroll-shift-x), var(--scroll-shift-y), 0) scale(1) rotate(0deg);
  transition-delay: 0.18s;
}

.about-reveal.is-visible .about-section-heading {
  transform: translate3d(var(--scroll-shift-x), var(--scroll-shift-y), 0) scale(1);
  transition-delay: 0.12s;
}

.about-reveal.is-visible .about-footer__title {
  transform: translate3d(var(--scroll-shift-x), var(--scroll-shift-y), 0) scale(1);
  transition-delay: 0.16s;
}

.about-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.about-footer__meta a {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.about-footer__meta a:hover {
  transform: translateY(-2px);
  color: var(--accent);
  border-color: rgba(253, 85, 57, 0.4);
}

@media (min-width: 820px) {
  .about-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 799.98px) {
  .about-experience {
    padding: 1rem 1rem 0.75rem;
  }

  .about-experience__head {
    display: none;
  }

  .about-experience__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem 0 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .about-experience__row h3 {
    color: #ffffff;
  }

  .about-experience__row p:last-child {
    color: var(--accent);
  }
}

@media (max-width: 640px) {
  .about-main {
    padding-top: 4.35rem;
  }

  .about-hero__figure {
    width: min(100%, 280px);
  }

  .about-hero__title {
    font-size: clamp(4rem, 16vw, 5.4rem);
  }

  .about-section-heading--left {
    --reveal-x: 0px;
  }

  .about-hero__intro {
    width: min(100%, 500px);
    font-size: clamp(1.9rem, 7vw, 2.25rem);
  }

  .about-faq__trigger {
    padding: 1.15rem 1.1rem;
    font-size: clamp(1.15rem, 6vw, 1.5rem);
  }

  .about-faq__content p {
    padding: 0 1.1rem 1.2rem;
  }

  .about-footer__meta {
    flex-direction: column;
  }

  .about-footer__meta a {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .about-hero__title,
  .about-section-heading,
  .about-footer__title,
  .about-hero__figure {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-hero__figure {
    animation: none;
  }

  .about-process-card,
  .about-footer__meta a {
    transition: none;
  }

  .about-faq__panel,
  .about-faq__icon::before,
  .about-faq__icon::after {
    transition: none;
  }
}
