/* About Page Custom Styles */
.about-hero {
  padding: 120px 0 80px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-charcoal);
}

.about-hero-copy .hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.about-hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 245, 0.88));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 214, 153, 0.35);
  box-shadow: 0 40px 120px rgba(196, 166, 128, 0.25), 0 20px 60px rgba(255, 214, 153, 0.15), inset 0 1px 0 rgba(255, 250, 235, 0.9);
  border-radius: 32px;
  padding: 48px 40px;
  position: relative;
  transform: rotate(-2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.about-hero-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 45px 140px rgba(196, 166, 128, 0.35), 0 20px 80px rgba(255, 204, 102, 0.25), inset 0 1px 0 rgba(255, 250, 235, 1);
  border-color: rgba(255, 204, 102, 0.5);
}

.about-hero-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--color-charcoal);
}

.about-hero-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.about-hero-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--color-text);
}

.about-hero-card li::before {
  content: "✨";
  font-size: 1.2rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #059669;
  margin-bottom: 20px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: blink 2s ease-in-out infinite;
}

/* Case Study Scroll Section */
:root {
  --case-slide-duration: 520ms;
  --case-slide-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --case-slide-stagger: 140ms;
}

.case-study-showcase {
  padding: 120px 0 80px;
  position: relative;
}

.case-study-window {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(120% 120% at 50% 0%, rgba(103, 69, 255, 0.16) 0%, rgba(15, 9, 30, 0.92) 48%, rgba(10, 9, 20, 0.98) 100%);
  color: #f9f5ff;
  padding: clamp(28px, 5vw, 48px) clamp(24px, 6vw, 56px);
  width: min(960px, 100%);
  margin: 0 auto clamp(48px, 8vh, 72px);
  box-shadow: 0 32px 80px rgba(16, 9, 40, 0.28);
}

.case-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: pre-line;
  margin: 0 0 12px 0;
  position: relative;
}

.case-label {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(236, 232, 255, 0.78);
  min-height: calc(1.25rem * 1.4);
  margin: 0;
}

.case-window-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(18px, 3vw, 28px);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(249, 245, 255, 0.12);
  color: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.35s var(--case-slide-ease), background 0.35s var(--case-slide-ease);
}

.case-window-link::after {
  content: "↗";
  font-size: 1rem;
}

.case-window-link:hover,
.case-window-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(249, 245, 255, 0.2);
}

.case-card-track {
  display: flex;
  gap: clamp(18px, 6vw, 32px);
  overflow-x: auto;
  padding: 4px 4px 32px;
  margin: 0 -24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.case-card-track::-webkit-scrollbar {
  display: none;
}

.case-card {
  position: relative;
  flex: 0 0 clamp(240px, 26vw, 320px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 0;
  background: white;
  color: #1b1b1f;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  min-height: clamp(260px, 32vw, 320px);
  overflow: hidden;
  box-shadow: none;
}

.case-card:not(.is-active) {
  opacity: 0.7;
}

.case-card.is-active {
  transform: translateY(-8px) scale(1.02);
  box-shadow: none;
  opacity: 1;
}

.case-card:focus-visible {
  outline: 2px solid rgba(199, 167, 255, 0.6);
  outline-offset: 4px;
}

.case-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 245, 255, 0.65);
  margin-bottom: clamp(24px, 4vw, 32px);
}

.case-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.05rem;
}

.case-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 12px 0;
  color: #fff;
}

.case-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(236, 232, 255, 0.75);
  margin: 0 0 18px 0;
}

.case-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: rgba(231, 222, 255, 0.92);
}

.case-card-cta::after {
  content: "›";
  font-size: 1rem;
  transform: translateY(-1px);
}

.case-slide-enter {
  opacity: 0;
  transform: translateY(28px);
}

.case-slide-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--case-slide-duration) var(--case-slide-ease), transform var(--case-slide-duration) var(--case-slide-ease);
}

.case-slide-exit {
  opacity: 0;
  transform: translateY(-28px);
  transition: opacity var(--case-slide-duration) var(--case-slide-ease), transform var(--case-slide-duration) var(--case-slide-ease);
  position: absolute;
  inset: 0;
}

.case-label-enter {
  opacity: 0;
  transform: translateY(16px);
}

.case-label-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity calc(var(--case-slide-duration) - 120ms) var(--case-slide-ease), transform calc(var(--case-slide-duration) - 120ms) var(--case-slide-ease);
  transition-delay: var(--case-slide-stagger);
}

.case-label-exit {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity calc(var(--case-slide-duration) - 120ms) var(--case-slide-ease), transform calc(var(--case-slide-duration) - 120ms) var(--case-slide-ease);
}

@media (prefers-reduced-motion: reduce) {

  .case-card,
  .case-card::before,
  .case-card::after,
  .case-slide-enter,
  .case-slide-active,
  .case-slide-exit,
  .case-label-enter,
  .case-label-active,
  .case-label-exit {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1024px) {
  .case-card-track {
    margin: 0 -16px;
  }
}

@media (max-width: 768px) {
  .case-study-showcase {
    padding: 96px 0 64px;
  }

  .case-card {
    flex: 0 0 clamp(220px, 65vw, 260px);
    min-height: 260px;
  }

  .case-card-track {
    padding-bottom: 24px;
  }
}

@media (max-width: 540px) {
  .case-study-window {
    border-radius: 24px;
  }

  .case-card-track {
    gap: 18px;
  }
}

/* Journey Section - Story Cards */
.about-journey {
  padding: 96px 0;
}

.journey-story {
  max-width: 1000px;
  margin: 0 auto;
}

.story-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-text);
}

.story-timeline {
  display: grid;
  gap: 36px;
  position: relative;
  padding-left: 32px;
}

.story-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 78px;
  width: 4px;
  border-radius: 999px;
  background: repeating-linear-gradient(to bottom,
      rgba(118, 73, 26, 0.2),
      rgba(118, 73, 26, 0.2) 20px,
      transparent 20px,
      transparent 34px);
  opacity: 0.6;
}

.story-card {
  --story-accent: #f59e0b;
  --story-soft: rgba(245, 158, 11, 0.1);
  --story-pill: rgba(245, 158, 11, 0.2);
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 245, 0.88));
  border-radius: 24px;
  padding: 40px 48px;
  border: 1px solid rgba(255, 214, 153, 0.35);
  box-shadow: none;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
}

.story-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--story-accent), transparent);
  border-radius: 32px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.story-card:nth-child(1) {
  --story-accent: #a0c4ff;
  --story-soft: rgba(160, 196, 255, 0.15);
  --story-pill: rgba(160, 196, 255, 0.25);
}

.story-card:nth-child(2) {
  --story-accent: #caffbf;
  --story-soft: rgba(202, 255, 191, 0.15);
  --story-pill: rgba(202, 255, 191, 0.25);
}

.story-card:nth-child(3) {
  --story-accent: #e0c3fc;
  --story-soft: rgba(224, 195, 252, 0.15);
  --story-pill: rgba(224, 195, 252, 0.25);
}

.story-card:nth-child(4) {
  --story-accent: #ffc6d9;
  --story-soft: rgba(255, 198, 217, 0.15);
  --story-pill: rgba(255, 198, 217, 0.25);
}

.story-card:nth-child(5) {
  --story-accent: #ffd6a5;
  --story-soft: rgba(255, 214, 165, 0.15);
  --story-pill: rgba(255, 214, 165, 0.25);
}

.story-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 45px 140px rgba(196, 166, 128, 0.35), 0 20px 80px rgba(255, 204, 102, 0.25), inset 0 1px 0 rgba(255, 250, 235, 1);
  border-color: rgba(255, 204, 102, 0.5);
}

.story-card:hover::after {
  opacity: 0.1;
}

.story-illustration {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--story-soft), rgba(255, 255, 255, 0.9));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.1),
    0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 28px;
  position: relative;
  transform: rotate(0deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-card:hover .story-illustration {
  transform: scale(1.15) rotate(-8deg);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.15),
    0 6px 15px rgba(0, 0, 0, 0.08);
}

.story-illustration::after {
  display: none;
}

.story-illustration img {
  width: 90px;
  height: 90px;
  display: block;
  filter: none;
  opacity: 1;
}

@keyframes float-card {

  0%,
  100% {
    transform: rotate(-3deg) translateY(0);
  }

  50% {
    transform: rotate(-2deg) translateY(-10px);
  }
}

.story-content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--color-charcoal);
  line-height: 1.2;
}

.story-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-charcoal);
  background: var(--story-pill);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--story-soft);
}

.story-label::before {
  content: '✨';
  font-size: 0.9rem;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

@media (max-width: 768px) {
  .story-timeline {
    padding-left: 0;
  }

  .story-timeline::before {
    display: none;
  }

  .story-card {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 28px;
  }

  .story-illustration {
    margin: 0 auto;
  }

  .story-card:hover {
    transform: translateY(-4px);
  }
}

/* Principles Section */
.about-principles {
  padding: 96px 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.principle-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 245, 0.88));
  border: 1px solid rgba(255, 214, 153, 0.35);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: none;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease backwards;
}

.principle-card:nth-child(1) {
  animation-delay: 0.1s;
}

.principle-card:nth-child(2) {
  animation-delay: 0.2s;
}

.principle-card:nth-child(3) {
  animation-delay: 0.3s;
}

.principle-card:nth-child(4) {
  animation-delay: 0.4s;
}

.principle-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
  border-color: rgba(255, 204, 102, 0.5);
}

.principle-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.principle-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--color-charcoal);
}

.principle-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-muted);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Teddy Scroll Photos Section */
.life-lately {
  padding: 120px 0 80px;
  min-height: 150vh;
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 50% 10%, #ffffff 0%, #f8f7ff 55%, #eef2ff 100%);
  box-shadow: inset 0 40px 120px rgba(15, 23, 42, 0.08);
}

.life-lately::before,
.life-lately::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
}

.life-lately::before {
  width: 460px;
  height: 460px;
  top: -8%;
  left: -6%;
  background: rgba(255, 214, 153, 0.45);
}

.life-lately::after {
  width: 520px;
  height: 520px;
  bottom: -6%;
  right: -4%;
  background: rgba(153, 196, 255, 0.4);
}

.life-lately-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.photo-stack-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 80vh;
  margin: 0 auto;
}

.life-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.life-title.visible {
  opacity: 1;
}

.life-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--color-charcoal);
  margin: 0 0 16px 0;
  line-height: 1;
}

.life-title p {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--color-muted);
  margin: 0;
}

.photo-item {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Initial stacked state - all centered */
.photo-item.stacked {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg) scale(0.95);
  z-index: 1;
}

/* Initial stacked state - all perfectly centered with slight rotations */
.photo-item:nth-child(1).stacked {
  transform: translate(-50%, -50%) rotate(-8deg) scale(0.95);
  z-index: 1;
}

.photo-item:nth-child(2).stacked {
  transform: translate(-50%, -50%) rotate(5deg) scale(0.95);
  z-index: 2;
}

.photo-item:nth-child(3).stacked {
  transform: translate(-50%, -50%) rotate(-3deg) scale(0.95);
  z-index: 3;
}

.photo-item:nth-child(4).stacked {
  transform: translate(-50%, -50%) rotate(7deg) scale(0.95);
  z-index: 4;
}

.photo-item:nth-child(5).stacked {
  transform: translate(-50%, -50%) rotate(-5deg) scale(0.95);
  z-index: 5;
}

.photo-item:nth-child(6).stacked {
  transform: translate(-50%, -50%) rotate(4deg) scale(0.95);
  z-index: 6;
}

.photo-item:nth-child(7).stacked {
  transform: translate(-50%, -50%) rotate(-6deg) scale(0.95);
  z-index: 7;
}

.photo-item:nth-child(8).stacked {
  transform: translate(-50%, -50%) rotate(2deg) scale(0.95);
  z-index: 8;
}

/* Spread positions - moved to edges */
.photo-item.spread:nth-child(1) {
  top: 8%;
  left: 5%;
  transform: rotate(-12deg) scale(1);
  z-index: 1;
}

.photo-item.spread:nth-child(2) {
  top: 5%;
  left: 50%;
  transform: translateX(-50%) rotate(3deg) scale(1);
  z-index: 2;
}

.photo-item.spread:nth-child(3) {
  top: 8%;
  right: 5%;
  transform: rotate(8deg) scale(1);
  z-index: 3;
}

.photo-item.spread:nth-child(4) {
  top: 50%;
  left: 2%;
  transform: translateY(-50%) rotate(-5deg) scale(1);
  z-index: 4;
}

.photo-item.spread:nth-child(5) {
  top: 50%;
  right: 2%;
  transform: translateY(-50%) rotate(6deg) scale(1);
  z-index: 5;
}

.photo-item.spread:nth-child(6) {
  bottom: 8%;
  left: 8%;
  transform: rotate(4deg) scale(1);
  z-index: 6;
}

.photo-item.spread:nth-child(7) {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%) rotate(-7deg) scale(1);
  z-index: 7;
}

.photo-item.spread:nth-child(8) {
  bottom: 8%;
  right: 8%;
  transform: rotate(5deg) scale(1);
  z-index: 8;
}

/* Fun Facts Section */
.about-fun-facts {
  padding: 96px 0;
}

.fun-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.fun-fact-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 245, 0.88));
  border: 1px solid rgba(255, 214, 153, 0.35);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
  transform: rotate(-0.5deg);
}

.fun-fact-card:nth-child(2) {
  transform: rotate(0.5deg);
}

.fun-fact-card:nth-child(3) {
  transform: rotate(-0.3deg);
}

.fun-fact-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 45px 140px rgba(196, 166, 128, 0.35), 0 20px 80px rgba(255, 204, 102, 0.25), inset 0 1px 0 rgba(255, 250, 235, 1);
  border-color: rgba(255, 204, 102, 0.5);
}

.fun-fact-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}

.fun-fact-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* CTA Section */
.about-cta {
  padding: 96px 0;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 250, 240, 0.85) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 3px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 60px rgba(255, 193, 7, 0.15);
  border-radius: 32px;
  padding: 64px 48px;
}

.cta-container h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  color: var(--color-charcoal);
}

.cta-container p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .photo-item {
    width: 180px;
    height: 180px;
  }

  .photo-item.spread:nth-child(1) {
    top: 5%;
    left: 3%;
  }

  .photo-item.spread:nth-child(3) {
    top: 5%;
    right: 3%;
  }

  .photo-item.spread:nth-child(4) {
    top: 45%;
    left: 1%;
  }

  .photo-item.spread:nth-child(5) {
    top: 45%;
    right: 1%;
  }

  .photo-item.spread:nth-child(6) {
    bottom: 5%;
    left: 5%;
  }

  .photo-item.spread:nth-child(8) {
    bottom: 5%;
    right: 5%;
  }
}

@media (max-width: 768px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-hero-card {
    transform: rotate(-1deg);
  }

  .cta-container {
    padding: 48px 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .photo-item {
    width: 150px;
    height: 150px;
  }

  .life-lately {
    padding: 100px 0 60px;
    min-height: 120vh;
  }

  /* Mobile: Keep stacked centered like desktop */
  .photo-item:nth-child(1).stacked {
    transform: translate(-50%, -50%) rotate(-8deg) scale(0.90);
  }

  .photo-item:nth-child(2).stacked {
    transform: translate(-50%, -50%) rotate(5deg) scale(0.90);
  }

  .photo-item:nth-child(3).stacked {
    transform: translate(-50%, -50%) rotate(-3deg) scale(0.90);
  }

  .photo-item:nth-child(4).stacked {
    transform: translate(-50%, -50%) rotate(7deg) scale(0.90);
  }

  .photo-item:nth-child(5).stacked {
    transform: translate(-50%, -50%) rotate(-5deg) scale(0.90);
  }

  .photo-item:nth-child(6).stacked {
    transform: translate(-50%, -50%) rotate(4deg) scale(0.90);
  }

  .photo-item:nth-child(7).stacked {
    transform: translate(-50%, -50%) rotate(-6deg) scale(0.90);
  }

  .photo-item:nth-child(8).stacked {
    transform: translate(-50%, -50%) rotate(2deg) scale(0.90);
  }

  /* Spread positions for mobile */
  .photo-item.spread:nth-child(1) {
    top: 3%;
    left: 2%;
    transform: rotate(-8deg) scale(0.9);
  }

  .photo-item.spread:nth-child(2) {
    top: 2%;
    left: 50%;
    transform: translateX(-50%) rotate(2deg) scale(0.9);
  }

  .photo-item.spread:nth-child(3) {
    top: 3%;
    right: 2%;
    transform: rotate(5deg) scale(0.9);
  }

  .photo-item.spread:nth-child(4) {
    top: 35%;
    left: 0%;
    transform: translateY(-50%) rotate(-4deg) scale(0.9);
  }

  .photo-item.spread:nth-child(5) {
    top: 35%;
    right: 0%;
    transform: translateY(-50%) rotate(4deg) scale(0.9);
  }

  .photo-item.spread:nth-child(6) {
    bottom: 3%;
    left: 3%;
    transform: rotate(3deg) scale(0.9);
  }

  .photo-item.spread:nth-child(7) {
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg) scale(0.9);
  }

  .photo-item.spread:nth-child(8) {
    bottom: 3%;
    right: 3%;
    transform: rotate(4deg) scale(0.9);
  }
}

/* Dark Mode Overrides for About Page */
/* Dark Mode Overrides for About Page */
[data-theme="dark"] .about-hero-card {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--card-radius) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-gold-2xl);
}

[data-theme="dark"] .about-hero-card h3,
[data-theme="dark"] .about-hero-copy h1 {
  color: var(--color-charcoal);
}

[data-theme="dark"] .about-hero-card li {
  color: var(--color-text);
}

[data-theme="dark"] .case-study-window {
  border-color: rgba(255, 255, 255, 0.08);
  background: radial-gradient(120% 120% at 50% 0%, rgba(103, 69, 255, 0.12) 0%, rgba(10, 10, 12, 0.95) 48%, rgba(5, 5, 8, 0.98) 100%);
}

[data-theme="dark"] .story-card {
  background: var(--glass-bg) !important;
  border: none !important;
  border-radius: 24px !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: none;
  transition: transform var(--duration-normal) var(--ease-smooth), box-shadow var(--duration-normal) var(--ease-smooth), border-color var(--duration-normal) var(--ease-smooth);
}

[data-theme="dark"] .story-content h3 {
  color: #ffffff;
}

[data-theme="dark"] .story-content p {
  color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .principle-card {
  background: var(--glass-bg) !important;
  border: none !important;
  border-radius: 20px !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: none;
  transition: transform var(--duration-normal) var(--ease-smooth), box-shadow var(--duration-normal) var(--ease-smooth), border-color var(--duration-normal) var(--ease-smooth);
}

[data-theme="dark"] .principle-card h3 {
  color: var(--color-charcoal);
}

[data-theme="dark"] .principle-card p {
  color: var(--color-muted);
}

[data-theme="dark"] .life-lately {
  background: radial-gradient(120% 140% at 50% 10%, #1c1c1f 0%, #131316 55%, #000000 100%);
  box-shadow: inset 0 40px 120px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .life-lately::before {
  background: rgba(255, 214, 153, 0.15);
}

[data-theme="dark"] .life-lately::after {
  background: rgba(153, 196, 255, 0.1);
}

[data-theme="dark"] .life-title h2 {
  color: var(--color-charcoal);
}

[data-theme="dark"] .life-title p {
  color: var(--color-muted);
}

[data-theme="dark"] .fun-fact-card {
  background: var(--glass-bg) !important;
  border: none !important;
  border-radius: 16px !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: none;
  transition: transform var(--duration-normal) var(--ease-bounce), box-shadow var(--duration-normal) var(--ease-smooth), border-color var(--duration-normal) var(--ease-smooth);
}

[data-theme="dark"] .fun-fact-card:hover {
  box-shadow: none;
  border-color: var(--gold-border-hover);
  transform: translateY(-4px) rotate(-1deg);
}

[data-theme="dark"] .fun-fact-text {
  color: var(--color-text);
}

[data-theme="dark"] .section-header h2,
[data-theme="dark"] .about-hero-copy h1 {
  color: var(--color-charcoal);
}

[data-theme="dark"] .section-header p,
[data-theme="dark"] .about-hero-copy .hero-subtitle {
  color: var(--color-text);
}

[data-theme="dark"] .eyebrow {
  background-color: var(--color-white);
}

/* Case Cards Dark Mode */
[data-theme="dark"] .case-card {
  background: rgba(15, 15, 18, 0.9);
  border-color: var(--gold-border);
  color: #ffffff;
}

[data-theme="dark"] .case-card.is-active {
  background: rgba(20, 20, 24, 0.95);
  border-color: var(--gold-border-hover);
}

[data-theme="dark"] .case-card h3 {
  color: #ffffff;
}

[data-theme="dark"] .case-card p {
  color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .story-label {
  color: #000000;
  background: rgba(255, 193, 7, 0.9);
  font-weight: 700;
  border: none;
}

[data-theme="dark"] .story-timeline::before {
  background: repeating-linear-gradient(to bottom,
      rgba(255, 193, 7, 0.2),
      rgba(255, 193, 7, 0.2) 20px,
      transparent 20px,
      transparent 34px);
}

[data-theme="dark"] .story-illustration {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .story-card:hover .story-illustration {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 6px 15px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .principle-card:hover {
  box-shadow: none;
  border-color: var(--gold-border-hover);
  transform: translateY(-6px);
}

[data-theme="dark"] .story-card:hover {
  box-shadow: none;
  border-color: var(--gold-border-hover);
  transform: translateY(-6px);
}