/* ========================================================
   Canine Compassion GP — About Page Styles
   ======================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ══════════════════════════════════════════════════════   BANNER WITH ICON
══════════════════════════════════════════════════════ */
.about-banner {
  position: relative;
  background: linear-gradient(135deg, #2B633D 0%, #3a7f4f 100%);
  padding: clamp(20px, 4vw, 40px) clamp(20px, 5vw, 40px);
  overflow: hidden;
}

.about-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.about-banner__content {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: auto;
  text-align: center;
}

.about-banner__icon {
  width: clamp(60px, 10vw, 100px);
  height: clamp(60px, 10vw, 100px);
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  animation: bounce 2s ease-in-out infinite;
}

.about-banner__quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  color: #f4ede0;
  margin: 0;
  max-width: 600px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ══════════════════════════════════════════════════════   SECTION 1: PAGE HERO (Stats + Image + Heading)
══════════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  overflow: hidden;
  background: oklch(0.955 0.018 85);
  padding: clamp(40px, 6vw, 70px) clamp(20px, 5vw, 40px) clamp(40px, 6vw, 70px);
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: clamp(140px, 13vw, 190px) clamp(280px, 28vw, 400px) 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

/* Stats column */
.about-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
  order: 1;
}

.about-hero__stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1;
  color: #2B633D;
  margin: 0 0 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-hero__stat-label {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: #6f6d6c;
  margin: 0;
}

.about-hero__stats.is-visible .about-hero__stat-num {
  opacity: 1;
  transform: translateY(0);
}
.about-hero__stats.is-visible .about-hero__stat:nth-child(1) .about-hero__stat-num { transition-delay: 0s; }
.about-hero__stats.is-visible .about-hero__stat:nth-child(2) .about-hero__stat-num { transition-delay: 0.15s; }
.about-hero__stats.is-visible .about-hero__stat:nth-child(3) .about-hero__stat-num { transition-delay: 0.3s; }

/* Frame (photo) column */
.about-hero__frame-wrap {
  position: relative;
  max-width: 400px;
  width: 100%;
  order: 2;
}

.about-hero__frame-deco {
  position: absolute;
  top: -24px;
  left: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  z-index: 0;
  pointer-events: none;
  transform: rotate(-1.2deg);
}

.about-hero__frame-deco svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.about-hero__frame-img-wrap {
  position: relative;
  z-index: 1;
}

.about-hero__frame-img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.about-hero__frame-lines {
  position: absolute;
  top: -36px;
  right: -10px;
  width: 60px;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}

/* Content (right) column */
.about-hero__content {
  order: 3;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-hero__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-hero__heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(33px, 7vw, 80px);
  line-height: 1.3;
  color: #1e1b1a;
  margin: 0 0 0;
}

.about-hero__heading-top {
  display: block;
  font-weight: 700;
}

.about-hero__heading-accent-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  white-space: nowrap;
}

.about-hero__heading-accent {
  font-style: italic;
  font-weight: 700;
  color: #2B633D;
  position: relative;
}

.about-hero__heading-underline {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 14px;
  overflow: visible;
  z-index: -1;
}

.about-hero__paw-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.about-hero__tagline {
  font-family: 'Fraunces', serif;
  font-size: clamp(14px, 1.5vw, 15.5px);
  line-height: 1.5;
  color: #000000;
  max-width: 460px;
  margin: 24px 0 36px;
  font-weight: 300;
}

.about-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border: 1.5px solid #e7caa1;
  border-radius: 4px;
  color: #1e1b1a;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Fraunces', serif;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.about-hero__cta:hover { background: #faf3e8; }
.about-hero__cta img { width: 20px; height: 20px; }

/* ═══ Hero responsive ═══ */
@media (max-width: 1366px) {
  .about-hero__heading {
    font-size: clamp(33px, 5.5vw, 55px);
  }
}

@media (max-width: 960px) {
  .about-hero__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .about-hero__stats { order: 2; flex-direction: row; flex-wrap: wrap; gap: 24px 40px; }
  .about-hero__frame-wrap { order: 1; grid-column: span 2; max-width: 360px; margin: 0 auto; }
  .about-hero__content { order: 3; grid-column: span 2; }
}
@media (max-width: 600px) {
  .about-hero__grid { grid-template-columns: 1fr; }
  .about-hero__content { order: 1; grid-column: span 1; }
  .about-hero__frame-wrap { order: 2; grid-column: span 1; }
  .about-hero__stats { order: 3; grid-column: span 1; flex-direction: row; flex-wrap: wrap; gap: 16px 20px; justify-content: space-between; }
  .about-hero__stat { flex: 0 1 calc(33.333% - 14px); }
  .about-hero__stat-num { font-size: 28px; margin-bottom: 6px; }
  .about-hero__stat-label { font-size: 12px; }
}

/* Override button sizing for about hero */
.about-hero__content .comp-mqhqonuw a {
  width: max-content;
  padding: 0 24px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .about-hero__content .comp-mqhqonuw a {
    height: 46px;
    font-size: 15px;
  }
}

/* ══════════════════════════════════════════════════════
   SECTION 2: MEET JESS
══════════════════════════════════════════════════════ */
:root {
  --pine: #2B633D;
  --pine-soft: #425338;
  --sage: #eef2e2;
  --sage-deep: #dfe7cb;
  --cream: #fffcf5;
  --mustard: #e2a63b;
  --mustard-dark: #c1841f;
  --brick: #b5472e;
  --moss: #6f8f5b;
  --moss-dark: #44592f;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

.meet-jess {
  font-family: 'Fraunces', serif;
  color: var(--pine);
  padding: clamp(32px, 5vw, 64px) clamp(20px, 5vw, 64px);
  background: oklch(0.92 0.025 82 / 0.4);
  position: relative;
  overflow: hidden;
}

.mj-container {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

/* Floating paw bg decos */
.bg-paw {
  position: absolute;
  opacity: .16;
  color: var(--moss);
  pointer-events: none;
  animation: drift 9s ease-in-out infinite;
}
.bg-paw svg { width: 100%; height: 100%; display: block; }
.bg-paw.p1 { top: 6%; left: 2%; width: 34px; animation-delay: 0s; }
.bg-paw.p2 { top: 70%; left: 8%; width: 22px; animation-delay: 1.4s; }
.bg-paw.p3 { top: 20%; right: 4%; width: 28px; animation-delay: 2.6s; }
.bg-paw.p4 { top: 82%; right: 12%; width: 20px; animation-delay: .8s; }

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(8deg); }
}

.mj-head {
  text-align: left;
  max-width: 700px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.mini-label {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0 0 12px;
  opacity: 0;
  transform: translateY(8px);
}

.headline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.3;
  margin: 0;
  color: var(--pine);
  opacity: 0;
  transform: translateY(14px);
}

.mj-head.is-visible .mini-label { animation: rise .6s var(--ease) forwards; }
.mj-head.is-visible .headline { animation: rise .7s var(--ease) .14s forwards; }

@keyframes rise { to { opacity: 1; transform: none; } }

/* Hero grid (illustration + story) */
.mj-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(52px, 7vw, 88px);
}

/* Dog illustration blob */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  opacity: 0;
  transform: scale(.9);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.hero-visual.is-visible { opacity: 1; transform: scale(1); }

.blob-back {
  position: absolute;
  inset: 0;
  background: var(--mustard);
  opacity: .28;
  border-radius: 63% 37% 54% 46% / 43% 45% 55% 57%;
  animation: morph 11s ease-in-out infinite;
}
.blob-front {
  position: absolute;
  inset: 10px;
  background: transparent;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  box-shadow: 0 20px 45px -18px rgba(38, 51, 31, .35);
  animation: morph 13s ease-in-out infinite reverse;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* clip the larger image to the blob shape */
}

@keyframes morph {
  0%, 100% { border-radius: 63% 37% 54% 46% / 43% 45% 55% 57%; }
  50% { border-radius: 40% 60% 45% 55% / 55% 45% 55% 45%; }
}

.dog-illustration { width: 130%; height: 130%; border-radius: 50%; object-fit: cover; object-position: 50% 11%; display: block; transform: translateY(6%); }
.dog-tail { transform-origin: 206px 190px; animation: wag 1.15s ease-in-out infinite; }
@keyframes wag { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-14deg); } }

.sparkle { position: absolute; color: var(--brick); opacity: 0; animation: sparkle-float 3.2s ease-in-out infinite; }
.sparkle.s1 { top: 6%; right: 14%; width: 22px; animation-delay: .2s; }
.sparkle.s2 { top: 16%; left: 6%; width: 14px; animation-delay: 1.4s; }
.sparkle.s3 { bottom: 10%; right: 4%; width: 16px; animation-delay: 2.3s; }
@keyframes sparkle-float {
  0% { opacity: 0; transform: translateY(6px) scale(.7); }
  30% { opacity: 1; }
  70% { opacity: .8; }
  100% { opacity: 0; transform: translateY(-18px) scale(1); }
}

/* Story text */
.hero-story p {
  /* bumped slightly for readability on mobile & desktop */
  font-size: clamp(16px, 1.8vw, 18.5px);
  line-height: 1.75;
  margin: 0 0 16px;
  color: #111; /* use black for body text; keep green for emphasized text */
  opacity: 0;
  transform: translateX(-38px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.hero-story p.from-right {
  transform: translateX(38px);
}
.hero-story p.aos-visible { opacity: 1; transform: none; }
.hero-story p:last-of-type { margin-bottom: 0; }
.hero-story strong { color: var(--pine); }

/* Journey trail */
.trail-wrap { margin-top: 40px; }
.trail-label {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--moss-dark);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateX(-38px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.trail-label.aos-visible { opacity: 1; transform: none; }

.trail {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.trail-line {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 2px;
  z-index: 0;
}
.trail-line svg { width: 100%; height: 2px; overflow: visible; display: block; }
.trail-line path { fill: none; stroke: var(--moss); stroke-width: 2; stroke-dasharray: 6 7; stroke-dashoffset: 600; transition: stroke-dashoffset 1.6s var(--ease); }
.trail-wrap.is-visible .trail-line path { stroke-dashoffset: 0; }

.trail-stop {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  opacity: 0;
  transform: translateY(10px) scale(.85);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.trail-wrap.is-visible .trail-stop { opacity: 1; transform: none; }
.trail-wrap.is-visible .trail-stop:nth-child(1) { transition-delay: .15s; }
.trail-wrap.is-visible .trail-stop:nth-child(2) { transition-delay: .35s; }
.trail-wrap.is-visible .trail-stop:nth-child(3) { transition-delay: .55s; }
.trail-wrap.is-visible .trail-stop:nth-child(4) { transition-delay: .75s; }
.trail-wrap.is-visible .trail-stop:nth-child(5) { transition-delay: .95s; }

@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.trail-wrap.is-visible .trail-stop:nth-child(1) .stop-icon { animation: bob 2.6s ease-in-out .9s infinite; }
.trail-wrap.is-visible .trail-stop:nth-child(2) .stop-icon { animation: bob 2.6s ease-in-out 1.15s infinite; }
.trail-wrap.is-visible .trail-stop:nth-child(3) .stop-icon { animation: bob 2.6s ease-in-out 1.4s infinite; }
.trail-wrap.is-visible .trail-stop:nth-child(4) .stop-icon { animation: bob 2.6s ease-in-out 1.65s infinite; }
.trail-wrap.is-visible .trail-stop:nth-child(5) .stop-icon { animation: bob 2.6s ease-in-out 1.9s infinite; }

.stop-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px -8px rgba(38, 51, 31, .3);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.trail-stop:hover .stop-icon { animation-play-state: paused; transform: translateY(-4px) rotate(-6deg); border-color: var(--mustard); }
.stop-icon svg { width: 22px; height: 22px; }

.trail-walker { opacity: 0; transition: opacity .4s ease .9s; }
.trail-wrap.is-visible .trail-walker { opacity: 1; }

.stop-caption { font-size: 11.5px; font-weight: 700; text-align: center; color: var(--pine-soft); max-width: 88px; line-height: 1.3; }
.stop-year { font-size: 10px; font-weight: 800; color: var(--brick); letter-spacing: .04em; }

/* Value cards */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: 0;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(.92) rotate(-3deg);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.values.is-visible .value-card { opacity: 1; transform: none; }
.values.is-visible .value-card:nth-child(1) { transition-delay: .05s; }
.values.is-visible .value-card:nth-child(2) { transition-delay: .2s; }
.values.is-visible .value-card:nth-child(3) { transition-delay: .35s; }

.value-icon {
  width: 72px; height: 72px;
  color: var(--mustard-dark);
  margin-bottom: 12px;
  transition: transform .35s var(--ease);
}
.value-card:hover .value-icon { animation-play-state: paused; transform: translateY(-4px) rotate(-5deg); }
.value-icon svg { width: 100%; height: 100%; display: block; }

@keyframes iconWiggle { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(4deg); } }
.values.is-visible .value-card:nth-child(1) .value-icon { animation: iconWiggle 3.2s ease-in-out .6s infinite; }
.values.is-visible .value-card:nth-child(2) .value-icon { animation: iconWiggle 3.2s ease-in-out .9s infinite; }
.values.is-visible .value-card:nth-child(3) .value-icon { animation: iconWiggle 3.2s ease-in-out 1.2s infinite; }

.sketch-frame { position: relative; width: 100%; padding: 26px 22px 22px; }
.sketch-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.sketch-svg rect { fill: none; stroke: var(--mustard-dark); stroke-width: 1.6; transition: stroke .3s ease; }
.value-card:hover .sketch-svg rect { stroke: var(--brick); }
.sketch-content { position: relative; z-index: 1; }
.value-title { font-family: 'Fraunces', serif; font-style: italic; font-weight: 600; font-size: 21px; margin: 0 0 8px; color: var(--pine); }
.value-desc { font-size: 14px; line-height: 1.6; color: var(--pine-soft); margin: 0; }

/* Meet Jess responsive */
@media (max-width: 860px) {
  .mj-hero { grid-template-columns: 1fr; }
  .hero-visual { max-width: 240px; }
  .values { grid-template-columns: 1fr; }
  .trail { flex-wrap: wrap; row-gap: 24px; }
  .trail-line { display: none; }
  .trail-stop { flex: 1 1 30%; min-width: 96px; }
}

/* ══════════════════════════════════════════════════════
   SECTION 3: ASUMA
══════════════════════════════════════════════════════ */
.asuma-section {
  padding: clamp(32px, 5vw, 64px) clamp(20px, 5vw, 64px);
  font-family: 'Fraunces', serif;
  background: #ffffff;
  color: #1a1a1a;
}

.asuma-container { max-width: 1160px; margin: 0 auto; }

.asuma-flex {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.content-column {
  flex: 1 1 520px;
  min-width: 300px;
}

.image-column {
  flex: 1 1 380px;
  min-width: 280px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  opacity: 0;
  transform: translateX(38px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.image-column.is-visible { opacity: 1; transform: none; }

.image-column img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.image-caption {
  font-size: 14px;
  font-style: italic;
  color: #999;
  margin-top: 10px;
  text-align: center;
}
.image-caption a { color: #E8672A; font-weight: 600; text-decoration: none; }

@media (max-width: 900px) {
  .image-column { position: static; order: -1; transform: translateY(-24px); }
  .image-column.is-visible { transform: none; }
}

.eyebrow {
  display: block;
  color: #E8672A;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.asuma-h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 36px;
  color: #1a1408;
}
.asuma-h1 em { font-style: italic; font-weight: 600; color: #2f4a3c; }

.story p {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  color: #3a3a3a;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateX(-38px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.story p.is-visible { opacity: 1; transform: none; }
.story p:last-of-type { margin-bottom: 0; }

/* Titles section */
.titles-heading-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateX(-38px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.titles-heading-wrap.is-visible { opacity: 1; transform: none; }

.titles-heading-icon { width: 36px; height: 36px; color: #C77D33; flex-shrink: 0; }
.titles-heading-icon svg { width: 100%; height: 100%; display: block; }

.titles-heading {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  position: relative;
  margin: 0;
}
.titles-heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: #F5A623;
  border-radius: 2px;
  margin-top: 10px;
}

.titles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.title-card {
  position: relative;
  background: #FBF6EC;
  border-radius: 14px;
  padding: 12px 14px;
  text-align: left;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
  opacity: 0;
  transform: scale(.88);
}
.title-card.is-visible { opacity: 1; transform: scale(1); }
.title-card:hover { transform: translateY(-4px); }

.title-card .sketch-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.title-card .sketch-svg rect { fill: none; stroke: #C77D33; stroke-width: 1.6; transition: stroke .3s ease; }
.title-card:hover .sketch-svg rect { stroke: #8a5a2b; }

.title-card-content { position: relative; z-index: 1; }
.title-code { font-size: 15px; font-weight: 700; color: #C77D33; letter-spacing: .5px; margin-bottom: 4px; }
.title-name { font-size: 11px; font-weight: 400; color: #555; }

@media (max-width: 600px) {
  .asuma-h1 { font-size: 32px; }
  .titles-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════
   SECTION 4: PULL QUOTE
══════════════════════════════════════════════════════ */
.pull-quote-section {
  background: oklch(0.45 0.085 152);
  padding: clamp(32px, 5vw, 64px) clamp(16px, 5vw, 24px);
  text-align: center;
}

.pull-quote-inner {
  max-width: 56rem;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.pull-quote-inner.is-visible { opacity: 1; transform: none; }

.pull-quote-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  animation: float-soft 3.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
  object-fit: contain;
}
@keyframes float-soft { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.pull-quote-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.02em;
  color: oklch(0.97 0.02 90);
  text-wrap: balance;
  margin: 0 0 24px;
}

.pull-quote-attr {
  font-size: 18px;
  color: oklch(0.97 0.02 90 / 0.8);
  margin: 0;
}

/* ══════════════════════════════════════════════════════
   SECTION 5: CTA SECTION
══════════════════════════════════════════════════════ */
.cta-section {
  background: oklch(0.955 0.018 85);
  padding: clamp(32px, 5vw, 64px) clamp(16px, 5vw, 24px);
}

.cta-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  background: oklch(0.64 0.15 45);
  color: oklch(0.98 0.02 90);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.cta-card.is-visible { opacity: 1; transform: none; }

.cta-content {
  position: relative;
  z-index: 10;
  padding: clamp(32px, 5vw, 64px);
}

.cta-paw {
  width: 40px;
  height: 40px;
  opacity: .7;
  margin-bottom: 20px;
  color: currentColor;
}

.cta-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: oklch(0.98 0.02 90);
  text-wrap: balance;
  margin: 0 0 20px;
}

.cta-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: oklch(0.98 0.02 90 / 0.9);
  max-width: 420px;
  margin: 0 0 32px;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: oklch(0.985 0.012 90);
  color: oklch(0.26 0.03 55);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .22s ease;
}
.cta-btn-primary:hover { transform: translateY(-2px); }
.cta-btn-primary svg { width: 16px; height: 16px; transition: transform .22s ease; }
.cta-btn-primary:hover svg { transform: translateX(3px); }

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid oklch(0.98 0.02 90 / 0.35);
  color: oklch(0.98 0.02 90);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s ease;
}
.cta-btn-secondary:hover { background: oklch(0.98 0.02 90 / 0.12); }

.cta-img-col {
  position: relative;
  height: 100%;
  min-height: 416px;
}
.cta-img-col img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 768px) {
  .cta-card { grid-template-columns: 1fr; }
  .cta-img-col { min-height: 256px; }
}

/* ══════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .3s !important;
  }
  .dog-tail { animation: none; }
  .trail-walker { display: none; }

  /* Make everything visible immediately */
  .about-hero__stats.is-visible .about-hero__stat-num,
  .about-hero__content,
  .mj-head.is-visible .mini-label,
  .mj-head.is-visible .headline,
  .hero-visual,
  .hero-story p,
  .trail-stop,
  .value-card,
  .story p,
  .image-column,
  .titles-heading-wrap,
  .title-card,
  .pull-quote-inner,
  .cta-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
