:root {
  --page: #f6edcf;
  --page-deep: #ead9ac;
  --ink: #17120d;
  --espresso: #2a190e;
  --ember: #a33c1e;
  --line: rgba(23, 18, 13, 0.3);
  --page-pad: clamp(0.75rem, 2.5vw, 2.15rem);
  --body-copy-size: clamp(1rem, 1.15vw, 1.125rem);
  --utility-copy-size: clamp(0.85rem, 0.95vw, 1rem);
  --pointer-x: 0;
  --pointer-y: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--espresso);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--espresso);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

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

.page-shell {
  width: min(100%, 1720px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: clip;
  background: var(--page);
}

.site-header {
  position: relative;
  z-index: 11;
  display: grid;
  grid-template-columns: minmax(10.5rem, 1fr) auto minmax(10.5rem, 1fr);
  align-items: center;
  min-height: 4.2rem;
  padding: 0.55rem var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: var(--page);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.brand-lockup {
  display: block;
  width: clamp(6.9rem, 11vw, 9.4rem);
  aspect-ratio: 3.15 / 1;
  overflow: hidden;
}

.brand-lockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2vw, 2rem);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-group {
  position: relative;
}

.nav-group::after {
  position: absolute;
  top: 100%;
  right: -0.5rem;
  left: -0.5rem;
  height: 0.8rem;
  content: "";
}

.nav-group-toggle,
.primary-nav > .nav-direct {
  position: relative;
  padding: 0.35rem 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-transform: inherit;
}

.nav-group-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-group-toggle::after,
.primary-nav > .nav-direct::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--ember);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-group-toggle:hover::after,
.nav-group-toggle:focus-visible::after,
.primary-nav > .nav-direct:hover::after,
.primary-nav > .nav-direct:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  color: var(--ember);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  transform: translateY(-0.28em);
  transition: transform 200ms ease;
}

.nav-group.is-open .nav-chevron {
  transform: translateY(-0.28em) rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(19rem, calc(100vw - 2rem));
  padding: 0.45rem;
  border: 1px solid var(--line);
  background: var(--page);
  box-shadow: 0.45rem 0.45rem 0 rgba(23, 18, 13, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.45rem);
  transition: opacity 180ms ease, transform 220ms ease;
}

.nav-submenu::before {
  position: absolute;
  top: -0.3rem;
  left: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--page);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu,
.nav-group.is-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  display: block;
  padding: 0.8rem 0.9rem;
  border: 1px solid transparent;
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  border-color: var(--line);
  background: var(--page-deep);
  color: var(--ember);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.search-button {
  display: inline-grid;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.25rem;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.search-button svg {
  width: 0.85rem;
  height: 0.85rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 1.8rem;
  padding: 0.35rem 0.65rem 0.35rem 0.8rem;
  background: var(--ink);
  color: var(--page);
  font-size: var(--body-copy-size);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--ember);
  color: var(--page);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-toggle i {
  display: block;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: transform 200ms ease;
}

.menu-toggle i:last-child {
  width: 0.7rem;
  margin-left: -0.55rem;
  transform: translateY(0.18rem);
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
  transform: rotate(45deg) translate(0.13rem, 0.12rem);
}

.menu-toggle[aria-expanded="true"] i:last-child {
  width: 1rem;
  transform: rotate(-45deg) translate(0.11rem, -0.12rem);
}

.mobile-menu {
  position: fixed;
  z-index: 10;
  inset: 0;
  display: none;
  flex-direction: column;
  gap: 2.5rem;
  padding: 7rem var(--page-pad) 2rem;
  background: var(--page);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity 220ms ease, transform 280ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu > p {
  margin: 0;
  color: var(--ember);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.13em;
}

.mobile-menu nav {
  display: grid;
}

.mobile-nav-group {
  border-bottom: 1px solid var(--line);
}

.mobile-nav-parent,
.mobile-nav-link {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(2.2rem, 11vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-align: left;
}

.mobile-nav-group .mobile-nav-parent {
  border-bottom: 0;
}

.mobile-nav-parent > span:first-child {
  flex: 1;
}

.mobile-nav-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  color: var(--ember);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  transform: translateY(-0.2em);
  transition: transform 200ms ease;
}

.mobile-nav-parent[aria-expanded="true"] .mobile-nav-chevron {
  transform: translateY(-0.2em) rotate(180deg);
}

.mobile-submenu {
  display: grid;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 300ms ease, opacity 220ms ease;
}

.mobile-submenu[aria-hidden="false"] {
  max-height: 20rem;
  padding-bottom: 0.45rem;
  opacity: 1;
}

.mobile-submenu a {
  display: block;
  padding: 0.6rem 0 0.7rem 1.25rem;
  font-size: var(--body-copy-size);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mobile-nav-link b {
  display: inline-flex;
  align-items: center;
  height: 1em;
  margin-left: auto;
  color: var(--ember);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-0.08em);
}

.mobile-menu nav a span {
  color: var(--ember);
  font-family: "Manrope", Arial, sans-serif;
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.hero {
  padding: 0.8rem 0 0;
}

.hero-image-wrap {
  padding: 0 var(--page-pad);
}

.hero-image {
  position: relative;
  min-height: clamp(26rem, 62vw, 49rem);
  overflow: hidden;
  border: 0.3rem solid var(--espresso);
  border-radius: 0.3rem;
  background: var(--espresso);
  isolation: isolate;
}

.hero-image > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.08) saturate(1.22) contrast(1.06) sepia(0.08);
  transform: translate3d(calc(var(--pointer-x) * 0.45rem), calc(var(--pointer-y) * 0.35rem), 0) scale(1.055);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 5, 0.04) 28%, rgba(7, 7, 5, 0.08) 42%, rgba(7, 7, 5, 0.74) 100%);
}

.image-kicker {
  position: absolute;
  z-index: 2;
  top: 1.2rem;
  left: 1.2rem;
  margin: 0;
  color: rgba(246, 237, 207, 0.85);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  position: absolute;
  z-index: 2;
  right: 0.6rem;
  bottom: 0.15rem;
  left: 0.6rem;
  margin: 0;
  color: var(--page);
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(3.1rem, 8vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
  text-align: center;
  text-shadow: 0.02em 0.02em 0 rgba(23, 18, 13, 0.2);
  white-space: nowrap;
}

.hero-message {
  position: relative;
  min-height: 19rem;
  padding: clamp(2.6rem, 5vw, 4.5rem) max(6rem, 18vw) clamp(3.3rem, 7vw, 5rem);
  text-align: center;
}

.coffee-mark {
  width: 2.5rem;
  margin: 0 auto 1rem;
}

.coffee-mark svg {
  width: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.coffee-mark .steam {
  transform-box: fill-box;
  transform-origin: center;
  animation: coffee-steam-wiggle 2.8s ease-in-out infinite;
}

.coffee-mark .steam-two {
  animation-delay: -1.35s;
  animation-duration: 3.1s;
}

.message-copy {
  max-width: 38rem;
  margin: 0 auto;
  font-size: clamp(1rem, 1.55vw, 1.24rem);
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.32;
  text-transform: uppercase;
}

.message-subcopy {
  margin: 1.15rem auto 0;
  color: rgba(23, 18, 13, 0.64);
  font-size: var(--utility-copy-size);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supporting-photo {
  position: absolute;
  width: clamp(4.4rem, 9vw, 7.6rem);
  aspect-ratio: 0.78 / 1;
  overflow: hidden;
  border: 0.22rem solid var(--page);
  box-shadow: 0.3rem 0.6rem 0 rgba(42, 25, 14, 0.16);
}

.supporting-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.1) sepia(0.1);
}

.supporting-photo-left {
  bottom: 2rem;
  left: clamp(1.2rem, 4vw, 4rem);
  transform: rotate(-8deg);
}

.supporting-photo-left img {
  object-position: 62% 48%;
  transform: scale(1.45);
}

.supporting-photo-right {
  top: 2.5rem;
  right: clamp(1.2rem, 4vw, 4rem);
  transform: rotate(13deg);
}

.supporting-photo-right img {
  object-position: 86% 79%;
  transform: scale(1.7);
}

.site-footer {
  padding: clamp(2.8rem, 5vw, 4.8rem) var(--page-pad) 1rem;
  border-top: 1px solid rgba(246, 237, 207, 0.22);
  background: var(--espresso);
  color: var(--page);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(15rem, 1.2fr) minmax(10rem, 0.75fr) minmax(12rem, 0.85fr);
  gap: clamp(2rem, 6vw, 7rem);
  max-width: 76rem;
  margin: 0 auto;
}

.footer-brand {
  display: block;
  width: clamp(9rem, 15vw, 12rem);
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-description {
  max-width: 17rem;
  margin: 1.25rem 0 0;
  color: rgba(246, 237, 207, 0.68);
  font-size: var(--body-copy-size);
  font-weight: 600;
  line-height: 1.55;
}

.footer-label {
  margin: 0 0 0.9rem;
  color: #e17a48;
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  color: rgba(246, 237, 207, 0.78);
  font-size: var(--body-copy-size);
  font-weight: 700;
  line-height: 1.2;
  transition: color 180ms ease, gap 180ms ease;
}

.footer-links a span,
.footer-contact a span {
  color: #e17a48;
  font-size: var(--utility-copy-size);
  line-height: 0.7;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  gap: 0.65rem;
  color: var(--page);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 76rem;
  margin: clamp(2.8rem, 5vw, 4.5rem) auto 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(246, 237, 207, 0.2);
  color: rgba(246, 237, 207, 0.48);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-bottom a {
  color: rgba(246, 237, 207, 0.72);
  transition: color 180ms ease;
}

.footer-bottom a span {
  color: #e17a48;
  font-size: var(--body-copy-size);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--page);
}

.mission {
  padding: clamp(4.8rem, 8vw, 8rem) var(--page-pad) clamp(5.2rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
  background: var(--page);
  text-align: center;
}

.mission-kicker {
  margin: 0 0 1.25rem;
  color: var(--ember);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission h2 {
  max-width: 65rem;
  margin: 0 auto;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(3.2rem, 8.2vw, 8.7rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
  white-space: nowrap;
}

.mission-image {
  width: min(21rem, 42vw);
  aspect-ratio: 1.02 / 1;
  margin: clamp(2.5rem, 5vw, 4.5rem) auto 0;
  overflow: hidden;
  border-radius: 0.28rem;
  background: var(--espresso);
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 48%;
  filter: brightness(1.08) saturate(1.2) contrast(1.05) sepia(0.08);
  transform: scale(1.32);
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(7rem, 1fr) minmax(17rem, 27rem) minmax(7rem, 1fr);
  align-items: start;
  gap: clamp(1rem, 4vw, 4rem);
  max-width: 74rem;
  margin: clamp(1.65rem, 3.5vw, 3rem) auto 0;
}

.mission-side {
  margin: 0;
  padding-top: 0.25rem;
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.mission-side-left {
  text-align: left;
}

.mission-side-right {
  text-align: right;
}

.mission-copy {
  max-width: 27rem;
  margin: 0 auto;
}

.mission-copy p {
  margin: 0;
  font-size: var(--body-copy-size);
  font-weight: 600;
  line-height: 1.55;
}

.mission-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  color: var(--ember);
  font-size: var(--body-copy-size);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mission-link span {
  font-size: var(--body-copy-size);
  transition: transform 180ms ease;
}

.mission-link:hover span,
.mission-link:focus-visible span {
  transform: translate(0.15rem, -0.15rem);
}

.wall-of-love {
  padding: clamp(4.8rem, 8vw, 8rem) 0 clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
  background: var(--page-deep);
}

.wall-heading {
  padding: 0 var(--page-pad);
  text-align: center;
}

.wall-kicker {
  margin: 0 0 1rem;
  color: var(--ember);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wall-heading h2 {
  margin: 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(3.2rem, 8vw, 8.1rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.wall-intro {
  max-width: 25rem;
  margin: 1.35rem auto 0;
  color: rgba(23, 18, 13, 0.64);
  font-size: var(--body-copy-size);
  font-weight: 600;
  line-height: 1.5;
}

.wall-rail-wrap {
  position: relative;
  max-width: 82rem;
  overflow: hidden;
  margin-top: 2.3rem;
  margin-right: auto;
  margin-left: auto;
}

.wall-rail-wrap::before,
.wall-rail-wrap::after {
  position: absolute;
  z-index: 4;
  top: 0.55rem;
  bottom: 1.4rem;
  width: clamp(2rem, 4vw, 4.5rem);
  content: "";
  pointer-events: none;
}

.wall-rail-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--page-deep) 0%, rgba(234, 217, 172, 0) 100%);
}

.wall-rail-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--page-deep) 0%, rgba(234, 217, 172, 0) 100%);
}

.video-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3rem) / 4);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.55rem 0.6rem 1.4rem;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.video-rail::-webkit-scrollbar {
  display: none;
}

.video-rail:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: -2px;
}

.wall-card {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: 27rem;
  overflow: hidden;
  border: 0.2rem solid var(--ink);
  border-radius: 0.35rem;
  background: var(--espresso);
  scroll-snap-align: start;
}

.wall-card-media,
.wall-card-media > video,
.wall-card-media > .slot-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wall-card-media > video {
  z-index: 1;
  display: block;
  background: var(--espresso);
  object-fit: cover;
}

.slot-placeholder {
  object-fit: cover;
  filter: brightness(0.8) saturate(1.35) contrast(1.08) sepia(0.14);
  transform: scale(1.62);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.wall-card:nth-child(1) .slot-placeholder {
  object-position: 10% 54%;
}

.wall-card:nth-child(2) .slot-placeholder {
  object-position: 38% 42%;
}

.wall-card:nth-child(3) .slot-placeholder {
  object-position: 61% 55%;
}

.wall-card:nth-child(4) .slot-placeholder {
  object-position: 77% 40%;
}

.wall-card:nth-child(5) .slot-placeholder {
  object-position: 91% 64%;
}

.wall-card:nth-child(6) .slot-placeholder {
  object-position: 66% 80%;
}

.wall-card:hover .slot-placeholder,
.wall-card:focus-within .slot-placeholder {
  filter: brightness(0.9) saturate(1.5) contrast(1.08) sepia(0.08);
  transform: scale(1.72);
}

.wall-card-tint {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 9, 5, 0.28) 0%, rgba(18, 9, 5, 0.02) 38%, rgba(18, 9, 5, 0.9) 100%);
  pointer-events: none;
}

.wall-card-content {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.8rem;
  color: var(--page);
  pointer-events: none;
}

.wall-card-number,
.wall-card-caption {
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wall-card-number {
  color: var(--ember-light, #e17a48);
}

.wall-card-quote {
  max-width: 11rem;
  margin: auto 0 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.wall-card-caption {
  margin-top: 0.6rem;
  color: rgba(246, 237, 207, 0.72);
}

.rail-control {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--page);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.rail-control:hover,
.rail-control:focus-visible {
  background: var(--ink);
  color: var(--page);
}

.rail-control-prev {
  left: 0.75rem;
}

.rail-control-next {
  right: 0.75rem;
}

.wall-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--page-pad);
  color: rgba(23, 18, 13, 0.55);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.upcoming-dates {
  padding: clamp(4.8rem, 8vw, 8rem) var(--page-pad) clamp(5.2rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
  background: var(--page);
  color: var(--ink);
}

.upcoming-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  max-width: 76rem;
  margin: 0 auto;
}

.upcoming-kicker {
  margin: 0 0 1rem;
  color: var(--ember);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.upcoming-heading h2 {
  margin: 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(3.2rem, 7.5vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.upcoming-heading h2 em {
  color: var(--ember);
  font-style: normal;
}

.upcoming-intro {
  max-width: 19rem;
  margin: 0 0 0.3rem;
  color: rgba(23, 18, 13, 0.62);
  font-size: var(--body-copy-size);
  font-weight: 600;
  line-height: 1.55;
}

.date-list {
  display: grid;
  gap: 0.75rem;
  max-width: 76rem;
  margin: clamp(3rem, 5vw, 5rem) auto 0;
}

.date-card {
  display: grid;
  grid-template-columns: 6.4rem minmax(0, 1fr) 2rem;
  align-items: center;
  min-height: 7.7rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(23, 18, 13, 0.28);
  background: rgba(234, 217, 172, 0.56);
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.date-card:hover {
  border-color: var(--ember);
  background: var(--page-deep);
  transform: translateX(0.3rem);
}

.date-card-date {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 5.5rem;
  padding-right: 1.2rem;
  border-right: 1px solid rgba(23, 18, 13, 0.24);
  line-height: 1;
  text-transform: uppercase;
}

.date-card-date span {
  color: var(--ember);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.date-card-date strong {
  margin: 0.18rem 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: -0.07em;
}

.date-card-info {
  min-width: 0;
  padding: 0 1.4rem;
}

.date-card-label {
  margin: 0 0 0.45rem;
  color: rgba(23, 18, 13, 0.55);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.date-card-info h3 {
  margin: 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.date-card-address {
  margin: 0.5rem 0 0;
  color: rgba(23, 18, 13, 0.67);
  font-size: var(--body-copy-size);
  font-weight: 600;
  line-height: 1.35;
}

.date-card-arrow {
  display: inline-grid;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgba(23, 18, 13, 0.35);
  border-radius: 50%;
  color: var(--ember);
  font-size: var(--body-copy-size);
  place-items: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.date-card:hover .date-card-arrow {
  background: var(--ink);
  color: var(--page);
  transform: translate(0.1rem, -0.1rem);
}

.notes-from-room {
  padding: clamp(4.8rem, 8vw, 8rem) var(--page-pad) clamp(5.2rem, 9vw, 9rem);
  border-top: 1px solid rgba(246, 237, 207, 0.18);
  background: var(--espresso);
  color: var(--page);
}

.notes-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  max-width: 76rem;
  margin: 0 auto;
}

.notes-kicker {
  margin: 0 0 1rem;
  color: #e17a48;
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.notes-heading h2 {
  margin: 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(3.2rem, 7.5vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.notes-heading h2 em,
.notes-book-copy h3 em {
  color: #e17a48;
  font-style: normal;
}

.notes-heading-copy {
  max-width: 19rem;
  margin: 0 0 0.3rem;
}

.notes-heading-copy p {
  margin: 0;
  color: rgba(246, 237, 207, 0.68);
  font-size: var(--body-copy-size);
  font-weight: 600;
  line-height: 1.55;
}

.notes-heading-copy > span {
  display: block;
  margin-top: 1.35rem;
  color: #e17a48;
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 76rem;
  margin: clamp(3rem, 5vw, 5rem) auto 0;
}

.note-card {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem;
  border: 1px solid rgba(23, 18, 13, 0.18);
  background: var(--page);
  color: var(--ink);
  rotate: var(--note-tilt, 0deg);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease, rotate 220ms ease;
}

.note-card:nth-child(3n) {
  background: #f0dfb7;
}

.note-card:nth-child(4n) {
  background: #f2d7bb;
}

.note-card:nth-child(5n) {
  background: var(--page-deep);
}

.note-card:hover,
.note-card:focus-within {
  box-shadow: 0 0.55rem 0 rgba(246, 237, 207, 0.12);
  transform: translateY(-0.35rem);
  rotate: 0deg;
}

.note-card-meta,
.note-card-signoff {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(23, 18, 13, 0.58);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.note-card-meta span:last-child {
  max-width: 7rem;
  text-align: right;
}

.note-card-quote {
  max-width: 16rem;
  margin: 2.5rem 0;
  font-size: clamp(1.05rem, 1.65vw, 1.55rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.note-card-signoff {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(23, 18, 13, 0.22);
}

.note-card-signoff span:last-child {
  color: var(--ember);
  font-size: var(--body-copy-size);
  line-height: 0.55;
}

.notes-book {
  display: grid;
  grid-template-columns: minmax(8rem, 0.65fr) minmax(18rem, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: 76rem;
  margin: clamp(3.5rem, 6vw, 6rem) auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(246, 237, 207, 0.32);
}

.notes-book-label {
  align-self: start;
  margin: 0;
  color: #e17a48;
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.notes-book-copy h3 {
  margin: 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(1.9rem, 3.3vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.87;
}

.notes-book-copy p {
  max-width: 19rem;
  margin: 1rem 0 0;
  color: rgba(246, 237, 207, 0.68);
  font-size: var(--body-copy-size);
  font-weight: 600;
  line-height: 1.5;
}

.notes-book-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: end;
  padding: 0 0 0.4rem;
  border: 0;
  border-bottom: 1px solid rgba(246, 237, 207, 0.48);
  background: transparent;
  color: rgba(246, 237, 207, 0.62);
  cursor: not-allowed;
  font-size: var(--body-copy-size);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.notes-book-link span {
  color: #e17a48;
  font-size: var(--utility-copy-size);
  letter-spacing: 0.08em;
}

.sponsor-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.8rem, 8vw, 8rem) var(--page-pad) clamp(5.2rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
  background: var(--page-deep);
  color: var(--ink);
}

.sponsor-section::after {
  position: absolute;
  right: -8rem;
  bottom: -15rem;
  width: min(38rem, 55vw);
  aspect-ratio: 1;
  border: 1px solid rgba(163, 60, 30, 0.26);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: rotate(-18deg) scaleY(0.35);
}

.sponsor-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 76rem;
  margin: 0 auto;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
  color: rgba(23, 18, 13, 0.55);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sponsor-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(14rem, 0.75fr) minmax(19rem, 1.35fr) minmax(10rem, 0.55fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  max-width: 76rem;
  margin: clamp(3.5rem, 6vw, 6rem) auto 0;
}

.sponsor-amount {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  width: min(100%, 18rem);
  min-height: 15rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--ink);
  background: var(--page);
  box-shadow: 0.55rem 0.55rem 0 rgba(23, 18, 13, 0.12);
  transform: rotate(-3deg);
}

.sponsor-amount::before {
  position: absolute;
  top: -0.55rem;
  right: -0.55rem;
  width: 2.4rem;
  height: 2.4rem;
  border-top: 1px solid var(--ember);
  border-right: 1px solid var(--ember);
  content: "";
}

.sponsor-amount-label,
.sponsor-amount-caption {
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.sponsor-amount-label {
  color: var(--ember);
}

.sponsor-amount strong {
  margin: 1.3rem 0 1rem;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(5rem, 9vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 0.72;
}

.sponsor-amount-caption {
  max-width: 9rem;
  color: rgba(23, 18, 13, 0.58);
}

.sponsor-copy {
  max-width: 38rem;
}

.sponsor-kicker {
  margin: 0 0 1.35rem;
  color: var(--ember);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sponsor-copy h2 {
  margin: 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(3.4rem, 7.3vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.sponsor-copy h2 em {
  color: var(--ember);
  font-style: normal;
}

.sponsor-body {
  max-width: 32rem;
  margin: 1.8rem 0 0;
  color: rgba(23, 18, 13, 0.72);
  font-size: var(--body-copy-size);
  font-weight: 600;
  line-height: 1.55;
}

.sponsor-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.2rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(23, 18, 13, 0.58);
  color: var(--ink);
  font-size: var(--body-copy-size);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, gap 180ms ease;
}

.sponsor-cta span {
  color: var(--ember);
  font-size: 1.2rem;
  line-height: 0.7;
}

.sponsor-cta:hover,
.sponsor-cta:focus-visible {
  gap: 0.95rem;
  border-color: var(--ember);
  color: var(--ember);
}

.sponsor-note {
  align-self: end;
  justify-self: end;
  max-width: 11rem;
  margin: 0;
  color: rgba(23, 18, 13, 0.56);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.cafe-partners {
  position: relative;
  display: grid;
  min-height: clamp(31rem, 52vw, 47rem);
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) var(--page-pad);
  border-top: 1px solid rgba(246, 237, 207, 0.2);
  background: var(--espresso);
  color: var(--page);
  place-items: center;
  text-align: center;
}

.partner-content {
  position: relative;
  z-index: 2;
  max-width: 65rem;
}

.partner-kicker {
  margin: 0 0 1.35rem;
  color: #e17a48;
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-content h2 {
  margin: 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(3.4rem, 8.8vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.partner-content h2 em {
  color: #e17a48;
  font-style: normal;
}

.partner-copy {
  max-width: 29rem;
  margin: 1.8rem auto 0;
  color: rgba(246, 237, 207, 0.72);
  font-size: var(--body-copy-size);
  font-weight: 600;
  line-height: 1.55;
}

.partner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.2rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(246, 237, 207, 0.72);
  color: var(--page);
  font-size: var(--body-copy-size);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, gap 180ms ease;
}

.partner-cta span {
  color: #e17a48;
  font-size: 1.1rem;
  line-height: 0.7;
}

.partner-cta:hover,
.partner-cta:focus-visible {
  gap: 0.95rem;
  border-color: #e17a48;
  color: #e17a48;
}

.partner-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(246, 237, 207, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.partner-orbit-one {
  width: min(64vw, 55rem);
  aspect-ratio: 1;
  transform: rotate(-18deg) scaleY(0.38);
}

.partner-orbit-two {
  width: min(88vw, 75rem);
  aspect-ratio: 1;
  border-color: rgba(225, 122, 72, 0.22);
  transform: rotate(26deg) scaleY(0.25);
}

.meet-ryan {
  padding: clamp(4.8rem, 8vw, 8rem) var(--page-pad) clamp(5.2rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
  background: var(--page);
  color: var(--ink);
}

.founder-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
  color: rgba(23, 18, 13, 0.55);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-heading {
  padding-top: clamp(3.2rem, 6vw, 5.8rem);
  text-align: center;
}

.founder-kicker {
  margin: 0 0 1rem;
  color: var(--ember);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-heading h2 {
  margin: 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(3.4rem, 8vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.75fr) minmax(18rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
  max-width: 58rem;
  margin: clamp(3.2rem, 6vw, 5.5rem) auto 0;
}

.founder-mark {
  position: relative;
  display: grid;
  width: min(20rem, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(23, 18, 13, 0.35);
  border-radius: 50%;
  background: var(--page-deep);
  place-items: center;
  transform: rotate(-6deg);
}

.founder-mark::before,
.founder-mark::after {
  position: absolute;
  border: 1px solid rgba(163, 60, 30, 0.55);
  border-radius: 50%;
  content: "";
}

.founder-mark::before {
  inset: 0.75rem;
}

.founder-mark::after {
  inset: 1.7rem;
  border-color: rgba(23, 18, 13, 0.14);
}

.founder-mark span,
.founder-mark small {
  position: absolute;
  z-index: 1;
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-mark span {
  top: 2.1rem;
  color: var(--ember);
}

.founder-mark small {
  bottom: 2.1rem;
  color: rgba(23, 18, 13, 0.58);
}

.founder-mark strong {
  position: relative;
  z-index: 1;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(7rem, 15vw, 12rem);
  font-weight: 400;
  letter-spacing: -0.12em;
  line-height: 0.75;
}

.founder-copy {
  max-width: 27rem;
}

.founder-greeting {
  margin: 0 0 1rem;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.founder-story {
  color: rgba(23, 18, 13, 0.72);
}

.founder-story p {
  margin: 0;
  font-size: var(--body-copy-size);
  font-weight: 600;
  line-height: 1.65;
}

.founder-story p + p {
  margin-top: 1.25rem;
}

.founder-story strong {
  color: var(--ember);
  font-weight: 800;
}

.founder-signature {
  width: min(15rem, 82%);
  margin-top: 1.5rem;
}

.founder-signature img {
  width: 100%;
  height: auto;
}

.founder-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.founder-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-size: var(--body-copy-size);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, gap 180ms ease;
}

.founder-socials a span {
  color: var(--ember);
  font-size: var(--body-copy-size);
}

.founder-socials a:hover,
.founder-socials a:focus-visible {
  gap: 0.7rem;
  color: var(--ember);
}

.social-feed {
  padding: clamp(4.8rem, 8vw, 8rem) var(--page-pad) clamp(5.2rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
  background: var(--page);
  color: var(--ink);
}

.social-feed-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 76rem;
  margin: 0 auto;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
  color: rgba(23, 18, 13, 0.55);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-feed-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.8fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
  max-width: 76rem;
  margin: clamp(3.5rem, 6vw, 6rem) auto 0;
}

.social-kicker {
  margin: 0 0 1.2rem;
  color: var(--ember);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-feed-heading h2 {
  margin: 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(3.4rem, 7.7vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.social-feed-heading h2 em {
  color: var(--ember);
  font-style: normal;
}

.social-feed-copy {
  max-width: 24rem;
  padding-bottom: 0.25rem;
}

.social-feed-copy p {
  margin: 0;
  color: rgba(23, 18, 13, 0.72);
  font-size: var(--body-copy-size);
  font-weight: 600;
  line-height: 1.55;
}

.social-profile {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(23, 18, 13, 0.58);
  color: var(--ink);
  font-size: var(--body-copy-size);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, gap 180ms ease;
}

.social-profile span {
  color: var(--ember);
  font-size: 1.05rem;
  line-height: 0.7;
}

.social-profile:hover,
.social-profile:focus-visible {
  gap: 0.8rem;
  border-color: var(--ember);
  color: var(--ember);
}

.social-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 1.5rem);
  max-width: 76rem;
  margin: clamp(3.5rem, 6vw, 6rem) auto 0;
}

.social-embed-card {
  min-width: 0;
}

.social-embed-slot {
  position: relative;
  display: grid;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 0.3rem solid var(--espresso);
  background: var(--espresso);
  isolation: isolate;
  place-items: center;
}

.social-embed-slot::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(246, 237, 207, 0.28);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: rotate(-14deg) scaleY(0.34);
}

.social-embed-slot::after {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  height: 1px;
  background: rgba(246, 237, 207, 0.25);
  content: "";
  pointer-events: none;
}

.social-slot-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  color: var(--page);
  text-align: center;
}

.social-slot-mark {
  display: grid;
  width: 3.1rem;
  aspect-ratio: 1;
  border: 1px solid var(--ember);
  border-radius: 50%;
  color: #e17a48;
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.08em;
  place-items: center;
}

.social-slot-placeholder strong {
  max-width: 11rem;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.social-slot-placeholder > span:last-child {
  max-width: 10rem;
  color: rgba(246, 237, 207, 0.62);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.social-embed-label {
  margin: 0.85rem 0 0;
  color: var(--ember);
  font-size: var(--utility-copy-size);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.social-embed-slot.has-instagram-embed {
  display: block;
  overflow: auto;
  border-color: var(--page);
  background: #fff;
}

.social-embed-slot.has-instagram-embed::before,
.social-embed-slot.has-instagram-embed::after {
  display: none;
}

.social-embed-slot .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

[data-fade] {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(1.35rem);
  transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1), filter 820ms cubic-bezier(0.22, 1, 0.36, 1), transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--fade-delay, 0ms);
}

[data-fade].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (max-width: 64rem) {
  .site-header {
    grid-template-columns: minmax(8.5rem, 1fr) auto minmax(8.5rem, 1fr);
  }

  .primary-nav {
    gap: 0.9rem;
    font-size: var(--utility-copy-size);
  }

  .nav-cta {
    font-size: var(--body-copy-size);
  }

  .notes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 48rem) {
  :root {
    --page-pad: 0.75rem;
  }

  body {
    background: var(--page);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 3.8rem;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .brand-lockup {
    width: 7.2rem;
  }

  .primary-nav,
  .search-button,
  .nav-cta {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .hero {
    padding-top: 0.65rem;
  }

  .hero-image {
    min-height: min(67svh, 34rem);
  }

  .hero-image > img {
    object-position: 58% center;
  }

  .image-kicker {
    top: 0.75rem;
    left: 0.75rem;
    max-width: 12rem;
    font-size: var(--utility-copy-size);
  }

  .hero h1 {
    right: 0.2rem;
    bottom: 0.45rem;
    left: 0.2rem;
    font-size: clamp(2.55rem, 12vw, 5rem);
    line-height: 0.88;
    white-space: normal;
  }

  .hero-message {
    min-height: 20.5rem;
    padding: 2.6rem 3.7rem 4.5rem;
  }

  .message-copy {
    font-size: var(--body-copy-size);
    line-height: 1.4;
  }

  .message-subcopy {
    font-size: var(--utility-copy-size);
    line-height: 1.35;
  }

  .supporting-photo {
    width: 3.7rem;
    border-width: 0.14rem;
  }

  .supporting-photo-left {
    bottom: 1.65rem;
    left: 0.7rem;
  }

  .supporting-photo-right {
    top: 1.65rem;
    right: 0.8rem;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem 1.4rem;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-brand {
    width: 10rem;
  }

  .footer-description {
    max-width: 16rem;
    margin-top: 1rem;
    font-size: var(--body-copy-size);
  }

  .footer-links a,
  .footer-contact a {
    font-size: var(--body-copy-size);
  }

  .footer-bottom {
    flex-wrap: wrap;
    margin-top: 2.8rem;
    font-size: var(--utility-copy-size);
  }

  .mission {
    padding-top: 4.5rem;
    padding-bottom: 5.5rem;
  }

  .mission h2 {
    font-size: clamp(2.55rem, 10.7vw, 4rem);
  }

  .mission-image {
    width: min(16rem, 67vw);
    margin-top: 2.5rem;
  }

  .mission-layout {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    margin-top: 1.6rem;
  }

  .mission-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 16rem;
  }

  .mission-side {
    grid-row: 2;
    padding-top: 0.2rem;
    font-size: var(--utility-copy-size);
  }

  .mission-side-left {
    text-align: left;
  }

  .mission-side-right {
    text-align: right;
  }

  .wall-of-love {
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }

  .wall-heading h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .wall-intro {
    max-width: 17rem;
    font-size: var(--body-copy-size);
  }

  .wall-rail-wrap {
    margin-top: 1.8rem;
  }

  .video-rail {
    grid-auto-columns: minmax(15rem, 72vw);
    gap: 0.7rem;
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  .wall-card {
    min-height: 0;
  }

  .rail-control {
    display: none;
  }

  .wall-card-quote {
    font-size: 1.55rem;
  }

  .wall-footer {
    padding-top: 0.1rem;
    flex-wrap: wrap;
    font-size: var(--utility-copy-size);
    line-height: 1.35;
  }

  .upcoming-dates {
    padding-top: 4.5rem;
    padding-bottom: 5.5rem;
  }

  .upcoming-heading {
    display: grid;
    gap: 1.5rem;
  }

  .upcoming-heading h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .upcoming-intro {
    max-width: 18rem;
    margin: 0;
    font-size: var(--body-copy-size);
  }

  .date-list {
    gap: 0.65rem;
    margin-top: 2.6rem;
  }

  .date-card {
    grid-template-columns: 4.6rem minmax(0, 1fr) 1.7rem;
    min-height: 6.6rem;
    padding: 0.75rem;
  }

  .date-card-date {
    min-height: 5rem;
    padding-right: 0.75rem;
  }

  .date-card-date strong {
    font-size: 2.2rem;
  }

  .date-card-info {
    padding: 0 0.8rem;
  }

  .date-card-info h3 {
    font-size: 1.1rem;
  }

  .date-card-address {
    font-size: var(--body-copy-size);
  }

  .date-card-arrow {
    width: 1.5rem;
    height: 1.5rem;
    font-size: var(--body-copy-size);
  }

  .notes-from-room {
    padding-top: 4.5rem;
    padding-bottom: 5.5rem;
  }

  .notes-heading {
    display: grid;
    gap: 1.5rem;
  }

  .notes-heading h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .notes-heading-copy {
    max-width: 18rem;
    margin: 0;
  }

  .notes-heading-copy p {
    font-size: var(--body-copy-size);
  }

  .notes-heading-copy > span {
    margin-top: 1.1rem;
    font-size: var(--utility-copy-size);
  }

  .notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 2.6rem;
  }

  .note-card {
    min-height: 13rem;
    padding: 0.8rem;
  }

  .note-card-meta {
    flex-direction: column;
    gap: 0.35rem;
    font-size: var(--utility-copy-size);
  }

  .note-card-meta span:last-child {
    max-width: none;
    text-align: left;
  }

  .note-card-quote {
    margin: 1.4rem 0;
    font-size: clamp(1rem, 4.2vw, 1.2rem);
    line-height: 1.1;
  }

  .note-card-signoff {
    gap: 0.4rem;
    flex-wrap: wrap;
    font-size: var(--utility-copy-size);
  }

  .notes-book {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .notes-book-copy h3 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .notes-book-copy p {
    font-size: var(--body-copy-size);
  }

  .notes-book-link {
    justify-self: start;
    font-size: var(--body-copy-size);
  }

  .meet-ryan {
    padding-top: 4.5rem;
    padding-bottom: 5.5rem;
  }

  .founder-topline {
    flex-wrap: wrap;
    font-size: var(--utility-copy-size);
  }

  .founder-topline span:last-child {
    text-align: right;
  }

  .founder-heading {
    padding-top: 3.7rem;
  }

  .founder-heading h2 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    margin-top: 3rem;
  }

  .founder-mark {
    width: min(15rem, 70vw);
  }

  .founder-mark span {
    top: 1.55rem;
  }

  .founder-mark small {
    bottom: 1.55rem;
  }

  .founder-copy {
    max-width: 18rem;
    margin: 0 auto;
    text-align: center;
  }

  .founder-copy > p:not(.founder-greeting) {
    font-size: var(--body-copy-size);
  }

  .founder-socials {
    justify-content: center;
  }

  .sponsor-section {
    padding-top: 4.5rem;
    padding-bottom: 5.5rem;
  }

  .sponsor-topline {
    flex-wrap: wrap;
    font-size: var(--utility-copy-size);
    line-height: 1.35;
  }

  .sponsor-topline span:last-child {
    text-align: right;
  }

  .sponsor-layout {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    max-width: 18rem;
    margin-top: 3.5rem;
  }

  .sponsor-amount {
    width: min(15rem, 84vw);
    min-height: 13rem;
    justify-self: center;
  }

  .sponsor-amount strong {
    font-size: clamp(4.8rem, 20vw, 6.5rem);
  }

  .sponsor-copy {
    max-width: 18rem;
    margin: 0 auto;
    text-align: center;
  }

  .sponsor-copy h2 {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .sponsor-body {
    margin-top: 1.5rem;
    font-size: var(--body-copy-size);
  }

  .sponsor-cta {
    justify-content: center;
    margin-top: 1.9rem;
    font-size: var(--body-copy-size);
  }

  .sponsor-note {
    max-width: 15rem;
    margin: 0 auto;
    text-align: center;
  }

  .cafe-partners {
    min-height: 32rem;
    padding: 5rem var(--page-pad);
  }

  .partner-content h2 {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .partner-copy {
    max-width: 18rem;
    margin-top: 1.5rem;
    font-size: var(--body-copy-size);
  }

  .partner-cta {
    margin-top: 1.9rem;
    font-size: var(--body-copy-size);
  }

  .partner-orbit-one {
    width: 90vw;
  }

  .partner-orbit-two {
    width: 120vw;
  }

  .social-feed {
    padding-top: 4.5rem;
    padding-bottom: 5.5rem;
  }

  .social-feed-topline {
    flex-wrap: wrap;
    font-size: var(--utility-copy-size);
    line-height: 1.35;
  }

  .social-feed-topline span:last-child {
    text-align: right;
  }

  .social-feed-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .social-feed-heading h2 {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .social-feed-copy {
    max-width: 18rem;
  }

  .social-feed-copy p {
    font-size: var(--body-copy-size);
  }

  .social-profile {
    margin-top: 1.4rem;
    font-size: var(--body-copy-size);
  }

  .social-embed-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 18rem;
    margin-top: 3.5rem;
  }

  .social-slot-placeholder strong {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-fade] {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .coffee-mark .steam {
    animation: none;
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes coffee-steam-wiggle {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(0, 0) rotate(0deg);
  }

  42% {
    opacity: 1;
    transform: translate(-0.35px, -0.2px) rotate(-4deg);
  }

  76% {
    opacity: 0.74;
    transform: translate(0.35px, 0.1px) rotate(3deg);
  }
}

.hero-image {
  animation: hero-image-in 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
  animation: hero-title-in 800ms 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
