* { box-sizing: border-box; }

html {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #fff4ee 25%,
    #ffe1d2 55%,
    #F84800 100%
  );
  background-attachment: fixed;
}

html.page-white { background: #ffffff; }

body {
  margin: 0;
  color: #111111;
  font-family: Arial, sans-serif;
  background: transparent;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: #F84800;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-nav a {
  font-family: "Josefin Sans", Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.top-nav a:hover { color: #000000; }

.top-nav a.active,
.top-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.banner {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.word {
  font-family: "Vina Sans", Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(5rem, 16vw, 20rem);
  line-height: 0.82;
  margin: 0;
  color: #F84800;
  position: relative;
  white-space: nowrap;
  z-index: 5;
}

.gritty-title {
  position: absolute;
  top: 10px;
  left: 20px;
  color: #000000;
  z-index: 40;
}

.philly {
  position: sticky;
  top: 62vh;
  padding-left: 20px;
}

.flyers {
  position: absolute;
  top: 62vh;
  right: 20px;
  text-align: right;
}

.gritty-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

.gritty {
  width: 100%;
  max-width: min(900px, 85vw);
  height: auto;
}

.tagline {
  padding: 3rem 20px 4rem;
  font-family: "Josefin Sans", Arial, sans-serif;
}

.tagline p {
  margin: 0;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.intro-section { 
  position: relative; 
  padding: 24px 0 28px; 
}

.intro-section::before,
.intro-section::after {
  content: "";
  position: absolute;
  left: 0; 
  right: 0;
  height: 2px;
  background: #F84800;
}

.intro-section::before { top: 12px; }
.intro-section::after { bottom: 12px; }

.intro-position { 
  position: absolute; 
  left: clamp(12px, 3vw, 28px); 
  top: 64px; 
}

.intro-label {
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: .04em; 
  color: #111111;
}

.intro-card {
  width: 75%;
  margin: 40px 0 40px auto;
  min-height: 80vh;
  padding: clamp(20px, 5vw, 44px);
  background: #F84800;
  color: #ffffff;
}

.intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 48px);
}

.intro-columns p {
  margin: 0;
  color: #ffffff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.6;
}

.feature {
  padding: 20px;
  width: 100%;
  margin-bottom: 60px;
}

.feature-panel {
  position: relative;
  width: min(980px, 92vw);
  height: clamp(220px, 32vw, 360px);
  padding: clamp(16px, 2.5vw, 28px);
  overflow: visible;
}

.feature-title {
  margin: 0 0 6px 0;
  line-height: .9;
  font-family: "Vina Sans", Arial, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  font-size: clamp(3.8rem, 11vw, 8.5rem);
  position: relative;
  z-index: 2;
}

.feature-cta {
  display: inline-block;
  margin-top: 4px;
  background: transparent;
  border: none;
  padding: .35rem 0;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: color .2s, text-shadow .2s;
  position: relative;
  z-index: 2;
  color: #F84800;
}

.feature-cta:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255,255,255,.55);
}

.feature-image {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 120%;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.feature-black {
  display: flex;
  justify-content: flex-start;
}

.feature-black .feature-panel {
  background: #000000;
}

.feature-orange {
  display: flex;
  justify-content: flex-end;
}

.feature-orange .feature-panel {
  background: #F84800;
}

.feature-orange .feature-cta {
  color: #000000;
}

.feature-orange .feature-cta:hover {
  color: #ffffff;
}

.feature--origins .feature-title {
  font-size: 160px;
}

.feature--origins .feature-image {
  right: -10px;
  bottom: -100px;
  max-height: 160%;
}

.subhero {
  background: #ffffff;
  padding: 96px 20px 24px;
}

.page-title {
  margin: 0;
  text-align: center;
  font-family: "Vina Sans", Arial, sans-serif;
  text-transform: uppercase;
  color: #F84800;
  line-height: .9;
  font-size: clamp(4rem, 16vw, 14rem);
}

.edge-image-wrap { margin: 0; }

.edge-image {
  display: block;
  width: 100%;
  height: auto;
}

.return-home {
  position: fixed;
  bottom: 20px;
  right: 24px;
  padding: 10px 16px;
  border-radius: 4px;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  background: #F84800;
  color: #ffffff;
  z-index: 9999;
}

.return-home:hover {
  background: #000000;
  color: #F84800;
}

.site-footer {
  width: 100%;
  background: white;
  padding: 18px 24px;
  margin-top: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.site-footer p {
  margin: 0;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #F84800;
  text-transform: none;
  letter-spacing: 0.03em;
}

@media (max-width: 640px) {
  .philly, .flyers { top: 58vh; }
}

@media (max-width: 900px) {
  .intro-columns { grid-template-columns: 1fr; }
  .intro-rail { top: 36px; }
}

@media (max-width: 520px) { 
  .intro-label { font-size: 14px; } 
}
