/** Shopify CDN: Minification failed

Line 265:8 Expected identifier but found whitespace
Line 265:9 Unexpected "100%"

**/
/* ============================================================
   YorkPeek Hero â€” image-based with torn paper edges
   Scope: .yp-root (won't leak to host theme)
   ============================================================ */

.yp-root,
.yp-root *,
.yp-root *::before,
.yp-root *::after {
  box-sizing: border-box;
}

.yp-root {
  --yp-paper:        transparent;   /* let global paper bg show through */
  --yp-ink:          #1a1a1a;
  --yp-ink-soft:     #3a3530;
  --yp-clay:         #c44a1e;
  --yp-clay-hover:   #a83d18;

  --yp-font-display: 'Bodoni Moda', 'Playfair Display', 'Times New Roman', serif;
  --yp-font-body:    'Inter', system-ui, -apple-system, sans-serif;

  position: relative;
  background: var(--yp-paper);
  color: var(--yp-ink-soft);
  font-family: var(--yp-font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;  /* clip torn paper bleed */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   SEO-only visually hidden text
   ============================================================ */
.yp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Torn paper decorative edges
   ============================================================ */
.yp-hero-torn {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  height: clamp(50px, 7vw, 100px);
  overflow: hidden;
}

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

.yp-hero-torn-top {
  top: clamp(80px, 7vw, 110px);
}

.yp-hero-torn-top img {
  object-position: center bottom;
}

.yp-hero-torn-bottom {
  bottom: 0;
  transform: scaleY(-1);
}

.yp-hero-torn-bottom img {
  object-position: center bottom;
}

/* ============================================================
   Navigation
   ============================================================ */
.yp-hero-nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 56px 0;
  max-width: 1440px;
  margin: 0 auto -40px;
}

.yp-hero-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.yp-hero-logo-img {
  max-height: 130px;
  width: auto;
  object-fit: contain;
  /* Sharper rendering at any zoom */
  image-rendering: -webkit-optimize-contrast;
}

.yp-hero-brand-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.yp-hero-brand-name {
  font-family: var(--yp-font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--yp-ink);
}

.yp-hero-brand-tag {
  font-family: var(--yp-font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--yp-ink-soft);
  margin-top: 6px;
}

.yp-hero-menu {
  display: flex;
  gap: 44px;
  flex: 1;
  justify-content: center;
}

.yp-hero-menu-item {
  position: relative;
  color: var(--yp-ink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.yp-hero-menu-item:hover {
  color: var(--yp-clay);
}

.yp-hero-menu-item.yp-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--yp-ink);
}

.yp-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.yp-hero-signin {
  color: var(--yp-ink);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.yp-hero-signin:hover {
  color: var(--yp-clay);
}

.yp-hero-cta-btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--yp-clay);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.yp-hero-cta-btn:hover {
  background: var(--yp-clay-hover);
  transform: translateY(-1px);
}

/* ============================================================
   Hero grid â€” headline image + dashboard image
   ============================================================ */
.yp-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px 80px;
  align-items: start;
}

.yp-hero-left,
.yp-hero-right {
  position: relative;
}

.yp-hero-headline-img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  mix-blend-mode: multiply;
}

.yp-hero-dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  mix-blend-mode: multiply;
  /* Gentle floating animation â€” vertical drift */
  animation: yp-float 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes yp-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Respect reduce-motion preference */
@media (prefers-reduced-motion: reduce) {
  .yp-hero-dashboard-img {
    animation: none;
  }
}
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  /* Blend PNG background into body texture â€” multiply makes bright pixels transparent,
     dark pixels (the letters) stay dark. Result: PNG bg dissolves into body. */
  mix-blend-mode: multiply;
}

.yp-hero-dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  mix-blend-mode: multiply;
  /* Gentle floating animation â€” vertical drift */
  animation: yp-float 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes yp-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Respect reduce-motion preference */
@media (prefers-reduced-motion: reduce) {
  .yp-hero-dashboard-img {
    animation: none;
  }
}

.yp-hero-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.04);
  border: 2px dashed rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yp-ink-soft);
  font-size: 14px;
  padding: 24px;
  text-align: center;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .yp-hero-nav {
    padding: 20px 32px 0;
    flex-wrap: wrap;
    gap: 20px;
  }
  .yp-hero-menu {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 28px;
  }
  .yp-hero-grid {
    grid-template-columns: 1fr;
    padding: 20px 32px 60px;
    gap: 36px;
  }
}

@media (max-width: 720px) {
  .yp-hero-nav { padding: 16px 20px 0; gap: 12px; }
  .yp-hero-menu { display: none; }
  .yp-hero-actions { margin-left: auto; gap: 12px; }
  .yp-hero-signin { display: none; }
  .yp-hero-cta-btn { padding: 10px 18px; font-size: 14px; }
  .yp-hero-grid {
    padding: 16px 20px 40px;
    gap: 24px;
  }
}