/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 174:0 Unexpected "="
Line 364:1 Unexpected ">"

**/
<<<<<<<< HEAD:assets/emphasis-cta.css
/* ============================================================
   Emphasis CTA  |  emphasis-cta.css
   Focus-hover: background blurs/dims, card scales into focus
   ============================================================ */

.ecta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: visible;
}

.ecta__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: filter 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: filter, transform;
  z-index: 0;
}

.ecta__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ecta__dim {
  position: fixed;
  inset: 0;
  background: rgba(4, 3, 3, 0);
  backdrop-filter: blur(0px) brightness(1);
  -webkit-backdrop-filter: blur(0px) brightness(1);
  transition: opacity 0.45s ease;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}

.ecta__dim--active {
  opacity: 1;
  background: rgba(4, 3, 3, 0.62);
  backdrop-filter: blur(20px) brightness(0.4) saturate(0.55);
  -webkit-backdrop-filter: blur(20px) brightness(0.4) saturate(0.55);
  transition: opacity 0.15s ease;
}

/* Fluid vertical + horizontal padding — no hard breakpoint jump */
.ecta__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 3vw, 1.5rem);
}

/* Card: fluid padding, content-driven height on small screens */
.ecta__card {
  text-align: center;
  max-width: var(--ecta-card-width, 1200px);
  width: 100%;
  min-height: var(--ecta-card-height, 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(1.75rem, 5vw, 5rem) clamp(1.25rem, 5vw, 4.5rem);
  border-radius: var(--ecta-card-radius, 20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  transform: translateY(0) scale(1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  position: relative;
  z-index: 2;
}

.ecta.is-hovered .ecta__bg {
  transform: scale(1.06);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ecta.is-hovered .ecta__card {
  transform: translateY(-24px) scale(1.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Fluid typography — scales continuously from ~320px to desktop */
.ecta__eyebrow {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ecta-accent, #8a6a4e);
  margin-bottom: 1.25rem;
}

.ecta__heading {
  margin: 0 0 1.25rem;
  font-weight: var(--ecta-heading-weight, 450);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ecta-heading-clr, #1a1a1a);
}

.ecta__subtext {
  margin: 0 auto 2rem;
  max-width: 600px;
  font-weight: var(--ecta-subtext-weight, 350);
  line-height: 1.65;
  color: var(--ecta-subtext-clr, #5c5c5c);
}

/* Button shrinks padding on narrow screens */
.ecta__btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.1rem) clamp(1.5rem, 4vw, 2.75rem);
  border-radius: var(--ecta-btn-radius, 9999px);
  background: var(--ecta-btn-bg, #1a1a1a);
  color: var(--ecta-btn-color, #ffffff);
  font-size: clamp(0.875rem, 1.8vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid transparent;
}

.ecta__btn:hover,
.ecta__btn:focus-visible {
  background: var(--ecta-btn-hover-bg, #333333);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  outline: none;
}

.ecta__btn:focus-visible {
  outline: 3px solid var(--ecta-accent, #8a6a4e);
  outline-offset: 3px;
}

/* Mobile: disable hover effects, apply optional min-height override */
@media screen and (max-width: 749px) {
  .ecta__card {
    min-height: var(--ecta-card-height-mobile, 0px);
  }

  .ecta.is-hovered .ecta__bg {
    transform: none;
  }

  .ecta.is-hovered .ecta__card {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  }
}
========
/* ============================================================
   Hero — ED CTA  |  hero-ed-cta.css
   Focus-hover: background blurs/dims, card scales into focus
   ============================================================ */

/* ---------- Section shell ---------- */
.hero-ed-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: visible;
}

/* ---------- Soft neutral background layer ---------- */
.hero-ed-cta__bg {
  position: absolute;
  inset: 0;
  background: var(--hero-ed-bg, #f5f4f2);
  /* overflow hidden here keeps bg image/scale contained within the section */
  overflow: hidden;
  /* hover-out: soft */
  transition: filter 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: filter, transform;
  z-index: 0;
}

/* Optional: if a bg image is used, size it properly */
.hero-ed-cta__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Full-viewport dim + blur overlay
   Moved to <body> via JS so no ancestor transform can trap it */
.hero-ed-cta__dim {
  position: fixed;
  inset: 0;
  background: rgba(4, 3, 3, 0);
  backdrop-filter: blur(0px) brightness(1);
  -webkit-backdrop-filter: blur(0px) brightness(1);
  transition: opacity 0.45s ease;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}

.hero-ed-cta__dim--active {
  opacity: 1;
  background: rgba(4, 3, 3, 0.62);
  backdrop-filter: blur(20px) brightness(0.4) saturate(0.55);
  -webkit-backdrop-filter: blur(20px) brightness(0.4) saturate(0.55);
  transition: opacity 0.15s ease;
}

/* ---------- Content wrapper (constrains card width) ---------- */
.hero-ed-cta__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 1.5rem;
}

/* ---------- The card ---------- */
.hero-ed-cta__card {
  text-align: center;
  max-width: var(--hero-ed-card-width, 860px);
  width: 100%;
  min-height: var(--hero-ed-card-height, 480px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 4.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--hero-ed-card-radius, 20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  transform: translateY(0) scale(1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  position: relative;
  z-index: 2;
}

/* ---------- Hover state — driven by JS class on section ---------- */
.hero-ed-cta.is-hovered .hero-ed-cta__bg {
  transform: scale(1.06);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-ed-cta.is-hovered .hero-ed-cta__card {
  transform: translateY(-24px) scale(1.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Typography ---------- */
.hero-ed-cta__eyebrow {
  display: inline-block;
  font-size: var(--hero-ed-eyebrow-size, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hero-ed-accent, #8a6a4e);
  margin-bottom: 1.25rem;
}

.hero-ed-cta__heading {
  margin: 0 0 1.25rem;
  font-size: var(--hero-ed-heading-size, 3.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--hero-ed-heading-color, #1a1a1a);
}

.hero-ed-cta__subtext {
  margin: 0 auto 2.5rem;
  max-width: 600px;
  font-size: var(--hero-ed-subtext-size, 1.0625rem);
  line-height: 1.65;
  color: var(--hero-ed-subtext-color, #5c5c5c);
}

/* ---------- CTA button (pill) ---------- */
.hero-ed-cta__btn {
  display: inline-block;
  padding: 1.1rem 2.75rem;
  border-radius: var(--hero-ed-btn-radius, 9999px);
  background: var(--hero-ed-btn-bg, #1a1a1a);
  color: var(--hero-ed-btn-color, #ffffff);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid transparent;
}

.hero-ed-cta__btn:hover,
.hero-ed-cta__btn:focus-visible {
  background: var(--hero-ed-btn-hover-bg, #333333);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  outline: none;
}

.hero-ed-cta__btn:focus-visible {
  outline: 3px solid var(--hero-ed-accent, #8a6a4e);
  outline-offset: 3px;
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 749px) {
  .hero-ed-cta__inner {
    padding: 4rem 1rem;
  }

  .hero-ed-cta__card {
    padding: 2.5rem 1.5rem;
    min-height: var(--hero-ed-card-height-mobile, 360px);
  }

  /* On mobile, skip the lift/dim effect */
  .hero-ed-cta.is-hovered .hero-ed-cta__bg {
    transform: none;
  }

  .hero-ed-cta.is-hovered .hero-ed-cta__card {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  }
}

/* ---------- Section padding utility ---------- */
.hero-ed-cta--padded {
  padding-top: 0;
  padding-bottom: 0;
}
>>>>>>>> 80b70a069166fced37f0962825f55c9ac41b7474:assets/hero-ed-cta.css
