@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilmer";
  src: url("./assets/fonts/Gilmer Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilmer";
  src: url("./assets/fonts/Gilmer Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ece5db;
  --shell: #13161b;
  --shell-2: #181c22;
  --shell-3: #222830;
  --cream: #f7f0e7;
  --cream-2: #efe7dd;
  --text: #f3eee9;
  --text-dark: #1e1c1d;
  --muted: rgba(243, 238, 233, 0.78);
  --muted-soft: rgba(243, 238, 233, 0.56);
  --muted-dark: rgba(30, 28, 29, 0.72);
  --muted-dark-soft: rgba(30, 28, 29, 0.48);
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(30, 28, 29, 0.1);
  --mint: #00cc8d;
  --violet: #5b00a9;
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --shadow-shell: 0 26px 80px rgba(19, 22, 27, 0.2);
  --header-left: 48px;
  --header-right: 28px;
  --hero-left: 48px;
  --font-ui: "Poppins", "Segoe UI", sans-serif;
  --font-display: "Gilmer", "Trebuchet MS", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(0, 204, 141, 0.06), transparent 24%),
    radial-gradient(circle at bottom right, rgba(91, 0, 169, 0.09), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

a,
button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.page {
  padding: 18px;
}

.site-shell {
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: var(--shell);
  box-shadow: var(--shadow-shell);
}

.section-dark,
.section-light,
.site-footer,
.cta-strip,
.hero,
.site-header,
.section-tabs {
  position: relative;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 216px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px var(--header-right) 0 var(--header-left);
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.brand-lockup {
  width: 188px;
  max-width: 100%;
}

.brand-lockup--light {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.brand-lockup--footer {
  width: 190px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  min-width: 0;
}

.site-nav a,
.inline-link,
.pill-link,
.cta-strip a,
.site-footer a,
.mobile-cta-bar a,
.section-tab,
.tab-button {
  text-decoration: none;
  letter-spacing: 0.16em;
  font-size: 10px;
}

.site-nav a {
  position: relative;
  padding-bottom: 10px;
  color: rgba(243, 238, 233, 0.84);
  text-transform: uppercase;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--mint);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  justify-self: end;
}

.header-mail {
  color: rgba(243, 238, 233, 0.76);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero {
  min-height: 740px;
  padding: 154px var(--header-right) 38px;
  display: grid;
  align-items: end;
  background: var(--shell);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 15, 19, 0.92) 0%, rgba(13, 15, 19, 0.78) 26%, rgba(13, 15, 19, 0.18) 56%, rgba(13, 15, 19, 0.78) 100%),
    linear-gradient(180deg, rgba(13, 15, 19, 0.24) 0%, rgba(13, 15, 19, 0.08) 34%, rgba(13, 15, 19, 0.76) 100%);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(13, 15, 19, 0), rgba(13, 15, 19, 0.54));
}

.hero-content,
.hero-pagination {
  position: relative;
  z-index: 1;
}

.hero-content {
  min-width: 0;
  width: min(560px, 100%);
  padding: 28px 0 20px var(--hero-left);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.eyebrow--dark {
  color: var(--muted-dark-soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.hero h1 span {
  color: var(--mint);
}

.hero-text,
.section-text,
.founder-text,
.review-card p,
.case-note__body p,
.team-card__body p,
.detail-card p {
  line-height: 1.68;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 28px;
  align-items: center;
}

.hero-reel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hero-reel__text {
  color: rgba(243, 238, 233, 0.8);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-reel__button {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 28px;
  line-height: 1;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 2px solid rgba(0, 204, 141, 0.8);
  text-transform: uppercase;
}

.inline-link::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.inline-link--small {
  font-size: 9px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(243, 238, 233, 0.96);
  background: rgba(255, 255, 255, 0.04);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-pagination {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 6px;
  color: rgba(243, 238, 233, 0.88);
  font-size: 22px;
}

.hero-pagination__line {
  width: 58px;
  height: 1px;
  background: rgba(243, 238, 233, 0.52);
}

.hero-pagination .is-muted {
  color: rgba(243, 238, 233, 0.42);
}

.hero-bridge {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: linear-gradient(90deg, rgba(19, 22, 27, 0.98), rgba(24, 28, 34, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-bridge__item {
  padding: 22px 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-bridge__item:last-child {
  border-right: 0;
}

.hero-bridge__label {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(243, 238, 233, 0.54);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-bridge__item p {
  margin: 0;
  max-width: 30ch;
  color: rgba(243, 238, 233, 0.82);
  line-height: 1.65;
}

.section-tabs {
  position: sticky;
  top: 0;
  z-index: 9;
  display: flex;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(19, 22, 27, 0.84);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}

.section-tabs::-webkit-scrollbar {
  display: none;
}

.section-tab {
  white-space: nowrap;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(243, 238, 233, 0.8);
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.section-tab.is-active {
  background: linear-gradient(90deg, rgba(0, 204, 141, 0.16), rgba(91, 0, 169, 0.18));
  border-color: rgba(0, 204, 141, 0.24);
  color: white;
}

.section-dark,
.section-light,
.site-footer {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.section-dark {
  background: var(--shell-2);
}

.section-light,
.site-footer {
  background: var(--cream);
  color: var(--text-dark);
}

.section-intro {
  min-width: 0;
  padding: 28px 20px 26px 34px;
}

.section-intro h2 {
  font-size: 30px;
  line-height: 1.05;
}

.section-text {
  margin: 14px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
  max-width: 28ch;
}

.section-text--light {
  color: rgba(243, 238, 233, 0.72);
}

.project-grid,
.cases-grid,
.process-grid,
.reviews-grid {
  display: grid;
  min-width: 0;
}

.project-showcase__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.project-nav {
  display: flex;
  gap: 8px;
}

.project-nav__button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 238, 233, 0.82);
  font-size: 22px;
  line-height: 1;
}

.project-showcase {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 28vw);
  gap: 14px;
  overflow-x: auto;
  padding: 18px 12px 18px 0;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.project-showcase::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--shell-3);
  scroll-snap-align: start;
  border-radius: 12px;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, rgba(19, 22, 27, 0), rgba(19, 22, 27, 0.86));
}

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

.project-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 20px 18px 18px;
}

.project-type {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(243, 238, 233, 0.62);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.project-card h3,
.case-note__body h3,
.founder-card h3,
.process-card h3,
.team-card__body h3,
.detail-card h3,
.fact-card strong {
  font-size: 14px;
}

.project-card h3 {
  color: var(--text);
}

.project-card p {
  margin: 10px 0 0;
  color: rgba(243, 238, 233, 0.74);
  line-height: 1.62;
  font-size: 13px;
}

.project-card--featured {
  grid-column: span 2;
  grid-auto-columns: auto;
  min-width: min(520px, 44vw);
}

.tab-shell {
  padding: 22px 18px 22px 0;
}

.tab-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab-strip--dark {
  margin-top: 8px;
}

.tab-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(30, 28, 29, 0.12);
  background: rgba(255, 255, 255, 0.52);
  color: rgba(30, 28, 29, 0.74);
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.tab-button--dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 238, 233, 0.78);
}

.tab-button.is-active {
  background: linear-gradient(90deg, rgba(0, 204, 141, 0.16), rgba(91, 0, 169, 0.16));
  border-color: rgba(0, 204, 141, 0.24);
  color: var(--text-dark);
}

.tab-button--dark.is-active {
  color: white;
}

.tab-panel[hidden] {
  display: none;
}

.detail-card,
.about-studio,
.team-grid,
.founders-grid--tabs {
  min-width: 0;
}

.detail-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 16px 36px rgba(19, 22, 27, 0.05);
  padding: 22px 22px 20px;
}

.detail-card h3 {
  font-size: 30px;
  line-height: 1.08;
  margin-bottom: 10px;
}

.detail-card p {
  margin: 0 0 16px;
  color: var(--muted-dark);
  max-width: 58ch;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(30, 28, 29, 0.76);
}

.detail-list li {
  padding-left: 2px;
}

.cases-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 18px 22px 0;
}

.case-note {
  overflow: hidden;
  border: 1px solid rgba(30, 28, 29, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 16px 36px rgba(19, 22, 27, 0.06);
}

.case-note__image {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
}

.case-note__body {
  padding: 18px 18px 20px;
}

.case-note__body p {
  margin: 10px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.case-meta li {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(30, 28, 29, 0.1);
  color: rgba(30, 28, 29, 0.65);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-studio {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 18px;
}

.about-statement {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  padding: 22px;
}

.about-statement p {
  margin: 0;
  max-width: 56ch;
  color: rgba(243, 238, 233, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

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

.about-facts {
  display: grid;
  gap: 12px;
}

.fact-card {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 110px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.fact-card strong {
  font-family: var(--font-display);
  font-size: 30px;
  color: white;
}

.fact-card span {
  color: rgba(243, 238, 233, 0.7);
  line-height: 1.55;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.founder-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) 1fr;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
}

.founder-media-frame,
.team-card__media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at top left, rgba(0, 204, 141, 0.16), transparent 44%),
    radial-gradient(circle at bottom right, rgba(91, 0, 169, 0.14), transparent 48%),
    #101318;
}

.founder-media-frame::after,
.team-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14, 16, 20, 0.1), rgba(14, 16, 20, 0.55)),
    linear-gradient(90deg, rgba(14, 16, 20, 0.08), rgba(14, 16, 20, 0.18));
}

.founder-media {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.22) brightness(0.88);
  transform: scale(1.035);
  transform-origin: center top;
}

.founder-body {
  padding: 22px 20px 20px;
}

.founder-role {
  margin: 8px 0 14px;
  color: var(--mint);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-text {
  margin: 0;
  color: rgba(243, 238, 233, 0.74);
  font-size: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2) brightness(0.84);
  transform: scale(1.03);
  transform-origin: center;
}

.team-card__body {
  padding: 16px 16px 18px;
}

.team-card__body h3 {
  color: white;
  font-size: 22px;
  line-height: 1.12;
}

.team-card__body p {
  margin: 10px 0 0;
  color: rgba(243, 238, 233, 0.72);
  font-size: 14px;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-right: 12px;
}

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

.process-card {
  padding: 26px 20px 24px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.process-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.process-card p {
  margin: 10px 0 0;
  color: rgba(243, 238, 233, 0.72);
  font-size: 13px;
  line-height: 1.66;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-right: 12px;
}

.review-card {
  padding: 22px 18px 20px;
  border-left: 1px solid var(--line-dark);
}

.quote-mark {
  display: inline-block;
  color: var(--violet);
  font-size: 34px;
  line-height: 1;
}

.review-card p {
  margin: 8px 0 14px;
  color: rgba(30, 28, 29, 0.76);
  font-size: 14px;
}

.review-card strong {
  color: rgba(30, 28, 29, 0.88);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 0 18px 24px 34px;
  background: var(--cream);
  color: var(--text-dark);
}

.contact-column {
  padding: 28px 18px 0 0;
}

.newsletter-form,
.contact-form {
  display: grid;
  gap: 12px;
}

.newsletter-form {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 24px;
  align-items: end;
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
}

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

.newsletter-form span,
.contact-form span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(30, 28, 29, 0.58);
}

.newsletter-form input,
.newsletter-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(30, 28, 29, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--text-dark);
  resize: vertical;
  appearance: none;
}

.newsletter-form button,
.contact-submit {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: linear-gradient(90deg, rgba(0, 204, 141, 0.92), rgba(91, 0, 169, 0.84));
  color: white;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form__full {
  grid-column: 1 / -1;
}

.contact-submit {
  justify-self: start;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 10px 0 0;
  min-height: 22px;
  color: rgba(30, 28, 29, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.form-status.is-error {
  color: #9b1c1c;
}

.form-status.is-success {
  color: #0b7a57;
}

.form-status--contact {
  grid-column: 2;
  margin-top: 8px;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 34px;
  background: linear-gradient(90deg, rgba(0, 204, 141, 0.82), rgba(91, 0, 169, 0.84));
}

.cta-strip p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.site-footer {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px 34px 28px;
  background: var(--cream-2);
}

.footer-brand p {
  margin: 10px 0 0;
  max-width: 42ch;
  color: var(--muted-dark);
  line-height: 1.64;
  font-size: 14px;
}

.footer-meta {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.footer-meta a {
  color: var(--text-dark);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(30, 28, 29, 0.12);
  color: rgba(30, 28, 29, 0.72);
  background: rgba(255, 255, 255, 0.44);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mobile-cta-bar {
  position: sticky;
  bottom: 0;
  z-index: 20;
  display: none;
  padding: 10px 14px 14px;
  background: linear-gradient(180deg, rgba(236, 229, 219, 0), rgba(236, 229, 219, 0.94) 40%);
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 204, 141, 0.92), rgba(91, 0, 169, 0.84));
  color: white;
  font-size: 11px;
}

@media (max-width: 1220px) {
  :root {
    --header-left: 28px;
    --header-right: 28px;
    --hero-left: 28px;
  }

  .site-header {
    grid-template-columns: minmax(0, 178px) minmax(0, 1fr) auto;
    gap: 18px;
  }

  .brand-lockup {
    width: 178px;
  }

  .section-dark,
  .section-light {
    grid-template-columns: 1fr;
  }

  .section-intro {
    padding: 24px 22px 12px;
  }

  .project-showcase,
  .tab-shell,
  .cases-grid,
  .process-grid,
  .reviews-grid {
    padding-left: 22px;
    padding-right: 22px;
    padding-bottom: 22px;
  }

  .project-showcase {
    grid-auto-columns: minmax(320px, 36vw);
  }

  .about-studio,
  .cases-grid,
  .founders-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero-bridge {
    grid-template-columns: 1fr;
  }

  .hero-bridge__item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-bridge__item:last-child {
    border-bottom: 0;
  }

  .contact-band {
    padding: 0 22px 24px;
  }

  .contact-column {
    padding: 28px 0 0;
  }

  .form-status--contact {
    grid-column: 1;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: minmax(0, 164px) minmax(0, 1fr) auto;
    gap: 14px;
  }

  .brand-lockup {
    width: 164px;
  }

  .site-nav {
    gap: 18px;
  }

  .header-mail {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-left: 16px;
    --header-right: 16px;
    --hero-left: 0px;
  }

  .page {
    padding: 0;
  }

  .site-shell {
    border-radius: 0;
  }

  .site-header {
    position: relative;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 18px 16px 10px;
    background:
      linear-gradient(180deg, rgba(19, 22, 27, 0.94), rgba(19, 22, 27, 0.82)),
      var(--shell);
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 16px;
    max-width: 100%;
    overflow-x: auto;
    padding: 0 0 4px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar,
  .tab-strip::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    white-space: nowrap;
    font-size: 9px;
  }

  .header-mail {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .brand-lockup {
    width: 154px;
  }

  .hero {
    min-height: auto;
    padding: 0 16px 26px;
    gap: 18px;
  }

  .hero-media,
  .hero-overlay {
    position: relative;
    inset: auto;
  }

  .hero-media {
    height: 340px;
    overflow: hidden;
    border-radius: 16px;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(13, 15, 19, 0.18) 0%, rgba(13, 15, 19, 0.14) 30%, rgba(13, 15, 19, 0.62) 100%),
      linear-gradient(90deg, rgba(13, 15, 19, 0.42) 0%, rgba(13, 15, 19, 0.16) 60%, rgba(13, 15, 19, 0.24) 100%);
  }

  .hero-content {
    width: 100%;
    padding: 0 12px 0;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(34px, 8vw, 44px);
  }

  .hero-text {
    max-width: 24ch;
    font-size: 14px;
  }

  .hero-pagination {
    display: none;
  }

  .hero-reel {
    width: 100%;
    justify-content: flex-start;
  }

  .section-tabs {
    top: 0;
    padding: 12px 16px;
  }

  .section-intro,
  .project-showcase,
  .tab-shell,
  .cases-grid,
  .process-grid,
  .reviews-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .project-showcase {
    grid-auto-columns: 82vw;
    gap: 12px;
    padding-bottom: 20px;
  }

  .project-showcase__actions {
    align-items: flex-start;
  }

  .project-nav {
    display: none;
  }

  .team-grid,
  .process-grid,
  .reviews-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card--featured {
    min-width: 0;
    min-height: 340px;
  }

  .tab-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .detail-card h3,
  .team-card__body h3 {
    font-size: 24px;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-media {
    min-height: 300px;
    max-height: 360px;
    transform: scale(1.025);
  }

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

  .form-status--contact {
    grid-column: auto;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
  }

  .cta-strip p {
    font-size: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 22px 16px 92px;
  }

  .footer-meta {
    justify-items: start;
  }

  .mobile-cta-bar {
    display: block;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .brand-lockup {
    width: 144px;
  }

  .site-nav {
    gap: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero-media {
    height: 320px;
  }

  .hero-content {
    padding: 0 10px;
  }

  .hero h1 {
    max-width: none;
    font-size: 31px;
  }

  .hero-text {
    max-width: 22ch;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-reel__button {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .section-intro h2,
  .detail-card h3,
  .team-card__body h3 {
    font-size: 24px;
  }

  .project-card,
  .project-card--featured {
    min-height: 280px;
  }

  .team-card img {
    aspect-ratio: 1.08;
  }
}
