/* ==========================================================================
   KERF. — Section styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   01 · Hero — sticky 100vh stage with a parallax photo bed
   -------------------------------------------------------------------------- */

.section-home-hero { position: relative; height: 160vh; --hero-fade: 0; }

.home-hero_sticky-div {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.home-hero_bg {
  position: absolute;
  inset: -8% 0 0 0;
  height: 116%;
  z-index: 0;
}

.home-hero_bg img { width: 100%; height: 100%; object-fit: cover; }

/* Softens the hard cut where the hero hands off to the tan page below. */
.home-hero_sticky-div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 22vh;
  background: linear-gradient(180deg, rgba(255, 245, 232, 0) 0%, var(--tan) 100%);
  opacity: var(--hero-fade, 0);
  pointer-events: none;
}

/* Second photo bed. Layers over the first and is driven all the way to full
   opacity, and carries its own scrim so the type stays legible once it lands. */
.home-hero_outline-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background-image: url("../img/hero-outline.jpg");
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-hero_outline-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 16, 0.5) 0%, rgba(24, 20, 16, 0.3) 38%, rgba(24, 20, 16, 0.82) 100%);
}

.home-hero_content { position: relative; z-index: 2; width: 100%; color: var(--tan); }

.home-hero_wrapper { display: flex; flex-direction: column; gap: var(--s-40); }

.home-hero_heading h1 { max-width: 14em; }

/* Justifies the first line edge-to-edge, matching the reference lockup.
   The zero-height trailing box is what forces the justification to apply. */
.span-full-width {
  display: block;
  width: 100%;
  text-align: justify;
  text-align-last: justify;
}

@media (max-width: 767px) {
  .span-full-width { text-align: left; text-align-last: left; }
}

.home-hero_subheading-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-40);
}

.home-hero_subheading { max-width: 30em; }

.home-hero_video_wrapper {
  position: relative;
  flex: none;
  width: 17em;
  aspect-ratio: 16 / 10;
  border-radius: var(--s-8);
  overflow: hidden;
  cursor: pointer;
}

.home-hero_video_wrapper .play-btn-puck { width: 3.25em; height: 3.25em; }

.home-hero_scroll-cue {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  color: var(--tan);
  opacity: 0.7;
}

@media (max-width: 991px) {
  .section-home-hero { height: auto; }
  .home-hero_sticky-div { position: static; height: auto; min-height: 100vh; }
  .home-hero_subheading-wrapper { flex-direction: column; align-items: flex-start; }
  .home-hero_video_wrapper { width: 100%; max-width: 22em; }
}

/* --------------------------------------------------------------------------
   02 · About
   -------------------------------------------------------------------------- */

.home-about_wrapper { display: flex; flex-direction: column; gap: var(--s-80); }

.home-about_text-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-40);
  align-items: end;
}

.home-about_subheading { max-width: 32em; }

.home-about_video_list {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--s-24);
}

.home-about_video_item {
  position: relative;
  overflow: hidden;
  border-radius: var(--s-8);
  aspect-ratio: 16 / 10;
}

.home-about_video_item._02 { aspect-ratio: 4 / 5; align-self: end; }
.home-about_video_item video,
.home-about_video_item img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 767px) {
  .home-about_text-wrapper { grid-template-columns: 1fr; }
  .home-about_video_list { grid-template-columns: 1fr; }
  .home-about_video_item._02 { aspect-ratio: 16 / 10; }
}

/* --------------------------------------------------------------------------
   03 · Trusted marquee
   -------------------------------------------------------------------------- */

.home-trusted_heading { color: var(--grey); }

.home-trusted_marquee-component {
  margin-top: var(--s-32);
  margin-bottom: var(--s-64);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.home-trusted_list-wrapper { display: flex; align-items: center; width: max-content; }

.home-trusted_list {
  display: flex;
  flex: none;
  align-items: center;
  animation: marquee-x 42s linear infinite;
}

.home-trusted_marquee-component:hover .home-trusted_list { animation-play-state: paused; }

.home-trusted_item {
  flex: none;
  padding: 0 var(--s-40);
  font-family: var(--font-heading);
  font-weight: var(--fw-600);
  font-size: var(--t-20);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.42;
  white-space: nowrap;
  transition: opacity 0.35s var(--ease-out);
}

.home-trusted_item:hover { opacity: 1; }

@keyframes marquee-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.home-trusted_divider { height: 1px; background-color: var(--stroke); }

/* --------------------------------------------------------------------------
   04 · Capabilities — accordions over a parallax photo
   -------------------------------------------------------------------------- */

.section-home-capabilities { position: relative; overflow: hidden; }

.home-capabilities_wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-80);
  align-items: start;
  padding-bottom: var(--s-240);
}

.home-capabilities_heading h3 {
  font-family: var(--font-heading);
  font-weight: var(--fw-600);
  font-size: var(--h-78);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin: 0;
}

.home-capabilities_subheading { margin-top: var(--s-24); max-width: 26em; }

.home-capabilities_dropdown_list { display: flex; flex-direction: column; }

.home-capabilities_dropdown_item { border-top: 1px solid var(--stroke); }
.home-capabilities_dropdown_item:last-child { border-bottom: 1px solid var(--stroke); }

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-24);
  width: 100%;
  padding: var(--s-24) 0;
  text-align: left;
  cursor: pointer;
}

.toggle-icon-wrapper {
  position: relative;
  flex: none;
  width: 1em;
  height: 1em;
}

.toggle-icon-wrapper::before,
.toggle-icon-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: currentColor;
  transition: transform 0.4s var(--ease-swap);
}

.toggle-icon-wrapper::after { transform: rotate(90deg); }
.is-open .toggle-icon-wrapper::after { transform: rotate(0deg); }

.dropdown-list {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-swap);
}

.is-open .dropdown-list { grid-template-rows: 1fr; }

.dropdown-list_wrapper { overflow: hidden; }
.dropdown-list_wrapper p { padding-bottom: var(--s-24); max-width: 34em; color: #4a4a4a; }

.home-capabilities_bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-capabilities_bg-img { position: relative; width: 100%; height: 100%; }
.home-capabilities_bg-img img { width: 100%; height: 100%; object-fit: cover; }

.home-capabilities_bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: linear-gradient(180deg, var(--tan) 11.67%, rgba(255, 245, 232, 0) 76.3%);
}

.home-capabilities_bg-overlay._02 {
  background-image: linear-gradient(0deg, var(--tan) 4%, rgba(255, 245, 232, 0) 46%);
}

@media (max-width: 991px) {
  .home-capabilities_wrapper { grid-template-columns: 1fr; gap: var(--s-40); padding-bottom: var(--s-144); }
}

/* --------------------------------------------------------------------------
   05 · Scope — the sticky stacked-card scrub
   -------------------------------------------------------------------------- */

.home-scope_wrapper { display: flex; flex-direction: column; gap: var(--s-40); }
.home-scope_heading h3 { max-width: 11em; }
.home-scope_divider { height: 1px; background-color: var(--stroke); }

/* Scroll distance for the stack: one viewport per card. */
.section-home-scope { position: relative; }
.home-scope_scroll-track { position: relative; height: 400vh; }

.sticky-div {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.home-scope_list {
  position: relative;
  width: 100%;
  height: 72vh;
}

.home-scope_item {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--s-40);
  width: 100%;
  height: 100%;
}

.home-scope_item_img {
  position: relative;
  width: 62%;
  height: 100%;
  border-radius: var(--s-8);
  overflow: hidden;
  transform-origin: 0 100%;
}

.home-scope_item_img img { width: 100%; height: 100%; object-fit: cover; }

.home-scope_item_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--s-20);
  width: 32%;
  position: relative;
}

.home-scope_item_pagination { color: var(--grey); }
.home-scope_item_subheading { max-width: 22em; }
.home-scope_item_btn { margin-top: var(--s-16); }

@media (max-width: 991px) {
  .home-scope_scroll-track { height: auto; }
  .sticky-div { position: relative; height: auto; top: auto; }
  .home-scope_list { height: auto; display: flex; flex-direction: column; gap: var(--s-56); }
  .home-scope_item { position: relative; inset: auto; flex-direction: column; height: auto; opacity: 1 !important; transform: none !important; }
  .home-scope_item_img { width: 100%; aspect-ratio: 4 / 3; transform: none !important; }
  .home-scope_item_text { width: 100%; }
}

/* --------------------------------------------------------------------------
   06 · Stats
   -------------------------------------------------------------------------- */

.home-stats_wrapper { display: flex; flex-direction: column; gap: var(--s-80); }

.home-stats_heading { display: flex; flex-direction: column; gap: var(--s-16); }

.home-stats_first { display: flex; align-items: center; gap: var(--s-32); }

.home-stats_heading_divider-wrapper { flex: 1; }

.home-stats_heading_divider {
  height: 1px;
  background-color: var(--black);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.home-stats_heading_last { padding-left: 18%; }

.home-stats_subheading-img-wrapper {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--s-56);
  align-items: center;
}

.home-stats_img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--s-8);
}

.home-stats_subheading { display: flex; flex-direction: column; gap: var(--s-32); align-items: flex-start; }

.home-stats_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-32);
  padding-top: var(--s-56);
  border-top: 1px solid var(--stroke);
}

.home-stats_item_wrapper { display: flex; flex-direction: column; gap: var(--s-12); }
.home-stats_item_number { display: flex; align-items: baseline; }
.home-stats_item_wrapper p { color: var(--grey); }

@media (max-width: 991px) {
  .home-stats_subheading-img-wrapper { grid-template-columns: 1fr; }
  .home-stats_list { grid-template-columns: repeat(2, 1fr); gap: var(--s-40) var(--s-24); }
  .home-stats_heading_last { padding-left: 0; }
}

/* --------------------------------------------------------------------------
   07 · Projects — dual Swiper (bg crossfade + card track)
   -------------------------------------------------------------------------- */

.section-home-projects { position: relative; overflow: hidden; }

.home-projects_bg-list-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
}

.home-projects_bg-list-wrapper .swiper-wrapper { height: 100%; }
.home-projects_bg-item { position: relative; width: 100%; height: 100%; }
.home-projects_bg-item img { width: 100%; height: 100%; object-fit: cover; }

.home-projects_bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, var(--tan) 0%, rgba(255, 245, 232, 0.7) 42%, rgba(255, 245, 232, 0.82) 72%, var(--tan) 100%);
  pointer-events: none;
}

.home-projects_wrapper { position: relative; z-index: 2; }

.home-projects_text-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-40);
  margin-bottom: var(--s-56);
}

.home-projects_pagination-btn { display: flex; align-items: center; gap: var(--s-16); }
.home-projects_pagination { margin-right: var(--s-16); color: var(--grey); }

.home-projects_list-wrapper { position: relative; z-index: 2; overflow: visible; }

.home-projects_item.swiper-slide {
  width: 30em;
  max-width: 82vw;
  height: auto;
}

.home-projects_item_wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--tan);
  border: 1px solid var(--stroke);
  border-radius: var(--s-8);
  overflow: hidden;
}

.home-projects_item_img-video {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.home-projects_item_img-video img { width: 100%; height: 100%; object-fit: cover; }

.home-projects_item_industry {
  position: absolute;
  top: var(--s-12);
  left: var(--s-12);
  z-index: 4;
}

.home-projects_industry_item {
  padding: var(--s-4) var(--s-12);
  background-color: var(--tan);
  border-radius: 100px;
}

.home-projects_item_text-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--s-16);
  flex: 1;
  padding: var(--s-24);
}

.home-projects_info_list { display: flex; flex-wrap: wrap; gap: var(--s-16); color: var(--grey); }
.home-projects_info_item { display: flex; align-items: center; gap: var(--s-8); }
.home-projects_info_item svg { width: 0.9em; height: 0.9em; flex: none; }

.projects_category_list { display: flex; flex-wrap: wrap; gap: var(--s-8); }

.projects_category_item {
  padding: var(--s-4) var(--s-12);
  border: 1px solid var(--stroke);
  border-radius: 100px;
  color: var(--grey);
}

.projects_category_item.is-hidden-tag { display: none; }

.home-projects_item_description { color: #4a4a4a; }
.home-projects_item_btn { margin-top: auto; padding-top: var(--s-16); }

@media (max-width: 767px) {
  .home-projects_text-wrapper { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   08 · Testimonials marquee
   -------------------------------------------------------------------------- */

/* max-width lives on the heading itself so the em resolves against its own size. */
.home-testimonials_heading { margin-bottom: var(--s-56); }
.home-testimonials_heading h3 { max-width: 13em; }

.home-testimonials_slider {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.home-testimonials_list-wrapper { display: flex; width: max-content; }

.home-testimonials_list {
  display: flex;
  flex: none;
  animation: marquee-x 70s linear infinite;
}

.home-testimonials_slider:hover .home-testimonials_list { animation-play-state: paused; }

.home-testimonials_item {
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-32);
  width: 32em;
  max-width: 84vw;
  margin-right: var(--s-24);
  padding: var(--s-40);
  background-color: var(--dark-tan);
  border-radius: var(--s-8);
}

.home-testimonials_name p { color: var(--grey); margin-top: var(--s-4); }

/* --------------------------------------------------------------------------
   09 · Careers — Swiper cards effect
   -------------------------------------------------------------------------- */

.home-careers_wrapper { display: flex; flex-direction: column; gap: var(--s-64); }

.home-careers_text-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-40);
  align-items: end;
}

.home-careers_heading h3 { max-width: 12em; }
.home-careers_subheading { max-width: 26em; margin-bottom: var(--s-24); }

.home-careers_slider { width: 100%; }

.home-careers_list-wrapper { width: min(100%, 34em); margin: 0 auto; overflow: visible; }

.home-careers_item.swiper-slide {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--s-12);
  overflow: hidden;
  background-color: var(--black);
}

.home-careers_item_video { position: absolute; inset: 0; }

.home-careers_img-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(29, 29, 29, 0.15) 40%, rgba(29, 29, 29, 0.75) 100%);
  pointer-events: none;
}

.home-careers_item_count {
  position: absolute;
  left: var(--s-24);
  bottom: var(--s-24);
  z-index: 4;
  color: var(--tan);
}

@media (max-width: 767px) {
  .home-careers_text-wrapper { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   10 · CTA
   -------------------------------------------------------------------------- */

.section-cta { position: relative; overflow: hidden; color: var(--tan); }

.cta_wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-32);
}

.cta_subheading { max-width: 30em; }
.cta_btn { display: flex; flex-wrap: wrap; gap: var(--s-16); margin-top: var(--s-16); }

.cta_bg-wrapper { position: absolute; inset: 0; z-index: 0; }
.cta_bg-img { width: 100%; height: 100%; }
.cta_bg-img img { width: 100%; height: 100%; object-fit: cover; }

.cta_img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--tan) 0%, rgba(29, 29, 29, 0.35) 30%, rgba(29, 29, 29, 0.85) 100%);
}

/* --------------------------------------------------------------------------
   Inner-page hero
   -------------------------------------------------------------------------- */

.section-page-hero { position: relative; overflow: hidden; color: var(--tan); }

.page-hero_bg { position: absolute; inset: 0; z-index: 0; }
.page-hero_bg img { width: 100%; height: 100%; object-fit: cover; }

/* Inner-page heroes carry more text than the homepage, so they need a
   heavier scrim than the shared .bg-img_overlay provides. */
.section-page-hero .bg-img_overlay {
  background: linear-gradient(180deg, rgba(20, 17, 14, 0.78) 0%, rgba(20, 17, 14, 0.62) 45%, rgba(20, 17, 14, 0.85) 100%);
}

.page-hero_content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--s-24);
  padding-top: var(--s-184);
  padding-bottom: var(--s-112);
}

.page-hero_content h1 { font-size: var(--h-64); max-width: 16em; }

.page-hero_content .labels { color: var(--dark-tan); }
.page-hero_sub { max-width: 34em; }

/* --------------------------------------------------------------------------
   Shared inner-page blocks
   -------------------------------------------------------------------------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-80);
  align-items: start;
}

.prose { display: flex; flex-direction: column; gap: var(--s-20); color: #4a4a4a; max-width: 34em; }

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-24);
}

.media-grid figure { margin: 0; }

.media-grid_img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--s-8);
  margin-bottom: var(--s-12);
}

.media-grid_img img { transition: transform 0.7s var(--ease-out); }
.media-grid figure:hover .media-grid_img img { transform: scale(1.05); }

.value-list { display: flex; flex-direction: column; }

.value-item {
  display: grid;
  grid-template-columns: 5em 1fr 1.2fr;
  gap: var(--s-24);
  padding: var(--s-32) 0;
  border-top: 1px solid var(--stroke);
  align-items: start;
}

.value-item:last-child { border-bottom: 1px solid var(--stroke); }
.value-item .labels { color: var(--grey); padding-top: 0.35em; }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-64);
  align-items: center;
  padding: var(--s-80) 0;
  border-top: 1px solid var(--stroke);
}

.service-block:nth-child(even) .service-block_img { order: 2; }

.service-block_img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--s-8);
}

.service-block_text { display: flex; flex-direction: column; gap: var(--s-20); align-items: flex-start; }

.service-block_list { display: flex; flex-direction: column; gap: var(--s-8); margin-top: var(--s-8); }

.service-block_list li {
  display: flex;
  gap: var(--s-12);
  color: #4a4a4a;
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--stroke);
}

.service-block_list li span:first-child { color: var(--grey); font-family: var(--font-mono); font-size: var(--t-12); padding-top: 0.35em; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-40);
}

.project-card { display: flex; flex-direction: column; gap: var(--s-16); }

.project-card_img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--s-8);
}

.project-card_img img { transition: transform 0.7s var(--ease-out); }
.project-card:hover .project-card_img img { transform: scale(1.05); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-80);
  align-items: start;
}

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

.contact-detail_item {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-24) 0;
  border-top: 1px solid var(--stroke);
}

.contact-detail_item:last-child { border-bottom: 1px solid var(--stroke); }
.contact-detail_item .labels { color: var(--grey); margin-bottom: var(--s-4); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-20); }
.form-field { display: flex; flex-direction: column; gap: var(--s-8); }
.form-field.is-full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--font-mono);
  font-size: var(--t-12);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: var(--s-16);
  font-family: var(--font-body);
  font-size: var(--t-16);
  color: var(--black);
  background-color: transparent;
  border: 1px solid var(--stroke);
  border-radius: var(--s-8);
  transition: border-color 0.3s var(--ease-out);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--black); }

.form-field textarea { resize: vertical; min-height: 9em; }

.form-note { color: var(--grey); margin-top: var(--s-16); }

@media (max-width: 991px) {
  .two-col,
  .contact-grid,
  .service-block { grid-template-columns: 1fr; gap: var(--s-40); }
  .service-block:nth-child(even) .service-block_img { order: 0; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item { grid-template-columns: 1fr; gap: var(--s-12); }
  .project-grid { grid-template-columns: 1fr; }
}

@media (max-width: 479px) {
  .media-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
