/* ============================================================
   INA Design — stylesheet
   ============================================================ */

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

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #2A2A2A;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea {
  font-family: inherit;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #FFFFFF;
  color: #0A0A0A;
  padding: 12px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #0A0A0A;
  outline-offset: 2px;
}

/* ============================================================
   Wordmark
   ============================================================ */
.wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.wordmark__img {
  display: block;
  height: 32px;
  width: 61px;
  aspect-ratio: 1228.53 / 644.92;
  object-fit: contain;
}

/* Legacy typographic wordmark (retained for fallback only) */
.wordmark__ina {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  color: #0A0A0A;
  letter-spacing: normal;
  display: block;
}

.wordmark__design {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #0A0A0A;
  display: block;
  margin-top: 4px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: transform 300ms ease-out;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header--transparent {
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  height: 40px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__link {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0A0A0A;
  position: relative;
  padding-bottom: 2px;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #0A0A0A;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms ease-out;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0A0A0A;
  padding: 0;
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 400ms ease-out;
  display: flex;
  flex-direction: column;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0A0A0A;
  padding: 0;
}

.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu__link {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  color: #0A0A0A;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: #0A0A0A;
  width: 100%;
  padding: 64px 120px;
  min-height: 200px;
}

.site-footer .wordmark__img {
  filter: invert(1);
}

.site-footer--transparent {
  background-color: transparent;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
}

.site-footer__tagline {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

.site-footer__label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.site-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__list li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__list a {
  position: relative;
}

.site-footer__list a:hover {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer__copy {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: auto;
  padding-top: 32px;
}

/* ============================================================
   Main wrapper
   ============================================================ */
main {
  display: block;
}

/* ============================================================
   Typography helpers
   ============================================================ */
.label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0A0A0A;
}

.h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 128px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #0A0A0A;
}

/* ============================================================
   Home — page layout
   ============================================================ */
.home-page {
  display: block;
  /* Stop iOS rubber-banding from sliding the address bar (and resizing the
     viewport) mid-swipe — that's what threw the panel snap off before. */
  overscroll-behavior: none;
}

.home-page main {
  display: block;
}

/* On home, the header sits above the stacking panels — always solid white,
   always visible, never hides on scroll. */
.home-page .site-header--home {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 100;
}

.home-page .site-header--home.is-hidden {
  transform: none;
}

/* ============================================================
   Home hero — stacking project panels
   ============================================================ */

/* Each panel is a sticky, full-viewport block. They stack in document
   flow at 0, 100vh, 200vh, 300vh — and because position:sticky pins
   each one at top:0 throughout the whole hero-stack container, later
   panels paint over earlier ones (the "cover" effect). JS in main.js
   intercepts wheel/touch input on the home page to lock each scroll
   gesture to exactly one panel transition. */
.hero-stack {
  position: relative;
  display: block;
}

.hero-panel {
  position: sticky;
  top: 0;
  display: block;
  height: 100vh;             /* fallback for old browsers */
  height: 100dvh;            /* modern: tracks the visible viewport */
  height: var(--vh, 100dvh); /* JS-measured px — keeps CSS height and the
                                snap math (which uses the same value) in
                                exact lockstep on mobile Safari */
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

/* Cheap dim overlay (GPU just composites a solid color over the image,
   instead of recomputing every pixel through a brightness filter). */
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.22);
  opacity: 0;
  transition: opacity 300ms ease-out;
  pointer-events: none;
  z-index: 1;
}

.hero-panel:hover::after,
.hero-panel.is-revealed::after {
  opacity: 1;
}

.hero-panel__info {
  z-index: 2;
}

.hero-panel--light {
  background-color: #F5F4F1;
}

.hero-panel--dark {
  background-color: #0A0A0A;
}

.hero-panel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel__info {
  position: absolute;
  left: 64px;
  right: 64px;
  bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 250ms ease-out, transform 250ms ease-out;
  pointer-events: none;
  z-index: 2;
}

.hero-panel:hover .hero-panel__info,
.hero-panel.is-revealed .hero-panel__info {
  opacity: 1;
  transform: translateY(0);
}

/* Once a touch panel is revealed, the "View project" link becomes the one
   tappable target that actually navigates. Without this the info block keeps
   pointer-events:none, the tap lands on the panel instead of the CTA, and the
   panel just toggles the reveal again — so the link never opened. */
.hero-panel.is-revealed .hero-panel__cta {
  pointer-events: auto;
}

/* On touch devices, give the CTA a roomier tap target since it's the only
   element that should actually navigate after the panel is revealed. */
@media (hover: none) {
  .hero-panel__cta {
    padding: 8px 4px;
    margin-left: -4px;
  }
}

.hero-panel__location {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 0;
}

.hero-panel__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-panel__cta {
  display: inline-block;
  margin-top: 20px;
  align-self: flex-start;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.hero-panel__location,
.hero-panel__title,
.hero-panel__cta {
  color: #FFFFFF;
}

/* Thinner header on home */
.site-header--home {
  height: 72px;
  position: relative;
  flex-shrink: 0;
  background-color: #FFFFFF;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-header--home .wordmark__img {
  height: 32px;
  width: 61px;
}

/* ============================================================
   Hero slideshow
   ============================================================ */
.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slider__track {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  touch-action: pan-y;
}

.hero-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.hero-slider__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-slider__dot {
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 300ms ease-out;
}

.hero-slider__dot.is-active {
  background-color: #FFFFFF;
}

.hero-slider__dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

/* Slider arrows */
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  padding: 16px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  transition: color 200ms ease-out;
}

.hero-slider__arrow:hover {
  color: #FFFFFF;
}

.hero-slider__arrow--prev {
  left: 20px;
}

.hero-slider__arrow--next {
  right: 20px;
}

.hero-slider__arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1;
  fill: none;
}

/* ============================================================
   Thin home footer
   ============================================================ */
.site-footer--home {
  background-color: #0A0A0A;
  padding: 10px 32px;
  flex-shrink: 0;
  line-height: 1;
  min-height: 0;
}

.site-footer--home__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.site-footer--home__item {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer--home__item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 200ms ease-out;
}

.site-footer--home__item a:hover {
  color: #FFFFFF;
}

.site-footer--home__divider {
  width: 1px;
  height: 7px;
  background-color: rgba(255, 255, 255, 0.2);
}

.site-footer--home__copy {
  color: rgba(255, 255, 255, 0.35);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Featured Work / Work grid */
.featured {
  padding: 120px;
  background-color: #FFFFFF;
}

.featured__label {
  margin-bottom: 80px;
}

.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.card {
  display: block;
  color: inherit;
}

.card__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease-out;
}

.card:hover .card__media img {
  transform: scale(1.015);
}

.card__body {
  padding-top: 24px;
}

.card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0A0A0A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.card__meta span {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(42, 42, 42, 0.7);
}

/* Full-bleed image */
.full-bleed {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.full-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   About
   ============================================================ */
.about-page {
  background-color: #0A0A0A;
  color: #FFFFFF;
}

.about-page .about-hero__h1 {
  color: #FFFFFF;
}

.about-page .overline {
  color: rgba(255, 255, 255, 0.55);
}

.about-page .overline::before {
  background-color: #FFFFFF;
}

.about-page .about-statement p {
  color: rgba(255, 255, 255, 0.8);
}

.about-page .about-facts__label {
  color: rgba(255, 255, 255, 0.45);
}

.about-page .about-facts__value {
  color: #FFFFFF;
}

.about-page .about-facts {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.about-page .site-header--home {
  background-color: #0A0A0A;
}

.about-page .site-header--home .site-nav__link {
  color: #FFFFFF;
}

.about-page .site-header--home .site-nav__link::after {
  background-color: #FFFFFF;
}

.about-page .site-header--home .wordmark__img {
  filter: invert(1);
}

.about-page .site-header--home .menu-toggle {
  color: #FFFFFF;
}

.about-hero {
  padding: 32px 120px 64px;
}

.about-hero__label {
  margin-bottom: 24px;
}

.about-hero__h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 200px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #0A0A0A;
}

.about-statement {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 120px;
}

.about-statement p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: #2A2A2A;
}

.about-statement p + p {
  margin-top: 24px;
}

.about-statement__sign {
  margin-top: 64px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  color: #0A0A0A;
  text-align: right;
}

.about-portrait {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   Services
   ============================================================ */
.services-hero {
  padding: 32px 120px 64px;
}

.services-hero__label {
  margin-bottom: 24px;
}

.services-list {
  padding: 0 120px 160px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Title sits in the left column, description in the right. The serif title
   carries ~5px more space above its caps than the body text, so nudge the
   description column down to optically align their first lines. */
.service__body {
  margin-top: 5px;
}

.service__body .service__desc {
  margin-top: 0;
}

.service__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  color: #0A0A0A;
}

.service__desc {
  margin-top: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: #2A2A2A;
  max-width: 480px;
}

.service__link {
  display: inline-block;
  margin-top: 32px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0A0A0A;
  border-bottom: 1px solid #0A0A0A;
  padding-bottom: 2px;
}

/* ============================================================
   Work
   ============================================================ */
.work-hero {
  padding: 32px 120px 48px;
}

.work-hero__label {
  margin-bottom: 24px;
}

.work-grid {
  padding: 0 120px 160px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 80px;
}

/* ============================================================
   Project page
   ============================================================ */
.project-hero {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info {
  padding: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.project-info__left,
.project-info__right {
  /* equal halves */
}

.project-info__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  color: #0A0A0A;
}

.project-meta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-meta__row {
  display: flex;
  flex-direction: column;
}

.project-meta__label {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(42, 42, 42, 0.6);
}

.project-meta__value {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #0A0A0A;
  margin-top: 4px;
}

.project-info__copy {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: #2A2A2A;
}

.project-images {
  padding: 0 0 160px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.project-images__item {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.project-images__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mixed layout: pattern of 2 verticals + 1 horizontal, repeating.
   Each image keeps its natural aspect ratio. */
.project-images--mixed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 24px;
  padding: 0 24px 160px;
  max-width: 1600px;
  margin: 0 auto;
}

.project-images--mixed .project-images__item {
  aspect-ratio: auto;
  margin: 0;
}

.project-images--mixed .project-images__item--full {
  grid-column: 1 / -1;
}

.project-images--mixed .project-images__item img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}

/* Placeholders keep a reasonable shape while you're still adding images */
.project-images--mixed .project-images__item .placeholder {
  aspect-ratio: 3 / 4;
}

.project-images--mixed .project-images__item--full .placeholder {
  aspect-ratio: 3 / 2;
}

.project-quote {
  padding: 160px 24px;
  background-color: #FFFFFF;
}

.project-quote__line {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  color: #0A0A0A;
}

.project-next {
  padding: 120px;
  text-align: right;
}

.project-next__link {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0A0A0A;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 200ms ease-out;
}

.project-next__link:hover {
  border-bottom-color: #0A0A0A;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-hero {
  padding: 32px 120px 48px;
}

.contact-hero__label {
  margin-bottom: 24px;
}

.contact-success__copy {
  max-width: 520px;
  margin: 32px 0 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #2A2A2A;
}

.contact-success__back {
  margin: 40px 0 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-success__back a {
  color: #2A2A2A;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: opacity 200ms ease-out;
}

.contact-success__back a:hover {
  opacity: 0.6;
}

.contact-intro {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 96px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: #2A2A2A;
}

.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 160px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-field {
  display: flex;
  flex-direction: column;
}

.contact-field__label {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(42, 42, 42, 0.6);
  margin-bottom: 8px;
}

.contact-field__input,
.contact-field__textarea,
.contact-field__select {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #0A0A0A;
  background-color: transparent;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid #E5E5E5;
  width: 100%;
  border-radius: 0;
  transition: border-color 300ms ease-out;
}

.contact-field__textarea {
  resize: vertical;
  font-family: "Inter", sans-serif;
}

.contact-field__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><polyline points='1 1 6 6 11 1' fill='none' stroke='%230A0A0A' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px 8px;
  padding-right: 24px;
  cursor: pointer;
}

.contact-field__select:invalid {
  color: rgba(10, 10, 10, 0.45);
}

.contact-field__input:focus,
.contact-field__textarea:focus,
.contact-field__select:focus {
  border-bottom-color: #0A0A0A;
  outline: none;
}

.contact-field__input:focus-visible,
.contact-field__textarea:focus-visible,
.contact-field__select:focus-visible {
  outline: 2px solid #0A0A0A;
  outline-offset: 2px;
}

.contact-field__req {
  color: rgba(10, 10, 10, 0.4);
  margin-left: 2px;
}

.contact-submit {
  margin-top: 48px;
  background-color: transparent;
  border: none;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0A0A0A;
  border-bottom: 1px solid #0A0A0A;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: letter-spacing 300ms ease-out;
}

.contact-submit:hover {
  letter-spacing: 0.16em;
}

.contact-after {
  padding: 0 24px 16px;
  text-align: center;
}

.contact-after p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #2A2A2A;
  margin-bottom: 6px;
}

.contact-after a:hover {
  color: #0A0A0A;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* ============================================================
   Fade-up animation
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============================================================
   Placeholder image
   ============================================================ */
.placeholder {
  width: 100%;
  height: 100%;
  background-color: #E0E0E0;
  background-image: url('../images/logo-white.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: clamp(100px, 22%, 320px) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.placeholder__mark {
  display: none;
}

.home-hero .placeholder {
  opacity: 0;
  animation: fadeIn 1200ms ease-out forwards;
}

/* ============================================================
   Studios block
   ============================================================ */
.studios {
  padding: 24px 120px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  border-top: 1px solid #E5E5E5;
  text-align: center;
}

.studios__col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.studios__overline {
  margin-bottom: 12px;
}

.studios__city {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #0A0A0A;
}

.studios__divider {
  width: 20px;
  height: 1px;
  background-color: #0A0A0A;
  margin: 12px 0;
}

.studios__details {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: #2A2A2A;
}

.studios__details a:hover {
  color: #0A0A0A;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* ============================================================
   Status pill
   ============================================================ */
.status-pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #E5E5E5;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(10, 10, 10, 0.65);
}

.status-pill--ip {
  color: #0A0A0A;
  border-color: #0A0A0A;
}

.card__statusrow {
  margin-top: 16px;
}

/* ============================================================
   Editorial — overlines, numbers, captions
   ============================================================ */
.overline {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(10, 10, 10, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.overline::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #0A0A0A;
  flex-shrink: 0;
}

.section-number {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(10, 10, 10, 0.45);
}

/* ============================================================
   Metadata strip — under hero on home
   ============================================================ */
.meta-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  padding: 48px 120px;
  background-color: #FFFFFF;
}

.meta-strip__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px;
  border-left: 1px solid #E5E5E5;
  align-items: center;
  text-align: center;
}

.meta-strip__col:first-child {
  border-left: none;
}

.meta-strip__label {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(42, 42, 42, 0.5);
}

.meta-strip__value {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #0A0A0A;
  letter-spacing: 0.02em;
}

/* ============================================================
   Practice section (Home)
   ============================================================ */
.practice {
  padding: 200px clamp(24px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.practice__head {
  text-align: left;
  padding-right: 24px;
}

.practice__head .overline {
  margin-bottom: 32px;
}

.practice__lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #0A0A0A;
  max-width: 520px;
}

.practice__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 24px;
}

.practice__body p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: #2A2A2A;
  max-width: 560px;
}

/* ============================================================
   Editorial work grid — asymmetric
   ============================================================ */
.editorial-work {
  padding: 0 120px 200px;
}

.editorial-work__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 96px;
  gap: 32px;
}

.editorial-work__view {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #0A0A0A;
  border-bottom: 1px solid #0A0A0A;
  padding-bottom: 4px;
}

.editorial-work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 128px;
}

.editorial-work__grid .card {
  display: block;
}

.editorial-work__grid .card .card__media {
  aspect-ratio: 4 / 5;
}

/* Card index */
.card__index {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(42, 42, 42, 0.5);
  margin-bottom: 14px;
}

/* ============================================================
   Figure caption — under full-bleed image
   ============================================================ */
.figure-caption {
  padding: 24px 24px 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 24px;
  text-align: center;
}

.figure-caption span {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(42, 42, 42, 0.55);
}

.figure-caption span + span::before {
  content: "·";
  margin-right: 24px;
  color: rgba(42, 42, 42, 0.4);
}

/* ============================================================
   Closing line (Home, before footer)
   ============================================================ */
.closing {
  padding: 200px 24px;
  text-align: center;
}

.closing__inner {
  max-width: 900px;
  margin: 0 auto;
}

.closing .overline {
  margin-bottom: 48px;
}

.closing__line {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #0A0A0A;
}

.closing__cta {
  display: inline-block;
  margin-top: 64px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #0A0A0A;
  border-bottom: 1px solid #0A0A0A;
  padding-bottom: 4px;
}

/* ============================================================
   Refined H1 sizes
   ============================================================ */
.h1 {
  font-size: 96px;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

/* About — bigger display */
.about-hero__h1 {
  font-size: clamp(56px, 10vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

/* About bio — portrait left, text right */
.about-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0 clamp(24px, 8vw, 120px) 48px;
  align-items: start;
}

.about-bio__portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: sticky;
  top: 80px;
}

/* Portrait removed — keep the text in the right column, left side empty. */
.about-bio__text {
  padding-top: 16px;
  grid-column: 2;
}

/* Studio facts sit on their own, centered under the bio. */
.about-facts-wrap {
  padding: 0 clamp(24px, 8vw, 120px) 120px;
}

.about-facts-wrap .about-facts {
  max-width: 640px;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.about-bio__text p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}

.about-bio__text p + p {
  margin-top: 24px;
}

.about-bio__text .about-facts {
  margin-top: 64px;
}

/* ============================================================
   People — founder & team
   ============================================================ */
.people {
  padding: 120px clamp(24px, 8vw, 120px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.people + .people {
  padding-top: 120px;
}

.people__head {
  max-width: 720px;
  margin-bottom: 64px;
}

.people__label {
  margin-bottom: 24px;
}

.people__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.people__lede {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.people__link {
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
  transition: border-color 200ms ease-out;
}

.people__link:hover {
  border-bottom-color: #FFFFFF;
}

.people__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.people__grid--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.person {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.person__portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 24px;
}

.person__portrait .placeholder {
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.person:hover .person__portrait .placeholder {
  transform: scale(1.02);
}

.person__caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.person__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: #FFFFFF;
}

.person__role {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.person--open .person__name {
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .people__grid,
  .people__grid--four {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .people {
    padding: 80px 24px;
  }

  .people__grid,
  .people__grid--four {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .people__head {
    margin-bottom: 48px;
  }
}

/* About statement refinements (legacy, kept for fallback) */
.about-statement {
  max-width: 720px;
}

.about-statement p {
  font-size: 16px;
  line-height: 1.75;
}

.about-facts {
  margin-top: 96px;
  padding-top: 48px;
  border-top: 1px solid rgba(10, 10, 10, 0.15);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 32px;
}

.about-facts__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-facts__label {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(10, 10, 10, 0.5);
}

.about-facts__value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  color: #0A0A0A;
  line-height: 1.3;
}

/* ============================================================
   Service refinements
   ============================================================ */
.service__index {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(10, 10, 10, 0.45);
  margin-bottom: 24px;
}

.services-list {
  gap: 160px;
}

.service {
  align-items: start;
}

.service__name {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

.service__text {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service__text .service__desc {
  margin: auto 0;
}

.service__text .service__link {
  margin-top: 0;
  align-self: flex-start;
}

/* ============================================================
   Work refinements
   ============================================================ */
.work-grid {
  row-gap: 80px;
}

.work-grid .card {
  position: relative;
}

.work-hero {
  padding-bottom: 64px;
}

.work-intro {
  margin: 0 120px 120px;
  padding-bottom: 64px;
  border-bottom: 1px solid #E5E5E5;
  text-align: center;
}

.work-intro__lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #0A0A0A;
  max-width: 760px;
  margin: 0 auto 32px;
}

.work-intro__count {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(10, 10, 10, 0.55);
}

/* ============================================================
   Project page refinements
   ============================================================ */
.project-overline {
  padding: 64px 24px 0;
  text-align: center;
}

.project-overline .overline {
  justify-content: center;
}

.project-info {
  padding-top: 64px;
}

.project-info__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 104px;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.project-images {
  padding: 64px 120px 200px;
  gap: 96px;
}

.project-images__item {
  position: relative;
}

.project-images__caption {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(42, 42, 42, 0.5);
  text-align: center;
}

.project-images__caption span + span::before {
  content: "·";
  margin-right: 24px;
  color: rgba(42, 42, 42, 0.4);
}

.project-quote {
  padding: 200px 24px;
  text-align: center;
}

.project-quote__line {
  font-size: 48px;
  line-height: 1.25;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.project-quote__attribution {
  display: block;
  margin-top: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(10, 10, 10, 0.5);
  text-align: center;
}

.project-next {
  border-top: 1px solid #E5E5E5;
  padding: 96px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.project-next__label {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(10, 10, 10, 0.5);
  margin-bottom: 12px;
}

.project-next__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 48px;
  color: #0A0A0A;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.project-next__link {
  text-align: center;
}

/* ============================================================
   Contact refinements
   ============================================================ */
.contact-intro {
  max-width: 720px;
}

.contact-intro p {
  font-size: 16px;
  line-height: 1.75;
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .home-hero__img {
    opacity: 1;
  }

  .fade-up {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 1024px) and (min-width: 768px) {
  .hero-panel__info {
    left: 48px;
    right: 48px;
    bottom: 48px;
  }

  .hero-panel__title {
    font-size: 56px;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 48px 120px;
    column-gap: 40px;
    row-gap: 64px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  /* Header */
  .site-header {
    height: 56px;
    padding: 0 24px;
  }

  .wordmark__img {
    height: 42px;
    width: 80px;
  }

  .site-footer .wordmark__img {
    height: 32px;
    width: 61px;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* Footer */
  .site-footer {
    padding: 64px 24px;
    min-height: 160px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Editorial */
  .editorial__line {
    font-size: 32px;
  }

  /* Featured */
  .featured {
    padding: 120px 24px;
  }

  .featured__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  /* H1 */
  .h1 {
    font-size: 64px;
  }

  /* Card title */
  .card__title {
    font-size: 26px;
    white-space: normal;
  }

  /* About */
  .about-hero {
    padding: 120px 24px;
  }

  .about-hero__h1 {
    font-size: 96px;
  }

  .about-portrait {
    aspect-ratio: 4 / 5;
  }

  /* Services */
  .services-hero {
    padding: 120px 24px;
  }

  .services-list {
    padding: 0 24px 160px;
    gap: 96px;
  }

  .service {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service__text,
  .service__media {
    grid-column: span 1;
  }

  .service__name {
    font-size: 32px;
  }

  /* Work */
  .work-hero {
    padding: 120px 24px 96px;
  }

  .work-grid {
    padding: 0 24px 160px;
    grid-template-columns: 1fr;
    row-gap: 64px;
  }

  /* Project */
  .project-info {
    padding: 120px 24px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .project-info__left,
  .project-info__right {
    grid-column: span 1;
  }

  .project-quote__line {
    font-size: 24px;
  }

  .project-next {
    padding: 120px 24px;
  }

  /* Contact */
  .contact-hero {
    padding: 120px 24px 64px;
  }

  /* Home — mobile */
  .site-header--home {
    height: 48px;
    padding: 0 16px;
  }

  .site-footer--home {
    padding: 12px 16px;
    min-height: 0;
  }

  .site-footer--home__inner {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .hero-slider__dots {
    bottom: 20px;
  }

  /* Hero stack — mobile */
  .hero-panel__info {
    left: 24px;
    right: 24px;
    /* Keep the title + CTA above the iPhone home indicator */
    bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .hero-panel__title {
    font-size: 40px;
  }

  .hero-panel__location {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .hero-panel__cta {
    font-size: 11px;
    margin-top: 16px;
  }

  /* Editorial additions — mobile */
  .meta-strip {
    grid-template-columns: 1fr 1fr;
    padding: 32px 24px;
    gap: 24px 0;
  }

  .meta-strip__col {
    padding: 0 16px;
  }

  .meta-strip__col:nth-child(2n+1) {
    border-left: none;
    padding-left: 0;
  }

  .practice {
    padding: 120px 24px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .practice__head,
  .practice__body {
    grid-column: span 1;
    position: static;
  }

  .practice__lede {
    font-size: 28px;
  }

  .editorial-work {
    padding: 0 24px 120px;
  }

  .editorial-work__head {
    margin-bottom: 64px;
  }

  .editorial-work__grid {
    grid-template-columns: 1fr;
    row-gap: 96px;
  }

  .editorial-work__grid .card--a,
  .editorial-work__grid .card--b,
  .editorial-work__grid .card--c,
  .editorial-work__grid .card--d {
    grid-column: span 1;
    margin: 0;
  }

  .figure-caption {
    padding: 16px 24px 0;
  }

  .closing {
    padding: 120px 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .closing__inner {
    grid-column: span 1;
  }

  .closing__line {
    font-size: 36px;
  }

  /* About */
  .about-bio {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-bio__text {
    grid-column: 1;
  }

  .about-bio__portrait {
    position: static;
    aspect-ratio: 1 / 1;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-facts {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Services */
  .services-list {
    gap: 96px;
  }

  .service__name {
    font-size: 36px;
  }

  /* Work */
  .work-intro {
    margin: 0 24px 64px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .work-intro__lede,
  .work-intro__count {
    grid-column: span 1;
    text-align: left;
  }

  .work-intro__lede {
    font-size: 24px;
  }

  /* Studios */
  .studios {
    padding: 24px 24px 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .studios__city {
    font-size: 24px;
  }

  /* Project */
  .project-overline {
    padding: 64px 24px 0;
  }

  .project-images {
    padding: 64px 24px 120px;
    gap: 64px;
  }

  .project-info__title {
    font-size: 56px;
  }

  .project-quote {
    padding: 120px 24px;
  }

  .project-quote__line {
    font-size: 28px;
  }

  .project-next {
    padding: 48px 24px;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .project-next__title {
    font-size: 28px;
  }

  .project-next__link {
    text-align: left;
  }
}
