:root {
  --navy: #062650;
  --deep-navy: #001d43;
  --blue: #1167c4;
  --gold: #f6a400;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: #0864c5; text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }

.site-header {
  min-height: 290px;
  padding: 8px 3.2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}
.site-logo { width: 365px; max-height: none; height: auto; margin: -41px 0; object-fit: contain; }
.facebook-icon, .round-icon {
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.facebook-icon {
  width: 58px;
  height: 58px;
  margin-right: 2.2%;
  background: var(--navy);
  font: 700 45px/1 Arial, sans-serif;
}
.facebook-icon:hover { text-decoration: none; transform: scale(1.04); }

.hero {
  min-height: 560px;
  padding: 42px 5.5% 105px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  background: url("images/memphis-hero.webp") center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 58% 58% at 78% 28%, rgba(255,255,255,.78) 0%, rgba(255,255,255,.58) 34%, rgba(255,255,255,.2) 54%, transparent 72%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -13%;
  bottom: -83px;
  width: 126%;
  height: 150px;
  border-top: 8px solid var(--gold);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: linear-gradient(rgba(0,29,67,.78), rgba(0,29,67,.78)), url("images/brick-overlay.png") center/cover no-repeat, var(--deep-navy);
}
.hero-copy { width: 54%; max-width: 625px; margin-right: 1%; text-align: left; position: relative; z-index: 2; transform: translateX(58px); }
.hero h1 {
  margin: 0;
  text-transform: uppercase;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(50px, 4.85vw, 76px);
  line-height: 1.02;
  letter-spacing: -.8px;
  font-weight: 600;
}
.hero h1 span { display: block; white-space: nowrap; }
.blue { color: var(--blue); }
.gold { color: var(--gold); }
.hero h1 .gold { text-shadow: 0 1px 1px rgba(255,255,255,.8); }
.accent-line { width: 305px; height: 2px; margin: 25px 0; border-radius: 999px; background: var(--gold); }
.hero p { max-width: 590px; margin: 0; font-size: clamp(19px, 1.75vw, 25px); font-weight: 700; line-height: 1.38; text-align: left; }
.hero p strong { color: var(--blue); }

.coming-soon {
  min-height: 270px;
  padding: 55px 16%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--deep-navy);
}
.coming-soon::before {
  content: none;
}
.coming-soon p {
  width: min(780px, 86%);
  margin: 0;
  padding: 20px 30px;
  position: relative;
  z-index: 2;
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(29px, 3.35vw, 45px);
  line-height: 1;
  letter-spacing: .2px;
  font-weight: 700;
  white-space: nowrap;
  isolation: isolate;
  transform: translateY(-8px) rotate(-2.5deg);
  transform-origin: center;
}
.coming-soon p::before,
.coming-soon p::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -14px -34px;
}
.coming-soon p::before {
  background: url("images/gold-swash.png") center/100% 100% no-repeat;
}
.coming-soon p::after {
  display: none;
}
.coming-soon p span { position: relative; top: -7px; z-index: 2; }
.brick {
  position: absolute;
  bottom: 0;
  z-index: 0;
  display: block;
  width: 62%;
  height: 100%;
  background: url("images/brick-overlay.png") center/cover no-repeat;
  opacity: .22;
  pointer-events: none;
}
.brick-left {
  left: -3%;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 56%, rgba(0,0,0,.58) 78%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 56%, rgba(0,0,0,.58) 78%, transparent 100%);
}
.brick-right {
  right: -3%;
  transform: scaleX(-1);
  -webkit-mask-image: linear-gradient(to left, #000 0%, #000 56%, rgba(0,0,0,.58) 78%, transparent 100%);
  mask-image: linear-gradient(to left, #000 0%, #000 56%, rgba(0,0,0,.58) 78%, transparent 100%);
}

.connect { padding: 42px 5% 38px; background: linear-gradient(90deg, #fafafa, #fff 50%, #fafafa); }
.connect h2 {
  margin: 0 0 38px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 61px);
  font-weight: 600;
  letter-spacing: .2px;
}
.short-line { display: none; }
.connect-grid { width: min(1080px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.connect-card { min-height: 210px; padding: 0 28px 22px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.connect-card + .connect-card { border-left: 1px solid var(--gold); }
.round-icon { width: 66px; height: 66px; margin-bottom: 12px; font-size: 35px; }
.blue-bg { background: var(--blue); }
.navy-bg { background: var(--navy); }
.updates-icon span { position: relative; width: 23px; height: 22px; margin-top: -3px; border: 3px solid #fff; border-top-left-radius: 12px; border-top-right-radius: 12px; border-bottom: 0; }
.updates-icon span::before { content: ""; position: absolute; left: -5px; bottom: -5px; width: 27px; height: 3px; border-radius: 2px; background: #fff; }
.updates-icon span::after { content: ""; position: absolute; left: 7px; bottom: -10px; width: 7px; height: 5px; border-radius: 0 0 7px 7px; background: #fff; }
.phone-icon { font: 700 37px/1 Arial, sans-serif; }
.connect-card h3 { margin: 0 0 8px; text-transform: uppercase; font-size: 19px; }
.connect-card p { margin: 0 0 15px; font-size: 16px; line-height: 1.4; }
.connect-card a { font-size: 18px; }
.phone-number { margin: 0; color: var(--navy) !important; font-size: 18px !important; font-weight: 700; }
.phone-number:hover, .phone-number:focus-visible { color: var(--blue) !important; }
.signup-button { margin-top: auto; padding: 13px 24px; border-radius: 5px; background: var(--gold); color: var(--navy); font-family: Arial, Helvetica, sans-serif; font-size: 16px !important; font-weight: 700; text-transform: none; box-shadow: 0 3px 10px #0002; }
.signup-button:hover, .signup-button:focus-visible { text-decoration: none; filter: brightness(.96); }
.address-rule { width: min(760px, 90%); margin: 8px auto 7px; display: flex; align-items: center; gap: 14px; color: var(--gold); }
.address-rule span { height: 1px; flex: 1; background: var(--gold); }
.address-rule b { font-size: 32px; font-weight: 400; line-height: 1; }
address { text-align: center; font-size: 18px; font-style: normal; line-height: 1.3; }
address strong { color: var(--blue); font-weight: 400; }
.site-footer { padding: 38px 6% 22px; background: var(--deep-navy); color: #fff; text-align: center; }
.funding-credit { width: min(1000px, 100%); margin: 0 auto 28px; display: flex; align-items: center; justify-content: center; gap: 36px; }
.funding-credit img { width: 260px; height: auto; background: #fff; }
.funding-credit p { max-width: 610px; margin: 0; color: #fff; font-size: 16px; line-height: 1.55; text-align: left; }
.nonprofit-statement { width: min(980px, 100%); margin: 0 auto 26px; color: rgba(255,255,255,.9); font-size: 16px; line-height: 1.6; }
.copyright { margin: 0; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.25); color: var(--gold); font-size: 16px; font-weight: 600; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 800px) {
  .site-header { min-height: 150px; padding: 10px 18px; }
  .site-logo { width: min(300px, 72vw); max-height: none; margin: -34px 0; }
  .facebook-icon { width: 48px; height: 48px; margin: 0; font-size: 37px; }
  .hero { min-height: 590px; padding: 34px 20px 105px; justify-content: center; background-position: right center; }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(255,255,255,.48) 0%,
      rgba(255,255,255,.42) 27%,
      rgba(255,255,255,.14) 50%,
      transparent 68%);
  }
  .hero-copy { width: 100%; max-width: 580px; margin-right: 0; transform: none; }
  .hero h1 { font-size: clamp(38px, 8.6vw, 59px); letter-spacing: -.4px; }
  .hero p { font-size: 19px; }
  .coming-soon { min-height: 230px; padding: 45px 10px; }
  .connect-grid { grid-template-columns: 1fr; }
  .connect-card { min-height: auto; padding: 25px 10px 30px; }
  .connect-card + .connect-card { border-left: 0; border-top: 1px solid #f6a40088; }
  .signup-button { margin-top: 8px; }
  .funding-credit { flex-direction: column; gap: 12px; }
  .funding-credit img { width: min(280px, 82vw); }
  .funding-credit p { max-width: 560px; font-size: 16px; text-align: center; }
  .nonprofit-statement { max-width: 600px; font-size: 15px; }
}

@media (max-width: 480px) {
  .site-header { min-height: 125px; }
  .site-logo { width: min(230px, 68vw); margin: -26px 0; }
  .facebook-icon { width: 42px; height: 42px; font-size: 32px; }
  .hero { min-height: 520px; padding-left: 12px; padding-right: 12px; }
  .hero h1 { font-size: 9.6vw; }
  .hero h1 span { white-space: normal; }
  .accent-line { width: 62%; }
  .hero p { font-size: 17px; }
  .hero p br { display: none; }
  .coming-soon p { padding: 18px 10px; font-size: 6.4vw; transform: translateY(-10px) rotate(-1.5deg); }
  .signup-button { width: 100%; }
  .connect { padding-left: 20px; padding-right: 20px; }
  .connect h2 { font-size: 40px; }
  .site-footer { padding: 32px 20px 20px; }
  .funding-credit p { font-size: 15px; }
  .nonprofit-statement { font-size: 14px; }
  .copyright { font-size: 14px; }
}
