html {
  background-color: #000000;
}

body {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  background-color: #fff;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  padding: 2rem 1rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .wrapper {
    padding: 1rem;
  }
}

#header {
  background: url(https://d2z65klgtz99km.cloudfront.net/ZIA/zia_rolodex_0426/rolodex_bg.webp);
  padding: 1rem 1rem 2rem;
}

.headline {
  font-family: "Playfair Display", serif;
  color: #f6e4a7;
  font-size: 5.125rem;
  font-size: clamp(2.2rem, 8.9vw, 5.125rem);
  line-height: 0.9;
  font-weight: 400;
}

.headline-date {
  font-family: "Inter", sans-serif;
  font-size: 1.66rem;
  font-size: clamp(1.2rem, 6.8vw, 1.66rem);
  color: #fff;
  font-weight: 400;
  margin-top: 1rem;
  letter-spacing: 6px;
}

@media (max-width: 600px) {
  #header {
    padding: 1rem 0.5rem 2rem;
  }
  .headline-date {
    letter-spacing: 0;
  }
}

/* countdown */
.countdown-container {
  width: fit-content;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  color: #f6e4a7;
}

.time-container {
  position: relative;
  border-radius: 10px;
  background-color: #000000;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 200px);
  gap: 1rem;
  justify-content: center;
}

.time-container::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 5px;
  border-radius: inherit;
  background: linear-gradient(102deg, #ffe680, #bc9030);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.time {
  font-family: "bebas-neue-pro", sans-serif;
  background: linear-gradient(180deg, #000000 0%, #333333 33%, #404040 46%, #333333 63%, #000000 100%);
  box-shadow: 0px 0px 20px #f6e4a7;
  font-size: 4rem;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.label-container {
  font-family: "bebas-neue-pro", sans-serif;
  padding: 0.5rem 1rem;
  display: grid;
  grid-template-columns: repeat(4, 200px);
  gap: 1rem;
  text-align: center;
}

.label {
  font-size: 2rem;
  letter-spacing: 3px;
}

@media (max-width: 950px) {
  .time-container,
  .label-container {
    grid-template-columns: repeat(4, 100px);
  }
  .label {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 550px) {
  .time-container,
  .label-container {
    grid-template-columns: repeat(4, 75px);
  }

  .time {
    font-size: 2rem;
  }
}

@media (max-width: 450px) {
  .time-container,
  .label-container {
    grid-template-columns: repeat(4, 50px);
  }

  .time-container {
    padding: 1rem 0.25rem;
    gap: 0.5rem;
  }

  .time {
    font-size: 1.75rem;
  }
  .label-container {
    gap: 0.5rem;
  }
  .label {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

/* welcome video */
.wistia_responsive_wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 800px;
  border: 5px solid #bc9030;
  box-shadow: 0px 3px 20px #0000005f;
  z-index: 10;
}

/* cutouts */
.cutout-wrapper {
  position: relative;
  z-index: 99;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.cutout {
  position: absolute;
  bottom: -2rem;
  width: 400px;
  z-index: -2;
  overflow: hidden;
}
.james-cutout {
  left: -350px;
}
.jim-cutout {
  right: -350px;
}

.slide-in-james {
  transform: translateX(-100%);
  animation: slideIn 1.2s ease-out forwards;
}

.slide-in-jim {
  transform: translateX(100%);
  animation: slideIn 1.2s ease-out forwards;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1515px) {
  .cutout {
    width: 300px;
  }
  .james-cutout {
    left: -225px;
  }
  .jim-cutout {
    right: -225px;
  }
}
@media (max-width: 1250px) {
  .cutout {
    display: none;
  }
}

/* subhead section */
.subhead-section {
  background: linear-gradient(101deg, #f6e4a7 0%, #f6e4a7 36%, #bc9030 100%);
  --arrow-width: 2.5rem;
  --arrow-height: 2.5rem;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--arrow-height)),
    calc(50% + var(--arrow-width)) calc(100% - var(--arrow-height)),
    50% 100%,
    calc(50% - var(--arrow-width)) calc(100% - var(--arrow-height)),
    0 calc(100% - var(--arrow-height))
  );
  padding: 1rem 0.5rem 3.5rem;
}
.subhead {
  font-family: "bebas-neue-pro-expanded";
  font-size: 2.5rem;
  font-size: clamp(1.75rem, 5.3vw, 2.5rem);
  font-weight: 300;
  text-align: center;
  line-height: 1;
}

@media (max-width: 630px) {
  .subhead br {
    display: none;
  }
}

.extrabold {
  font-weight: 800;
}

.content-section {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .content-section {
    font-size: 1rem;
  }
}

.invitation-inside {
  font-size: 1.5rem;
  color: #bc9030;
  font-weight: 700;
}

.meet-the-banker-container {
  color: #fff;
  background-color: #000000;
}
.meet-the-banker {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
}

.meet-right {
  font-family: "bebas-neue-pro-expanded", sans-serif;
  font-weight: 300;
  padding: 1rem;
}

.meet1 {
  font-size: 1.75rem;
  color: #f6e4a7;
  font-style: italic;
  line-height: 0.9;
}

.meet2 {
  font-weight: 700;
  margin-top: 0;
  font-size: 5rem;
  font-size: clamp(4rem, 9.1vw, 5rem);
  text-transform: uppercase;
  line-height: 0.9;
  background-image: linear-gradient(180deg, #f6e4a7 0%, #bc9030 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.meet-desktop-img {
  width: 100%;
  max-width: 500px;
  align-self: flex-end;
}

/* mobile meet the banker */
.meet-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
}

.meet-mobile-img {
  width: 75px;
  width: clamp(75px, 21.4vw, 100px);
}

.meet1-mobile {
  font-size: 0.9rem;
  font-size: 5.1vw;
  font-size: clamp(1.2rem, 6.8vw, 1.9rem);
  color: #f6e4a7;
  font-style: italic;
  line-height: 0.9;
}

.meet2-mobile {
  font-size: 2rem;
  font-size: 11.4vw;
  font-size: clamp(2.4rem, 13.7vw, 4.3rem);
  font-weight: 700;
  margin-top: 0;
  text-transform: uppercase;
  line-height: 0.9;
  background-image: linear-gradient(180deg, #f6e4a7 0%, #bc9030 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (min-width: 1050px) {
  .meet-mobile {
    display: none;
  }
}
@media (max-width: 1049px) {
  .meet-desktop-img,
  .meet1,
  .meet2 {
    display: none;
  }

  .meet-right {
    padding: 2rem;
  }
}

@media (max-width: 550px) {
  .meet-right {
    padding: 1rem;
  }
}

.host-section {
  background: url(https://d2z65klgtz99km.cloudfront.net/ZIA/zia_rolodex_0426/bg2.webp);
  padding: 1rem;
}

@media (max-width: 768px) {
  .host-section {
    padding: 1rem 0.5rem;
  }
}

.host-box {
  background-color: #ffffff;
  border: 6px solid #bc9030;
  border-radius: 15px;
  width: 100%;
  max-width: 1000px;
  margin: 1rem auto;
  padding: 1rem 1rem 1rem;
}

.jim-headshot-container {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 200px;
}
.james-headshot-container {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 200px;
}
.divider {
  width: 100%;
  height: 2px;
  background-color: rgb(0, 0, 0, 0.5);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.editor-name {
  font-family: "bebas-neue-pro", sans-serif;
  text-align: center;
  font-weight: 800;
  background-color: #f6e4a7;
  font-size: 1.25rem;
}

@media (max-width: 500px) {
  .jim-headshot-container,
  .james-headshot-container {
    float: none;
    margin: 0 auto;
  }

  .james {
    margin-top: 1rem;
  }

  .divider {
    display: none;
  }
}

/* sms */
.priority-access {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .priority-access {
    font-size: 1rem;
  }
}

.priority-access .list-arrow {
  margin-left: 2rem;
  color: #bc9030;
}

.list-arrow li {
  position: relative;
}

.list-arrow li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 15px solid #bc9030;
  border-bottom: 10px solid transparent;
}
.sms-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem;
  background-color: #000000;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: 1px solid #707070;
}

@media (max-width: 1200px) {
  .sms-box {
    padding: 1rem;
    border-radius: 0;
  }
}

.sms-headline {
  font-family: "bebas-neue-pro-expanded";
  font-weight: 800;
  text-align: center;
  font-size: 2.5rem;
  font-size: clamp(1.8rem, 6.6vw, 2.5rem);
  line-height: 0.9;
}

@media (max-width: 550px) {
  .sms-headline br {
    display: none;
  }
}

.sms-disclaimer {
  font-size: 0.65rem;
  text-align: center;
  color: #6a6a6a;
}

input,
button {
  font-family: "Inter", sans-serif;
  width: 100%;
  font-size: 1rem;
  padding: 10px;
  outline: none;
  border: 1px solid #707070;
  border-radius: 5px;
}

input:focus {
  border: 1px solid #f6e4a7;
  box-shadow: 0 0 5px #f6e4a7;
}

.sms-submit {
  background: linear-gradient(180deg, #bc9030 0%, #e5d088 36%, #f6e4a7 52%, #e5d088 70%, #bc9030 100%);
  color: #000000;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.2s ease;
}

.sms-submit:hover {
  background: linear-gradient(180deg, #d4a93f 0%, #f3e2a0 36%, #fff4c2 52%, #f3e2a0 70%, #d4a93f 100%);
  transform: translateY(-2px);
  cursor: pointer;
}

#success {
  padding: 4rem 1rem;
}

/* calendar */
.calendar-container {
  background: url(https://d2z65klgtz99km.cloudfront.net/ZIA/zia_rolodex_0426/rolodex_bg.webp);
  background-position: center;
  padding: 3rem 1rem;
}

.calendar_wrapper {
  background: linear-gradient(180deg, #ffffff 0%, #ffffffe8 49%, #ffffffc6 83%, #ffffff91 100%);
  padding: 2rem 4rem;
  width: fit-content;
  margin: 1rem auto;
  border-radius: 10px;
}

.add-to-calendar {
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  background: linear-gradient(180deg, #bc9030 0%, #e5d088 36%, #f6e4a7 52%, #e5d088 70%, #bc9030 100%);
  font-size: 1rem;
  border: 1px solid rgba(128, 128, 128, 0.438);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
}

@media (max-width: 768px) {
  .calendar_wrapper {
    padding: 1rem 1rem 2rem;
  }
  .add-to-calendar {
    font-size: 0.85rem;
    padding: 0.5rem;
  }
}

.add-to-cal {
  margin-top: -3.5rem;
}

.add-to-cal label:hover {
  cursor: pointer;
}

.add-to-calendar-checkbox[type="checkbox"] {
  display: none;
}

.cal1 {
  font-family: "bebas-neue-pro", sans-serif;
  line-height: 0.9;
  font-size: 3rem;
  font-size: clamp(1.75rem, 10vw, 3rem);
  font-weight: 800;
}
.cal2 {
  color: #bc9030;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
}

.private-section {
  font-family: "bebas-neue-pro-expanded";
  background-color: #000000;
  color: #f6e4a7;
  padding: 1rem;
  font-weight: 300;
}

.private-section p {
  font-size: 2rem;
  font-size: clamp(1rem, 5vw, 1.5rem);
  line-height: 0.9;
}

@media (max-width: 400px) {
  .private-section br {
    display: none;
  }
}

.section-subhead {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 2.5rem;
  font-size: clamp(2.5rem, 13.3vw, 3.9rem);
  line-height: 0.9;
}

/* misc */
.mt-0 {
  margin-top: 0;
}
.text-gold {
  color: #f6e4a7;
}

.updates {
  background: url(https://sites.paradigm.press/archive_microsites/PVG_Insiders_Lounge_0223/img/bg-luxury-min.png);
  background: url(https://d2z65klgtz99km.cloudfront.net/ZIA/zia_rolodex_0426/bg2.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem 1rem;
}

.updates-inner {
  border: 5px solid #bc9030;
  background-color: #fff;
  padding: 2rem;
  width: 100%;
  max-width: 850px;
  margin-top: 1rem;
  border-radius: 15px;
}

.update-title {
  font-family: "bebas-neue-pro", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.text-darkgold {
  color: #bc9030;
}

.update-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

@media (max-width: 500px) {
  .update-link {
    justify-content: center;
  }
}

.update-link a {
  width: fit-content;
  border: 4px solid #bc9030;
  text-decoration: none;
  padding: 8px;
  color: #bc9030;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 10px;
}

.update-link a:hover {
  background-color: #bc9030;
  color: #fff;
}

.pending {
  color: rgba(0, 0, 0, 0.65);
}

/* has sms */
.report-link {
  color: #0864c3;
  font-weight: 700;
}

.eyebrow {
  background-color: #f6e4a7;
  padding: 10px;
  text-align: center;
  font-size: 0.8rem;
  text-wrap: balance;
  line-height: 1;
}

/* welcome video overlay */
#overlay {
  z-index: 5;
  position: fixed;
  inset: 0;
}

.fade-in {
  animation: fade-in 1s;
  animation-fill-mode: forwards;
}

@keyframes fade-in {
  from {
    background-color: rgba(0, 0, 0, 0);
  }

  to {
    background-color: rgba(0, 0, 0, 0.8);
  }
}

.update2-title-change {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
}

@media (max-width: 650px) {
  .update2-title-change br {
    display: none;
  }
  .update2-title-change {
    display: block;
  }
}
