:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --panel: #141414;
  --panel-2: #1a1a1a;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #dadada;
  --text-strong: #f2f2f2;
  --muted: #808080;
  --muted-2: #5f5f5f;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --sidebar: 174px;
  --max: 1380px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Raleway", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  color: var(--text);
  background:
    radial-gradient(circle at 70% 8%, rgba(255,255,255,.055), transparent 30%),
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.03), transparent 28%),
    var(--bg);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}
input[name="_honey"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 4px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  background: rgba(255, 255, 255, .018);
  font-size: 12px;
  letter-spacing: .04em;
}

.form-status[data-type="success"] {
  border-color: rgba(255, 255, 255, .32);
  color: var(--text-strong);
}

.form-status[data-type="error"] {
  border-color: rgba(255, 255, 255, .28);
  color: #d6d6d6;
}

.send-btn:disabled {
  cursor: wait;
  opacity: .6;
}

body.success-open {
  overflow: hidden;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.09), transparent 26%),
    rgba(0, 0, 0, .78);
  backdrop-filter: blur(18px);
}

.success-modal[hidden] {
  display: none;
}

.success-card {
  position: relative;
  width: min(520px, 100%);
  padding: 42px 38px 36px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    #0b0b0b;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .72);
  overflow: hidden;
  animation: successRise .65s var(--ease) both;
}

.success-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform: translateX(-100%);
  animation: successLight 1.8s var(--ease) .25s both;
}

.success-card::after {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
}

.success-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.success-close:hover {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  transform: rotate(90deg);
}

.success-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  color: var(--text-strong);
  font-size: 24px;
  box-shadow:
    0 0 0 8px rgba(255,255,255,.025),
    0 0 34px rgba(255,255,255,.09);
}

.success-card h2 {
  max-width: 390px;
  margin-bottom: 0;
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.25;
  letter-spacing: .12em;
}

.success-card p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: 0;
  color: #b8b8b8;
  font-size: 13px;
}

.success-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  border: 0;
  color: var(--text-strong);
  background: transparent;
  padding: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
}

.success-btn span {
  font-size: 24px;
  font-weight: 300;
  transition: transform .28s var(--ease);
}

.success-btn:hover span {
  transform: translateX(8px);
}

@keyframes successRise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes successLight {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@media (max-width: 700px) {
  .success-card {
    padding: 36px 26px 30px;
  }
}
::selection {
  color: #050505;
  background: #e5e5e5;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  color: #050505;
  background: #fff;
  transition: top .25s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

.site-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: var(--sidebar);
  border-right: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.side-nav {
  margin-top: 64px;
  display: grid;
  gap: 24px;
}

.nav-link {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 22px;
  width: 1px;
  height: 30px;
  background: var(--line);
}

.nav-link:last-child::before {
  display: none;
}

.nav-link span {
  align-self: start;
  font-size: 9px;
  color: var(--muted-2);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text-strong);
  transform: translateX(4px);
}

.social-column {
  margin-top: auto;
  display: grid;
  gap: 18px;
}

.social-column a {
  color: var(--text);
  font-size: 18px;
  font-weight: 650;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.social-column a:hover {
  color: #fff;
  transform: translateX(4px);
}

.copyright {
  margin: 46px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.mobile-header,
.mobile-menu {
  display: none;
}

.site-main {
  position: relative;
  min-height: 100vh;
  margin-left: var(--sidebar);
  border-left: 1px solid rgba(255,255,255,.02);
}

.section-line {
  border-bottom: 1px solid var(--line-soft);
}

.hero-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 80px min(7vw, 96px);
}

.hero-section::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,10,10,.95) 0%, rgba(10,10,10,.7) 34%, rgba(10,10,10,.25) 68%, rgba(10,10,10,.88) 100%),
    linear-gradient(0deg, rgba(10,10,10,.9) 0%, transparent 45%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(.72);
  opacity: .95;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(610px, 100%);
  margin-left: 36px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .42em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--text-strong);
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: .14em;
  text-transform: uppercase;
}


h2 {
  margin-bottom: 8px;
  color: var(--text-strong);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h3 {
  color: var(--text-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.short-line {
  width: 48px;
  height: 1px;
  margin: 16px 0 24px;
  background: var(--text);
  opacity: .65;
}

.hero-text {
  width: min(455px, 100%);
  color: #bdbdbd;
  font-size: 14px;
}

.arrow-link,
.mini-link,
.send-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  border: 0;
  color: var(--text-strong);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
}

.arrow-link span,
.send-btn span {
  font-size: 24px;
  font-weight: 300;
  transform: translateX(0);
  transition: transform .28s var(--ease);
}

.arrow-link:hover span,
.send-btn:hover span,
.work-card:hover .work-arrow {
  transform: translateX(8px);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: 36px;
  top: 52%;
  display: grid;
  gap: 13px;
}

.hero-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--muted);
  background: transparent;
}

.hero-dots span:first-child {
  background: #fff;
  border-color: #fff;
}

.content-section {
  padding: 62px min(5.4vw, 74px);
}

.section-heading,
.split-heading {
  margin-bottom: 28px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.mini-link {
  margin: 0;
  color: var(--muted);
  transition: color .25s var(--ease);
}

.mini-link:hover {
  color: var(--text-strong);
}

.about-layout {
  display: grid;
  grid-template-columns: 270px minmax(250px, 430px) 1fr;
  gap: 34px;
  align-items: stretch;
}

.portrait {
  min-height: 330px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line-soft);
  background: var(--panel);
}

.about-copy {
  align-self: center;
  color: #b8b8b8;
  font-size: 13px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.info-card {
  min-height: 160px;
  padding: 24px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,255,255,.015);
}

.info-card:nth-child(2n) {
  border-right: 0;
}

.info-card:nth-last-child(-n+2) {
  border-bottom: 0;
}

.card-icon {
  margin-bottom: 14px;
  color: var(--text-strong);
  font-size: 24px;
  line-height: 1;
}

.info-card p {
  margin-bottom: 12px;
  color: #aaa;
  font-size: 12px;
}

.info-card ul {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 12px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 26px;
}

.work-card {
  display: block;
  position: relative;
  color: var(--text);
  isolation: isolate;
}

.work-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.18 / 1;
  border: 1px solid var(--line-soft);
  background: var(--panel-2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(.78);
  opacity: .86;
  transform: scale(1);
  transition: transform .7s var(--ease), opacity .7s var(--ease), filter .7s var(--ease);
}

.work-card:hover .work-thumb img {
  transform: scale(1.055);
  opacity: 1;
  filter: grayscale(1) contrast(1.15) brightness(.95);
}

.work-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding-top: 18px;
}

.work-category {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.work-title {
  margin-top: 7px;
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.work-arrow {
  align-self: center;
  color: var(--text);
  font-size: 25px;
  font-weight: 300;
  transition: transform .28s var(--ease), color .28s var(--ease);
}

.work-card:hover .work-arrow {
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 260px minmax(300px, 600px) 1fr;
  gap: 34px;
  align-items: start;
}

.contact-intro {
  color: #b9b9b9;
  font-size: 13px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form .full,
.send-btn {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  color: var(--text-strong);
  background: rgba(255,255,255,.015);
  padding: 12px 14px;
  font-size: 12px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}

input:focus,
textarea:focus {
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.035);
}

.contact-list {
  display: grid;
  gap: 16px;
  color: #b5b5b5;
  font-size: 13px;
  font-style: normal;
}

.contact-list a,
.contact-list span {
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.contact-list a:hover {
  color: #fff;
  transform: translateX(4px);
}

.bottom-bar {
  height: 32px;
  display: grid;
  place-items: center;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 600px) 1fr;
  gap: 40px;
  align-items: end;
  min-height: 340px;
  padding: 88px min(7vw, 96px) 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 40%, rgba(255,255,255,.08), transparent 22%),
    linear-gradient(135deg, #101010, #070707 70%);
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 70%;
  height: 140%;
  background: url('../images/hero.svg') center / cover no-repeat;
  opacity: .28;
  filter: grayscale(1) blur(.4px);
}

.page-copy,
.filters {
  position: relative;
  z-index: 1;
}

.page-copy h1 {
  margin-bottom: 22px;
}

.page-copy p:not(.eyebrow) {
  width: min(560px, 100%);
  color: #b7b7b7;
  font-size: 14px;
}

.filters {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  gap: 24px;
}

.filter-btn {
  position: relative;
  border: 0;
  color: var(--muted);
  background: transparent;
  padding: 10px 0;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s var(--ease);
}

.filter-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--text-strong);
  transition: width .28s var(--ease);
}

.filter-btn:hover,
.filter-btn.is-active {
  color: var(--text-strong);
}

.filter-btn.is-active::after,
.filter-btn:hover::after {
  width: 100%;
}

.works-archive {
  padding-top: 54px;
}

.archive-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 26px;
}

.work-card.is-hidden {
  display: none;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 62px;
}

.pager button,
.pager a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.pager .pager-current {
  border-color: var(--text);
  color: var(--text-strong);
}

.project-detail {
  padding: 80px min(7vw, 96px) 70px;
}

.back-link {
  margin-bottom: 34px;
}

.project-heading h1 {
  font-size: clamp(44px, 6vw, 90px);
}

.project-hero-img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
  background: var(--panel-2);
  filter: grayscale(1) contrast(1.08) brightness(.82);
  box-shadow: var(--shadow);
}

.project-info {
  display: grid;
  grid-template-columns: minmax(300px, 650px) 1fr;
  gap: 60px;
  margin-top: 42px;
}

.project-info p {
  color: #b8b8b8;
}

.project-info dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.project-info div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.project-info dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.project-info dd {
  margin: 7px 0 0;
  color: var(--text-strong);
}

.next-project {
  margin-top: 46px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

@media (max-width: 1280px) {
  .about-layout {
    grid-template-columns: 250px 1fr;
  }

  .info-grid {
    grid-column: 1 / -1;
  }

  .works-grid,
  .archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr 1.6fr;
  }

  .contact-list {
    grid-column: 2;
  }
}

@media (max-width: 1024px) {
  :root {
    --sidebar: 0px;
  }

  .site-sidebar {
    display: none;
  }

  .site-main {
    margin-left: 0;
    padding-top: 64px;
  }

  .mobile-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 40;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: rgba(8,8,8,.86);
    backdrop-filter: blur(18px);
    padding: 0 22px;
  }

 .mobile-header .brand {
  width: 145px;
  height: 145px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-header .brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--text-strong);
    transition: transform .25s var(--ease), opacity .25s var(--ease);
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 64px 0 0;
    z-index: 39;
    display: grid;
    place-items: center;
    background: rgba(8,8,8,.97);
    backdrop-filter: blur(20px);
  }

  .mobile-menu[hidden] {
    display: none;
  }

.mobile-menu {
  position: fixed;
  inset: 64px 0 0;
  z-index: 39;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(20px);
}

.mobile-nav {
  display: grid;
  gap: 26px;
  text-align: left;
}

.mobile-nav-link {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.mobile-nav-link::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 28px;
  width: 1px;
  height: 32px;
  background: var(--line);
}

.mobile-nav-link:last-child::before {
  display: none;
}

.mobile-nav-link span {
  align-self: start;
  color: var(--muted-2);
  font-size: 10px;
  letter-spacing: .12em;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--text-strong);
  transform: translateX(6px);
}

.mobile-nav-link:hover span,
.mobile-nav-link.is-active span {
  color: var(--text);
}

  .mobile-menu .social-column {
  margin-top: 42px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.mobile-menu .social-column a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--text-strong);
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.mobile-menu .social-column a:hover {
  color: #fff;
  border-color: rgba(255,255,255,.45);
  transform: translateY(-3px);
}

  .hero-section {
    min-height: 620px;
    padding: 70px 34px;
  }

  .hero-content {
    margin-left: 0;
  }

  .content-section,
  .project-detail {
    padding-left: 34px;
    padding-right: 34px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 72px 34px 44px;
  }

  .filters {
    justify-content: start;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-list {
    grid-column: auto;
  }

  .project-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: clamp(42px, 15vw, 72px);
    letter-spacing: .10em;
  }

  .hero-section {
    min-height: 600px;
    padding: 50px 22px;
  }

  .hero-section::after {
    background:
      linear-gradient(90deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.66) 100%),
      linear-gradient(0deg, rgba(10,10,10,.94) 0%, transparent 50%);
  }

  .hero-dots {
    right: 18px;
  }

  .content-section,
  .project-detail {
    padding: 44px 22px;
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
  }

  .about-layout {
    grid-template-columns: 150px 1fr;
    
  }

  .portrait {
    min-height: auto;
    height: 390px;
  }

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

  .info-card,
  .info-card:nth-child(2n),
  .info-card:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

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

  .works-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .work-thumb {
    aspect-ratio: 1.22 / 1;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 58px 22px 34px;
  }

  .filters {
    gap: 12px 20px;
  }

  .filter-btn {
    font-size: 11px;
  }

  .bottom-bar {
    padding: 0 18px;
    text-align: center;
    font-size: 8px;
  }
}
