@font-face {
  font-family: "FaithfulPP";
  src: url("/faithful/fonts/pp.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "FaithfulPPItalic";
  src: url("/faithful/fonts/pp-italic.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "FaithfulInter";
  src: url("/faithful/fonts/inter-latin.woff2") format("woff2");
  font-display: swap;
}

:root {
  --black: #000;
  --panel: #070707;
  --panel-soft: #111;
  --line: rgba(255, 255, 255, .18);
  --line-strong: rgba(255, 255, 255, .34);
  --text: #fff;
  --muted: rgba(255, 255, 255, .74);
  --quiet: rgba(255, 255, 255, .54);
  --blue: #74a6ec;
  --blue-dark: #315d9e;
  --radius: 24px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--text);
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
  color: var(--text);
  font-family: "FaithfulInter", Arial, sans-serif;
  letter-spacing: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 280px 1fr 210px;
  left: 0;
  padding: 20px 50px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(0, 0, 0, .84);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 16px;
  padding-top: 16px;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}

.brand img {
  height: auto;
  max-width: 230px;
  width: 230px;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: clamp(30px, 4.5vw, 64px);
  justify-content: center;
}

.primary-nav a,
.mobile-panel a {
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-dropdown {
  position: relative;
}

.nav-drop-menu {
  background: rgba(0, 0, 0, .94);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  gap: 0;
  left: 50%;
  min-width: 286px;
  opacity: 0;
  padding: 14px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 24px);
  transform: translate(-50%, 8px);
  transition: opacity .24s ease, transform .24s ease;
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-drop-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: block;
  font-size: 13px;
  line-height: 1.2;
  padding: 13px 12px;
}

.nav-drop-menu a::after {
  display: none;
}

.nav-drop-menu .nav-drop-all {
  background: rgba(116, 166, 236, .14);
  border: 1px solid rgba(116, 166, 236, .5);
  border-radius: 10px;
  margin-top: 10px;
  text-align: center;
}

.primary-nav a::after {
  background: var(--blue);
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s ease;
  width: 100%;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-action,
.cta-button {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  gap: 14px;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .28s ease, color .28s ease, border-color .28s ease;
  white-space: nowrap;
}

.header-action:hover,
.header-action:focus-visible,
.cta-button:hover,
.cta-button:focus-visible {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.mobile-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: none;
  height: 48px;
  justify-content: center;
  justify-self: end;
  padding: 0;
  position: relative;
  width: 48px;
}

.mobile-toggle span {
  background: currentColor;
  height: 2px;
  position: absolute;
  transition: transform .25s ease, opacity .25s ease;
  width: 18px;
}

.mobile-toggle span:first-child {
  transform: translateY(-5px);
}

.mobile-toggle span:last-child {
  transform: translateY(5px);
}

.mobile-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-panel {
  background: rgba(0, 0, 0, .96);
  inset: 0;
  opacity: 0;
  padding: 116px 28px 34px;
  pointer-events: none;
  position: fixed;
  transform: translateY(-10px);
  transition: opacity .28s ease, transform .28s ease;
  z-index: 40;
}

.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-panel nav {
  border-top: 1px solid var(--line);
  display: grid;
}

.mobile-panel a {
  border-bottom: 1px solid var(--line);
  font-size: 30px;
  padding: 24px 0;
}

.mobile-panel .cta-button {
  margin-top: 28px;
  width: 100%;
}

.home-hero {
  align-items: end;
  background-position: center;
  background-size: cover;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: 0 50px 48px;
  position: relative;
}

.home-hero::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .28) 42%, rgba(0, 0, 0, .96) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .54), rgba(0, 0, 0, .14) 46%, rgba(0, 0, 0, .44));
  content: "";
  inset: 0;
  position: absolute;
}

.home-hero::after {
  background: rgba(0, 0, 0, .18);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-copy {
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.home-hero h1,
.page-title,
.contact-title,
.detail-title {
  font-family: "FaithfulPP", Georgia, serif;
  font-size: clamp(76px, 9.2vw, 132px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .9;
  margin: 0;
}

.home-hero h1 em,
.page-title em,
.contact-title em,
.detail-title em,
.word-stack em,
.index-title em {
  color: var(--blue);
  font-family: "FaithfulPPItalic", Georgia, serif;
  font-style: normal;
}

.home-hero p {
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 850;
  line-height: 1.45;
  margin: 40px 0 0;
  max-width: 940px;
}

.scroll-cue {
  align-items: center;
  bottom: 56px;
  color: var(--muted);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 12px;
  position: absolute;
  right: 50px;
  text-transform: uppercase;
  z-index: 2;
}

.page-shell {
  overflow: hidden;
  padding-top: 138px;
}

.page-block {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 50px;
}

.title-block {
  border-bottom: 1px solid var(--line);
  padding-bottom: 58px;
}

.lead-copy {
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 850;
  line-height: 1.42;
  margin: 90px 0 0;
  max-width: 940px;
}

.vision-label {
  align-items: center;
  display: inline-flex;
  font-size: 24px;
  font-weight: 900;
  gap: 12px;
  margin-top: 94px;
}

.vision-label svg {
  height: 20px;
  width: 20px;
}

.vision-grid {
  align-items: center;
  display: grid;
  gap: clamp(48px, 9vw, 144px);
  grid-template-columns: minmax(300px, 494px) 1fr;
  margin-top: 100px;
}

.portrait-card,
.contact-image,
.detail-image,
.mini-card-img,
.index-card-image {
  background: #151515;
  overflow: hidden;
}

.portrait-card {
  border-radius: 18px;
  height: min(620px, 48vw);
}

.portrait-card img,
.contact-image img,
.detail-image img,
.mini-card-img img,
.index-card-image img {
  height: 100%;
  object-fit: cover;
  transition: filter .35s ease, transform .45s ease;
  width: 100%;
}

.portrait-card:hover img,
.detail-image:hover img,
.index-card:hover img,
.mini-card:hover img {
  filter: saturate(1.05) brightness(1.08);
  transform: scale(1.035);
}

.word-stack {
  font-family: "FaithfulPP", Georgia, serif;
  font-size: clamp(58px, 6.2vw, 84px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .98;
  margin: 0;
  text-align: center;
}

.strategy-section {
  border-top: 1px solid var(--line);
  margin-top: 120px;
  padding: 90px 50px 118px;
}

.strategy-inner {
  display: grid;
  gap: 48px;
  grid-template-columns: .72fr 1fr;
  margin: 0 auto;
  max-width: var(--max);
}

.locations-showcase {
  border-top: 1px solid var(--line);
  margin: 96px auto 0;
  max-width: var(--max);
  padding: 86px 50px 112px;
}

.locations-showcase-head {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  margin-bottom: 36px;
}

.locations-showcase-head .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

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

.location-tile {
  aspect-ratio: 1 / 1.18;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #fff;
  display: grid;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.location-tile::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .84));
  content: "";
  inset: 0;
  position: absolute;
}

.location-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .35s ease;
  width: 100%;
}

.location-tile span {
  align-self: end;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.08;
  padding: 20px;
  position: absolute;
  z-index: 2;
}

.location-tile:hover img,
.location-tile:focus-visible img {
  filter: saturate(1.08) brightness(1.08);
  transform: scale(1.05);
}

.section-kicker {
  color: var(--blue);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.section-heading {
  font-family: "FaithfulPP", Georgia, serif;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .98;
  margin: 0;
}

.section-heading em {
  color: var(--blue);
  font-family: "FaithfulPPItalic", Georgia, serif;
  font-style: normal;
}

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

.path-card,
.related-card,
.index-card,
.detail-panel,
.contact-method,
.footer-link-box {
  border: 1px solid var(--line);
  color: #fff;
  text-decoration: none;
  transition: background .28s ease, border-color .28s ease, transform .28s ease;
}

.path-card {
  border-radius: 18px;
  display: grid;
  min-height: 250px;
  padding: 28px;
}

.path-card:hover,
.path-card:focus-visible,
.related-card:hover,
.related-card:focus-visible,
.index-card:hover,
.index-card:focus-visible,
.footer-link-box:hover,
.footer-link-box:focus-visible {
  background: rgba(116, 166, 236, .13);
  border-color: rgba(116, 166, 236, .72);
  transform: translateY(-4px);
}

.path-card h3,
.related-card h3,
.index-card h3,
.detail-panel h3 {
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 22px;
}

.path-card p,
.related-card p,
.index-card p,
.detail-panel p,
.footer-copy,
.detail-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.card-arrow {
  align-self: end;
  color: var(--blue);
  font-size: 28px;
  margin-top: 30px;
}

.index-hero {
  background-position: center;
  background-size: cover;
  min-height: 310px;
  position: relative;
}

.index-hero::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .28), #000 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.index-title-zone {
  margin: -1px auto 0;
  max-width: var(--max);
  padding: 64px 50px 0;
  text-align: center;
}

.index-title {
  font-family: "FaithfulPP", Georgia, serif;
  font-size: clamp(66px, 7.3vw, 104px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .96;
  margin: 0;
}

.index-intro {
  color: var(--muted);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.48;
  margin: 42px auto 0;
  max-width: 860px;
}

.scope-row {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, 1fr);
  margin: 66px 50px 0;
  padding-bottom: 46px;
}

.scope-row span {
  color: var(--quiet);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.scope-row strong {
  display: block;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.1;
}

.portfolio-shell {
  display: grid;
  gap: 56px;
  grid-template-columns: 288px 1fr;
  margin: 96px auto 0;
  max-width: 1360px;
  padding: 0 50px 120px;
}

.filter-rail {
  align-self: start;
  display: grid;
  gap: 18px;
  position: sticky;
  top: 112px;
}

.filter-rail a {
  align-items: center;
  border-radius: 8px;
  color: #fff;
  display: grid;
  font-size: 16px;
  font-weight: 850;
  gap: 12px;
  grid-template-columns: 20px 1fr;
  line-height: 1.2;
  padding: 8px 4px;
  text-decoration: none;
  transition: color .24s ease, transform .24s ease;
}

.filter-rail a:hover,
.filter-rail a:focus-visible,
.filter-rail a.is-active {
  color: var(--blue);
  transform: translateX(5px);
}

.filter-icon {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 5px;
  display: inline-flex;
  height: 18px;
  justify-content: center;
  width: 18px;
}

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

.index-card {
  background: #0a0a0a;
  border-radius: 24px;
  display: grid;
  min-height: 560px;
  overflow: hidden;
}

.index-card-image {
  aspect-ratio: 1.26 / 1;
  border-radius: 24px 24px 0 0;
}

.index-card-body {
  display: grid;
  padding: 26px;
}

.index-card p {
  margin-bottom: 26px;
}

.card-badge {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  justify-self: start;
  margin-bottom: 22px;
  padding: 10px 14px;
}

.inline-link {
  align-self: end;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.detail-hero {
  background-position: center;
  background-size: cover;
  min-height: 510px;
  padding: 230px 50px 70px;
  position: relative;
}

.detail-hero::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .34), #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .14));
  content: "";
  inset: 0;
  position: absolute;
}

.detail-hero-inner {
  max-width: 1060px;
  position: relative;
  z-index: 2;
}

.detail-title {
  font-size: clamp(62px, 8vw, 112px);
}

.detail-intro {
  color: #fff;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 850;
  line-height: 1.5;
  margin: 36px 0 0;
  max-width: 910px;
}

.detail-body {
  display: block;
  margin: 88px auto 0;
  max-width: 980px;
  padding: 0 50px 112px;
}

.detail-copy {
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 58px);
}

.detail-copy h2,
.detail-copy h3,
.detail-copy h4 {
  font-family: "FaithfulPP", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 46px 0 18px;
}

.detail-copy h2:first-of-type,
.detail-copy h3:first-of-type,
.detail-copy h4:first-of-type {
  margin-top: 0;
}

.detail-copy h2 {
  font-size: clamp(36px, 4.3vw, 58px);
}

.detail-copy h3 {
  color: var(--blue);
  font-size: clamp(28px, 3vw, 40px);
}

.detail-copy h4 {
  font-size: clamp(24px, 2.4vw, 32px);
}

.detail-copy blockquote {
  border-left: 3px solid var(--blue);
  color: #fff;
  font-size: 20px;
  line-height: 1.55;
  margin: 34px 0;
  padding-left: 22px;
}

.detail-copy table {
  border-collapse: collapse;
  margin: 34px 0;
  width: 100%;
}

.detail-copy th,
.detail-copy td {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding: 13px 12px;
  text-align: left;
}

.detail-panels {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.detail-panel {
  border-radius: 14px;
  padding: 24px;
}

.related-section {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: var(--max);
  padding: 86px 50px 120px;
}

.related-card {
  border-radius: 18px;
  overflow: hidden;
}

.mini-card-img {
  aspect-ratio: 1.5 / 1;
}

.related-card-body {
  padding: 22px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 88px;
}

.contact-image {
  min-height: calc(100vh - 88px);
}

.contact-panel {
  align-self: center;
  padding: 70px 7vw;
}

.contact-title {
  font-size: clamp(70px, 7vw, 106px);
}

.contact-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 40px;
  margin-top: 70px;
  padding-top: 58px;
}

.contact-method {
  align-items: center;
  border: 0;
  display: grid;
  gap: 26px;
  grid-template-columns: 42px 1fr;
}

.contact-method:hover {
  color: var(--blue);
  transform: translateX(4px);
}

.contact-icon {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.contact-method strong {
  display: block;
  font-size: 18px;
  line-height: 1.45;
  min-width: 0;
  overflow-wrap: anywhere;
  text-decoration: underline;
  word-break: break-word;
}

.contact-form {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  margin-top: 62px;
  padding-top: 42px;
}

.hp-field {
  display: none !important;
}

.contact-form label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #fff;
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  margin: 0;
  min-height: 20px;
}

.map-embed {
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-top: 30px;
  overflow: hidden;
}

.map-embed iframe {
  border: 0;
  display: block;
  height: 260px;
  width: 100%;
}

.site-footer .map-embed {
  max-width: 520px;
}

.site-footer .map-embed iframe {
  height: 220px;
}

.simple-page {
  margin: 0 auto;
  max-width: 920px;
  padding: 170px 36px 120px;
}

.simple-page h1 {
  font-family: "FaithfulPP", Georgia, serif;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 40px;
}

.simple-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 0;
  padding: 64px 50px 42px;
}

.footer-inner {
  display: grid;
  gap: 52px;
  grid-template-columns: 1.1fr 1fr;
  margin: 0 auto;
  max-width: var(--max);
}

.footer-logo {
  width: 250px;
}

.footer-copy {
  margin-top: 26px;
  max-width: 520px;
}

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

.footer-link-box {
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
  padding: 18px;
  text-transform: uppercase;
}

.footer-bottom {
  color: var(--quiet);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 18px;
  justify-content: space-between;
  margin: 54px auto 0;
  max-width: var(--max);
}

.footer-bottom a {
  color: var(--quiet);
  margin-left: 18px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr 48px;
    padding: 18px 24px;
  }

  .primary-nav,
  .header-action {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .brand img {
    max-width: 218px;
    width: 218px;
  }

  .home-hero {
    min-height: 100svh;
    padding: 0 26px 38px;
  }

  .scroll-cue {
    bottom: 26px;
    left: 26px;
    right: auto;
  }

  .home-hero p {
    margin-top: 28px;
  }

  .page-shell {
    padding-top: 124px;
  }

  .page-block,
  .strategy-section,
  .index-title-zone,
  .portfolio-shell,
  .detail-body,
  .related-section,
  .site-footer {
    padding-left: 26px;
    padding-right: 26px;
  }

  .lead-copy {
    margin-top: 56px;
  }

  .vision-label {
    margin-top: 64px;
  }

  .vision-grid,
  .strategy-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    height: auto;
    aspect-ratio: 1 / 1.1;
  }

  .word-stack {
    text-align: left;
  }

  .path-grid,
  .related-grid,
  .index-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .locations-showcase {
    padding-left: 26px;
    padding-right: 26px;
  }

  .locations-showcase-head {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .scope-row {
    grid-template-columns: 1fr 1fr;
    margin-left: 26px;
    margin-right: 26px;
  }

  .portfolio-shell {
    gap: 38px;
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .filter-rail {
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 18px;
    position: static;
  }

  .filter-rail a {
    flex: 0 0 auto;
    min-width: max-content;
  }

  .index-card {
    min-height: 0;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    padding-top: 84px;
  }

  .contact-image {
    min-height: 45vh;
  }

  .contact-panel {
    padding: 56px 26px 84px;
  }

  .mobile-panel .cta-button {
    font-size: 13px;
    min-height: 52px;
    padding-left: 14px;
    padding-right: 14px;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 206px;
  }

  .home-hero h1 {
    font-size: clamp(64px, 20vw, 88px);
  }

  .home-hero p,
  .lead-copy,
  .index-intro,
  .detail-intro {
    font-size: 18px;
  }

  .page-title,
  .detail-title,
  .index-title,
  .contact-title {
    font-size: clamp(56px, 17vw, 74px);
  }

  .scope-row {
    grid-template-columns: 1fr;
  }

  .contact-method {
    gap: 18px;
    grid-template-columns: 42px 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom a {
    display: inline-block;
    margin: 12px 18px 0 0;
  }
}

/* brand-logo-sizing */
.brand-logo{height:auto;width:230px;max-width:230px;display:block}
@media (max-width:980px){.brand-logo{width:218px;max-width:218px}}
