:root {
  --orange: #ff5a1f;
  --white: #f4f5f4;
  --muted: #b8bdbe;
  --line: rgba(255,255,255,.18);
  --black: #090b0c;
  --max: 1600px;
  --content-max: 1600px;
  --site-gutter: max(5vw, calc((100vw - var(--content-max)) / 2));
  --content-gutter: var(--site-gutter);
  --header-gutter: var(--site-gutter);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; }
body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Helvetica, Arial, sans-serif;
  letter-spacing: .02em;
}
a { color: inherit; text-decoration: none; }

body > main,
main {
  flex: 1 0 auto;
  width: 100%;
}

.site-header {
  width: 100vw;
  max-width: none;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: auto;
  height: 100px;
  padding: 28px var(--header-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9,11,12,var(--header-bg-opacity, 0));
  backdrop-filter: blur(var(--header-blur, 0px));
  -webkit-backdrop-filter: blur(var(--header-blur, 0px));
  border-bottom: 1px solid rgba(255, 255, 255, calc(var(--header-bg-opacity, 0) * 0.25));
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .18em;
}
.brand-copy strong .tm {
  font-size: .55em;
  vertical-align: super;
  line-height: 0;
  letter-spacing: 0;
  margin-left: .12em;
}
.brand-copy small {
  font-size: 9px;
  letter-spacing: .28em;
  color: #d4d7d7;
}
nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
  font-size: 12px;
  letter-spacing: .12em;
  padding-right: 10px;
}
nav a { opacity: .95; }
nav .nav-cta {
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 7px;
}
nav span, .hero-cta span, .contact a span { margin-left: 0px; font-size: 18px; }

.hero {
  min-height: 760px;
  height: min(82vh, 900px);
  position: relative;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,8,9,.92) 0%, rgba(5,8,9,.62) 32%, rgba(5,8,9,.12) 72%),
    url("assets/hero-forest-fog.jpg") center center / cover no-repeat;
  filter: saturate(.72);
  transform: scale(1.01);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.20), transparent 40%, rgba(0,0,0,.28));
}
.hero-content {
  position: absolute;
  z-index: 2;
  left: var(--site-gutter);
  top: 31%;
  width: min(430px, 36vw);
}
.orange-line {
  width: 35px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 26px;
}
h1 {
  margin: 0;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.27;
  font-weight: 300;
  letter-spacing: .09em;
}
h1 span { display: block; }
h1 .accent { color: var(--orange); }
.hero-content p {
  margin: 30px 0 42px;
  max-width: 370px;
  color: #d1d4d4;
  font-size: 15px;
  line-height: 1.8;
}
.hero-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
}

.services {
  background: #0b0d0e;
  padding: 45px var(--site-gutter) 65px;
}
.section-label {
  color: #9ea4a5;
  font-size: 10px;
  letter-spacing: .22em;
  margin-bottom: 22px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.service {
  min-height: 135px;
  min-width: 0;
  padding: 0 1.5vw 0 0;
}
.service + .service {
  border-left: 1px solid var(--line);
  padding-left: 1.5vw;
}
.icon {
  color: var(--orange);
  font-size: 34px;
  height: 50px;
}
.service h2 {
  font-size: 12px;
  letter-spacing: .19em;
  margin: 4px 0 14px;
}
.service p {
  color: #aeb3b4;
  max-width: 270px;
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.approach {
  padding: 120px var(--site-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: end;
  background: #111415;
}
.approach h2, .contact h2 {
  font-size: clamp(34px, 3.5vw, 66px);
  line-height: .98;
  font-weight: 300;
  letter-spacing: .05em;
  margin: 0;
}
.approach h2 span, .contact h2 span { color: var(--orange); }
.approach > p {
  color: #aeb3b4;
  font-size: 17px;
  line-height: 1.8;
  max-width: 500px;
}

.contact {
  padding: 120px var(--site-gutter);
  background: #080a0b;
}
.contact h2 { margin-bottom: 45px; }
.contact a {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: .12em;
}

.site-footer {
  width: 100vw;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 32px var(--header-gutter) 34px;
  display: grid;
  grid-template-columns: auto minmax(max-content, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  color: #777d7e;
  font-size: 9px;
  letter-spacing: .16em;
}

.footer-brand-link {
  gap: 11px;
}

.footer-brand-link img {
  width: 31px;
  height: 31px;
  filter: grayscale(100%) contrast(1.05);
}

.footer-brand-link .brand-copy {
  gap: 3px;
}

.footer-brand-link .brand-copy strong {
  font-size: 15px;
  letter-spacing: .16em;
}

.footer-brand-link .brand-copy small {
  font-size: 7px;
  letter-spacing: .22em;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: max-content;
}

.footer-meta > span,
.footer-links a {
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  padding-left: 25px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.footer-social a {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: #d7dada;
  transition: color .2s ease, transform .2s ease;
}

.footer-social a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.footer-social img {
  display: block;
  width: 19px;
  height: 19px;
  object-fit: contain;
  opacity: 1;
  visibility: visible;
}


.footer-tagline {
  text-align: right;
  white-space: nowrap;
  color: #a5aaab;
}

.footer-tagline span {
  color: var(--orange);
}

@media (max-width: 1050px) {
  .site-footer {
    grid-template-columns: 1fr auto auto;
  }

  .footer-tagline {
    display: none;
  }
}


/* HEADER — INTERMEDIATE DESKTOP WIDTHS */
/* Keep the full navigation on one line before switching to mobile. */
@media (max-width: 1100px) and (min-width: 851px) {
  .site-header {
    padding-left: 3vw;
    padding-right: 3vw;
    gap: 20px;
  }

  .brand {
    gap: 10px;
    flex: 0 0 auto;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-copy {
    flex: 0 0 auto;
  }

  .brand-copy strong {
    font-size: 20px;
    letter-spacing: .16em;
    white-space: nowrap;
  }

  .brand-copy small {
    font-size: 7.5px;
    letter-spacing: .23em;
    white-space: nowrap;
  }

  .main-nav {
    gap: clamp(14px, 1.7vw, 24px);
    padding-right: 0;
    font-size: 10px;
    letter-spacing: .10em;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
  }

  .main-nav a {
    white-space: nowrap;
  }
}

/* Mobile navigation */
.menu-toggle {
  display: none;
  position: relative;
  z-index: 20;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #cacfd0;

}
.menu-toggle span {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease, top .25s ease;
}
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 26px; }

@media (max-width: 850px) {
  .site-header {
    padding: 20px 6vw;
    height: 72px;
  }
  .menu-toggle { display: block; }
  .site-header .brand { position: relative; z-index: 20; }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    height: calc(100vh - 72px);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    padding: 36px 10vw 60px;
    box-sizing: border-box;
    background: rgba(5, 8, 9, .98);
    font-size: 18px;
    letter-spacing: .14em;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    overflow-y: auto;
  }
  .main-nav a {
    display: block !important;
    opacity: .95;
  }
  .main-nav .nav-cta {
    margin-top: 12px;
    padding-bottom: 9px;
  }
  body.menu-open { overflow: hidden; }
  body.menu-open .site-header {
    background: rgba(5, 8, 9, .98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(255, 255, 255, .12);
  }
  body.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  body.menu-open .menu-toggle span:first-child {
    top: 21px;
    transform: rotate(45deg);
  }
  body.menu-open .menu-toggle span:last-child {
    top: 21px;
    transform: rotate(-45deg);
  }
}

@media (max-width: 850px) {
  .brand-copy strong { font-size: 20px; }
  .hero { height: 720px; }
  .hero-image {
    background:
      linear-gradient(90deg, rgba(5,8,9,.92) 0%, rgba(5,8,9,.68) 58%, rgba(5,8,9,.28)),
      url("assets/hero-forest-fog.jpg") 62% center / cover no-repeat;
  }
  .hero-content {
    left: 7vw;
    top: 14%;
    width: 80vw;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 0;
  }
  .service:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
  .service:nth-child(even) {
    padding-left: 8vw;
  }
  .approach { grid-template-columns: 1fr; padding: 90px 8vw; }
  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 24px;
  }

  .footer-meta {
    grid-column: 1 / -1;
    order: 3;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

 .footer-social {
    justify-self: end;
  }
}

@media (max-width: 520px) {
  .brand-copy small { display: block; font-size: 7px; letter-spacing: .24em; }
  .brand-copy strong { font-size: 18px; }
  h1 { font-size: 37px; }
  .hero { min-height: 700px; }
  .service-grid { grid-template-columns: 1fr; }
  .service, .service + .service {
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .service + .service { border-top: 1px solid var(--line); padding-top: 35px; }
  .approach h2, .contact h2 { font-size: 48px; }

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 7vw;
  }

 .footer-social {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.18);
    padding: 20px 0 0;
    width: 100%;
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
  }

  .footer-meta > span,
  .footer-links a {
    white-space: normal;
  }

  .footer-tagline {
    display: block;
    text-align: left;
    white-space: normal;
    line-height: 1.6;
  }
}


/* --- Home initial viewport composition --- */
@media (min-width: 851px) {
  .hero {
    min-height: 0;
    height: 72vh;
  }
}

/* --- Updated hero / production lockup --- */
.eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.08;
}

.hero-content h1 span {
  white-space: nowrap;
}

.hero-content h1 b {
  color: var(--orange);
  font-weight: 700;
}

.production-card {
  display: block;
  position: relative;
  margin-top: 38px;
  padding: 0 0 0 16px;
  border-left: 2px solid var(--orange);
  width: min(340px, 100%);
}

.production-card .production-label {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  margin-bottom: 8px;
}

.production-card strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .04em;
}

.production-card strong span {
  color: var(--orange);
  margin-left: 12px;
  font-size: 27px;
  display: inline;
}

.production-card small {
  display: block;
  margin-top: 7px;
  color: #d0d3d3;
  font-size: 13px;
  letter-spacing: .02em;
}

.hero-cta {
  display: inline-block;
}

.services-heading {
  text-align: center;
  margin-bottom: 18px;
}

.services-heading .section-label {
  margin-bottom: 8px;
  color: var(--orange);
}

.services-heading h2 {
  margin: 0 0 30px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: .03em;
}

@media (max-width: 1050px) {
  .site-footer {
    grid-template-columns: 1fr auto auto;
  }

  .footer-tagline {
    display: none;
  }
}

@media (max-width: 850px) {
  .hero-content h1 {
    font-size: clamp(38px, 7vw, 56px);
  }
  .production-card {
    margin-top: 24px;
  }
}

@media (max-width: 520px) {
  .hero-content h1 span {
    white-space: normal;
  }
  .hero-content h1 {
    font-size: 38px;
  }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #e6e8e8;
  font-size: 10px;
  letter-spacing: .18em;
  opacity: .9;
  transition: opacity .2s ease;
}

.scroll-cue:hover {
  opacity: 1;
}

.scroll-cue i {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  animation: scrollArrow 1.8s ease-in-out infinite;
}

@keyframes scrollArrow {
  0%, 100% { transform: translateY(-2px) rotate(45deg); }
  50% { transform: translateY(4px) rotate(45deg); }
}

.footer-social a:focus-visible {
  outline: 1px solid var(--orange);
  outline-offset: 5px;
}


/* Cookie information modal — visually aligned with the legal notice */
.cookie-overlay {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
}

.cookie-overlay[hidden] {
  display: none;
}

.cookie-modal {
  position: relative;
  width: min(620px, 100%);
  max-height: min(82vh, 760px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(9, 11, 12, .98);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 20px 70px rgba(0,0,0,.5);
}

.cookie-content {
  padding-bottom: 8px;
}

@media (max-width: 520px) {
  .cookie-overlay {
    padding: 14px;
  }

  .cookie-modal {
    max-height: 88vh;
  }
}


/* =========================================================
   RAY GUN — STUDIO PAGE
   The existing Home header/footer are intentionally reused.
   ========================================================= */

.studio-hero {
  min-height: 0;
  height: 60vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.studio-hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/studio-hero.jpg") center center / cover no-repeat;
  filter: grayscale(.65) saturate(.55) contrast(1.05);
  transform: scale(1.01);
}

.studio-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(5,8,9,.98) 0%,
      rgba(5,8,9,.92) 25%,
      rgba(5,8,9,.34) 61%,
      rgba(5,8,9,.08) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,.18),
      transparent 50%,
      rgba(0,0,0,.42));
}

.studio-hero-content {
  position: absolute;
  z-index: 2;
  left: var(--content-gutter);
  top: 27%;
  
}

.studio-hero-content .orange-line {
  margin-bottom: 26px;
}

.studio-label {
  color: var(--orange);
  margin-bottom: 22px;
}

.studio-hero-content h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.015em;
}

.studio-hero-content h1 span {
  display: block;
  color: var(--orange);
}

.studio-hero-content p {
  margin: 28px 0 0;
  max-width: 390px;
  color: #cfd3d2;
  font-size: 16px;
  line-height: 1.65;
}

.studio-hero-side {
  position: absolute;
  z-index: 2;
  right: var(--content-gutter);
  top: 27%;
  color: #d9dcda;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: .36em;
}


/* LEARNING → PRODUCTION */

.studio-learning {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 42px;
  padding: 44px var(--content-gutter);
  border-bottom: 1px solid var(--line);
  background: #0b0d0e;
}

.studio-learning-copy {
  padding-top: 8px;
}

.studio-learning-copy h2,
.studio-team h2,
.studio-experience h2,
.studio-commitment h2 {
  margin: 0 0 25px;
  font-size: clamp(32px, 3vw, 45px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: .045em;
}

.studio-learning-copy p,
.studio-team-intro p,
.studio-experience-copy > p,
.studio-commitment-copy p {
  color: #b9bdbd;
  font-size: 15px;
  line-height: 1.65;
  max-width: 510px;
}

.studio-learning-copy p + p {
  margin-top: 16px;
}

.studio-link {
  display: inline-block;
  margin-top: 7px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
}

.studio-link span {
  margin-left: 10px;
  font-size: 17px;
}

.studio-learning-image {
  min-height: 285px;
  align-self: start;
  overflow: hidden;
}

.studio-learning-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* TEAM */

.studio-team {
  padding: 40px var(--content-gutter) 48px;
  border-bottom: 1px solid var(--line);
  background: #0b0d0e;
}

.studio-team-header {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 42px;
}

.studio-team-intro {
  padding-top: 7px;
}

.studio-team-intro .studio-link {
  margin-top: 9px;
}

.studio-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.studio-person img {
  display: block;
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}

.studio-person h3 {
  margin: 13px 0 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
}

.studio-person p {
  margin: 0;
  color: #8f9492;
  font-size: 9px;
  letter-spacing: .12em;
}

.studio-person h3::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  margin-top: 9px;
  background: var(--orange);
}


/* EXPERIENCE */

.studio-experience {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 42px;
  align-items: center;
  padding: 34px var(--content-gutter) 38px;
  border-bottom: 1px solid var(--line);
  background: #0b0d0e;
}

.studio-experience h2 {
  margin-bottom: 0;
}

.studio-credits {
  margin-top: 25px;
  width: 100%;
}

.studio-credits img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  opacity: .82;
  filter: grayscale(100%);
}


/* COMMITMENT */

.studio-commitment {
  width: auto;
  margin: 0 var(--content-gutter);
  display: grid;
  grid-template-columns: 38% 34% 28%;
  border-bottom: 1px solid var(--line);
  background: #0b0d0e;
}

.studio-commitment-image {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.studio-commitment-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.06);
  object-position: left center;
}

.studio-commitment-copy {
  padding: 50px 42px;
  min-width: 0;
}

.studio-commitment-copy h2 {
  font-size: clamp(32px, 2.65vw, 42px);
  letter-spacing: .02em;
  overflow-wrap: normal;
}

.studio-commitment-points {
  padding: 50px 42px;
  border-left: 1px solid var(--line);
}

.studio-commitment-points > div {
  position: relative;
  padding: 0 0 18px 28px;
}

.studio-commitment-points b {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-size: 10px;
  letter-spacing: .12em;
}

.studio-commitment-points strong {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.studio-commitment-points p {
  margin: 5px 0 0;
  color: #929795;
  font-size: 11px;
}


/* ACTIVE HEADER LINK */

.site-header nav a.active {
  color: var(--orange);
}


/* COMMITMENT — INTERMEDIATE WIDTHS */
/* Give the central copy enough room before switching to the tablet stack. */
@media (max-width: 1050px) and (min-width: 851px) {
  .studio-commitment {
    grid-template-columns: 38% 40% 22%;
  }

  .studio-commitment-copy {
    padding: 50px 30px;
  }

  .studio-commitment-copy h2 {
    font-size: clamp(28px, 3.1vw, 38px);
    line-height: 1.02;
    overflow-wrap: normal;
    word-break: normal;
  }

  .studio-commitment-points {
    padding: 50px 24px;
  }
}

/* TABLET */

@media (max-width: 850px) {
  .studio-hero {
    min-height: 720px;
    height: 720px;
  }

  .studio-hero-image {
    background-position: left center;
  }

  .studio-hero-content {
    left: 7vw;
    top: 27%;
    width: 80vw;
  }

  .studio-hero-side {
    right: 7vw;
    top: 19%;
  }

  .studio-learning,
  .studio-team-header,
  .studio-experience {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .studio-team {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .studio-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 15px;
  }

  .studio-commitment {
    grid-template-columns: 1fr;
  }

  .studio-commitment-points {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 35px 8vw;
  }

  .studio-commitment-copy {
    padding: 42px 8vw;
  }
}


/* MOBILE */

@media (max-width: 520px) {
  .studio-hero {
    min-height: 700px;
    height: 700px;
  }

  .studio-hero-side {
    display: none;
  }

  .studio-hero-content {
    left: 7vw;
    top: 25%;
    width: 86vw;
  }

  .studio-hero-content h1 {
    font-size: 42px;
  }

  .studio-learning,
  .studio-team,
  .studio-experience {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .studio-team-grid {
    grid-template-columns: 1fr;
  }

}

/* Language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 12px;
  font-size: 10px;
  letter-spacing: .14em;
  white-space: nowrap;
}
.lang-switch a {
  color: #fff;
  text-decoration: none;
  opacity: 1;
}
.lang-switch a.lang-current {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  pointer-events: none;
  cursor: default;

  opacity: .65;
  pointer-events: none;
  cursor: default;
}
@media (max-width: 850px) {
  .lang-switch {
    margin: 20px 0 0;
    font-size: 12px;
  }
}


/* Legal notice modal */
.legal-overlay {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
}

.legal-overlay[hidden] {
  display: none;
}

.legal-modal {
  position: relative;
  width: min(760px, 100%);
  max-height: min(82vh, 760px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(9, 11, 12, .98);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 20px 70px rgba(0,0,0,.5);
}

.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.legal-modal-header strong {
  color: var(--orange);
  font-size: 10px;
  letter-spacing: .18em;
}

.legal-close {
  border: 0;
  background: transparent;
  color: #c6cbcb;
  font-size: 25px;
  line-height: 1;
  padding: 0 2px;
  cursor: pointer;
}

.legal-close:hover {
  color: var(--orange);
}

.legal-content {
  overflow-y: auto;
  padding: 24px 26px 10px;
  color: #c6cbcb;
  font-size: 12px;
  line-height: 1.7;
}

.legal-content p {
  margin: 0 0 17px;
}

.legal-content ul {
  margin: 0 0 22px;
  padding-left: 19px;
}

.legal-content li {
  margin-bottom: 5px;
}

.legal-content h3 {
  margin: 24px 0 8px;
  color: #f0f2f2;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.legal-content strong {
  color: #f0f2f2;
}

.legal-content a {
  color: var(--orange);
}

.legal-ok {
  align-self: flex-end;
  margin: 0 20px 20px;
  border: 1px solid var(--orange);
  background: transparent;
  color: var(--orange);
  padding: 9px 15px;
  font: inherit;
  font-size: 9px;
  letter-spacing: .16em;
  cursor: pointer;
}

.legal-ok:hover {
  background: var(--orange);
  color: #090b0c;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .legal-overlay {
    padding: 14px;
  }

  .legal-modal {
    max-height: 88vh;
  }

  .legal-content {
    padding: 20px 18px 8px;
    font-size: 11px;
  }

  .legal-ok {
    margin: 0 14px 14px;
  }
}


/* SERVICES PAGE refinements */
.services-capability h3 { max-width: 620px; }
.services-capability { min-width: 0; }
@media (min-width: 851px) and (max-width: 1100px) {
  .services-page-hero, .services-page-process-head { gap: 6vw; }
  .services-capability h3 { font-size: clamp(20px, 1.9vw, 30px); }
}

/* SERVICES PAGE */
.services-page-hero {
  min-height: 720px;
  padding: 180px var(--site-gutter) 120px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: 8vw;
  background: #090b0c;
}
.services-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,8,9,.94) 0%, rgba(5,8,9,.78) 42%, rgba(5,8,9,.45) 100%),
    url("assets/hero-forest-fog.jpg") center / cover no-repeat;
  filter: saturate(.55);
  opacity: .62;
  transform: scale(1.02);
}
.services-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, var(--black));
}
.services-page-hero > * { position: relative; z-index: 2; }
.services-page-line {
  margin-bottom: 26px;
}
.services-page-kicker {
  color: var(--orange);
  margin-bottom: 22px;
}
.services-page-hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.015em;
}
.services-page-hero h1 span {
  display: block;
  color: var(--orange);
}
.services-page-hero h1 .accent { color: var(--orange); }
.services-page-hero-copy {
  max-width: 540px;
  padding-bottom: 8px;
}
.services-page-hero-copy p {
  margin: 0;
  color: #d0d4d4;
  font-size: 17px;
  line-height: 1.8;
  max-width: 510px;
}
.services-page-intro {
  padding: 110px var(--site-gutter) 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  border-top: 1px solid var(--line);
}
.services-page-intro h2,
.services-page-process h2,
.services-page-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 68px);
  line-height: .98;
  font-weight: 300;
  letter-spacing: .04em;
}
.services-page-intro h2 span,
.services-page-cta h2 span { color: var(--orange); }
.services-page-intro-copy p {
  margin: 0;
  color: #b9bfc0;
  font-size: 16px;
  line-height: 1.85;
  max-width: 570px;
}
.services-capabilities {
  padding: 0 var(--site-gutter) 110px;
}
.services-capabilities-header {
  padding: 0 0 35px;
  border-bottom: 1px solid var(--line);
}
.services-capabilities-header h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300;
  letter-spacing: .05em;
}
.services-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.services-capability {
  min-height: 330px;
  padding: 42px 7vw 45px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.services-capability:nth-child(even) {
  padding-left: 5vw;
  padding-right: 2vw;
  border-left: 1px solid var(--line);
}
.services-capability-number {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: .16em;
  margin-bottom: 55px;
}
.services-capability h3 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: .05em;
}
.services-capability p {
  margin: 0;
  max-width: 510px;
  color: #aeb3b4;
  font-size: 14px;
  line-height: 1.8;
}
.services-capability-tags {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.services-capability-tags span {
  color: #777e7f;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.services-page-process {
  padding: 110px var(--site-gutter);
  background: #111415;
}
.services-page-process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  margin-bottom: 70px;
}
.services-page-process-head p {
  margin: 46px 0 0;
  color: #aeb3b4;
  font-size: 16px;
  line-height: 1.8;
  max-width: 530px;
}
.services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.services-process-step {
  min-height: 210px;
  padding: 0 35px 0 0;
}
.services-process-step + .services-process-step {
  border-left: 1px solid var(--line);
  padding-left: 35px;
}
.services-process-step b {
  display: block;
  color: var(--orange);
  font-size: 10px;
  letter-spacing: .18em;
  margin-bottom: 35px;
}
.services-process-step h3 {
  margin: 0 0 13px;
  font-size: 13px;
  letter-spacing: .16em;
}
.services-process-step p {
  margin: 0;
  color: #9ea4a5;
  font-size: 12px;
  line-height: 1.7;
}
.services-page-cta {
  padding: 125px var(--site-gutter) 135px;
  border-top: 1px solid var(--line);
}
.services-page-cta .section-label { color: var(--orange); }
.services-page-cta h2 { margin-bottom: 42px; }
.services-page-cta > p {
  max-width: 610px;
  color: #aeb3b4;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 35px;
}
.services-page-cta a {
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 8px;
}

@media (max-width: 850px) {
  .services-page-hero {
    min-height: 650px;
    padding: 150px var(--site-gutter) 80px;
    display: block;
  }
  .services-page-hero-copy { margin-top: 55px; }
  .services-page-intro,
  .services-page-process-head { grid-template-columns: 1fr; gap: 45px; }
  .services-page-process-head p { margin-top: 0; }
  .services-capability-grid { grid-template-columns: 1fr; }
  .services-capability,
  .services-capability:nth-child(even) {
    min-height: auto;
    padding: 38px 0 45px;
    border-left: 0;
  }
  .services-capability-number { margin-bottom: 32px; }
  .services-process-grid { grid-template-columns: 1fr 1fr; }
  .services-process-step { padding: 0 25px 45px 0; }
  .services-process-step + .services-process-step { padding-left: 25px; }
}

@media (max-width: 520px) {
  .services-page-hero h1 { font-size: clamp(40px, 13vw, 58px); }
  .services-page-intro { padding-top: 80px; padding-bottom: 70px; }
  .services-capabilities { padding-bottom: 75px; }
  .services-page-process { padding-top: 80px; padding-bottom: 75px; }
  .services-process-grid { grid-template-columns: 1fr; }
  .services-process-step,
  .services-process-step + .services-process-step { border-left: 0; padding-left: 0; padding-right: 0; padding-bottom: 42px; }
  .services-page-cta { padding-top: 85px; padding-bottom: 95px; }
}


.services-link {
  margin-top: 28px;
}
.services-link a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .25s ease;
}
.services-link a span {
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}
.services-link a:hover {
  opacity: .72;
}


.service-number {
  display: block;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .12em;
}
.service-number + h2 {
  margin-top: 0;
}


@media (max-width: 850px) {
  .service-number {
    margin-bottom: 18px;
  }
}


.services-capability:nth-child(5) {
  border-left: 0;
  padding-left: 0;
}

@media (min-width: 551px) and (max-width: 850px) {
  .service:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
  .service:nth-child(even) {
    padding-left: 8vw;
  }
}

@media (max-width: 550px) {
  .service {
    border-left: 0 !important;
    padding-left: 0 !important;
  }
}


.philosophy-toggle .philosophy-label {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  margin-left: 0;
}


/* CONTACT PAGE */
.contact-page {
  min-height: 100vh;
}

.contact-page-main {
  padding-top: 0;
}

.contact-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.contact-hero-copy {
  position: absolute;
  z-index: 2;
  left: var(--content-gutter);
  top: 28%;
  width: min(560px, 34vw);
}

.contact-page-line {
  margin-bottom: 26px;
}

.contact-label {
  color: var(--orange);
  margin-bottom: 24px;
  font-weight: 600;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.015em;
}

.contact-hero h1 span { display: inline; color: var(--orange); }

.contact-intro {
  margin: 28px 0 48px;
  color: #cfd3d2;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .01em;
}

.contact-hero-details { max-width: 410px; }

.contact-hero-detail {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 6px;
}

.contact-hero-detail:first-child { border-top: 1px solid var(--line); }
.contact-hero-detail span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}
.contact-hero-detail a,
.contact-hero-detail strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
}
.contact-hero-detail a:hover { color: var(--orange); }

/* Full-bleed cinematic background, matching the Studio hero behaviour. */
.contact-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/contact-hero.jpg") left center / 120% auto no-repeat;
  filter: saturate(.78) contrast(1.03);
  transform: scale(1.01);
}

.contact-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(5,8,9,.84) 0%,
      rgba(5,8,9,.78) 24%,
      rgba(5,8,9,.55) 34%,
      rgba(5,8,9,.20) 52%,
      rgba(5,8,9,.05) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,.18) 0%,
      transparent 50%,
      rgba(0,0,0,.42) 100%);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 48px var(--site-gutter) 58px;
  background: #080a0b;
}

.contact-detail-card { min-height: 165px; padding: 0 4.2vw 0 0; }
.contact-detail-card + .contact-detail-card {
  border-left: 1px solid var(--line);
  padding-left: 4.2vw;
  padding-right: 3vw;
}
.contact-number {
  display: block;
  color: var(--orange);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: .12em;
}
.contact-detail-card h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
}
.contact-detail-card p {
  margin: 0 0 22px;
  max-width: 320px;
  color: #aeb3b4;
  font-size: 13px;
  line-height: 1.65;
}
.contact-detail-card a {
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
}
.contact-detail-card > strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}
.contact-detail-card a span {
  color: var(--white);
  margin-left: 8px;
  font-size: 18px;
}
.contact-detail-card a:hover { color: var(--white); }
.contact-detail-card a:hover span { color: var(--white); }

/* TABLET — same breakpoint and visual logic as Studio. */
@media (max-width: 850px) {
  .contact-hero {
    min-height: 650px;
  }

  .contact-hero-visual {
    background-position: 58% center;
    background-size: cover;
  }

  .contact-hero-copy {
    left: 7vw;
    top: 27%;
    width: 80vw;
  }

  .contact-intro {
    max-width: 430px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 42px 8vw 50px;
  }

  .contact-detail-card,
  .contact-detail-card + .contact-detail-card {
    min-height: auto;
    padding: 0 0 34px;
    border-left: 0;
  }

  .contact-detail-card + .contact-detail-card {
    padding-top: 34px;
    border-top: 1px solid var(--line);
  }
}

/* MOBILE — follows Studio's 520px layout. */
@media (max-width: 520px) {
  .contact-hero {
    min-height: 700px;
  }

  .contact-hero-visual {
    background-position: 58% center;
    background-size: cover;
  }

  .contact-hero-copy {
    left: 7vw;
    top: 25%;
    width: 86vw;
  }

  .contact-page-line {
    margin-bottom: 20px;
  }

  .contact-label {
    margin-bottom: 20px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-intro {
    font-size: 16px;
    margin: 22px 0 36px;
  }

  .contact-hero-details {
    max-width: 100%;
  }

  .contact-hero-detail {
    padding: 14px 0;
  }
}


/* CONTACT HERO — reference composition */
.contact-hero-copy {
  top: 23%;
  width: min(470px, 34vw);
}
.contact-label { margin-bottom: 22px; }
.contact-intro {
  margin: 28px 0 38px;
  max-width: 430px;
  font-size: 17px;
  line-height: 1.65;
}
.contact-hero-details-ref { max-width: 410px; }
.contact-hero-details-ref .contact-hero-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 13px 0;
  border: 0;
}
.contact-hero-details-ref .contact-hero-detail:first-child { border-top: 0; }
.contact-hero-details-ref .contact-hero-detail span {
  color: #d8dcdb;
  font-size: 10px;
  letter-spacing: .16em;
}
.contact-hero-details-ref .contact-hero-detail a,
.contact-hero-details-ref .contact-hero-detail strong {
  font-size: 16px;
}
.contact-get-in-touch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 315px;
  max-width: 100%;
  margin-top: 24px;
  padding: 18px 20px 17px;
  border: 1px solid rgba(255,255,255,.55);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-decoration: none;
}
.contact-get-in-touch span {
  color: var(--orange);
  font-size: 20px;
  line-height: 1;
}
.contact-get-in-touch:hover {
  border-color: var(--orange);
  color: var(--white);
}
.contact-hero-visual {
  background-size: 118% auto;
  background-position: center center;
  filter: saturate(.9) contrast(1.02) brightness(1.05);
}
.contact-hero-visual::before {
  background:
    linear-gradient(90deg,
      rgba(5,8,9,.55) 0%,
      rgba(5,8,9,.42) 23%,
      rgba(5,8,9,.22) 34%,
      rgba(5,8,9,.05) 52%,
      rgba(5,8,9,.02) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,.04) 0%,
      transparent 52%,
      rgba(0,0,0,.16) 100%);
}
@media (max-width: 850px) {
  .contact-hero-copy { top: 25%; width: 78vw; }
  .contact-hero h1 { font-size: clamp(50px, 8vw, 72px); }
  .contact-hero-visual { background-position: 62% center; background-size: cover; }
}
@media (max-width: 520px) {
  .contact-hero-copy { top: 23%; width: 86vw; }
  .contact-hero h1 { font-size: 42px; }
  .contact-intro { font-size: 16px; margin: 22px 0 30px; }
  .contact-get-in-touch { width: 100%; }
  .contact-hero-visual { background-position: 62% center; }
}


/* CONTACT HERO — desktop first-screen height */
@media (min-width: 851px) {
  .contact-hero {
    min-height: 0;
    height: 60vh;
  }

  /* Keep the contact copy slightly lower within the 60vh hero. */
  .contact-hero-copy {
    top: 23%;
  }
}

/* CONTACT HERO — final background framing */
@media (min-width: 851px) {
  .contact-hero-visual {
    background-size: 106% auto !important;
    background-position: 34% 44% !important;
  }
}
@media (max-width: 850px) {
  .contact-hero-visual {
    background-size: cover !important;
    background-position: 62% center !important;
  }
}


/* CONTACT HERO — responsive full-bleed fix */
@media (min-width: 851px) {
  .contact-hero {
    min-height: 0;
    height: 60vh;
  }

  .contact-hero-visual {
    inset: 0;
    background-size: cover !important;
    background-position: 30% 40% !important;
  }
}

@media (max-width: 850px) {
  .contact-hero {
    min-height: 650px;
  }

  .contact-hero-visual {
    inset: 0;
    background-size: cover !important;
    background-position: 62% center !important;
  }
}

@media (max-width: 520px) {
  .contact-hero {
    min-height: 700px;
  }

  .contact-hero-visual {
    background-size: cover !important;
    background-position: 62% center !important;
  }
}


/* STUDIO HERO — responsive full-bleed fix */
@media (min-width: 851px) {
  .studio-hero::before,
  .studio-hero .studio-hero-image,
  .studio-hero .hero-image {
    background-size: cover !important;
  }
}

@media (max-width: 850px) {
  .studio-hero {
    min-height: 650px;
  }

  .studio-hero::before,
  .studio-hero .studio-hero-image,
  .studio-hero .hero-image {
    background-size: cover !important;
  }
}

@media (max-width: 520px) {
  .studio-hero {
    min-height: 700px;
  }
}


/* PROJECTS PAGE */
.projects-page {
  min-height: calc(100vh - 100px);
}

.projects-page-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 var(--content-gutter) 110px;
}

.projects-page-head {
  position: relative;
  width: 100vw;
  height: 45vh;
  min-height: 400px;
  margin-left: calc(var(--content-gutter) * -1);
  margin-bottom: 70px;
  padding: 0 var(--content-gutter);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.projects-page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #050809;
  transform: none;
}

.projects-page-head > * {
  position: relative;
  z-index: 2;
}

.projects-page-hero-content {
  position: absolute;
  top: 31%;
  left: var(--content-gutter);
  width: min(900px, 72vw);
}

.projects-page-line {
  margin-bottom: 26px;
}

.projects-page-kicker {
  color: var(--orange);
  margin-bottom: 22px;
}

.projects-page-head h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.015em;
}

.projects-page-head h1 span {
  display: block;
  color: var(--orange);
}


.projects-list {
  border-top: 1px solid var(--line);
}

.project-row {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(250px, 1fr) 1px minmax(360px, 1.35fr);
  align-items: center;
  column-gap: 24px;
  min-height: 128px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: background .25s ease;
}

.project-row:hover {
  background: rgba(255,255,255,.018);
}

.project-number {
  align-self: start;
  padding-top: 27px;
  font-size: 11px;
  letter-spacing: .16em;
  color: #b8bdbe;
}

.project-name {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: .17em;
  white-space: nowrap;
}

.project-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.28);
}

.project-info {
  display: grid;
  grid-template-columns: minmax(160px, .7fr) minmax(220px, 1fr);
  align-items: center;
  gap: 26px;
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-status i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
  background: var(--orange);
  flex: 0 0 auto;
}

.project-status.status-development {
  color: #8f9596;
}

.project-status.status-development i {
  background: #8f9596;
}

.project-status.status-production {
  color: var(--orange);
}

.project-description {
  max-width: 390px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: .08em;
  color: #aeb3b4;
}



.projects-cta {
  margin-top: 100px;
  padding: 42px 0 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 60px;
  align-items: end;
}

.projects-cta-copy {
  display: grid;
  gap: 14px;
}

.projects-cta-label {
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8f9596;
}

.projects-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .95;
  font-weight: 400;
  letter-spacing: .02em;
}

.projects-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.projects-cta-action p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .08em;
  color: #aeb3b4;
}

.projects-cta-action a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--orange);
  transition: color .2s ease, border-color .2s ease;
}

.projects-cta-action a span {
  color: var(--white);
  font-size: 16px;
  line-height: 1;
}

.projects-cta-action a:hover {
  color: var(--white);
  border-color: var(--white);
}


@media (max-width: 1100px) {
  .projects-page-main {
    padding-top: 0;
  }

  .project-row {
    grid-template-columns: 45px minmax(220px, 1fr) 1px minmax(330px, 1.2fr);
    column-gap: 18px;
  }

  .projects-cta {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
    gap: 40px;
  }

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

@media (max-width: 850px) {
  .projects-page-main {
    padding: 0 6vw 80px;
  }

  .projects-page-head {
    height: 55vh;
    min-height: 430px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
  }

  .projects-page-hero-content {
    top: 33%;
    left: 6vw;
    width: 88vw;
  }

  .projects-cta {
    margin-top: 70px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .projects-page-head h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .project-row {
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-areas:
      "number name"
      ". info";
    column-gap: 14px;
    row-gap: 10px;
    padding: 24px 0;
    min-height: 0;
  }

  .project-number {
    grid-area: number;
    padding-top: 3px;
  }

  .project-name {
    grid-area: name;
    font-size: 25px;
    white-space: normal;
    letter-spacing: .12em;
  }

  .project-divider {
    display: none;
  }

  .project-info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .project-description {
    max-width: 520px;
    font-size: 11px;
  }


}

@media (max-width: 520px) {
  .projects-page-main {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .projects-page-hero-content {
    top: 33%;
    left: 6vw;
    width: 88vw;
  }

  .projects-page-kicker {
    margin-bottom: 18px;
  }

}

/* =========================================================
   RAIL GUN — GLOBAL HERO HEIGHT STANDARDIZATION
   All top/hero blocks use Contact as the reference height.
   ========================================================= */
@media (min-width: 851px) {
  .hero,
  .studio-hero,
  .services-page-hero,
  .projects-page-head,
  .contact-hero {
    min-height: 0;
    height: 60vh;
  }
}

@media (max-width: 850px) {
  .hero,
  .studio-hero,
  .services-page-hero,
  .projects-page-head,
  .contact-hero {
    min-height: 650px;
    height: 650px;
  }
}

@media (max-width: 520px) {
  .hero,
  .studio-hero,
  .services-page-hero,
  .projects-page-head,
  .contact-hero {
    min-height: 700px;
    height: 700px;
  }
}

/* HOME — first block viewport composition */
@media (min-width: 851px) {
  .hero {
    min-height: 0;
    height: 72vh;
  }
}

/* HOME — compact desktop / tablet composition
   Keeps the 72vh hero while moving the content upward on narrower screens
   so the production lockup remains fully visible above the fold. */
@media (min-width: 851px) and (max-width: 1100px) {
  .hero-content {
    top: 18%;
    left: 7vw;
    width: 62vw;
  }

  .hero-content h1 {
    font-size: clamp(40px, 4.8vw, 56px);
  }

  .hero-content p {
    margin: 24px 0 34px;
    max-width: 390px;
  }

  .production-card {
    margin-top: 28px;
  }
}

/* --- Home desktop viewport balance --- */
@media (min-width: 1101px) {
  .hero {
    height: 72vh;
    min-height: 0;
  }

  .hero-content {
    top: 20%;
  }

  .services {
    min-height: 28vh;
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .services-heading {
    margin-bottom: 8px;
  }

  .services-heading h2 {
    margin-bottom: 15px;
  }

  .service {
    min-height: 90px;
  }

  .service-number {
    margin-bottom: 16px;
  }

  .service h2 {
    margin-bottom: 10px;
  }

  .services-link {
    margin-top: 12px;
  }
}


/* PROJECTS CTA — match the lighter section-heading style */
.projects-cta h2 {
  font-weight: 300;
  letter-spacing: .04em;
}
