:root {
  --bg: #050505;
  --text: #f7f1e8;
  --muted: rgba(247, 241, 232, 0.72);
  --accent-bright: #faff66;
  --panel-border: rgba(255, 255, 255, 0.16);
  --page-max-width: 1560px;
  --hero-figma-width: 1280;
  --hero-figma-height: 1302;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(100, 14, 14, 0.12), transparent 24%),
    linear-gradient(180deg, #030303 0%, #050505 100%);
  color: var(--text);
  font-family: "Open Sans", sans-serif;
}

h1,
h2 {
  font-family: "Lora", serif;
}

html.is-mobile-board-dragging,
body.is-mobile-board-dragging {
  overflow: hidden;
  overscroll-behavior: none;
}

.is-mobile-board-dragging .interactive-canvas,
.is-mobile-board-dragging .canvas-item {
  touch-action: none !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 100%);
  opacity: 0.22;
}

.site-waves {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.1;
}

.site-waves__svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-waves__line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 1;
}

.site-waves__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  transform: translate3d(-120px, -120px, 0);
  will-change: transform;
}

.site-waves.is-paused {
  opacity: 0.03;
}

.site-waves.is-paused .site-waves__dot {
  opacity: 0;
}

.site-waves.is-disabled {
  display: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  overflow-y: visible;
}

body.is-booting .topbar > *,
body.is-booting .canvas-item {
  opacity: 0;
}

body.is-intro-playing .topbar > *,
body.is-intro-playing .canvas-item {
  pointer-events: none;
}

.topbar,
.landing {
  width: min(calc(100% - 160px), 1280px);
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0 28px;
  background: transparent;
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-note {
  margin: 0;
  text-align: center;
  color: rgba(247, 241, 232, 0.68);
  font-size: 0.82rem;
  line-height: 1.35;
}

.ghost-button,
.lock-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: 600 0.95rem/1 "Open Sans", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(18px);
}

.collab-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 48px;
  padding: 4px 56px 4px 24px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: 600 0.95rem/1 "Open Sans", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition:
    padding 650ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    transform 320ms ease,
    box-shadow 320ms ease;
}

.collab-button:hover {
  padding-left: 56px;
  padding-right: 24px;
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.collab-button__label {
  position: relative;
  z-index: 1;
}

.collab-button__icon {
  position: absolute;
  right: 4px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f5efe2;
  color: #090909;
  transform: translateY(-50%);
  transition:
    right 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 320ms ease;
}

.collab-button:hover .collab-button__icon {
  right: calc(100% - 44px);
  transform: translateY(-50%) rotate(45deg);
}

.collab-button__icon svg {
  width: 16px;
  height: 16px;
}

.ghost-button {
  cursor: pointer;
  transition:
    border-color 320ms ease,
    transform 320ms ease,
    background-color 320ms ease,
    box-shadow 320ms ease;
}

.ghost-button:hover,
.lock-toggle:hover {
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.ghost-button--icon {
  gap: 10px;
  padding-left: 16px;
  padding-right: 16px;
  width: 120px;
  min-width: 120px;
  justify-content: flex-start;
}

.ghost-button__icon-stack {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: 0 0 24px;
}

.ghost-button__icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.ghost-button__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.ghost-button__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.ghost-button__icon--copy {
  opacity: 1;
  transform: scale(1);
}

.ghost-button__icon--check {
  opacity: 0;
  transform: scale(0.6);
}

.ghost-button.is-confirmed .ghost-button__icon--copy {
  opacity: 0;
  transform: scale(0.6);
}

.ghost-button.is-confirmed .ghost-button__icon--check {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 400ms 150ms ease,
    transform 400ms 150ms ease;
}

.ghost-button__label {
  display: inline-block;
}

.lock-toggle {
  cursor: pointer;
  position: relative;
  padding: 0;
  width: 172px;
  min-width: 172px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transition:
    transform 320ms ease,
    box-shadow 320ms ease;
}

.lock-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lock-toggle--spin .lock-toggle__border {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition:
    background-color 320ms ease,
    opacity 320ms ease;
}

.lock-toggle__surface {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: calc(100% - 2px);
  min-height: 46px;
  margin: 1px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.96);
  color: var(--text);
  transition:
    background-color 320ms ease,
    color 320ms ease,
    box-shadow 320ms ease;
}

.lock-toggle__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.lock-toggle__icon-image {
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;
  display: block;
  transition:
    opacity 220ms ease,
    filter 220ms ease;
}

.lock-toggle__icon-image--unlocked {
  opacity: 0;
}

.lock-toggle__label {
  display: inline-block;
  min-width: 56px;
  text-align: center;
}

.lock-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.lock-toggle input:checked + .lock-toggle__border + .lock-toggle__surface {
  background: #f5efe2;
  color: #090909;
}

.lock-toggle input:checked + .lock-toggle__border + .lock-toggle__surface .lock-toggle__icon-image--locked {
  opacity: 0;
}

.lock-toggle input:checked + .lock-toggle__border + .lock-toggle__surface .lock-toggle__icon-image--unlocked {
  opacity: 1;
  filter: invert(1);
}

.lock-toggle input:not(:checked) + .lock-toggle__border + .lock-toggle__surface {
  background: rgba(8, 8, 8, 0.96);
  color: #f7f1e8;
}

.lock-toggle input:not(:checked) + .lock-toggle__border + .lock-toggle__surface .lock-toggle__icon-image--locked {
  opacity: 1;
  filter: none;
}

.lock-toggle input:not(:checked) + .lock-toggle__border + .lock-toggle__surface .lock-toggle__icon-image--unlocked {
  opacity: 0;
}

.lock-toggle input:not(:checked) + .lock-toggle__border {
  background: rgba(9, 9, 9, 0.18);
}

.landing {
  position: relative;
  container-type: inline-size;
  padding-bottom: 72px;
  z-index: 2;
}

.hero {
  position: relative;
  overflow: hidden;
  container-type: inline-size;
  aspect-ratio: calc(var(--hero-figma-width) / var(--hero-figma-height));
  min-height: 0;
  background: transparent;
}

.hero-copy--mobile {
  display: none;
}

.eyebrow {
  margin: 0 0 1.5625cqi;
  color: var(--muted);
  font-size: 0.9375cqi;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Lora", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 43.9063%;
  font-size: 5.625cqi;
  line-height: 6.25cqi;
}

.hero h2,
.canvas-text-block--subtitle h2 {
  max-width: 52.8906%;
  margin: 6.3281% 0 1.875%;
  font-family: "Lora", serif;
  font-size: 3.5938cqi;
  line-height: 4.2188cqi;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.lede {
  max-width: 64.375%;
  margin: 0;
  color: rgba(247, 241, 232, 0.94);
  font-size: 2.1875cqi;
  line-height: 2.8125cqi;
  font-weight: 600;
}

.interactive-canvas {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  min-height: 100%;
  margin-left: -50vw;
  z-index: 3;
  pointer-events: none;
}

.canvas-text-block {
  z-index: 9;
  width: max-content;
  min-width: var(--item-width, auto);
  max-width: none;
}

.canvas-text-block .eyebrow {
  margin: 0;
  white-space: nowrap;
}

.canvas-text-block h1,
.canvas-text-block h2 {
  max-width: 100%;
  margin: 0;
  white-space: nowrap;
}

.canvas-text-block--title h1 {
  font-size: 5.625cqi;
  line-height: 6.25cqi;
}

.canvas-text-block--subtitle h2 {
  font-size: 3.5938cqi;
  line-height: 4.2188cqi;
  margin: 0;
  white-space: normal;
  text-wrap: balance;
}

.canvas-text-block--subtitle {
  width: var(--item-width, auto);
  min-width: 0;
  max-width: var(--item-width, auto);
}

.canvas-text-block--body .lede {
  max-width: 100%;
  font-size: 2.1875cqi;
  line-height: 2.8125cqi;
  white-space: normal;
  text-wrap: pretty;
}

.canvas-text-block--body {
  width: var(--item-width, auto);
  min-width: 0;
  max-width: var(--item-width, auto);
}

.canvas-item {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  touch-action: none;
  cursor: grab;
  user-select: none;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition:
    box-shadow 180ms ease,
    filter 180ms ease;
}

.canvas-item::after {
  content: "";
  position: absolute;
  inset: -8px;
  box-sizing: border-box;
  border: 2px dashed rgba(255, 255, 255, 0.96);
  background: rgba(248, 255, 229, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.canvas-item:active {
  cursor: grabbing;
}

.canvas-item.is-dragging {
  z-index: 20;
  transition: none;
}

.canvas-item.is-resetting {
  z-index: 18;
  filter: saturate(1.08) brightness(1.04);
  transition:
    transform var(--reset-duration, 340ms) cubic-bezier(0.22, 1, 0.36, 1)
      var(--reset-delay, 0ms),
    filter 220ms ease var(--reset-delay, 0ms);
}

.canvas-item.is-resetting::after {
  opacity: 0.58;
  transition:
    opacity 220ms ease var(--reset-delay, 0ms),
    inset 220ms ease var(--reset-delay, 0ms);
}

.canvas-item.is-locked {
  cursor: default;
  touch-action: auto;
}

.canvas-item-image {
  width: var(--item-width, auto);
}

.canvas-item-image img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.canvas-item:hover {
  filter: brightness(1.03);
}

.canvas-item:not(.is-locked):hover::after,
.canvas-item.is-dragging::after {
  opacity: 1;
}

.canvas-item.is-locked:hover {
  filter: none;
}

.canvas-text-block.is-locked,
.canvas-item-note.is-locked {
  user-select: text;
  -webkit-user-select: text;
}

.canvas-text-block.is-locked *,
.canvas-item-note.is-locked * {
  user-select: text;
  -webkit-user-select: text;
}

.canvas-text-block.is-locked {
  cursor: text;
}

.canvas-item-avatar {
  z-index: 10;
}

.canvas-item-star {
  z-index: 2;
  filter: drop-shadow(0 18px 44px rgba(27, 51, 169, 0.22));
}

.canvas-item-star img {
  transform: none;
}

.canvas-item-heart {
  z-index: 3;
  filter: drop-shadow(0 20px 42px rgba(255, 102, 30, 0.16));
}

.canvas-item-heart img {
  transform: none;
}

.canvas-item-thumb {
  z-index: 5;
  filter: drop-shadow(0 18px 32px rgba(255, 111, 30, 0.14));
}

.canvas-item-thumb img {
  transform: none;
}

.canvas-item-note {
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--item-width, auto);
  height: var(--item-height, auto);
  padding: clamp(16px, 1.875cqi, 24px);
  background: #faff66;
  border: 1.5px solid #000000;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  color: #090909;
  text-align: center;
}

.canvas-item-note p {
  margin: 0;
  font-family: "Roboto Mono", monospace;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  cursor: text;
  outline: none;
  white-space: pre-wrap;
}

.canvas-item-note p:focus {
  outline: none;
}

.contact-strip {
  position: relative;
  margin-top: -64px;
  padding-top: 0;
  padding-bottom: 84px;
}

.contact-copy {
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}

.contact-copy .eyebrow {
  margin-bottom: 8px;
}

.contact-copy h2 {
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: clamp(3rem, 4.25vw, 4rem);
  line-height: 1;
}

.contact-links {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.contact-links a {
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.contact-links a img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--accent-bright);
}

.contact-links a:hover img,
.contact-links a:focus-visible img {
  filter: brightness(0) saturate(100%) invert(96%) sepia(58%) saturate(1172%)
    hue-rotate(14deg) brightness(105%) contrast(108%);
}

@media (max-width: 960px) {
  .topbar,
  .landing {
    width: min(calc(100% - 24px), var(--page-max-width));
  }

  .topbar {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 22px 24px 14px;
  }

  .collab-button {
    width: fit-content;
  }

  .toolbar {
    justify-content: space-between;
  }

  .hero {
    aspect-ratio: auto;
    min-height: auto;
    padding: 28px 24px 30px;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    max-width: none;
  }

  .hero-copy--mobile {
    display: block;
  }

  .eyebrow {
    margin: 0 0 12px;
    font-size: 0.78rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3rem, 7vw, 4.2rem);
    line-height: 0.96;
  }

  .hero h2 {
    max-width: none;
    margin: 16px 0 16px;
    font-size: clamp(2rem, 5.2vw, 3rem);
    line-height: 1.08;
  }

  .lede {
    max-width: none;
    font-size: clamp(1rem, 2.6vw, 1.4rem);
    line-height: 1.4;
  }

  .interactive-canvas {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 0;
    margin-left: 0;
    margin-top: 32px;
    padding-bottom: 8px;
    pointer-events: auto;
    z-index: auto;
  }

  .canvas-text-block {
    display: none;
  }

  .canvas-item {
    position: relative;
    inset: auto;
    width: 100% !important;
    height: auto !important;
    justify-self: center;
    transform: none !important;
  }

  .canvas-item:hover {
    transform: none !important;
  }

  .canvas-item-image {
    max-width: 300px;
  }

  .canvas-item-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .canvas-item-note {
    min-height: 220px;
    padding: 20px;
  }

  .canvas-item-note p {
    font-family: "Roboto Mono", monospace;
    font-size: 1rem;
    line-height: 1.45;
  }

  .canvas-item[data-item="avatar"] {
    grid-column: span 1;
    max-width: 180px;
  }

  .canvas-item[data-item="star"] {
    grid-column: span 2;
    max-width: 420px;
  }

  .canvas-item[data-item="heart"],
  .canvas-item[data-item="thumb"] {
    grid-column: span 1;
    max-width: 280px;
  }

  .canvas-item-note-1,
  .canvas-item-note-2,
  .canvas-item-note-3 {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .topbar,
  .landing {
    width: 100%;
  }

  .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 8px 16px 0;
  }

  .topbar-note {
    display: none;
  }

  .toolbar {
    display: none;
  }

  .ghost-button,
  .collab-button {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .ghost-button,
  .lock-toggle,
  .ghost-button--icon {
    width: 44px;
    min-width: 44px;
    min-height: 40px;
    height: 40px;
    padding: 0;
  }

  .collab-button {
    width: auto;
    min-width: auto;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
  }

  .ghost-button__label,
  .lock-toggle__label {
    display: none;
  }

  .collab-button__label {
    display: inline-block;
    font-size: 0;
    line-height: 1;
  }

  .collab-button__label::after {
    content: "CV";
    font-size: 0.9rem;
    font-weight: 600;
  }

  .collab-button__icon {
    position: static;
    right: auto;
    top: auto;
    width: 18px;
    height: 18px;
    background: transparent;
    color: var(--text);
    transform: none;
  }

  .collab-button:hover .collab-button__icon {
    right: auto;
    transform: none;
  }

  .ghost-button__icon-stack,
  .lock-toggle__icon {
    flex: 0 0 24px;
  }

  .ghost-button--icon {
    justify-content: center;
    padding-inline: 10px;
  }

  .lock-toggle__surface {
    min-height: 38px;
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .landing {
    padding-bottom: 0;
  }

  .hero {
    display: none;
  }

  .hero-copy--mobile {
    display: none;
  }

  .interactive-canvas {
    position: relative;
    display: block;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 375 / 1315;
    margin: 0;
    padding-bottom: 0;
    overflow: visible;
    pointer-events: auto;
    z-index: 2;
  }

  .canvas-text-block {
    display: block;
  }

  .canvas-item {
    position: absolute;
    inset: auto;
    justify-self: auto;
    transform: translate3d(var(--mobile-dx, 0px), var(--mobile-dy, 0px), 0)
      !important;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    will-change: auto;
    transition: none;
  }

  .canvas-item::after {
    display: block;
    inset: -8px;
    opacity: 0;
    transition: none;
  }

  .canvas-item:hover {
    filter: none;
  }

  .canvas-item:not(.is-locked):active::after,
  .canvas-item.is-dragging::after {
    opacity: 1;
  }

  .canvas-item.is-dragging {
    filter: none !important;
    will-change: transform;
  }

  .canvas-item.is-resetting {
    filter: none;
  }

  .canvas-item-star,
  .canvas-item-heart,
  .canvas-item-thumb,
  .canvas-item-avatar,
  .is-mobile-board-dragging .canvas-item-star,
  .is-mobile-board-dragging .canvas-item-heart,
  .is-mobile-board-dragging .canvas-item-thumb,
  .is-mobile-board-dragging .canvas-item-avatar {
    filter: none;
  }

  .canvas-item-image,
  .canvas-item-note {
    max-width: none;
  }

  .canvas-item-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .canvas-item-note {
    min-height: 0;
    padding: 16px;
    box-shadow: none;
  }

  .canvas-item-note p {
    font-family: "Roboto Mono", monospace;
    font-size: 1rem;
    line-height: 1.5;
  }

  .canvas-item[data-item="intro-kicker"] {
    display: none !important;
  }

  .canvas-item[data-item="intro-title"] {
    left: 4.267%;
    top: 9.202%;
    width: 40% !important;
  }

  .canvas-text-block--title h1 {
    font-size: 2.25rem;
    line-height: 1.08;
    white-space: nowrap;
  }

  .canvas-item[data-item="intro-subtitle"] {
    left: 4.267%;
    top: 15.981%;
    width: 60.467% !important;
  }

  .canvas-text-block--subtitle h2 {
    font-family: "Lora", serif;
    font-size: 1.125rem;
    line-height: 1.3334;
    margin: 0;
    text-wrap: pretty;
  }

  .canvas-item[data-item="intro-body"] {
    left: 4.267%;
    top: 20.152%;
    width: 89.333% !important;
  }

  .canvas-text-block--body .lede {
    font-size: 1rem;
    line-height: 1.375;
    font-weight: 600;
  }

  .canvas-item[data-item="avatar"] {
    left: 55%;
    top: 1.2%;
    width: 50% !important;
  }

  .canvas-item[data-item="star"] {
    left: 32.873%;
    top: 31.924%;
    width: 103.737% !important;
  }

  .canvas-item[data-item="heart"] {
    left: -38.667%;
    top: 49.927%;
    width: 71.44% !important;
  }

  .canvas-item[data-item="thumb"] {
    left: 70.045%;
    top: 80.509%;
    width: 75.941% !important;
  }

  .canvas-item[data-item="note-webshop"] {
    left: 21.067%;
    top: 40.913%;
    width: 66.667% !important;
    height: 19.011% !important;
  }

  .canvas-item[data-item="note-ds"] {
    left: 8%;
    top: 57.49%;
    width: 66.667% !important;
    height: 19.011% !important;
  }

  .canvas-item[data-item="note-kion"] {
    left: 25.867%;
    top: 73.992%;
    width: 66.667% !important;
    height: 19.011% !important;
  }

  .contact-strip {
    margin-top: 0;
    padding: 0 16px 48px;
  }

  .contact-copy {
    margin-bottom: 32px;
    width: 80% !important;
  }

  .contact-copy h2 {
    font-family: "Lora", serif;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .contact-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .contact-links a {
    gap: 10px;
    font-family: "Lora", serif;
    font-weight: 700;
    font-size: 1.25rem;
  }

  .contact-links a img {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
}
