/* ─── Design Tokens ─────────────────────────────────── */
:root {
  --primary:        #C41E3A;
  --primary-dark:   #8B0000;
  --secondary:      #1A1A2E;
  --accent:         #D4AF37;
  --text:           #E8E8E8;
  --text-muted:     #888;
  --bg-dark:        #0D0D14;
  --bg-card:        #14141F;
  --bg-card-hover:  #1a1a28;
  --border:         #2A2A3A;
  --nav-height:     72px;
  --max-width:      1200px;
  --transition:     0.3s ease-out;
}

/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { width: 100%; display: block; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ─── Layout ────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* ─── Section Header ────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header__tag {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 500;
}
.section-header__title {
  font-family: 'Noto Serif SC', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-header__sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ─── Navigation ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,13,20,0.95);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav__inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}
.nav__logo-mark::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 6px;
  border: 1px solid var(--primary);
  opacity: 0;
  animation: pulse-ring 2.5s ease-out infinite;
}
.nav__logo span {
  font-family: 'Noto Serif SC', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(232,232,232,0.75);
  padding: 6px 12px;
  border-radius: 2px;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav__cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 7px 18px !important;
  border-radius: 2px !important;
  transition: background var(--transition) !important;
}
.nav__cta:hover {
  background: var(--primary-dark) !important;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(13,13,20,0.98);
  backdrop-filter: blur(16px);
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 99;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  padding: 14px 32px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: rgba(232,232,232,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition), background var(--transition);
}
.nav__mobile-menu a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -5%;
  background:
    linear-gradient(180deg,
      rgba(13,13,20,0.3) 0%,
      rgba(13,13,20,0.7) 50%,
      rgba(13,13,20,0.95) 100%
    ),
    url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?w=1920&q=80') center/cover no-repeat;
  filter: brightness(0.6) saturate(0.7);
  will-change: transform;
  transition: transform 0.1s ease-out;
}
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite;
}
.hero__mouse-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,30,58,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, opacity 0.3s ease;
  opacity: 0;
}
.hero__mouse-glow.visible { opacity: 1; }
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
}
.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.3s forwards;
}
.hero__title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: charReveal 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero__subtitle {
  font-size: 0.95rem;
  color: rgba(232,232,232,0.7);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.5s forwards;
}
.hero__divider {
  width: 48px;
  height: 1px;
  background: var(--primary);
  margin: 0 auto 24px;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 1.8s forwards;
}
.hero__tagline {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.82rem;
  color: rgba(232,232,232,0.45);
  letter-spacing: 0.25em;
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease-out 2.5s forwards;
}
.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(232,232,232,0.35);
  text-transform: uppercase;
}
.hero__scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-arrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  animation: bounce 1.5s ease-in-out infinite;
}

/* ─── About ──────────────────────────────────────────── */
.about {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,30,58,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: breathe 5s ease-in-out infinite;
}
.about::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: breathe 7s ease-in-out infinite reverse;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}
.stat-card {
  background: var(--secondary);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(196,30,58,0.07), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
}
.stat-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.stat-card:hover::before {
  left: 125%;
}
.stat-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}
.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__image-wrap {
  position: relative;
  overflow: hidden;
  max-height: 440px;
}
.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.8);
  transition: transform 0.8s ease, filter 0.6s ease;
}
.about__image-wrap:hover img {
  transform: scale(1.03);
  filter: brightness(0.95) saturate(1);
}
.about__image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(13,13,20,0.85);
  border: 1px solid var(--border);
  padding: 6px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  backdrop-filter: blur(8px);
}
.about__text h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 20px;
}
.about__text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 16px;
}
.about__quote {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 2px solid var(--primary);
  background: rgba(196,30,58,0.04);
}
.about__quote p {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(232,232,232,0.8);
  margin-bottom: 0;
}

/* ─── Works ─────────────────────────────────────────── */
.works {
  background: var(--bg-dark);
}
.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
}
.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.work-card:hover .work-card__img {
  transform: scale(1.06);
  filter: brightness(0.85) saturate(1);
}
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,13,20,0.9) 0%, rgba(13,13,20,0) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.work-card:hover .work-card__overlay {
  opacity: 1;
}
.work-card__tag {
  font-size: 0.68rem;
  color: var(--primary);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.work-card__title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.work-card__desc {
  font-size: 0.78rem;
  color: rgba(232,232,232,0.7);
  line-height: 1.7;
}

/* ─── Careers ───────────────────────────────────────── */
.careers {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}
.careers::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,30,58,0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: breathe 8s ease-in-out infinite;
}
.careers__intro {
  text-align: center;
  max-width: 680px;
  margin: -16px auto 56px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 2;
}
.careers__intro strong {
  color: var(--primary);
  font-weight: 500;
}

/* Group tabs */
.careers__groups {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.careers__group-btn {
  padding: 8px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}
.careers__group-btn:hover,
.careers__group-btn.active {
  color: #fff;
  background: rgba(196,30,58,0.15);
  border-color: rgba(196,30,58,0.5);
}

.careers__group {
  margin-bottom: 16px;
}
.careers__group:last-child { margin-bottom: 0; }
.careers__group-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.careers__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.job-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--primary);
  transition: height 0.4s ease;
}
.job-card:hover {
  border-color: rgba(196,30,58,0.4);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.job-card:hover::before {
  height: 100%;
}
.job-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.job-card__title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
}
.job-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,30,58,0.12);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(196,30,58,0.25);
  letter-spacing: 0.05em;
}
.job-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.job-card__tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.job-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.job-card__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition), transform 0.4s ease;
  margin-top: 4px;
}
.job-card__toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
  transition: stroke var(--transition), transform 0.4s ease;
}
.job-card:hover .job-card__toggle {
  border-color: var(--primary);
  background: rgba(196,30,58,0.1);
}
.job-card:hover .job-card__toggle svg {
  stroke: var(--primary);
  transform: rotate(180deg);
}
.job-card__detail {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 4px;
  display: none;
}
.job-card__detail.open {
  display: block;
  animation: fadeUp 0.3s ease-out;
}
.job-card__detail h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin: 16px 0 10px;
}
.job-card__detail h4:first-child { margin-top: 0; }
.job-card__detail ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.job-card__detail ul li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}
.job-card__detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
}

/* ─── Environment / Gallery ─────────────────────────── */
.env {
  background: var(--bg-dark);
}
.env__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.env__item {
  overflow: hidden;
  cursor: pointer;
}
.env__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.env__item:nth-child(5) { grid-column: span 2; }
.env__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.env__item:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1.05);
}

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 16px;
}
.footer__brand-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.9;
}
.footer__col-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--text); }
.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: border-color var(--transition), background var(--transition);
}
.footer__social a svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  transition: stroke var(--transition);
}
.footer__social a:hover {
  border-color: var(--primary);
  background: rgba(196,30,58,0.1);
}
.footer__social a:hover svg { stroke: var(--primary); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer__icp {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ─── Animations ─────────────────────────────────────── */
@keyframes charReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50%       { transform: rotate(45deg) translateY(8px); opacity: 1; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(1deg); }
  66%       { transform: translateY(6px) rotate(-1deg); }
}
@keyframes breathe {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.08); }
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .about__body { gap: 48px; }
  .works__grid { grid-template-columns: repeat(2, 1fr); }
  .env__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .env__item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .env__item:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile-menu { display: none; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .about__body { grid-template-columns: 1fr; gap: 40px; }
  .about__image-wrap { max-height: 300px; }
  .works__grid { grid-template-columns: 1fr; }
  .job-card { grid-template-columns: 1fr; }
  .job-card__toggle { display: none; }
  .env__grid { grid-template-columns: 1fr 1fr; }
  .env__item:nth-child(1),
  .env__item:nth-child(5) { grid-column: span 1; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__title { letter-spacing: 0.1em; }
  .section-header__title { font-size: 1.8rem; }
}
