:root {
  --ink: #071547;
  --blue: #123ec8;
  --teal: #00a5ad;
  --green: #087c53;
  --lime: #b9f4d8;
  --ice: #edf9f8;
  --white: #fff;
  --line: rgba(7, 21, 71, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.crc-site {
  margin: 0;
  background: var(--white, #fff);
  color: var(--ink);
  font-family: var(--font-body, Arial, Helvetica, sans-serif);
  font-size: var(--type-body, 18px);
}
body.crc-site h1,
body.crc-site h2,
body.crc-site h3,
body.crc-site .display,
body.crc-site .quote blockquote,
body.crc-site .team-quote blockquote {
  font-family: var(--font-heading, inherit);
}
body.crc-site a { color: inherit; }
body.crc-site img { display: block; max-width: 100%; }
.wrap {
  width: min(1320px, calc(100% - (var(--logo-pad, 28px) * 2)));
  margin: auto;
}
.label {
  font-size: var(--type-label, 12px);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  color: var(--label-color, var(--teal));
}
.display {
  font-size: var(--type-display, clamp(64px, 9vw, 128px));
  line-height: .82;
  letter-spacing: -.075em;
  margin: 0;
  font-weight: 800;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  background: var(--button-bg, var(--blue));
  color: var(--button-text, #fff);
  text-decoration: none;
  padding: var(--button-pad, 17px 22px);
  border-radius: var(--button-radius, 5px);
  font-weight: 800;
  border: 0;
  cursor: pointer;
  font-family: var(--font-button, inherit);
  font-size: var(--type-button, 16px);
}
.btn:after { content: "→"; font-size: 20px; }
.accent-line {
  height: 6px;
  width: 150px;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--blue));
  margin: 25px 0;
}

.site-shell-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  min-height: var(--header-height, 96px);
  height: auto;
  overflow: visible;
  background: var(--header-bg, transparent);
  transition: background .3s ease;
}
.site-shell-header:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--header-scrolled, #fff);
  opacity: 0;
  box-shadow: 0 10px 32px rgba(7, 21, 71, .08);
  transition: opacity .3s ease;
}
.site-shell-header.is-scrolled:before,
body.crc-scrolled .site-shell-header:before { opacity: 1; }
.admin-bar .site-shell-header { top: 32px; }
.site-shell-nav {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - (var(--logo-pad, 28px) * 2)));
  min-height: var(--header-height, 96px);
  height: auto;
  margin: 0 auto;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}
.site-shell-logo {
  justify-self: start;
  position: relative;
  z-index: 2;
  display: block;
}
.site-shell-logo .logo-white { display: none; }
.site-shell-logo .logo-color { display: block; }
body.crc-site .site-shell-logo img {
  width: var(--logo-width, 180px) !important;
  max-width: none !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain;
  transition: width .35s ease;
}
.site-shell-header.is-scrolled .site-shell-logo img,
body.crc-scrolled .site-shell-logo img {
  width: var(--logo-width-scrolled, 140px) !important;
}
.site-shell-nav,
.site-shell-links,
.site-shell-end {
  position: relative;
  z-index: 2;
}
.site-shell-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--header-gap, 34px);
  font-size: var(--type-nav, 13px);
  font-weight: 800;
  flex-wrap: nowrap;
  white-space: nowrap;
  opacity: 1;
  visibility: visible;
}
body.crc-site .site-shell-links a,
body.crc-site .site-shell-mobile a {
  text-decoration: none;
  color: var(--header-text, var(--ink));
  position: relative;
}
.site-shell-links a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 3px;
  background: var(--teal);
  border-radius: 3px;
}
.site-shell-end {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
body.crc-site .site-shell-cta {
  background: var(--cta-bg, var(--blue)) !important;
  color: var(--cta-text, #fff) !important;
  padding: 13px 17px;
  border-radius: var(--button-radius, 6px);
  text-decoration: none;
  font-family: var(--font-button, inherit);
  font-size: var(--type-nav, 13px);
  font-weight: 800;
}
.site-shell-cta.active:after { display: none; }
body.crc-site .site-shell-menu,
body.crc-site .site-shell-menu:hover,
body.crc-site .site-shell-menu:focus,
body.crc-site .site-shell-menu:focus-visible,
body.crc-site .site-shell-menu:active {
  display: none !important;
  width: 52px;
  height: 52px;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
}
.menu-bars {
  display: grid;
  gap: 6px;
  width: 26px;
  margin: auto;
}
.menu-bars span {
  display: block;
  height: 2px;
  background: var(--header-text, var(--ink));
  border-radius: 2px;
  transition: transform .35s ease, opacity .25s ease, width .35s ease;
  transform-origin: center;
}
.menu-bars span:nth-child(2) { width: 70%; justify-self: end; }
.site-shell-menu:hover .menu-bars span:nth-child(1),
.site-shell-menu:hover .menu-bars span:nth-child(3) { width: 70%; }
.site-shell-menu:hover .menu-bars span:nth-child(2) { width: 100%; }
.site-shell-menu.is-open .menu-bars { gap: 0; }
.site-shell-menu.is-open .menu-bars span:nth-child(1) { transform: translateY(2px) rotate(45deg); width: 100%; }
.site-shell-menu.is-open .menu-bars span:nth-child(2) { opacity: 0; width: 0; }
.site-shell-menu.is-open .menu-bars span:nth-child(3) { transform: translateY(-2px) rotate(-45deg); width: 100%; }
.site-shell-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 18px 24px 28px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(7, 21, 71, .12);
}
.site-shell-mobile a {
  padding: 14px 0;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.site-shell-mobile .site-shell-cta {
  justify-self: stretch;
  text-align: center;
  margin-top: 8px;
  border-bottom: 0;
}

body.hero-cinema .site-shell-header:not(.is-scrolled) .logo-color,
body.hero-split .site-shell-header:not(.is-scrolled) .logo-color { display: none; }
body.hero-cinema .site-shell-header:not(.is-scrolled) .logo-white,
body.hero-split .site-shell-header:not(.is-scrolled) .logo-white { display: block; }
body.hero-cinema .site-shell-header:not(.is-scrolled) .logo-white.is-forced img,
body.hero-split .site-shell-header:not(.is-scrolled) .logo-white.is-forced img {
  filter: brightness(0) invert(1);
}
body.hero-cinema .site-shell-header:not(.is-scrolled) .site-shell-links a,
body.hero-split .site-shell-header:not(.is-scrolled) .site-shell-links a {
  color: var(--header-hero-text, #fff);
}
body.hero-cinema .site-shell-header:not(.is-scrolled) .menu-bars span,
body.hero-split .site-shell-header:not(.is-scrolled) .menu-bars span {
  background: var(--header-hero-text, #fff);
}
@media (min-width: 768px) {
  .site-shell-header.is-scrolled .site-shell-links,
  .site-shell-header.is-scrolled .site-shell-end,
  body.crc-scrolled .site-shell-links,
  body.crc-scrolled .site-shell-end {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  .site-shell-mobile {
    display: none !important;
  }
}

.hero,
.page-hero,
.intro3 { padding-top: calc(var(--header-height, 96px) + 24px); }
.admin-bar .hero,
.admin-bar .page-hero,
.admin-bar .intro3 { padding-top: calc(var(--header-height, 96px) + 56px); }
.intro3.hero--cinema:before,
.intro3.hero--cinema:after,
.intro3.hero--split:before,
.intro3.hero--split:after { display: none; }

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--hero-cinema-height, 80vh);
  overflow: hidden;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media-shade {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay, rgba(7,21,71,.38));
}
.hero--cinema,
.page-hero.hero--cinema,
.intro3.hero--cinema {
  position: relative;
  min-height: 0;
  overflow: visible;
}
.hero--cinema .hero-media,
.page-hero.hero--cinema .hero-media,
.intro3.hero--cinema .hero-media {
  height: auto;
  bottom: 0;
}
.hero.hero--cinema,
.page-hero.hero--cinema,
.intro3.hero--cinema,
.admin-bar .hero.hero--cinema,
.admin-bar .page-hero.hero--cinema,
.admin-bar .intro3.hero--cinema {
  padding-top: 0;
}
.hero--cinema .hero-grid,
.page-hero.hero--cinema .wrap,
.intro3.hero--cinema .wrap {
  position: relative;
  z-index: 1;
  min-height: var(--hero-cinema-height, 80vh);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height, 96px) + 24px);
}
.hero--cinema .hero-copy,
.page-hero.hero--cinema .hero-copy,
.intro3.hero--cinema .hero-copy { color: #fff; }
.hero--cinema .hero-copy p,
.page-hero.hero--cinema .hero-copy p,
.intro3.hero--cinema .hero-copy p { color: #eef3ff; }
.hero .ribbon,
.page-hero .ribbon,
.intro3 .ribbon {
  position: relative;
  z-index: 6;
  margin-top: -36px;
}
.hero-split-media {
  min-height: 520px;
  border-radius: var(--card-radius, 7px);
  overflow: hidden;
}
.hero-split-media img,
.hero-split-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--split .hero-grid,
.page-hero.hero--split .page-hero-grid {
  grid-template-columns: 1fr 1fr;
  min-height: var(--hero-cinema-height, 80vh);
  align-items: stretch;
}
.hero--split .hero-copy {
  background: var(--ink);
  color: #fff;
  padding: 70px 48px;
  border-radius: var(--card-radius, 7px);
}
.hero--split .hero-copy p { color: #d7e4ff; }

.site-shell-footer {
  background: var(--footer-bg, #edf7fb);
  color: var(--footer-text, #071547);
  padding: 0 0 105px;
}
.site-shell-rail {
  height: 18px;
  background: linear-gradient(90deg, #087c53 0 33%, #00a5ad 33% 66%, #123ec8 66%);
}
.site-shell-foot {
  width: min(1320px, calc(100% - (var(--logo-pad, 28px) * 2)));
  margin: auto;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
}
.site-shell-brand img,
body.crc-site .site-shell-foot img {
  width: var(--footer-logo-width, 160px) !important;
  max-width: none !important;
  height: auto !important;
}
.site-shell-foot p,
.footer-columns p,
.site-shell-brand p {
  color: var(--footer-text, #526078);
  font-size: var(--footer-text-size, 14px);
  line-height: 1.7;
}
.site-shell-footnav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
  align-items: flex-start;
}
body.crc-site .site-shell-footnav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--button-radius, 5px);
  background: var(--ink);
  color: #fff;
  font-size: var(--footer-nav-size, 15px);
  font-weight: 800;
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease;
}
body.crc-site .site-shell-footnav a span {
  position: relative;
  z-index: 1;
}
body.crc-site .site-shell-footnav a:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green), var(--teal), var(--blue));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
}
body.crc-site .site-shell-footnav a:hover,
body.crc-site .site-shell-footnav a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(7, 21, 71, .16);
  color: #fff;
}
body.crc-site .site-shell-footnav a:hover:after,
body.crc-site .site-shell-footnav a:focus-visible:after {
  transform: scaleX(1);
}
.site-shell-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  font-size: var(--footer-meta-size, 12px);
  color: #607087;
}
.site-shell-meta > :first-child { justify-self: start; }
.site-shell-credit { justify-self: center; text-align: center; }
.site-shell-meta > :last-child { justify-self: end; text-align: right; }
body.crc-site .site-shell-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.crc-site .site-shell-meta a:hover { color: var(--blue); }

.footer-kicker {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-banner {
  background: linear-gradient(90deg, var(--green), var(--teal), var(--blue));
  padding: 28px 0;
}
.footer-banner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer--banner { padding-bottom: 40px; }
.footer--banner .footer-banner img {
  width: var(--footer-logo-width, 160px);
  height: auto;
  filter: brightness(0) invert(1);
}
.footer--banner .site-shell-footnav a {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}
.footer--banner .site-shell-footnav a:after { background: #fff; }
.footer--banner .site-shell-footnav a:hover,
.footer--banner .site-shell-footnav a:focus-visible { color: var(--ink); }
.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 72px;
}
.footer-columns .site-shell-brand img,
.footer-statement-row img {
  width: var(--footer-logo-width, 160px);
  height: auto;
}
.footer-columns .site-shell-footnav {
  flex-direction: column;
  align-items: stretch;
}
.footer-statement { padding-top: 80px; }
.footer-statement-text {
  margin: 0 0 40px;
  max-width: 920px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 800;
  color: var(--ink);
}
.footer-statement-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.ribbon {
  background: var(--ribbon-bg, var(--ink));
  color: var(--ribbon-text, #fff);
  white-space: nowrap;
  overflow: hidden;
  padding: var(--ribbon-pad, 20px 0);
}
.crc-home .ribbon {
  transform: rotate(-1.2deg);
  width: 104%;
  margin-left: -2%;
  margin-top: -42px;
}
.ribbon span {
  display: inline-block;
  font-size: var(--type-label, 17px);
  font-weight: 800;
  letter-spacing: .03em;
  animation: marquee 24s linear infinite;
  color: inherit;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(35px); transition: .8s; }
.reveal.visible { opacity: 1; transform: none; }

.hero { min-height: 720px; position: relative; padding-bottom: 0; overflow: visible; }
.hero-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 600px;
  align-items: center;
}
.hero-copy { padding: 40px 0; position: relative; z-index: 3; }
.hero h1 {
  font-size: var(--type-h1, clamp(62px, 8vw, 112px));
  line-height: .82;
  letter-spacing: -.075em;
  margin: 0 0 32px;
  font-weight: 800;
}
.hero p { font-size: var(--type-body, 19px); line-height: 1.55; max-width: 500px; color: #334265; }
.hero .btn { margin-top: 14px; }
.collage { height: 610px; position: relative; }
.shot {
  position: absolute;
  overflow: hidden;
  border-radius: var(--card-radius, 7px);
  box-shadow: 0 24px 70px rgba(7, 21, 71, .18);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.shot:hover img { transform: scale(1.04); }
.shot-a { width: 72%; height: 60%; right: 0; top: 0; }
.shot-a img { object-position: 66% center; }
.shot-b { width: 47%; height: 47%; left: 0; bottom: 0; }
.shot-b img { object-position: 45% center; }
.color-block {
  position: absolute;
  width: 42%;
  height: 37%;
  right: 8%;
  bottom: 0;
  background: var(--teal);
  border-radius: var(--card-radius, 7px);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 800;
}
.orb {
  position: absolute;
  left: 34%;
  top: 35%;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
  z-index: 2;
  font-size: 58px;
  color: var(--green);
  mix-blend-mode: multiply;
}
.orbit {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  left: 29%;
  top: 29%;
  animation: spin 15s linear infinite;
}
.orbit:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  top: 20px;
  left: 33px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.manifesto { padding: var(--section-pad, 140px 0 110px); }
.manifesto-grid { display: grid; grid-template-columns: 31% 69%; gap: 70px; align-items: start; }
.manifesto-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.manifesto-photo {
  margin: 0;
  border-radius: var(--card-radius, 7px);
  overflow: hidden;
  background: var(--ice);
  min-height: 420px;
}
.manifesto-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.manifesto .label { padding-top: 0; }
.manifesto h2 {
  font-size: var(--type-h2, clamp(44px, 6vw, 84px));
  line-height: .98;
  letter-spacing: -.06em;
  margin: 0 0 40px;
  max-width: 950px;
}
.manifesto p { font-size: var(--type-body, 18px); line-height: 1.7; max-width: 820px; color: #344265; }
.line {
  height: 5px;
  width: 150px;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--blue));
  margin-bottom: 35px;
}

.paths { background: var(--ice); padding: var(--section-pad, 120px 0); position: relative; }
.paths-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 65px; }
.paths h2,
.practice h2 {
  font-size: var(--type-h2, clamp(48px, 6vw, 82px));
  letter-spacing: -.06em;
  line-height: .95;
  margin: 0;
}
.paths-head p { max-width: 390px; color: #536078; line-height: 1.55; }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.path {
  min-height: 430px;
  padding: 32px;
  border-top: 4px solid var(--green);
  background: #fff;
  position: relative;
  transition: .35s;
}
.path:nth-child(2) { border-color: var(--teal); transform: translateY(35px); }
.path:nth-child(3) { border-color: var(--blue); }
.path:hover { transform: translateY(-10px); box-shadow: 0 28px 70px rgba(7, 21, 71, .12); }
.path:nth-child(2):hover { transform: translateY(25px); }
.num { font-size: 72px; letter-spacing: -.07em; color: #d7e5e8; font-weight: 800; }
.path h3 { font-size: var(--type-h3, 36px); letter-spacing: -.04em; margin: 70px 0 14px; }
.path p { font-size: var(--type-body, 16px); line-height: 1.55; color: #536078; }

.practice { padding: var(--section-pad, 145px 0); }
.practice-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}
.practice-top p { font-size: var(--type-body, 18px); line-height: 1.65; color: #536078; }
.service {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 40px;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 25px 0;
  transition: .2s;
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service:hover { padding-left: 16px; background: linear-gradient(90deg, var(--ice), transparent); }
.service-num { font-weight: 800; color: var(--teal); }
.service h3 { font-size: 21px; margin: 0; letter-spacing: -.02em; }
.service p { margin: 0; color: #536078; line-height: 1.45; font-size: 14px; }
.arrow { font-size: 25px; color: var(--blue); }

.housing { background: var(--green); color: #fff; padding: 0; }
.housing-grid { display: grid; grid-template-columns: 55% 45%; min-height: 650px; }
.housing-image { position: relative; overflow: hidden; }
.housing-image img { width: 100%; height: 100%; object-fit: cover; }
.housing-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(8, 124, 83, .55));
}
.housing-copy { padding: 90px 6vw; display: flex; flex-direction: column; justify-content: center; }
.housing-copy h2 {
  font-size: var(--type-h2, clamp(50px, 6vw, 84px));
  line-height: .9;
  letter-spacing: -.065em;
  margin: 0 0 30px;
}
.housing-copy p { font-size: var(--type-body, 18px); line-height: 1.65; color: #e7fff4; }
.housing-copy a { display: inline-block; margin-top: 20px; color: #fff; font-weight: 800; }

.quote {
  background: var(--ink);
  color: var(--white, #fff);
  padding: var(--section-pad, 130px 0);
  position: relative;
  overflow: hidden;
}
.quote blockquote {
  font-size: var(--type-quote, clamp(43px, 6vw, 87px));
  line-height: .96;
  letter-spacing: -.06em;
  margin: 0;
  max-width: 1080px;
}
.quote cite {
  display: block;
  margin-top: 30px;
  color: var(--lime);
  font-style: normal;
  font-weight: 800;
}
.quote:after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 100px solid rgba(0, 165, 173, .12);
  border-radius: 50%;
  right: -210px;
  top: -150px;
}

.contact { padding: var(--section-pad, 130px 0); }
.contact-grid { display: grid; grid-template-columns: 42% 58%; gap: 95px; }
.contact h2 {
  font-size: var(--type-h2, clamp(55px, 7vw, 94px));
  line-height: .88;
  letter-spacing: -.07em;
  margin: 0 0 30px;
}
.contact-copy p { font-size: var(--type-body, 17px); line-height: 1.6; color: #536078; max-width: 440px; }
.license { color: var(--green) !important; font-weight: 800; }
.form,
.appointment {
  background: var(--form-bg, var(--ice));
  padding: 42px;
  border-radius: var(--card-radius, 8px);
}
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  margin-bottom: 8px;
}
input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #b7d4d7;
  background: transparent;
  padding: 11px 3px;
  font: inherit;
  outline: none;
  color: var(--ink);
}
input:focus,
textarea:focus { border-color: var(--teal); }
textarea { min-height: 110px; resize: vertical; }
.form button,
.appointment button {
  width: 100%;
  margin-top: 26px;
  background: var(--button-bg, var(--blue));
  color: var(--button-text, #fff);
  border: 0;
  border-radius: var(--button-radius, 4px);
  padding: var(--button-pad, 16px);
  font-family: var(--font-button, inherit);
  font-size: var(--type-button, 16px);
  font-weight: 800;
  cursor: pointer;
}
.crc-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.form-status {
  margin: 16px 0 0;
  font-weight: 700;
  color: var(--green);
}
.form-status.is-error { color: #b42318; }

.page-hero { padding: calc(var(--header-height, 96px) + 24px) 0 48px; overflow: visible; }
.page-hero.hero--cinema {
  padding-top: 0;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 53% 47%;
  align-items: end;
  gap: 70px;
}
.page-hero p { font-size: var(--type-body, 19px); line-height: 1.6; color: #44536e; max-width: 500px; }
.image-stage { height: 570px; position: relative; }
.image-stage img {
  width: 82%;
  height: 88%;
  margin-left: auto;
  object-fit: cover;
  border-radius: var(--card-radius, 7px);
  box-shadow: 0 28px 80px rgba(7, 21, 71, .17);
}
.image-stage:before {
  content: "";
  position: absolute;
  width: 48%;
  height: 44%;
  left: 0;
  bottom: 0;
  background: var(--teal);
  border-radius: var(--card-radius, 7px);
  z-index: -1;
}
.image-stage:after {
  content: "+";
  position: absolute;
  left: 14%;
  bottom: 12%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 58px;
  font-weight: 800;
}

.split-intro {
  padding: var(--section-pad, 130px 0);
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 65px;
}
.split-intro h2 {
  font-size: var(--type-h2, clamp(42px, 6vw, 78px));
  line-height: .97;
  letter-spacing: -.06em;
  margin: 0 0 24px;
}
.split-intro p { font-size: var(--type-body, 18px); line-height: 1.7; color: #46546c; margin-top: 0; }
.dark { background: var(--ink); color: #fff; }
.dark .label { color: var(--lime); }

.amenities { padding: var(--section-pad, 120px 0); }
.amenities h2,
.gallery-head h2 {
  font-size: var(--type-h2, clamp(50px, 7vw, 92px));
  line-height: .9;
  letter-spacing: -.065em;
  margin: 0;
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}
.amenity {
  padding: 28px 18px 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  font-size: 18px;
  display: flex;
  gap: 16px;
}
.amenity span { color: var(--teal); font-weight: 800; }
.gallery-section { padding: var(--section-pad, 130px 0); }
.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}
.gallery-head p { max-width: 390px; color: #56627a; line-height: 1.6; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 14px;
}
.photo-grid figure { margin: 0; overflow: hidden; border-radius: var(--card-radius, 6px); }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: .7s; }
.photo-grid figure:hover img { transform: scale(1.05); }
.photo-grid figure:nth-child(6n+1) { grid-column: span 7; grid-row: span 4; }
.photo-grid figure:nth-child(6n+2) { grid-column: span 5; grid-row: span 3; }
.photo-grid figure:nth-child(6n+3) { grid-column: span 5; grid-row: span 4; }
.photo-grid figure:nth-child(6n+4) { grid-column: span 7; grid-row: span 3; }
.photo-grid figure:nth-child(6n+5) { grid-column: span 4; grid-row: span 3; }
.photo-grid figure:nth-child(6n+6) { grid-column: span 8; grid-row: span 3; }

.apply { background: var(--green); color: var(--white, #fff); padding: var(--section-pad, 110px 0); }
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.apply h2 {
  font-size: var(--type-h2, clamp(50px, 7vw, 90px));
  line-height: .9;
  letter-spacing: -.065em;
  margin: 0;
}
.apply p { font-size: var(--type-body, 18px); line-height: 1.65; color: #e7fff4; }
.apply-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.apply .btn { background: #fff; color: var(--green); }

.team-quote { padding: var(--section-pad, 120px 0); }
.team-quote blockquote {
  font-size: var(--type-quote, clamp(43px, 6vw, 85px));
  line-height: .96;
  letter-spacing: -.06em;
  margin: 0;
}
.team-quote cite {
  display: block;
  color: var(--lime);
  font-style: normal;
  margin-top: 28px;
  font-weight: 800;
}

.intro3 {
  min-height: 650px;
  position: relative;
  overflow: visible;
}
.intro3 > .wrap {
  min-height: 650px;
  display: flex;
  align-items: center;
}
.intro3:after {
  content: "";
  position: absolute;
  right: -10%;
  top: 5%;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: var(--lime);
  z-index: -2;
}
.intro3:before {
  content: "";
  position: absolute;
  right: 7%;
  top: 20%;
  width: 28vw;
  height: 28vw;
  border: 2px solid var(--teal);
  border-radius: 50%;
  z-index: -1;
}
.intro3 h1 {
  font-size: var(--type-display, clamp(70px, 11vw, 155px));
  line-height: .76;
  letter-spacing: -.085em;
  margin: 25px 0;
}
.intro3 p { font-size: var(--type-body, 19px); max-width: 470px; color: #536078; line-height: 1.65; }
.sequence { background: var(--ice); padding: 100px 0; }
.profile3 {
  min-height: auto;
  display: grid;
  grid-template-columns: 40% 60%;
  position: relative;
  margin: 70px 0;
  align-items: center;
}
.profile3:nth-of-type(even) { grid-template-columns: 60% 40%; }
.profile3:nth-of-type(even) .photo3 { order: 2; }
.photo3 {
  overflow: hidden;
  border-radius: var(--card-radius, 8px);
  height: var(--team-photo-height, 50vh);
}
.photo3 img { width: 100%; height: 100%; object-fit: cover; }
.copy3 { padding: 65px; display: flex; flex-direction: column; justify-content: center; }
.copy3 .number { font-size: 12px; letter-spacing: .18em; color: var(--teal); font-weight: 800; }
.copy3 h2 {
  font-size: var(--type-h2, clamp(55px, 7vw, 96px));
  line-height: .84;
  letter-spacing: -.075em;
  margin: 0 0 22px;
}
.copy3 h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue);
}
.copy3 p { font-size: var(--type-body, 18px); line-height: 1.65; color: #536078; }
.between {
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--blue));
  transform: rotate(-2deg);
  width: 110%;
  margin-left: -5%;
}
.close3 { padding: var(--section-pad, 125px 0); background: var(--blue); color: var(--white, #fff); }
.close3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.close3 h2 {
  font-size: var(--type-h2, clamp(55px, 8vw, 105px));
  line-height: .84;
  letter-spacing: -.075em;
  margin: 0;
}
.close3 p { font-size: var(--type-body, 19px); line-height: 1.6; color: #dbe4ff; }
.close3 .btn { background: #fff; color: var(--blue); }

.contact-layout { padding: 0 0 130px; }
.contact-head {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 70px;
  align-items: end;
}
.contact-head p { font-size: var(--type-body, 19px); line-height: 1.6; color: #526078; }
.contact-cards {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  margin-top: 70px;
}
.appointment { padding: 50px; }
.appointment h2,
.info h2 {
  font-size: var(--type-h3, 38px);
  letter-spacing: -.04em;
  margin: 0 0 30px;
}
.info {
  padding: 50px;
  background: var(--ink);
  color: var(--white, #fff);
  border-radius: var(--card-radius, 7px);
}
.info-block { padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, .2); }
.info-block span {
  display: block;
  color: var(--lime);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  margin-bottom: 9px;
}
.info-block p { font-size: 18px; line-height: 1.55; margin: 0; }
.map-image {
  height: 520px;
  margin-top: 18px;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
.map-image img { width: 100%; height: 100%; object-fit: cover; }
.map-image a,
.map-image span.map-chip {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: #fff;
  padding: 16px 20px;
  color: var(--ink);
  font-weight: 800;
  border-radius: 4px;
  text-decoration: none;
}

@media (max-width: 850px) {
  body.crc-site .site-shell-logo img { width: var(--logo-width-mobile, 132px) !important; }
  .site-shell-header.is-scrolled .site-shell-logo img,
  body.crc-scrolled .site-shell-logo img {
    width: min(var(--logo-width-scrolled, 140px), var(--logo-width-mobile, 132px)) !important;
  }
  .hero--split .hero-grid,
  .page-hero.hero--split .page-hero-grid { grid-template-columns: 1fr; }
  .hero-split-media { min-height: 360px; }
  .site-shell-foot,
  .footer-columns { grid-template-columns: 1fr; gap: 38px; padding-top: 55px; }
  .manifesto-photo,
  .manifesto-photo img { min-height: 280px; }
  .site-shell-meta {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .site-shell-meta > :first-child,
  .site-shell-credit,
  .site-shell-meta > :last-child {
    justify-self: start;
    text-align: left;
  }

  .hero-grid,
  .manifesto-grid,
  .practice-top,
  .housing-grid,
  .contact-grid,
  .page-hero-grid,
  .split-intro,
  .apply-grid,
  .contact-head,
  .contact-cards,
  .profile3,
  .profile3:nth-of-type(even),
  .close3-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: 64px; }
  .hero-copy { padding: 35px 0; }
  .collage { height: 480px; }
  .orb { width: 100px; height: 100px; }
  .orbit { width: 155px; height: 155px; }
  .manifesto { padding: 90px 0; }
  .path-grid { grid-template-columns: 1fr; }
  .path,
  .path:nth-child(2) { transform: none; min-height: 300px; }
  .path h3 { margin-top: 35px; }
  .practice { padding: 95px 0; }
  .service { grid-template-columns: 45px 1fr 30px; }
  .service p { grid-column: 2 / -1; }
  .housing-grid { min-height: auto; }
  .housing-image { height: 390px; }
  .housing-copy { padding: 70px 24px; }
  .contact { padding: 90px 0; }
  .fields { grid-template-columns: 1fr; }
  .image-stage { height: 430px; }
  .split-intro { padding: 90px 0; gap: 30px; }
  .amenity-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; grid-auto-rows: 330px; }
  .photo-grid figure:nth-child(n) { grid-column: auto; grid-row: auto; }
  .gallery-head { align-items: flex-start; flex-direction: column; }
  .profile3:nth-of-type(even) .photo3 { order: 0; }
  .profile3 { min-height: auto; }
  .photo3 { height: var(--team-photo-height, 50vh); }
  .copy3 { padding: 55px 5px; }
  .intro3 { min-height: 550px; }
  .intro3 h1 { font-size: 70px; }
}

@media (max-width: 767px) {
  .site-shell-nav { grid-template-columns: 1fr auto; }
  .site-shell-links,
  .site-shell-header.is-scrolled .site-shell-links,
  body.crc-scrolled .site-shell-links,
  .site-shell-end .site-shell-cta,
  .site-shell-header.is-scrolled .site-shell-end .site-shell-cta,
  body.crc-scrolled .site-shell-end .site-shell-cta {
    display: none !important;
  }
  body.crc-site .site-shell-menu,
  body.crc-site .site-shell-menu:hover,
  body.crc-site .site-shell-menu:focus,
  body.crc-site .site-shell-menu:focus-visible {
    display: grid !important;
    place-items: center;
  }
  .site-shell-mobile:not([hidden]) { display: flex; }
  .photo3 { height: 42vh; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
