:root {
  --black: #000;
  --paper: #fff;
  --soft: #e0e0e0;
  --muted: #9b9b9b;
  --rule: rgba(224, 224, 224, 0.58);
  --dark-card: #050505;
  --site-gutter: 4vw;
  --site-max: 1800px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--black);
  color: var(--soft);
  font-family: "Work Sans", acumin-pro, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 2.2vw var(--site-gutter);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}

.header-logo,
.header-nav,
.menu-button {
  pointer-events: auto;
}

.header-logo {
  display: block;
  width: 285px;
  max-width: 30vw;
}

.header-logo img {
  width: 100%;
  height: auto;
}

.header-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  padding-top: 10px;
}

.header-nav a {
  font-size: 17.728px;
  line-height: 30.1376px;
  font-weight: 500;
  color: var(--soft);
  text-decoration: none;
  transition: color 0.9s ease, opacity 0.9s ease;
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 0.28em;
}

.menu-button {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  width: 32px;
  height: 24px;
  padding: 0;
  margin-top: 2px;
  position: relative;
}

.menu-button span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--soft);
  margin: 7px 0;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.menu-open .menu-button span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-button span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.97);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
  gap: 18px;
  text-align: center;
}

.mobile-menu a {
  font-size: 54px;
  line-height: 54px;
  color: var(--paper);
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  background: var(--black);
}

.hero {
  min-height: 84vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 14vw var(--site-gutter) 7vw;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.22) 46%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 52%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-left: 4.3vw;
}

.hero h1 {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: clamp(58px, 6.03vw, 94px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.content-band {
  padding: 8vw var(--site-gutter);
  background: var(--black);
}

.content-band.compact {
  padding-top: 5vw;
  padding-bottom: 5vw;
}

.content-band.tight-top {
  padding-top: 1vw;
}

.content-band.tall-bottom {
  padding-bottom: 18vw;
}

.inner {
  max-width: var(--site-max);
  margin: 0 auto;
}

.statement {
  max-width: 840px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  gap: 6vw;
  align-items: end;
  max-width: calc(var(--site-max) - 8vw);
}

.section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(42px, 3.7vw, 72px);
  line-height: 1.12;
}

.section-heading .lead {
  margin-top: 18px;
}

.eyebrow,
.card-kicker {
  display: inline-block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.text-link {
  justify-self: end;
  align-self: end;
  color: var(--paper);
  font-size: 16px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
}

.statement.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h1,
h2,
h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--soft);
}

.statement h2,
.split-copy h1,
.contact-title,
.detail-title {
  margin: 0;
  font-size: clamp(48px, 4.2vw, 76px);
  line-height: 1.18;
}

.index-intro h1 {
  margin: 0;
  font-size: clamp(32px, 3vw, 54px);
  line-height: 1.22;
}

.lead {
  margin: 34px 0 0;
  max-width: 820px;
  color: var(--soft);
  font-size: clamp(21px, 1.55vw, 28px);
  line-height: 1.58;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 8vw;
  align-items: center;
  padding-top: 11vw;
}

.split-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.08);
}

.rule {
  height: 1px;
  background: var(--rule);
  margin: 8vw 0;
}

.track-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 6vw;
}

.text-track {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}

.text-track h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 2.3vw, 44px);
  line-height: 1.2;
}

.text-track p,
.contact-panel p,
.detail-body p,
.card-copy {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.62;
}

.text-track a,
.button-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 170px;
  min-height: 67px;
  padding: 18px 27px;
  margin-top: 18px;
  border: 2px solid var(--paper);
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.45s ease, color 0.45s ease;
}

.text-track a:hover,
.button-link:hover {
  background: var(--paper);
  color: var(--black);
}

.index-intro {
  max-width: 680px;
  margin: 0 auto;
  padding: 10vw 0 3vw;
  text-align: center;
}

.filter-row {
  max-width: calc(var(--site-max) - 8vw);
  margin: 0 auto 6vw;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 24px;
}

.filter-row select {
  width: 240px;
  max-width: 100%;
  background: #060606;
  color: var(--soft);
  border: 1px solid rgba(224, 224, 224, 0.14);
  padding: 14px 16px;
  border-radius: 0;
  font-family: "Work Sans", Arial, sans-serif;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: calc(var(--site-max) - 8vw);
  margin: 0 auto;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 5vw;
}

.faithful-card {
  position: relative;
  min-height: clamp(460px, 43vw, 720px);
  background: var(--dark-card);
  color: var(--paper);
  text-decoration: none;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.feature-card {
  min-height: 450px;
  aspect-ratio: 0.82 / 1;
}

.faithful-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.05);
  transition: filter 0.55s ease, transform 0.55s ease, opacity 0.55s ease;
}

.faithful-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.28) 34%, rgba(0, 0, 0, 0.84) 100%),
    rgba(0, 0, 0, 0.18);
  opacity: 1;
  transition: opacity 0.55s ease;
}

.faithful-card:hover img {
  filter: grayscale(1);
  transform: scale(1.035);
}

.faithful-card:hover::after,
.faithful-card:focus-visible::after {
  opacity: 0.96;
}

.card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(24px, 2.2vw, 40px);
  transform: none;
}

.card-body h2,
.card-body h3 {
  margin: 10px 0 0;
  color: var(--paper);
  font-size: clamp(25px, 2.35vw, 45px);
  line-height: 1.08;
}

.card-copy {
  margin: 18px 0 0;
  color: var(--paper);
  font-size: clamp(15px, 1.02vw, 18px);
  line-height: 1.48;
}

.detail-hero {
  padding: 10vw var(--site-gutter) 4vw;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 7vw;
  align-items: center;
}

.detail-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-kicker {
  color: var(--muted);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.detail-body {
  max-width: 1020px;
  margin: 0 auto;
  columns: 2 340px;
  column-gap: 7vw;
}

.detail-body p {
  margin: 0 0 25px;
  break-inside: avoid;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 4vw;
}

.related-link {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  color: var(--soft);
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
}

.related-link:hover {
  color: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.35fr);
  gap: 7vw;
  padding: 14vw var(--site-gutter) 8vw;
}

.contact-stack {
  display: grid;
  gap: 54px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 54px;
}

.contact-panel h2 {
  margin: 0 0 28px;
  font-size: clamp(32px, 2.8vw, 54px);
  line-height: 1.16;
  color: var(--paper);
}

.contact-panel p {
  margin: 0;
  max-width: 620px;
}

.site-footer {
  padding: 8vw var(--site-gutter) 4vw;
  border-top: 1px solid var(--rule);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.62fr)) minmax(280px, 1fr);
  gap: clamp(28px, 3vw, 58px);
  max-width: var(--site-max);
  margin: 0 auto;
  align-items: start;
}

.footer-mark {
  width: 98px;
  margin-bottom: 28px;
}

.footer-name {
  font-family: Georgia, serif;
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 14px;
}

.footer-brand p,
.footer-column,
.footer-bottom {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.55;
}

.footer-brand p {
  margin: 0 0 18px;
  max-width: 430px;
}

.footer-brand a,
.footer-column a,
.footer-bottom a {
  text-decoration: none;
}

.footer-brand a:hover,
.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.footer-column h2 {
  margin: 7px 0 22px;
  color: var(--paper);
  font-family: "Work Sans", acumin-pro, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-column a {
  display: block;
  margin: 0 0 13px;
  color: var(--soft);
}

.footer-map {
  min-height: 240px;
  border: 1px solid rgba(224, 224, 224, 0.18);
  overflow: hidden;
  background: #101010;
}

.footer-map iframe {
  display: block;
  width: 100%;
  min-height: 240px;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.88);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--site-max);
  margin: 6vw auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(224, 224, 224, 0.2);
  font-size: 14px;
}

.preFade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.preFade.fadeIn {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    padding: 6vw;
    align-items: flex-start;
  }

  .header-logo {
    width: 37px;
    height: 37px;
    overflow: hidden;
  }

  .header-logo img {
    width: 37px;
    height: 37px;
    object-fit: cover;
    object-position: left top;
  }

  .header-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 61vh;
    padding: 18vw 6vw 10vw;
    align-items: center;
  }

  .hero-copy {
    padding-left: 0;
    max-width: 330px;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 58px);
    line-height: 1.45;
  }

  .content-band {
    padding: 18vw 6vw;
  }

  .split,
  .detail-grid,
  .contact-grid,
  .section-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .text-link {
    justify-self: start;
  }

  .split {
    padding-top: 22vw;
  }

  .split-image {
    order: -1;
  }

  .track-list,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .index-intro {
    padding-top: 26vw;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .card-body {
    padding: 24px;
    transform: none;
  }

  .faithful-card::after {
    opacity: 1;
    background: rgba(0, 0, 0, 0.18);
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    margin-top: 12vw;
  }

  .mobile-menu a {
    font-size: 46px;
    line-height: 48px;
  }
}


/* brand-logo swap (greensboro) */
.header-logo { display:flex; align-items:center; }
.header-logo .brand-logo { height:34px; width:auto; max-width:320px; display:block; opacity:1!important; visibility:visible!important; }
@media (max-width: 900px) {
  /* keep theme's icon-only mobile treatment: crop the wordmark to its left building mark */
  .header-logo { width:37px; height:37px; overflow:hidden; }
  .header-logo .brand-logo { height:37px; width:auto; max-width:none; object-fit:cover; object-position:left center; }
}
