:root {
  --color-bg:          #141414;
  --color-elevation-1: #1c1d20;
  --color-elevation-2: #24262b;
  --color-elevation-3: #32353d;
  --color-text:        #ffffff;
  --color-text-muted:  #b8b8b8;
  --color-text-dim:    #737373;
  --color-border:      #33353b;
  --color-accent:      #c1f229;
  --color-accent-rgb:  193, 242, 41;
  --color-accent-dark: #0a0a0a;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --container-max: 1280px;
  --header-height: 4.5rem;

  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --duration: .75s;
}

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

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden !important;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.global-particle-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.slides-container {
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  overflow-x: hidden !important;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}

.slide-section {
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow-x: hidden !important;
  overflow-y: visible;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-top: var(--header-height);
  /* Isolate layout computation to each slide */
  contain: layout style;
}

.slide-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.slide-bg-ambient {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .09;
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  mask-image: radial-gradient(circle, #000 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle, #000 40%, transparent 90%);
  will-change: transform;
}

.slide-bg-ambient--center {
  top: 15%; right: 15%;
  width: 48vw; height: 48vw; max-width: 520px;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.6) 0%, rgba(20,20,20,0) 70%);
}

.section-header {
  margin-bottom: clamp(1rem, 2.5vh, 1.75rem);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: .2rem;
}
.section-subtitle {
  font-size: clamp(.9375rem, 1.3vw, 1.125rem);
  color: var(--color-text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: rgba(20,20,20,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-weight: 800;
  font-size: 1.625rem;
  letter-spacing: -.04em;
  color: var(--color-text);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1.5px solid var(--color-accent);
  border-radius: .4rem;
  color: var(--color-accent);
  font-size: 1.125rem;
  line-height: 1;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -.02em;
  margin-left: .1rem;
}

.header-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color .2s var(--ease);
  position: relative;
}
.nav-link:hover { color: var(--color-text); }
.nav-link.active { color: var(--color-text); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -.2rem; left: 0;
  width: 0; height: 1px;
  background: var(--color-accent);
  transition: width .3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-link--accent {
  color: var(--color-accent);
  border: 1px solid rgba(var(--color-accent-rgb), .4);
  border-radius: .5rem;
  padding: .45rem 1rem;
  opacity: .95;
}
.nav-link--accent::after { display: none; }
.nav-link--accent:hover {
  opacity: 1;
  background: rgba(var(--color-accent-rgb), .08);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.mobile-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--color-text);
  transition: transform .3s var(--ease), opacity .2s;
}
.mobile-toggle.is-active span:first-child { transform: translateY(3.25px) rotate(45deg); }
.mobile-toggle.is-active span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--color-text); }

/* SLIDE 1 (Hero) */
.hero-frame-graphic {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 42vw;
  max-width: 480px;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero-frame-graphic svg { width: 100%; height: auto; }
.hero-frame-glow {
  position: absolute;
  top: 20%; left: 20%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.28) 0%, rgba(193, 242, 41, 0.05) 50%, rgba(20, 20, 20, 0) 75%);
  border-radius: 50%;
  filter: blur(35px);
  pointer-events: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: clamp(.75rem, 1.5vh, 1.25rem);
}
.hero-kicker::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-accent);
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: clamp(.75rem, 1.5vh, 1.25rem);
}
.hero-title--accent { color: var(--color-accent); }

.hero-sub {
  font-size: clamp(.9375rem, 1.4vw, 1.125rem);
  color: var(--color-text-muted);
  max-width: 36rem;
  line-height: 1.55;
  margin-bottom: clamp(1.25rem, 2.5vh, 2rem);
}

.hero-meta {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 2rem);
  padding-top: clamp(.75rem, 1.5vh, 1.25rem);
  border-top: 1px solid var(--color-border);
  max-width: 44rem;
}
.hero-meta-divider {
  width: 1px;
  height: 3rem;
  background: var(--color-border);
  flex-shrink: 0;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.meta-value {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-accent);
  letter-spacing: -.02em;
}
.meta-label {
  font-size: .75rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.abstract-geometric-art {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40vw;
  max-width: 440px;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.abstract-geometric-art svg { width: 100%; height: auto; }

/* SLIDE 2: Направления сотрудничества */
.directions-editorial-layout {
  position: relative;
  z-index: 1;
  max-width: 56rem;
}

.directions-header-block {
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}

.directions-kicker {
  display: inline-block;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: .4rem;
}

.directions-main-title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}

.directions-intro {
  font-size: clamp(1.125rem, 1.6vw, 1.35rem);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.directions-paragraphs-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.8vh, 2.25rem);
}

.directions-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-left: 1.25rem;
  border-left: 2.5px solid rgba(var(--color-accent-rgb), 0.45);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  will-change: transform;
}
.directions-item:hover {
  border-color: var(--color-accent);
  transform: translateX(6px);
}

.directions-item-num {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: .06em;
  padding-top: .15rem;
  flex-shrink: 0;
}

.directions-item-content {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.directions-item-heading {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.directions-item-text {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* SLIDE 3: О нашей команде */
.about-hero-block {
  max-width: 64rem;
  margin: 0 auto;
}

.about-kicker {
  display: inline-block;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: clamp(.6rem, 1.5vh, 1.25rem);
}

.about-hero-title {
  font-size: clamp(1.875rem, 3.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.03em;
  margin-bottom: clamp(1.5rem, 3vh, 2rem);
  color: var(--color-text);
}

.about-quote-box {
  padding-left: 1.75rem;
  border-left: 3px solid var(--color-accent);
  margin-bottom: clamp(1.75rem, 3.5vh, 2.5rem);
}

.about-body {
  font-size: clamp(1.125rem, 1.6vw, 1.35rem);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.about-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  padding-top: clamp(1.5rem, 3vh, 2.25rem);
  border-top: 1px solid var(--color-border);
}

.about-feature-item {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.feature-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .05em;
}

.feature-title {
  font-size: clamp(1.125rem, 1.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -.015em;
}

.feature-desc {
  font-size: clamp(.9375rem, 1.2vw, 1.0625rem);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* SLIDE 4: Команда */
.team-storytelling-layout {
  position: relative;
  z-index: 1;
  max-width: 56rem;
}

.team-storytelling-paragraphs {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3.5vh, 2.75rem);
}

.team-storytelling-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-left: 1.25rem;
  border-left: 2.5px solid rgba(var(--color-accent-rgb), 0.45);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  will-change: transform;
}
.team-storytelling-item:hover {
  border-color: var(--color-accent);
  transform: translateX(6px);
}

.team-portrait-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-accent);
  flex-shrink: 0;
  background: var(--color-elevation-3);
  box-shadow: 0 0 20px rgba(var(--color-accent-rgb), 0.3);
}
.team-portrait-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-storytelling-body {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.team-storytelling-name {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.team-storytelling-role {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 600;
  color: var(--color-accent);
}

.team-storytelling-desc {
  font-size: clamp(1.0625rem, 1.35vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* SLIDES 5, 6, 7: Партнёрские проекты */
.projects-editorial-layout {
  position: relative;
  z-index: 1;
  max-width: 64rem;
  width: 100%;
}

.projects-editorial-layout--left {
  margin-right: auto;
  margin-left: 0;
}

.projects-editorial-layout--right {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

.projects-editorial-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.4vh, 1.625rem);
}

.project-editorial-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.75rem;
  align-items: center;
  padding: clamp(1.125rem, 2vh, 1.5rem) clamp(1.35rem, 2.5vw, 2rem);
  background: rgba(28, 29, 32, 0.85);
  /* backdrop-filter only on desktop — removed on mobile via media query */
  backdrop-filter: blur(14px);
  border-left: 4px solid rgba(var(--color-accent-rgb), 0.55);
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-radius: 1.25rem;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.project-editorial-row:hover {
  border-left-color: var(--color-accent);
  background: rgba(36, 38, 43, 0.95);
  transform: translateX(6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.project-editorial-row--mirrored {
  grid-template-columns: 1fr 180px;
  border-left: 1px solid var(--color-border);
  border-right: 4px solid rgba(var(--color-accent-rgb), 0.55);
}
.project-editorial-row--mirrored .project-editorial-photo {
  grid-column: 2;
  grid-row: 1;
}
.project-editorial-row--mirrored .project-editorial-content {
  grid-column: 1;
  grid-row: 1;
  align-items: flex-end;
}
.project-editorial-row--mirrored:hover {
  border-right-color: var(--color-accent);
  transform: translateX(-6px);
}

.project-editorial-photo {
  width: 180px;
  height: 120px;
  border-radius: .875rem;
  overflow: hidden;
  background: var(--color-elevation-3);
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}
.project-editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s var(--ease);
}
.project-editorial-row:hover .project-editorial-photo img {
  transform: scale(1.05);
}

.project-editorial-content {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.project-editorial-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.project-partner-tag {
  font-size: .9375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-accent);
}

.project-award-badge {
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: .4rem;
  padding: .25rem .7rem;
  background: rgba(255, 255, 255, 0.05);
}

.project-context-label {
  font-size: .84375rem;
  font-weight: 500;
  color: var(--color-text-dim);
}

.project-editorial-title {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.018em;
}

.project-editorial-desc {
  font-size: clamp(.9375rem, 1.25vw, 1.0625rem);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* SLIDE 8: CTA & FOOTER */
.slide-section--cta {
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(var(--color-accent-rgb), 0.12), transparent);
}

.cta-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-lines span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--color-accent-rgb), .18), transparent);
}
.cta-lines span:nth-child(1) { top: 20%; }
.cta-lines span:nth-child(2) { top: 50%; opacity: .6; }
.cta-lines span:nth-child(3) { top: 80%; }

.cta-slide-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 1.5rem;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40rem;
  margin: auto auto;
}

.cta-dot {
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  background: var(--color-accent);
  margin: 0 auto clamp(.75rem, 1.5vh, 1.25rem);
  box-shadow: 0 0 24px rgba(var(--color-accent-rgb), .6);
}

.cta-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: .75rem;
}
.cta-title--accent { color: var(--color-accent); }

.cta-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-muted);
  margin-bottom: clamp(1.25rem, 2.5vh, 2rem);
  line-height: 1.55;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0625rem;
  font-weight: 700;
  height: 3.5rem;
  padding: 0 2.25rem;
  border-radius: .75rem;
  background: var(--color-accent);
  color: var(--color-accent-dark);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.cta-button:hover {
  transform: scale(.98);
  box-shadow: 0 0 45px rgba(var(--color-accent-rgb), .45);
}
.cta-button:active { transform: scale(.95); }

.cta-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.cta-social-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color .2s var(--ease);
}
.cta-social-link:hover { color: var(--color-accent); }

.slide-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}
.footer-copy {
  font-size: .75rem;
  color: var(--color-text-dim);
}
.footer-up {
  font-size: .75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color .2s;
}
.footer-up:hover { color: var(--color-accent); }

/* MOBILE RESPONSIVE ADAPTATION */
@media (max-width: 1024px) {
  .hero-frame-graphic { display: none; }
  .abstract-geometric-art { display: none; }
  .about-features-row { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 4rem;
  }

  .container {
    padding: 0 1.125rem;
  }

  .header-nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .slide-section {
    min-height: 100dvh;
    height: auto;
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 2rem;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    /* Relax containment on mobile since height is auto */
    contain: style;
  }

  .slide-content {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  /* Remove GPU-heavy backdrop-filter on mobile for better perf */
  .project-editorial-row {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(28, 29, 32, 0.98);
  }

  /* Disable hover transforms on touch to avoid stuck states */
  .directions-item,
  .team-storytelling-item,
  .project-editorial-row {
    will-change: auto;
  }

  .hero-kicker { font-size: .7rem; }
  .hero-title {
    font-size: clamp(1.75rem, 7.5vw, 2.75rem);
    line-height: 1.1;
  }
  .hero-sub {
    font-size: .9375rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: .85rem;
    padding-top: 1rem;
    max-width: 100%;
  }
  .hero-meta-divider {
    width: 100%;
    height: 1px;
  }
  .meta-value { font-size: 1.25rem; }
  .meta-label { font-size: .75rem; }

  .directions-header-block {
    margin-bottom: 1.25rem;
  }
  .directions-main-title {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }
  .directions-intro {
    font-size: 1rem;
  }
  .directions-paragraphs-list {
    gap: 1.25rem;
  }
  .directions-item {
    gap: .85rem;
    padding-left: .75rem;
  }
  .directions-item-heading {
    font-size: 1.15rem;
  }
  .directions-item-text {
    font-size: .9375rem;
    line-height: 1.6;
  }

  .about-hero-title {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    margin-bottom: 1.25rem;
  }
  .about-quote-box {
    padding-left: 1rem;
    margin-bottom: 1.5rem;
  }
  .about-body {
    font-size: 1rem;
    line-height: 1.6;
  }
  .about-features-row {
    padding-top: 1.25rem;
  }
  .feature-title { font-size: 1.125rem; }
  .feature-desc { font-size: .9375rem; }

  .team-storytelling-layout {
    max-width: 100%;
  }
  .team-storytelling-paragraphs {
    gap: 1.25rem;
  }
  .team-storytelling-item {
    flex-direction: column;
    gap: .75rem;
    padding-left: .75rem;
  }
  .team-portrait-badge {
    width: 64px;
    height: 64px;
  }
  .team-storytelling-name {
    font-size: 1.2rem;
  }
  .team-storytelling-role {
    display: block;
    margin-top: .15rem;
    font-size: .875rem;
  }
  .team-storytelling-desc {
    font-size: .95rem;
    line-height: 1.6;
  }

  .projects-editorial-layout,
  .projects-editorial-layout--left,
  .projects-editorial-layout--right {
    max-width: 100%;
    margin: 0;
    text-align: left !important;
  }

  .projects-editorial-list {
    gap: 1rem;
  }

  .project-editorial-row,
  .project-editorial-row--mirrored {
    grid-template-columns: 1fr !important;
    gap: .85rem;
    padding: 1rem;
    border-left: 3.5px solid rgba(var(--color-accent-rgb), 0.6) !important;
    border-right: 1px solid var(--color-border) !important;
    border-top: 1px solid var(--color-border) !important;
    border-bottom: 1px solid var(--color-border) !important;
    border-radius: .875rem;
    transform: none !important;
  }
  .project-editorial-row:hover,
  .project-editorial-row--mirrored:hover {
    transform: none !important;
  }

  .project-editorial-row--mirrored .project-editorial-photo {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  .project-editorial-row--mirrored .project-editorial-content {
    grid-column: 1 !important;
    grid-row: 2 !important;
    align-items: flex-start !important;
  }

  .project-editorial-photo {
    width: 100%;
    height: 155px;
    border-radius: .625rem;
  }

  .project-editorial-meta {
    flex-wrap: wrap;
    gap: .4rem;
  }
  .project-partner-tag { font-size: .8125rem; }
  .project-award-badge { font-size: .75rem; padding: .15rem .45rem; }
  .project-context-label { font-size: .75rem; }
  .project-editorial-title { font-size: 1.0625rem; line-height: 1.3; }
  .project-editorial-desc { font-size: .9rem; line-height: 1.5; }

  .cta-slide-content {
    padding-bottom: 1rem;
  }
  .cta-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  .cta-desc {
    font-size: .9375rem;
    margin-bottom: 1.5rem;
  }
  .cta-button {
    width: 100%;
    max-width: 320px;
    height: 3.25rem;
    font-size: .9375rem;
    padding: 0 1.25rem;
  }

  .slide-footer {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
    padding-top: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .project-editorial-photo {
    height: 140px;
  }
}
