/* The approved first section, isolated from the old snapshot runtime. */
.v2-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 80vh;
  margin: 0;
  padding: 128px 16px 96px;
  overflow: hidden;
  background: #f5ded3;
  box-sizing: border-box;
}

.v2-hero .v2-hero__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  pointer-events: none;
}

.v2-hero .v2-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.v2-hero .v2-hero__title-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  justify-items: center;
  padding: 32px 0;
}

.v2-hero .v2-hero__title-cell {
  grid-column: 2 / span 10;
  width: 100%;
  min-width: 0;
}

.v2-hero .v2-hero__title {
  position: relative;
  width: 100%;
  margin: 0;
  color: #f4a888;
  font-family: var(--font-henrietta, 'LaGova Henrietta'), var(--font-headline, 'LaGova Nudge'), sans-serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 1.9;
  letter-spacing: -0.01em;
  text-align: left;
}

.v2-hero .v2-hero__title-block { display: block; }

.v2-hero .v2-hero__signature {
  position: relative;
  display: inline-block;
  width: 100%;
  line-height: 1;
}

.v2-hero .v2-hero__fallback {
  display: block;
  width: 100%;
  text-align: center;
  -webkit-text-stroke: 0.025em #352722;
  paint-order: stroke fill;
  text-shadow: -0.063em 0.063em #ed8a6c, -0.127em 0.127em #dc6e55, -0.19em 0.19em #c6533f, -0.254em 0.254em #ad3e30;
}

.v2-hero .v2-hero__signature[data-ready] .v2-hero__fallback { visibility: hidden; }

.v2-hero .v2-hero__motion-line,
.v2-hero .v2-hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.v2-hero .v2-hero__layer {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(var(--hero-angle)) translateY(var(--hero-radius-y));
  user-select: none;
}

.v2-hero .v2-hero__signature[data-entrance] .v2-hero__layer {
  animation: v2-hero-curve 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.v2-hero .v2-hero__face {
  display: inline-block;
  white-space: pre;
  -webkit-text-stroke: 0.025em #352722;
  paint-order: stroke fill;
  transform: translate(var(--hero-layer-x, 0px), var(--hero-layer-y, 0px));
}

.v2-hero .v2-hero__copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  margin: auto auto 0;
}

.v2-hero .v2-hero__copy-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.v2-hero .v2-hero__description {
  margin: 0;
  color: #642e27;
  font-family: var(--font-body, 'LaGova Sans'), sans-serif;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
  text-shadow: 0 0.15rem 1.2rem rgba(255, 252, 250, 0.82);
}

.v2-hero .v2-hero__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid #ed8a6c;
  border-radius: 12px;
  background: #f4a888;
  color: #352722;
  font-family: var(--font-body, 'LaGova Sans'), sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.32px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-sizing: border-box;
}

.v2-hero .v2-hero__download:hover {
  transform: translate(2px, -2px);
  box-shadow: -2px 2px 0 #ed8a6c;
}

.v2-hero .v2-hero__download:active {
  transform: none;
  box-shadow: none;
  background: #ed8a6c;
}

.v2-hero .v2-hero__download:focus-visible {
  outline: 3px solid #352722;
  outline-offset: 4px;
}

@keyframes v2-hero-curve {
  from { transform: translateX(-50%) translate(var(--hero-flat-x), 0) rotate(0deg) translateY(0); }
  to { transform: translateX(-50%) translate(0, 0) rotate(var(--hero-angle)) translateY(var(--hero-radius-y)); }
}

@media (min-width: 640px) {
  .v2-hero .v2-hero__copy-grid { max-width: 640px; }
}

@media (min-width: 768px) {
  .v2-hero { padding-inline: 32px; }
  .v2-hero .v2-hero__copy-grid { max-width: 768px; }
}

@media (min-width: 1024px) {
  .v2-hero { padding-inline: 64px; padding-bottom: 128px; }
  .v2-hero .v2-hero__title-cell { grid-column: 1 / span 12; }
  .v2-hero .v2-hero__title { font-size: 117px; line-height: 2.5; }
  .v2-hero .v2-hero__copy-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); max-width: 1024px; }
  .v2-hero .v2-hero__copy-cell { grid-column: span 3; align-items: flex-start; text-align: left; }
  .v2-hero .v2-hero__description { font-size: 22px; }
  .v2-hero .v2-hero__download { min-height: 56px; padding: 13px 24px; border-radius: 20px; font-size: 20px; letter-spacing: 0.4px; }
}

@media (min-width: 1280px) {
  .v2-hero .v2-hero__copy-grid { max-width: 1280px; }
}

@media (min-width: 1376px) {
  .v2-hero .v2-hero__copy-grid { max-width: 1376px; }
}

@media (max-width: 767px) {
  .v2-hero .v2-hero__description {
    color: #fffcfa;
    text-shadow: 0 0.12rem 0.25rem rgba(53, 39, 34, 0.92), 0 0.35rem 1.4rem rgba(53, 39, 34, 0.72);
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-hero .v2-hero__signature[data-entrance] .v2-hero__layer { animation: none; }
  .v2-hero .v2-hero__download { transition: none; }
}
