* {
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #e6e7e8;
  --body: #222222;
  --muted: #6b6b6b;
  --line: #b7b7b7;
  --accent: #c5d83c;
  --font: proxima-nova, Helvetica, Arial, sans-serif;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.ujhhn-pg {
  min-height: 100vh;
  background: var(--white);
}

.site-header {
  position: relative;
  z-index: 40;
  width: 100%;
}

.utility-nav {
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  white-space: nowrap;
}

.search-icon {
  width: 22px;
  height: 22px;
  border: 2px solid var(--black);
  border-radius: 50%;
  position: relative;
  margin-right: 4px;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  right: -8px;
  bottom: -4px;
  background: var(--black);
  transform: rotate(-45deg);
  transform-origin: center;
}

.primary-nav {
  height: 97px;
  display: grid;
  grid-template-columns: minmax(210px, 360px) 1fr;
  align-items: center;
  background: var(--black);
  color: var(--white);
}

.wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 39px;
  font-weight: 900;
  font-size: 27px;
  line-height: .78;
  text-transform: uppercase;
  text-align: left;
}

.wordmark span {
  display: block;
  width: 100%;
  max-width: 250px;
}

.desktop-menu {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 40px;
}

.desktop-menu > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 15px 25px;
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: color .2s ease;
}

.desktop-menu > a:hover {
  color: var(--accent);
}

.mobile-header {
  display: none;
}

.mobile-panel {
  display: none;
}

.hero {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero.home-hero {
  min-height: 800px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero);
  background-position: center;
  background-size: cover;
  opacity: .78;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.2) 52%, rgba(0,0,0,.24) 100%);
}

.home-hero::after {
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.24) 53%, rgba(0,0,0,.16) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 60px;
}

.hero-kicker {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  max-width: 790px;
  margin: 0;
  color: var(--white);
  font-size: 65px;
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 670px;
}

.hero-copy {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--white);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.25;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  margin-top: 24px;
  padding: 18px 34px;
  border: 2px solid var(--white);
  color: var(--white);
  background: rgba(0,0,0,.22);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.outline-btn:hover {
  background: var(--white);
  color: var(--black);
}

.hero-tabs {
  position: absolute;
  z-index: 3;
  left: 60px;
  right: 60px;
  bottom: 37px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 74px;
}

.hero-tabs a {
  position: relative;
  padding: 0 0 17px;
  color: var(--white);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-tabs a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--white);
}

.hero-tabs a.active::after {
  height: 9px;
}

.pause-dot {
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-left: 7px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  vertical-align: middle;
}

.black-spacer {
  min-height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.black-spacer::before {
  content: "";
  width: 1px;
  height: 96px;
  background: var(--white);
  opacity: .8;
}

.intro-panel {
  padding: 78px 60px 84px;
  background: var(--black);
  color: var(--white);
}

.intro-panel .intro-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.intro-panel h2 {
  max-width: 740px;
  margin: 0 0 28px;
  color: var(--white);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.intro-panel p {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.32;
}

.overview {
  padding: 78px 60px 92px;
  background: var(--white);
}

.overview-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 33% 1fr;
  gap: 72px;
  align-items: start;
}

.side-links {
  display: flex;
  flex-direction: column;
}

.side-links a {
  position: relative;
  display: block;
  padding: 15px 36px 15px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.side-links a:first-child {
  background: var(--black);
  color: var(--white);
}

.side-links a::after {
  content: ">";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 300;
}

.overview-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 30px;
}

.overview h2 {
  margin: 0 0 20px;
  color: #555;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.overview p {
  max-width: 680px;
  margin: 0 0 15px;
  color: #555;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.45;
}

.feature-band {
  position: relative;
  min-height: 510px;
  background: var(--white);
  overflow: hidden;
}

.feature-band img {
  width: 75%;
  height: 420px;
  margin-left: 25%;
  object-fit: cover;
}

.feature-card {
  position: absolute;
  top: 72px;
  left: 0;
  width: 42%;
  min-height: 270px;
  padding: 58px 60px;
  background: var(--black);
  color: var(--white);
}

.feature-card h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
}

.center-statement {
  padding: 16px 60px 170px;
  text-align: center;
  background: var(--white);
}

.center-statement h2 {
  max-width: 820px;
  margin: 0 auto 16px;
  color: #555;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.center-statement p {
  max-width: 840px;
  margin: 0 auto;
  color: #555;
  font-size: 15px;
  line-height: 1.45;
}

.project-band {
  position: relative;
  padding: 98px 60px 120px;
  background: var(--black);
  color: var(--white);
}

.project-layout {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

.project-cards {
  display: grid;
  grid-template-columns: 1.05fr .85fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.project-card {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 28px;
  background: var(--white);
  color: #555;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.1;
}

.project-card small {
  display: block;
  margin-top: 8px;
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.project-arrow {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 2px solid #555;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
}

.project-label h3 {
  max-width: 220px;
  margin: 0 0 26px;
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.black-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-section {
  padding: 74px 60px 92px;
  background: var(--white);
}

.contact-grid,
.contact-page-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.contact-copy h1,
.contact-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: 65px;
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
}

.contact-copy h2 {
  margin-top: 28px;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  text-transform: none;
}

.contact-copy p {
  margin: 24px 0 0;
  color: #333;
  font-size: 17px;
  line-height: 1.45;
}

.captured-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

.captured-form p {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: #222;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #444;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}

.form-field span {
  color: #d26a18;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 43px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  padding: 8px 10px;
  line-height: 1.2;
}

.form-field textarea {
  min-height: 128px;
  resize: vertical;
}

.check-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 12px;
  line-height: 1.35;
}

.check-row input {
  width: 14px;
  height: 14px;
}

.submit-btn {
  justify-self: start;
  padding: 12px 18px;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.news-band {
  background: var(--black);
  color: var(--white);
  padding: 78px 0 0;
}

.news-band h3 {
  margin: 0 20px 68px;
  color: var(--white);
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px 68px;
}

.news-card {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
}

.news-image {
  position: relative;
  height: 150px;
  overflow: hidden;
}

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

.news-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,.52) 100%);
}

.news-card p {
  min-height: 78px;
  margin: 0;
  padding: 18px 20px;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.view-news {
  display: flex;
  justify-content: center;
  padding-bottom: 72px;
  background: var(--white);
}

.view-news a {
  margin-top: 0;
  padding: 15px 28px;
  border: 2px solid var(--black);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  background: var(--black);
  color: var(--white);
}

.footer-main {
  max-width: 1320px;
  min-height: 140px;
  margin: 0 auto;
  padding: 38px 60px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}

.footer-main h4 {
  margin: 0 0 11px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.footer-main p,
.footer-main a {
  margin: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.footer-links a:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
}

.footer-legal {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  line-height: 1.3;
}

.footer-legal a {
  text-decoration: underline;
}

.basic-page {
  padding: 78px 60px 110px;
  background: var(--white);
}

.basic-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 88px;
}

.basic-copy h2 {
  margin: 0 0 22px;
  color: #555;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.basic-copy p {
  margin: 0 0 18px;
  color: #555;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.48;
}

.side-box {
  padding: 32px;
  border: 1px solid var(--line);
  align-self: start;
}

.side-box h3 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.side-box p,
.side-box a {
  display: block;
  margin: 0 0 14px;
  color: #333;
  font-size: 15px;
  line-height: 1.4;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 18px;
  padding: 40px;
  font-family: var(--font);
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: 42px;
  text-transform: uppercase;
}

.not-found p {
  margin: 0;
  line-height: 1.4;
}

.not-found a {
  display: inline-block;
  justify-self: center;
  padding: 12px 20px;
  border: 2px solid var(--black);
}

@media (max-width: 1000px) {
  body {
    font-size: 16px;
    line-height: 1;
  }

  .utility-nav,
  .primary-nav {
    display: none;
  }

  .mobile-header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: var(--black);
    color: var(--white);
  }

  .wordmark {
    padding: 0;
    font-size: 13px;
    line-height: .9;
  }

  .wordmark span {
    max-width: 150px;
  }

  .dot-menu {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }

  .dot-menu span {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: var(--white);
    transition: transform .25s ease, opacity .2s ease;
  }

  /* Hamburger morphs into an X while the menu is open (the in-panel close
     button is the primary affordance, this is a nicety). */
  body.menu-open .dot-menu span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

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

  body.menu-open .dot-menu span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Dark overlay behind the drawer. */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: none;
    background: rgba(0, 0, 0, .55);
  }

  body.menu-open .mobile-overlay {
    display: block;
  }

  .mobile-panel {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 360px);
    z-index: 60;
    display: none;
    background: var(--black);
    color: var(--white);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 76px 26px 44px;
    box-shadow: -18px 0 48px rgba(0, 0, 0, .4);
  }

  body.menu-open .mobile-panel {
    display: block;
  }

  /* Visible close (X) button, top-right of the drawer. */
  .mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }

  .mobile-close span {
    position: absolute;
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: var(--white);
  }

  .mobile-close span:nth-child(1) {
    transform: rotate(45deg);
  }

  .mobile-close span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .mobile-panel a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
    color: var(--white);
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .hero,
  .hero.home-hero {
    min-height: 395px;
    align-items: flex-end;
  }

  .hero::before {
    background-position: center;
  }

  .home-hero::before {
    background-position: center;
  }

  .hero-content {
    padding: 0 20px 74px;
  }

  .home-hero .hero-content {
    padding-bottom: 104px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 11px;
    line-height: 1.35;
  }

  .hero h1,
  .hero h2 {
    max-width: 350px;
    font-size: 32px;
    line-height: .9;
  }

  .hero-copy {
    display: none;
  }

  .outline-btn {
    min-width: 184px;
    margin-top: 18px;
    padding: 17px 28px;
    font-size: 16px;
  }

  .hero-tabs {
    display: none;
  }

  .mobile-pause {
    position: absolute;
    right: 14px;
    bottom: 12px;
    z-index: 3;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 900;
  }

  .black-spacer {
    display: none;
  }

  .intro-panel {
    padding: 52px 20px 58px;
  }

  .intro-panel h2 {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1;
  }

  .intro-panel p {
    font-size: 20px;
    line-height: 1.32;
  }

  .overview {
    padding: 34px 20px 0;
  }

  .overview-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .overview-image {
    margin: 0;
  }

  .overview h2 {
    font-size: 28px;
    line-height: 1;
  }

  .overview p {
    font-size: 16px;
    line-height: 1.45;
  }

  .side-links {
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .side-links a {
    padding: 15px 42px 15px 20px;
    background: var(--white);
    color: var(--black);
    font-size: 10px;
  }

  .side-links a:first-child {
    background: var(--white);
    color: var(--black);
  }

  .side-links a::after {
    content: "⌄";
    font-size: 16px;
  }

  .feature-band {
    min-height: 0;
    background: var(--black);
  }

  .feature-band img {
    width: 100%;
    height: 220px;
    margin: 0;
  }

  .feature-card {
    position: static;
    width: 100%;
    min-height: 0;
    padding: 28px 20px 42px;
  }

  .feature-card h3 {
    font-size: 14px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .center-statement {
    padding: 50px 20px 160px;
  }

  .center-statement h2 {
    font-size: 24px;
    line-height: 1.05;
  }

  .center-statement p {
    font-size: 12px;
  }

  .project-band {
    padding: 42px 20px 34px;
  }

  .project-layout,
  .project-cards {
    display: block;
  }

  .project-label {
    margin-bottom: 48px;
  }

  .project-label h3 {
    margin: 0 0 26px;
    font-size: 14px;
  }

  .project-card {
    min-height: 0;
    margin-bottom: 38px;
    padding: 0;
    background: var(--black);
    color: var(--white);
    font-size: 16px;
    text-decoration: underline;
  }

.project-card small {
    color: var(--white);
    font-size: 9px;
    text-decoration: none;
  }

  .project-arrow {
    border-color: var(--white);
    color: var(--white);
  }

  .contact-section {
    padding: 34px 20px 76px;
  }

  .contact-grid,
  .contact-page-grid,
  .basic-grid {
    display: block;
  }

  .contact-copy {
    margin-bottom: 30px;
  }

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

  .contact-copy h2 {
    font-size: 24px;
    line-height: 1;
  }

  .captured-form {
    display: block;
  }

  .captured-form p,
  .form-field,
  .check-row {
    margin-bottom: 17px;
  }

  .form-field label {
    font-size: 13px;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    min-height: 42px;
  }

  .news-band {
    padding-top: 44px;
  }

  .news-band h3 {
    margin-bottom: 44px;
    font-size: 13px;
  }

  .news-cards {
    display: block;
    padding: 0 0 20px;
  }

  .news-card {
    margin-bottom: 40px;
  }

  .news-image {
    height: 120px;
  }

  .news-card p {
    min-height: 0;
    padding: 13px 20px 22px;
    font-size: 12px;
  }

  .view-news {
    padding: 28px 0 48px;
  }

  .footer-main {
    min-height: 0;
    display: block;
    padding: 34px 20px;
  }

  .footer-main > div:first-child {
    margin-bottom: 28px;
  }

  .footer-links {
    display: block;
  }

  .footer-links a {
    display: block;
    margin-bottom: 5px;
  }

  .footer-links a::after {
    display: none;
  }

  .footer-legal {
    min-height: 40px;
    padding: 8px 20px;
    font-size: 10px;
  }

  .basic-page {
    padding: 42px 20px 72px;
  }

  .basic-copy h2 {
    font-size: 28px;
  }

  .side-box {
    margin-top: 30px;
    padding: 24px 20px;
  }
}

.taxonomy-band .project-layout {
  grid-template-columns: 1fr 300px;
}

.taxonomy-cards {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.taxonomy-cards .project-card {
  min-height: 128px;
}

/* =====================================================================
   GLOBAL MOBILE-SAFETY NET (applies to every page / both themes)
   ===================================================================== */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

img,
iframe,
video,
svg {
  max-width: 100%;
}

iframe,
video {
  height: auto;
}

/* Comfortable tap targets on the live contact/lead form fields
   (.ujhhn-h-contact-form is the class actually used by the served forms). */
.ujhhn-h-contact-form input,
.ujhhn-h-contact-form select {
  min-height: 46px;
  padding: 10px 12px;
}

.ujhhn-h-contact-form textarea {
  min-height: 132px;
  padding: 10px 12px;
}

.ujhhn-h-contact-form label {
  font-weight: 600;
}

/* =====================================================================
   SLUG / DETAIL THEME ( .site-shell + .er-header )
   These pages load this stylesheet but had NO rules for their classes,
   so they previously rendered as raw unstyled HTML. The block below
   gives them an on-theme layout (charcoal header, accent links, readable
   article + sidebar) and a functional, styled mobile hamburger built on
   the native <details class="mobile-nav"> element already in the markup.
   ===================================================================== */
.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--white);
  color: var(--body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
}

.site-shell main {
  flex: 1 0 auto;
}

.er-header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 40px;
  background: var(--black);
  color: var(--white);
}

.er-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.er-nav.left {
  justify-content: flex-start;
}

.er-nav.right {
  justify-content: flex-end;
}

.er-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: color .2s ease;
}

.er-nav a:hover {
  color: var(--accent);
}

.er-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.er-logo img {
  height: 52px;
  width: auto;
}

/* Native <details> hamburger — hidden on desktop, shown on mobile. */
.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav .mobile-toggle {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.mobile-nav .mobile-toggle::-webkit-details-marker {
  display: none;
}

.mobile-nav .mobile-toggle::before,
.mobile-nav .mobile-toggle::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--white);
}

/* Middle bar of the burger. */
.mobile-nav .mobile-toggle {
  background-image: linear-gradient(var(--white), var(--white));
  background-size: 28px 3px;
  background-position: center;
  background-repeat: no-repeat;
}

/* When the menu is open, turn the toggle into a clear X (close affordance)
   and float it above the drawer so it stays tappable as the close button. */
.mobile-nav[open] .mobile-toggle {
  background-image: none;
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 1002;
}

.mobile-nav[open] .mobile-toggle::before {
  transform: translateY(9px) rotate(45deg);
}

.mobile-nav[open] .mobile-toggle::after {
  transform: translateY(-9px) rotate(-45deg);
}

/* Dark overlay behind the drawer (rendered as the drawer's backdrop). */
.mobile-nav[open]::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, .55);
}

.mobile-nav .mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 72px 26px 40px;
  background: var(--black);
  box-shadow: -18px 0 48px rgba(0, 0, 0, .4);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav .mobile-menu a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  color: var(--white);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Inner hero / content card */
.content-card {
  padding: 0 40px;
}

.inner-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 0 8px;
}

.inner-hero .eyebrow,
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.inner-hero h1 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.inner-hero p {
  max-width: 760px;
  margin: 0 0 22px;
  color: #444;
  font-size: 18px;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 26px;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: background .2s ease, color .2s ease;
}

.btn:hover {
  background: var(--white);
  color: var(--black);
}

.content-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
}

.article-body p {
  margin: 0 0 18px;
  color: #3a3a3a;
  font-size: 17px;
  line-height: 1.62;
}

.article-body h2 {
  margin: 32px 0 16px;
  color: var(--black);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
}

.faq {
  margin-top: 26px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}

.faq summary {
  cursor: pointer;
  padding: 14px 0;
  color: var(--black);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.faq details p {
  margin: 0 0 16px;
  color: #444;
  font-size: 16px;
  line-height: 1.55;
}

.side-panel {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--gray);
}

.side-panel h3 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.side-panel a {
  display: block;
  margin: 0 0 12px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.4;
  border-bottom: 1px solid transparent;
}

.side-panel a:hover {
  border-bottom-color: var(--black);
}

/* Slug-theme footer */
.site-shell .footer {
  background: var(--black);
  color: var(--white);
}

.site-shell .footer .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 40px 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 16px;
}

.footer-grid p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.55;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 9px;
}

.footer-grid a {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.4;
  transition: color .2s ease;
}

.footer-grid a:hover {
  color: var(--accent);
}

.site-shell .footer .legal {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 40px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
}

.site-shell .footer .legal a {
  color: rgba(255, 255, 255, .6);
  text-decoration: underline;
}

/* ---- SLUG THEME mobile ---- */
@media (max-width: 768px) {
  .er-header {
    grid-template-columns: 1fr auto;
    padding: 14px 18px;
  }

  .er-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    justify-self: end;
  }

  .er-logo {
    justify-self: start;
  }

  .er-logo img {
    height: 42px;
  }

  .content-card {
    padding: 0 18px;
  }

  .inner-hero {
    padding: 30px 0 4px;
  }

  .inner-hero h1 {
    font-size: 28px;
  }

  .inner-hero p {
    font-size: 16px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 26px 0 48px;
  }

  .article-body p {
    font-size: 16px;
  }

  .article-body h2 {
    font-size: 22px;
  }

  .side-panel {
    padding: 22px 20px;
  }

  .site-shell .footer .wrap {
    padding: 36px 18px 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-shell .footer .legal {
    padding: 18px 18px 32px;
  }
}

/* ===================================================================
   Tallahassee redesign — cinematic homepage sections, real arrows,
   footer SEO + map, form styling. Loads last -> wins. (?v=tlh2)
   =================================================================== */
:root{ --accent-ink:#1a1d10; }
.r-arrow{display:inline-block;vertical-align:middle}

/* ---- real round arrow buttons (replaces the ">" spans) ---- */
.project-arrow,.card-arrow{display:inline-grid !important;place-items:center;width:46px;height:46px;border-radius:50%;
  border:2px solid var(--accent);color:var(--accent);flex:0 0 auto;transition:.2s;font-size:0;background:transparent}
.project-card:hover .project-arrow{background:var(--accent);color:var(--accent-ink)}

/* ---- cinematic project-band cards (were plain white boxes) ---- */
.project-band{padding:84px 6vw}
.project-layout{display:grid;grid-template-columns:1fr 300px;gap:44px;align-items:start}
.project-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.project-card--cine{position:relative;display:flex;justify-content:space-between;align-items:flex-end;gap:16px;
  min-height:230px;padding:26px;overflow:hidden;text-decoration:none;color:#fff;border:0;border-radius:6px;
  background:#15161a var(--card-img) center/cover no-repeat;}
.project-card--cine::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,9,11,.12) 0%,rgba(8,9,11,.55) 55%,rgba(8,9,11,.9) 100%);transition:.3s}
.project-card--cine:hover::before{background:linear-gradient(180deg,rgba(8,9,11,.2),rgba(8,9,11,.78))}
.project-card--cine > span:first-child{position:relative;z-index:1;display:flex;flex-direction:column;gap:8px;font-weight:800;font-size:1.35rem;line-height:1.12;color:#fff;text-transform:none}
.project-card--cine small{font-weight:400;font-size:.95rem;line-height:1.4;color:#e7e8df;opacity:.92}
.project-card--cine .project-arrow{position:relative;z-index:1;border-color:#fff;color:#fff;background:rgba(255,255,255,.12)}
.project-card--cine:hover .project-arrow{background:var(--accent);border-color:var(--accent);color:var(--accent-ink)}
.project-band .project-side h2,.project-band > .project-layout > div:last-child h2,.project-band h2{font-size:2rem;line-height:1.05;text-transform:uppercase}

/* ---- cinematic news-band ("Commercial Roofing Notes") ---- */
.news-band{padding:84px 6vw;background:#0f1013;color:#fff}
.news-band > h3{font-size:2rem;text-transform:uppercase;margin:0 0 36px;max-width:24ch}
.news-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.news-card{display:flex;flex-direction:column;background:#17181c;border-radius:6px;overflow:hidden;text-decoration:none;color:#fff;transition:.22s;border:1px solid rgba(255,255,255,.08)}
.news-card:hover{transform:translateY(-5px);border-color:var(--accent)}
.news-image{aspect-ratio:16/10;overflow:hidden}
.news-image img{width:100%;height:100%;object-fit:cover;display:block;transition:.4s}
.news-card:hover .news-image img{transform:scale(1.06)}
.news-card p{margin:0;padding:22px;font-size:1.02rem;line-height:1.5;flex:1}
.news-card p::after{content:"Read more →";display:block;margin-top:14px;color:var(--accent);font-weight:700;font-size:.9rem}

/* ---- cinematic Locations section (new) ---- */
.locations-band{padding:84px 6vw;background:var(--black);color:#fff}
.locations-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:40px;flex-wrap:wrap}
.locations-head h2{font-size:2.1rem;line-height:1.05;text-transform:uppercase;max-width:20ch;margin:.2em 0 0}
.band-eyebrow{color:var(--accent);font-weight:800;letter-spacing:.18em;text-transform:uppercase;font-size:.8rem;margin:0}
.band-cta{display:inline-flex;align-items:center;gap:10px;color:var(--accent);font-weight:800;text-transform:uppercase;letter-spacing:.04em;font-size:.9rem;text-decoration:none;white-space:nowrap}
.band-cta:hover{color:#fff}
.locations-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.loc-card{position:relative;display:flex;flex-direction:column;justify-content:flex-end;min-height:230px;padding:22px;overflow:hidden;border-radius:6px;text-decoration:none;color:#fff;background:#15161a var(--loc-img) center/cover no-repeat}
.loc-card::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,9,11,.1),rgba(8,9,11,.85));transition:.3s}
.loc-card:hover::before{background:linear-gradient(180deg,rgba(197,216,60,.18),rgba(8,9,11,.82))}
.loc-card__name{position:relative;z-index:1;font-weight:800;font-size:1.2rem}
.loc-card__go{position:relative;z-index:1;display:inline-flex;align-items:center;gap:8px;margin-top:8px;color:var(--accent);font-weight:700;font-size:.85rem;text-transform:uppercase;letter-spacing:.05em}

/* ---- footer SEO link columns + map ---- */
.footer-seo{display:grid;grid-template-columns:repeat(5,1fr);gap:28px;padding:48px 6vw;border-top:1px solid rgba(255,255,255,.12)}
.footer-col h5{font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;color:var(--accent);margin:0 0 14px}
.footer-col a{display:block;padding:5px 0;color:#cfd0cb;font-size:.92rem;text-decoration:none}
.footer-col a:hover{color:#fff}
.footer-map iframe{width:100%;min-width:200px;height:150px;border:0;border-radius:6px;filter:grayscale(.3)}

/* ---- contact forms: designed to match (the .ujhhn-h-contact-form) ---- */
.ujhhn-h-contact-form{display:grid;gap:16px;grid-template-columns:1fr 1fr}
.ujhhn-h-contact-form label{display:grid;gap:6px;font-weight:700;font-size:.86rem;text-transform:uppercase;letter-spacing:.04em}
.ujhhn-h-contact-form label:has(textarea),.ujhhn-h-contact-form .full,.ujhhn-h-contact-form button{grid-column:1/-1}
.ujhhn-h-contact-form input,.ujhhn-h-contact-form select,.ujhhn-h-contact-form textarea{width:100%;box-sizing:border-box;min-height:50px;padding:13px 15px;border:1px solid var(--line);border-radius:4px;font:inherit;background:#fff}
.ujhhn-h-contact-form textarea{min-height:130px;resize:vertical}
.ujhhn-h-contact-form input:focus,.ujhhn-h-contact-form select:focus,.ujhhn-h-contact-form textarea:focus{outline:2px solid var(--accent);border-color:var(--accent)}
.ujhhn-h-contact-form button{background:var(--black);color:#fff;border:0;padding:16px;font-weight:800;text-transform:uppercase;letter-spacing:.06em;cursor:pointer;border-radius:4px}
.ujhhn-h-contact-form button:hover{background:var(--accent);color:var(--accent-ink)}

/* ===================================================================
   Tallahassee ER-theme inner pages -> match the homepage editorial.
   (slug/about/index/contact bodies + mobile)
   =================================================================== */
/* kill the black-spacer line artifact, slim it */
.black-spacer{min-height:48px !important;}
.black-spacer > *,.black-spacer::before,.black-spacer::after{display:none !important;}

/* content wrapper + 2-col grid */
.content-card,.basic-page{background:#fff}
.content-card{max-width:1240px;margin:0 auto;padding:60px 6vw}
.content-grid{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:54px;align-items:start}
.article-body{font-size:1.06rem;line-height:1.75;color:var(--body);max-width:none}
.article-body > h1:first-child,.article-body .eyebrow{display:block}
.article-body h2,.article-body h3,.article-body h4{color:var(--black);text-transform:none;line-height:1.12;letter-spacing:0}
.article-body h2{font-size:1.7rem;margin:36px 0 14px}
.article-body h3{font-size:1.26rem;margin:26px 0 10px}
.article-body p{margin:0 0 18px}
.article-body ul,.article-body ol{margin:0 0 18px;padding-left:22px}.article-body li{margin:0 0 8px}
.article-body a{color:#46630a;font-weight:600}.article-body a:hover{text-decoration:underline}

/* side panel -> clean dark contact card matching homepage */
.side-panel{position:sticky;top:96px;background:var(--black);color:#fff;padding:28px;border-top:4px solid var(--accent);border-radius:4px}
.side-panel h2,.side-panel h3,.side-panel h4,.side-panel p,.side-panel strong{color:#fff}
.side-panel a{color:var(--accent);text-decoration:none}
.side-panel a:hover{color:#fff}

/* index / hub pages: card grids */
.taxonomy-index,.index-grid,.hub-grid,.link-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.index-card,.hub-card,.taxonomy-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--gray);border-radius:4px;overflow:hidden;text-decoration:none;color:var(--body);transition:.2s}
.index-card:hover,.hub-card:hover,.taxonomy-card:hover{border-color:var(--accent);transform:translateY(-4px);box-shadow:0 16px 36px rgba(0,0,0,.1)}
.index-card h2,.index-card h3,.hub-card h3{padding:18px 20px 0;margin:0;font-size:1.12rem;color:var(--black);text-transform:none}
.index-card p,.hub-card p{padding:8px 20px 20px;margin:0;font-size:.95rem;color:var(--muted);flex:1}

/* contact page polish */
.contact-section,.contact-layout{background:#fff}
.contact-section{padding:64px 6vw}
.contact-layout{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:54px;align-items:start;max-width:1240px;margin:0 auto}
.contact-map iframe,.contact-section iframe{width:100%;height:340px;border:0;border-radius:6px}

/* ---- MOBILE ---- */
@media (max-width:1000px){
  .project-layout{grid-template-columns:1fr;gap:28px}
  .project-cards{grid-template-columns:1fr 1fr}
  .locations-grid{grid-template-columns:1fr 1fr}
  .news-cards{grid-template-columns:1fr 1fr}
  .footer-seo{grid-template-columns:repeat(2,1fr);gap:22px}
}
@media (max-width:768px){
  .content-grid,.contact-layout{grid-template-columns:1fr;gap:30px}
  .side-panel{position:static}
  .ujhhn-h-contact-form{grid-template-columns:1fr}
  .project-cards,.locations-grid,.news-cards,.footer-seo,.taxonomy-index,.index-grid{grid-template-columns:1fr}
  .locations-head{flex-direction:column;align-items:flex-start;gap:12px}
  .project-band,.news-band,.locations-band,.content-card{padding-left:5vw;padding-right:5vw}
  .project-card--cine,.loc-card{min-height:200px}
  .news-band > h3,.locations-head h2,.project-band h2{font-size:1.6rem}
}

/* brand-logo */
.brand-logo{height:52px;width:auto;display:block;max-width:320px}
.mobile-header .brand-logo{height:40px}
@media (max-width:1000px){.brand-logo{height:40px}}
