:root {
  --f-display: 'cremeglace',    Georgia, serif;
  --f-head: 'squidboy',      Georgia, serif;
  --f-body: 'squidboy-thin', Georgia, serif;
  --max-w: 1200px;
  font-family: var(--font-primary);
}

*, ::before, ::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg);
  color: var(--primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  pointer-events: none;
  z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
}

h1 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--primary);
}

h2 {
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.9;
}

h3 {
  font-family: var(--f-head);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

p {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 100;
  line-height: 1.35;
  color: var(--accent);
}

a {
  color: inherit;
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
}

a:hover {
  opacity: 0.72;
}

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.wrap {
  max-width: var(--max-w);
  margin: 0px auto;
  padding: 0px 24px;
}

@media (min-width: 768px) {
  .wrap {
  padding: 0px 48px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow-x: hidden;
  overflow-y: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  text-wrap-mode: nowrap;
  white-space-collapse: collapse;
}

.eyebrow {
  display: block;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 100;
  color: var(--text-sec);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  alignment-baseline: middle;
  baseline-shift: 0px;
  baseline-source: auto;
  margin-right: 10px;
}

.img-ph {
  background-color: rgba(78, 54, 31, 0.07);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-ph-label {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 100;
  color: rgba(78, 54, 31, 0.35);
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.btn {
  display: inline-block;
  padding: var(--space-2xs) var(--space-xs);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 0.03em;
  color: var(--bg);
  background-color: var(--primary);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  border: 1px solid var(--text);
  cursor: pointer;
  text-transform: lowercase;
  transition-property: opacity;
  transition-duration: 0.22s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  line-height: 1;
}

.btn:hover {
  opacity: 0.72;
}

.btn--filled {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  background-color: var(--primary);
}

.btn--filled:hover {
  opacity: 0.82;
}

.btn--ghost {
  border-top-width: medium;
  border-top-style: none;
  border-top-color: currentcolor;
  border-right-width: medium;
  border-right-style: none;
  border-right-color: currentcolor;
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  border-left-width: medium;
  border-left-style: none;
  border-left-color: currentcolor;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  padding: 13px 0px;
  letter-spacing: 0.04em;
}

.btn--ghost:hover {
  opacity: 0.6;
}

.btn--attached {
  border-left-width: medium;
  border-left-style: none;
  border-left-color: currentcolor;
  text-wrap-mode: nowrap;
  white-space-collapse: collapse;
}

.event-card__cta {
  margin-top: 20px;
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 14px;
}

.nav {
  position: sticky;
  top: 0px;
  z-index: 500;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.nav-wrap {
  max-width: var(--max-w);
  margin: 0px auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 24px;
  column-gap: 24px;
}

@media (min-width: 768px) {
  .nav-wrap {
  padding: 16px 48px;
  }
}

.nav-logo img {
  height: 18px;
  width: auto;
}

.nav-links {
  display: none;
  row-gap: 28px;
  column-gap: 28px;
  list-style-position: outside;
  list-style-image: none;
  list-style-type: none;
}

@media (min-width: 768px) {
  .nav-links {
  display: flex;
  }
}

.nav-link {
  font-size: 16px;
  font-weight: 100;
  color: var(--text-sec);
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.nav-link:hover {
  opacity: 1;
  color: var(--text);
}

.nav-cta {
  padding: 10px 18px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: calc(-51px + 100svh);
  display: flex;
  align-items: center;
  overflow-x: hidden;
  overflow-y: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 768px) {
  .hero-bg-video {
  display: none;
  }
}

.hero-overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(245, 234, 216, 0.84);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
}

@media (min-width: 768px) {
  .hero-overlay {
  display: none;
  }
}

.hero-wrap {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0px auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
  column-gap: 40px;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-wrap {
  grid-template-columns: 52fr 48fr;
  padding: 0px 48px;
  min-height: calc(-51px + 100svh);
  row-gap: 32px;
  column-gap: 32px;
  }
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: clamp(2.8rem, 10vw, 5.6rem);
  margin-bottom: 20px;
  line-height: 0.96;
  max-width: 520px;
  font-family: var(--font-creme-glace-ink-bleed);
}

@media (min-width: 768px) {
  .hero-headline {
  font-size: clamp(2.8rem, 4.8vw, 5.8rem);
  }
}

@media (min-width: 1024px) {
  .hero-headline {
  font-size: clamp(3.6rem, 5vw, 6.2rem);
  }
}

.hero-sub {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 40px;
  max-width: 360px;
  line-height: 1.25;
}

.hero-stain {
  position: absolute;
  width: 44%;
  max-width: 380px;
  top: -8%;
  right: -4%;
  opacity: 0.65;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-12deg);
  mix-blend-mode: multiply;
}

@media (min-width: 768px) {
  .hero-stain {
  width: 55%;
  right: -2%;
  top: -10%;
  }
}

.hero-visual {
  display: none;
  position: relative;
  align-items: flex-end;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  }
}

.hero-arch {
  width: min(270px, 90%);
  aspect-ratio: 2 / 3;
  clip-path: url("#arch");
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-arch {
  width: min(300px, 85%);
  }
}

@media (min-width: 1024px) {
  .hero-arch {
  width: min(320px, 90%);
  }
}

.hero-arch video, .hero-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  z-index: 3;
}

.hero-scroll-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 100;
  color: var(--text-sec);
  letter-spacing: 0.14em;
  text-transform: lowercase;
}

.scatter {
  position: relative;
  min-height: 160vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top: 1px solid var(--rule);
}

@media (min-width: 768px) {
  .scatter {
  min-height: 110vh;
  }
}

.scatter-item {
  position: absolute;
  overflow-x: hidden;
  overflow-y: hidden;
  will-change: transform;
}

.scatter-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scatter-item--1 {
  top: 3%;
  left: -2%;
  width: 38%;
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .scatter-item--1 {
  top: 4%;
  left: 1%;
  width: 21%;
  aspect-ratio: 4 / 3;
  }
}

.scatter-item--2 {
  top: 0%;
  left: 54%;
  width: 24%;
  aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
  .scatter-item--2 {
  top: 5%;
  left: 38%;
  width: 13%;
  aspect-ratio: 1 / 1;
  }
}

.scatter-item--3 {
  top: 10%;
  right: -2%;
  width: 30%;
  aspect-ratio: 3 / 4;
}

@media (min-width: 768px) {
  .scatter-item--3 {
  top: 2%;
  right: 4%;
  width: 16%;
  aspect-ratio: 3 / 4;
  }
}

.scatter-item--4 {
  bottom: 22%;
  left: -2%;
  width: 32%;
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .scatter-item--4 {
  bottom: 10%;
  left: 2%;
  width: 16%;
  aspect-ratio: 4 / 3;
  }
}

.scatter-item--5 {
  bottom: 5%;
  right: -1%;
  width: 34%;
  aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
  .scatter-item--5 {
  bottom: 4%;
  right: 3%;
  width: 18%;
  aspect-ratio: 1 / 1;
  }
}

.scatter-item--6 {
  display: none;
}

@media (min-width: 768px) {
  .scatter-item--6 {
  display: block;
  bottom: 18%;
  left: 26%;
  width: 12%;
  aspect-ratio: 1 / 1;
  }
}

.scatter-item--7 {
  display: none;
  position: absolute;
  top: 32%;
}

@media (min-width: 768px) {
  .scatter-item--7 {
  display: block;
  right: 1%;
  width: 13%;
  aspect-ratio: 4 / 3;
  top: 25%;
  }
}

.scatter-text {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 600px;
  padding: 0px 32px;
}

.scatter-hl {
  font-size: clamp(1.9rem, 6vw, 3.6rem);
  margin-bottom: 20px;
}

.scatter-body {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 440px;
  margin: 0px auto 36px;
}

.scatter-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
}

@media (min-width: 768px) {
  .scatter-ctas {
  flex-direction: row;
  justify-content: center;
  }
}

.community {
  padding: 100px 0px;
  border-top: 1px solid var(--rule);
}

.community-layout {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 56px;
  column-gap: 56px;
}

@media (min-width: 768px) {
  .community-layout {
  grid-template-columns: 4fr 6fr;
  row-gap: 72px;
  column-gap: 72px;
  align-items: start;
  }
}

.community-hl {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
  max-width: 380px;
}

.community-body {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 360px;
  margin-bottom: 36px;
}

.community-ctas {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  column-gap: 16px;
  align-items: center;
}

.community-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 10px;
  column-gap: 10px;
}

@media (min-width: 768px) {
  .community-gallery {
  display: block;
  position: relative;
  height: 600px;
  }
}

@media (min-width: 1024px) {
  .community-gallery {
  height: 680px;
  }
}

.cg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.events {
  padding: 100px 0px;
  border-top: 1px solid var(--rule);
}

.events-intro {
  margin-bottom: 56px;
}

.events-headline {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.events-body {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 440px;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}

@media (min-width: 768px) {
  .events-grid {
  grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  padding: 28px 0px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .event-card {
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  padding: 0px;
  }
}

.event-poster {
  aspect-ratio: 3 / 4;
  overflow-x: hidden;
  overflow-y: hidden;
  margin-bottom: 20px;
}

.event-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-tag {
  font-size: 12px;
  font-weight: 100;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  margin-bottom: 8px;
}

.event-name {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  font-family: inherit;
}

.event-meta {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.6;
}

.pillars {
  padding: 100px 0px;
  border-top: 1px solid var(--rule);
}

.pillars-header {
  margin-bottom: 56px;
}

.pillars-headline {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 20px;
}

@media (min-width: 768px) {
  .pillar-grid {
  grid-template-columns: repeat(4, 1fr);
  row-gap: 24px;
  column-gap: 24px;
  }
}

.pillar-card {
  background-color: rgba(78, 54, 31, 0.055);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  position: relative;
  padding: 24px;
  color: var(--light);
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.pillar-card-img_wrap {
  aspect-ratio: 3 / 2;
  overflow-x: hidden;
  overflow-y: hidden;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.pillar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: static;
  top: 100%;
  right: 100%;
}

.pillar-card-name {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  z-index: 1;
  font-family: var(--font-primary);
}

.pillar-card-body {
  font-size: 16px;
  z-index: 10;
  color: var(--light);
}

.cafe {
  padding: 100px 0px;
  border-top: 1px solid var(--rule);
}

.cafe-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 56px;
  column-gap: 56px;
  align-items: center;
}

@media (min-width: 768px) {
  .cafe-grid {
  grid-template-columns: 5fr 7fr;
  row-gap: 80px;
  column-gap: 80px;
  align-items: center;
  }
}

.cafe-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow-x: hidden;
  overflow-y: hidden;
}

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

.cafe-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.cafe-intro {
  font-size: 18px;
  color: var(--text-sec);
  margin-bottom: 36px;
}

.cafe-details {
  margin-bottom: 36px;
  border-top: 1px solid var(--rule);
}

.cafe-detail {
  display: flex;
  row-gap: 24px;
  column-gap: 24px;
  padding: 14px 0px;
  border-bottom: 1px solid var(--rule);
}

.detail-lbl {
  font-size: 16px;
  font-weight: 100;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: lowercase;
  width: 64px;
  flex-shrink: 0;
  padding-top: 2px;
}

.detail-val {
  font-size: 16px;
  font-weight: 100;
  line-height: 1.6;
}

.newsletter {
  background: var(--dark-2);
  padding: 100px 0px;
}

.newsletter .eyebrow {
  color: rgba(245, 234, 216, 0.55);
}

.newsletter .eyebrow::before {
  background: var(--accent);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 56px;
  column-gap: 56px;
  align-items: center;
}

@media (min-width: 768px) {
  .newsletter-grid {
  grid-template-columns: 1fr 1fr;
  row-gap: 80px;
  column-gap: 80px;
  }
}

.newsletter-headline {
  font-size: clamp(2rem, 5.5vw, 4rem);
  color: var(--bg);
  margin-bottom: 18px;
}

.newsletter-body {
  font-size: 18px;
  color: rgba(245, 234, 216, 0.65);
  max-width: 400px;
  margin-bottom: 44px;
  line-height: 1.72;
}

.nl-form {
  display: flex;
  max-width: 440px;
}

.nl-email-input {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  padding: 13px 16px;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 100;
  color: var(--bg);
  background-color: transparent;
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(245, 234, 216, 0.4);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(245, 234, 216, 0.4);
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(245, 234, 216, 0.4);
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-right-width: medium;
  border-right-style: none;
  border-right-color: currentcolor;
  outline-color: currentcolor;
  outline-style: none;
  outline-width: medium;
  text-transform: lowercase;
}

.nl-email-input::placeholder {
  color: rgba(245, 234, 216, 0.35);
  font-family: var(--f-body);
}

.nl-email-input:focus {
  background-color: rgba(255, 255, 255, 0.04);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
}

.newsletter .btn {
  color: var(--bg);
  border-top-color: rgba(245, 234, 216, 0.4);
  border-right-color: rgba(245, 234, 216, 0.4);
  border-bottom-color: rgba(245, 234, 216, 0.4);
  border-left-color: rgba(245, 234, 216, 0.4);
  font-size: 16px;
}

.newsletter .btn--attached {
  border-left-width: medium;
  border-left-style: none;
  border-left-color: currentcolor;
}

.newsletter .btn:hover {
  opacity: 0.75;
}

.nl-success {
  display: none;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 100;
  color: rgba(245, 234, 216, 0.65);
  padding: 13px 0px;
}

.newsletter-img {
  aspect-ratio: 1 / 1;
  overflow-x: hidden;
  overflow-y: hidden;
}

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

.footer {
  padding: 56px 24px 40px;
  border-top: 1px solid var(--rule);
}

@media (min-width: 768px) {
  .footer {
  padding: 72px 48px 48px;
  }
}

.footer-wrap {
  max-width: var(--max-w);
  margin: 0px auto;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 32px;
  column-gap: 32px;
  margin-bottom: 40px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  column-gap: 12px;
  list-style-position: outside;
  list-style-image: none;
  list-style-type: none;
  padding-top: 8px;
}

.footer-link {
  font-size: 16px;
  font-weight: 100;
  color: var(--text-sec);
  text-transform: lowercase;
  text-align: right;
}

.footer-link:hover {
  opacity: 1;
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.footer-meta {
  font-size: 12px;
  font-weight: 100;
  color: var(--text-sec);
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

@media (min-width: 768px) {
  .event-card--col-start {
  border-right: 1px solid var(--rule);
  padding-right: 40px;
  }
}

@media (min-width: 768px) {
  .event-card--col-mid {
  border-right: 1px solid var(--rule);
  padding: 0px 40px;
  }
}

@media (min-width: 768px) {
  .event-card--col-end {
  padding-left: 40px;
  }
}

.layout470_image-wrapper2 {
  position: absolute;
  width: 50%;
  bottom: 10%;
  left: 0%;
}

.layout470_image-wrapper1 {
  overflow: hidden;
  margin-left: 15%;
  margin-right: 15%;
}

.layout470_image-wrapper3 {
  overflow: hidden;
  position: absolute;
  top: 10%;
  right: 0px;
  width: 40%;
}

.pillar-card-img-overlay {
  background-color: var(--dark-2-60);
  z-index: 5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.pillar-card-img {
  z-index: -500;
}

.footer-logo {
  height: 100%;
  width: 10rem;
}

.footer-link-wrap {
  margin-left: auto;
}